-- MySQL dump 10.11
--
-- Host: localhost    Database: keobject_tiwi1
-- ------------------------------------------------------
-- Server version	5.0.67-community

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `galaxia_activities`
--

DROP TABLE IF EXISTS `galaxia_activities`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_activities` (
  `activityId` int(14) NOT NULL auto_increment,
  `name` varchar(80) default NULL,
  `normalized_name` varchar(80) default NULL,
  `pId` int(14) NOT NULL default '0',
  `type` enum('start','end','split','switch','join','activity','standalone') default NULL,
  `isAutoRouted` char(1) default NULL,
  `flowNum` int(10) default NULL,
  `isInteractive` char(1) default NULL,
  `lastModif` int(14) default NULL,
  `description` text,
  PRIMARY KEY  (`activityId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_activities`
--

LOCK TABLES `galaxia_activities` WRITE;
/*!40000 ALTER TABLE `galaxia_activities` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_activities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_activity_roles`
--

DROP TABLE IF EXISTS `galaxia_activity_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_activity_roles` (
  `activityId` int(14) NOT NULL default '0',
  `roleId` int(14) NOT NULL default '0',
  PRIMARY KEY  (`activityId`,`roleId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_activity_roles`
--

LOCK TABLES `galaxia_activity_roles` WRITE;
/*!40000 ALTER TABLE `galaxia_activity_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_activity_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_instance_activities`
--

DROP TABLE IF EXISTS `galaxia_instance_activities`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_instance_activities` (
  `instanceId` int(14) NOT NULL default '0',
  `activityId` int(14) NOT NULL default '0',
  `started` int(14) NOT NULL default '0',
  `ended` int(14) NOT NULL default '0',
  `user` varchar(200) default NULL,
  `status` enum('running','completed') default NULL,
  PRIMARY KEY  (`instanceId`,`activityId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_instance_activities`
--

LOCK TABLES `galaxia_instance_activities` WRITE;
/*!40000 ALTER TABLE `galaxia_instance_activities` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_instance_activities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_instance_comments`
--

DROP TABLE IF EXISTS `galaxia_instance_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_instance_comments` (
  `cId` int(14) NOT NULL auto_increment,
  `instanceId` int(14) NOT NULL default '0',
  `user` varchar(200) default NULL,
  `activityId` int(14) default NULL,
  `hash` varchar(32) default NULL,
  `title` varchar(250) default NULL,
  `comment` text,
  `activity` varchar(80) default NULL,
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`cId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_instance_comments`
--

LOCK TABLES `galaxia_instance_comments` WRITE;
/*!40000 ALTER TABLE `galaxia_instance_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_instance_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_instances`
--

DROP TABLE IF EXISTS `galaxia_instances`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_instances` (
  `instanceId` int(14) NOT NULL auto_increment,
  `pId` int(14) NOT NULL default '0',
  `started` int(14) default NULL,
  `owner` varchar(200) default NULL,
  `nextActivity` int(14) default NULL,
  `nextUser` varchar(200) default NULL,
  `ended` int(14) default NULL,
  `status` enum('active','exception','aborted','completed') default NULL,
  `properties` longblob,
  PRIMARY KEY  (`instanceId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_instances`
--

LOCK TABLES `galaxia_instances` WRITE;
/*!40000 ALTER TABLE `galaxia_instances` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_instances` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_processes`
--

DROP TABLE IF EXISTS `galaxia_processes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_processes` (
  `pId` int(14) NOT NULL auto_increment,
  `name` varchar(80) default NULL,
  `isValid` char(1) default NULL,
  `isActive` char(1) default NULL,
  `version` varchar(12) default NULL,
  `description` text,
  `lastModif` int(14) default NULL,
  `normalized_name` varchar(80) default NULL,
  PRIMARY KEY  (`pId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_processes`
--

LOCK TABLES `galaxia_processes` WRITE;
/*!40000 ALTER TABLE `galaxia_processes` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_processes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_roles`
--

DROP TABLE IF EXISTS `galaxia_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_roles` (
  `roleId` int(14) NOT NULL auto_increment,
  `pId` int(14) NOT NULL default '0',
  `lastModif` int(14) default NULL,
  `name` varchar(80) default NULL,
  `description` text,
  PRIMARY KEY  (`roleId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_roles`
--

LOCK TABLES `galaxia_roles` WRITE;
/*!40000 ALTER TABLE `galaxia_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_transitions`
--

DROP TABLE IF EXISTS `galaxia_transitions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_transitions` (
  `pId` int(14) NOT NULL default '0',
  `actFromId` int(14) NOT NULL default '0',
  `actToId` int(14) NOT NULL default '0',
  PRIMARY KEY  (`actFromId`,`actToId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_transitions`
--

LOCK TABLES `galaxia_transitions` WRITE;
/*!40000 ALTER TABLE `galaxia_transitions` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_transitions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_user_roles`
--

DROP TABLE IF EXISTS `galaxia_user_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_user_roles` (
  `pId` int(14) NOT NULL default '0',
  `roleId` int(14) NOT NULL auto_increment,
  `user` varchar(200) NOT NULL default '',
  PRIMARY KEY  (`roleId`,`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_user_roles`
--

LOCK TABLES `galaxia_user_roles` WRITE;
/*!40000 ALTER TABLE `galaxia_user_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_user_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galaxia_workitems`
--

DROP TABLE IF EXISTS `galaxia_workitems`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_workitems` (
  `itemId` int(14) NOT NULL auto_increment,
  `instanceId` int(14) NOT NULL default '0',
  `orderId` int(14) NOT NULL default '0',
  `activityId` int(14) NOT NULL default '0',
  `properties` longblob,
  `started` int(14) default NULL,
  `ended` int(14) default NULL,
  `user` varchar(200) default NULL,
  PRIMARY KEY  (`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_workitems`
--

LOCK TABLES `galaxia_workitems` WRITE;
/*!40000 ALTER TABLE `galaxia_workitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `galaxia_workitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `messu_messages`
--

DROP TABLE IF EXISTS `messu_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `messu_messages` (
  `msgId` int(14) NOT NULL auto_increment,
  `user` varchar(200) NOT NULL default '',
  `user_from` varchar(200) NOT NULL default '',
  `user_to` text,
  `user_cc` text,
  `user_bcc` text,
  `subject` varchar(255) default NULL,
  `body` text,
  `hash` varchar(32) default NULL,
  `date` int(14) default NULL,
  `isRead` char(1) default NULL,
  `isReplied` char(1) default NULL,
  `isFlagged` char(1) default NULL,
  `priority` int(2) default NULL,
  PRIMARY KEY  (`msgId`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `messu_messages`
--

LOCK TABLES `messu_messages` WRITE;
/*!40000 ALTER TABLE `messu_messages` DISABLE KEYS */;
INSERT INTO `messu_messages` VALUES (1,'admin','jessica','admin','',NULL,'site looks good so far!','hey christine. finally got a chance to check out the site. Looks good so far. cant wait for more fic!!\r\n\r\njessica\r\n(your #1 fan)','a3955beaae682e077aac1f145e97be31',1111507138,'n','n','n',3);
/*!40000 ALTER TABLE `messu_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `sessions` (
  `SESSKEY` varchar(32) NOT NULL default '',
  `EXPIRY` int(11) unsigned NOT NULL default '0',
  `EXPIREREF` varchar(64) default NULL,
  `DATA` text NOT NULL,
  PRIMARY KEY  (`SESSKEY`),
  KEY `EXPIRY` (`EXPIRY`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_actionlog`
--

DROP TABLE IF EXISTS `tiki_actionlog`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_actionlog` (
  `action` varchar(255) NOT NULL default '',
  `lastModif` int(14) default NULL,
  `pageName` varchar(200) default NULL,
  `user` varchar(200) default NULL,
  `ip` varchar(15) default NULL,
  `comment` varchar(200) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_actionlog`
--

LOCK TABLES `tiki_actionlog` WRITE;
/*!40000 ALTER TABLE `tiki_actionlog` DISABLE KEYS */;
INSERT INTO `tiki_actionlog` VALUES ('Created',0,'HomePage','system','0.0.0.0','Tiki initialization'),('Created',1111123105,'HomePage','system','0.0.0.0','Tiki initialization'),('Updated',1111125853,'HomePage','admin','70.244.80.34',''),('Created',1111172217,'HomePage','system','0.0.0.0','Tiki initialization'),('Updated',1111173034,'HomePage','admin','70.244.80.34',''),('Created',1111364556,'UserPagedkernekins','dkernekins','70.244.80.34','Dan Home Page'),('Created',1111419892,'DkeStartingPoints','dkernekins','167.107.191.217','Starting Points Home Page'),('Updated',1111463375,'DkeStartingPoints','dkernekins','70.244.80.34',''),('Created',1112023391,'ChristianSitesHome','dkernekins','167.107.191.217','Initial Creation');
/*!40000 ALTER TABLE `tiki_actionlog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_article_types`
--

DROP TABLE IF EXISTS `tiki_article_types`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_article_types` (
  `type` varchar(50) NOT NULL default '',
  `use_ratings` char(1) default NULL,
  `show_pre_publ` char(1) default NULL,
  `show_post_expire` char(1) default 'y',
  `heading_only` char(1) default NULL,
  `allow_comments` char(1) default 'y',
  `show_image` char(1) default 'y',
  `show_avatar` char(1) default NULL,
  `show_author` char(1) default 'y',
  `show_pubdate` char(1) default 'y',
  `show_expdate` char(1) default NULL,
  `show_reads` char(1) default 'y',
  `show_size` char(1) default 'y',
  `creator_edit` char(1) default NULL,
  `comment_can_rate_article` char(1) default NULL,
  PRIMARY KEY  (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_article_types`
--

LOCK TABLES `tiki_article_types` WRITE;
/*!40000 ALTER TABLE `tiki_article_types` DISABLE KEYS */;
INSERT INTO `tiki_article_types` VALUES ('Article','n','n','y','n','y','y','n','y','y','n','y','n','y','n'),('Review','y','n','y','n','y','y','n','y','y','n','y','n','n','n'),('Event','n','n','n','n','y','y','n','y','y','n','y','n','n','n'),('Classified','n','n','n','y','n','y','n','y','y','n','y','n','n','n');
/*!40000 ALTER TABLE `tiki_article_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_articles`
--

DROP TABLE IF EXISTS `tiki_articles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_articles` (
  `articleId` int(8) NOT NULL auto_increment,
  `title` varchar(80) default NULL,
  `state` char(1) default 's',
  `authorName` varchar(60) default NULL,
  `topicId` int(14) default NULL,
  `topicName` varchar(40) default NULL,
  `size` int(12) default NULL,
  `useImage` char(1) default NULL,
  `image_name` varchar(80) default NULL,
  `image_type` varchar(80) default NULL,
  `image_size` int(14) default NULL,
  `image_x` int(4) default NULL,
  `image_y` int(4) default NULL,
  `image_data` longblob,
  `publishDate` int(14) default NULL,
  `expireDate` int(14) default NULL,
  `created` int(14) default NULL,
  `heading` text,
  `body` text,
  `hash` varchar(32) default NULL,
  `author` varchar(200) default NULL,
  `reads` int(14) default NULL,
  `votes` int(8) default NULL,
  `points` int(14) default NULL,
  `type` varchar(50) default NULL,
  `rating` decimal(3,2) default NULL,
  `isfloat` char(1) default NULL,
  PRIMARY KEY  (`articleId`),
  KEY `title` (`title`),
  KEY `heading` (`heading`(255)),
  KEY `body` (`body`(255)),
  KEY `reads` (`reads`),
  FULLTEXT KEY `ft` (`title`,`heading`,`body`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_articles`
--

LOCK TABLES `tiki_articles` WRITE;
/*!40000 ALTER TABLE `tiki_articles` DISABLE KEYS */;
INSERT INTO `tiki_articles` VALUES (1,'The Things I Do','s','System Administrator/ Christine',0,NULL,1060,'n','Daniel1.jpg','image/jpeg',21769,0,0,'\0JFIF\0,,\0\0\0C\0\n\n\n\r\r\0C		\r\r\0\0\0\"\0\0\0\0\0\0\0\0\0\0\0\0	\n\0\0\0\0}\0!1AQa\"q2#BR$3br	\n\Z%&\'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\0\0\0\0\0\0\0\0	\n\0\0\0w\0!1AQaq\"2B	#3Rbr\n$4%\Z&\'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\0\0\0?\0\0۲mm9X6p篦ױV+9\r)O)~D32ps;\n]N~SIg8灚uKNst~؋lAls޴MSm\'0xT]﹃\'cvf6@ܹaT`һ&&YY\\&}qW:}t	<A\0p=xz\ZtD_ɛyZ͘!NѓK\\};WOIchg*#\\Galdn>uPtv+\Z\'=+f\rKd*D0w0O<qe:_,1WrAWmh#;u\0TCZi)KG\\Xshen@a뎝kSNK]\n=*msYڗ4Fr09T/-&@2u\rr՛TSj^kDuWP4s;<)\'\0MYtqofid_8ҼFr<W@fH?+$r i`ǽC9;C;Ey1Au\\f?Aj4m,:zok\rID~>B*g\'Q,MÙR;{,v;(ѫ{~Y!Xe2J]48)h8UЂQ<0qɲ`r>^;ΐ<^Z6N`DTAq5k՝an\'PpOl^,IZ±\'1$*@iJ\'h5hl\0TsQv9v\0tMPXgo=w*&W4\'	]3>2mBd\'	<Sc{.ѡ	\Z`NOҼh71G~[$/GAq\\ůu*II3׌R*92zcdCǏS-ߟ̸\n;vYyrox>]ÌqkʬqՇk\'Q<GC=ֵ4vXcs)\0*T=\"2\r{w5MKp.[%e=q?YNrz쳢hL3g8_Z]-Z[!\'U>GgG2AP[#oxaNU6#2Lj@dNOO}Wk#mmp=N`[ӹ viUyQUO\'QRs\'[<!{yf[_\0>E曬XLXA\00?1Io\rhcXٙ1<oA9@\rKV6ӵƓ}4K7́A})^[:ұDT\ZH<\0G޵}-jI dgҞ>sy4O9`3~L$%A*_\Zz]}yD\' .<+7N?9Rp\0uȖfLzy\0WxWFz_4\\&F2ǹ<QZG);ҕg܉Jur;ߊdOn6\\ιki Cef1\0=\\w:\'Ik4̬2pG^\'%N^`rM:~&ܷY9Y`{c=kR{ۃ.g]mHVc3gQFU*H>zӻ<RVE\Z>Ȕ4J$ ib?3+kgevG\"| >sc*m$t 6q}>Uy8v7tAOs\n#=,W{S~;Mk	#6h&$Q̶dܬKE98JHE[\nyVu\ZE2?QSbl\" Vea?.qdZff$<$9\0p=8f\0Kno˵]01v2{2ŷkՑEb@P,{ քITrX:bPpyZaTJԨ놌C0\0Cxmv+$늞tq\rQBYwӒ܀8a,Ӟu\r\rsm{~R;(c٤\\HXdQqg%b7:}*W].vwhF)#5W;>e^yY=s^WӬTږS+#3F~b5bvSZKKCn	+H$nR6uq⌅gP׍\0l^$ye#zչչySȊ\"umUR#CenPcJ0ON3(ۺcȫ01lsOzzŎ2VR\\rc\r:b_68c@cw\'nH{\Z־\'/y,\\mLvy>kih}N!QŹ\019`-d}6SU.A?A0\0i3o!W$v:W{+J/P+%u/t\"0bZh./W0JG濥|EfakGNxnd`#3@!5R%P9@遚Am>pҦǏΨ>l\rDj3^I.\0AW1y\'%*x7R[uV=5QFN8R?\Zͪ^x{IWY\ZH&>`x\'Idi:lvU89P:GKu.J0>j\0Kg(^L\'/g컜kG^3ҷt%Nq\r\'8ŁK@?tg_/\r\nh|۠ĕV-\'A[Mc(E^G52 I1<bb:y{9s[^\"эψ5{[y7G1p~=)\0RRԤ\\G%(pv=~SV=2[.۳ qXNꫲI=Ӟ5I9B\0zq\Z	pe7y⠾إ*၇JwBvKC%$#15n@OzEyfqMA=:Dfezm8ÕH\"tUq!k]!rDrǕmau.WԆ2Oީ%XM˧:Jy8eRq?Zen)Etw=02GLrj,f4hkSߋ4GUXv.\ZmdZĊҔW2{rzv_$j>RҒ=2>l*߆t#Uvul >`c(bL_\0m6M\r`}?ȩ$J|`ߞߐ5ϣb{PZhxZkBYI!m:`Oj#mX#;QXz;/}x\0<ֶ\"wF)F~zUГ哺94\0y\r\Z2ҬEVa[/5Si*dRAZW8B`i<flG;=ெduWK5]7E!RNc¨M\\q3=Λ~p}O6NOx=go.D=E^R\r`>9Z_j\r2jQkuI^JBA>73:j;+%k`v>\rcMW6ğj8<b9bO_R+p|KjHnW:d˸V&P3<uM|GLhw:Up\\ZERv_IxHn]X׊ga{q&YTsݞ~-|[Bc=:\'*#s9\r\0u3Y%m.-\r6qcn޽<,\Z\0.]$B(Dow{sY}噔,n\'aGTRxwR,\\PJDiizz,dN|kӦl㒋(o6xEuh#NFxiKq</܀O9\'U/\\[-Ӻ!-ԑ]Wu{kIcC<$*~_\nJ5.nc2h:Z5{VEU;})j=D[bzm\"\\Lkn2a𲝘ǧJ|\0^ԵM\r\"ӞMyrJ	wi`=QJ_2hѼ<n	<Z-wʢ)S\0UwkW|#2\\H	LO]^\Z˙nϣlmm\\J]@MkE\ZuSN+mPG̓:׼_luNTe8dN$<k׉5q@ A~IP;JcV_Վ\\n1|8\\׳mHz{zmͯ\0}s_EԮ$%D\0[${Z\r%lg ln>ׯ!U7#eaz~w1s\\FWLdck1oq\n>ct\\4m$jc,6sU1ic\Z\\Ù%}TIQtzԷ:7֫%ev#;W+In\'t7kT{s H#sҺ&8ӳ,7\ZdŗI3;J\00ZdNG![ۣҷԬqNWKb%t:6&s@@b\0\\IÅf+ᖄ,	tiIF9X砫)ob8jֶ6{F\r3g4b $	i؞;t<f5fƤ\0p?Z~YSK@A*HrxZJ4&BX+O|	-VezĒ=}ȧ(:u	u;wFr:˚O]oṒAj@I(r`~zWxFQ-cm[9z_8U˙f#ܨӴ1|9|`\0Y G_6|KKCgxcm\r5(b-}3鶼Ròy=CF\r7\ZMoGuD\03¾(\"me s\\~f3F3+q)5?&+CV̱\\q2\0)N3WO\\dǈ/dWw\ndgOǵ({)GLZb\0xvwly=Pg-\rT|@\\ q\'$?ҿ<\0g,FmaSu_uKkˑER$H2{9=68\Zhe,*tbK1OgkH}g\r4@^w&-:R˙T;x91_W|/X9֖Jdg-`qK%{:KGׄF$Au!6ľĎ0QH_bh}9O􂛄HǞOo	{XMI+,HA0n.w#!Ir9sQO	ݞi5GCin-V2+,1H#9\\^/s4;el;lN\n\rO^{5q̝z+˩Jz:>	˝A>ZHbz,6ѨesHO͂j+VFG=~jBQ\0]Ź\0<L<z+q>Y`q p=:~7F1p{?Zvs^\r}Yp\'\0tW4I+[jO1.c8⵨qr|?xz>k5b\ZTcSlQ0a\0Q.ty޵w\\{+}\"v^X=*x\\?\\mfVsOC_Mޗlmژ	G|\'֩k7RBW-̬=p3[gyujx9«6k60s#>Z$x1qҪx\'wZG$Jr!PBJ[RO_LFGT jqZ^g1I8cbPI\\9an\"_dMj/޻De7~_l+/ƿ\rdHVv.p\nN+Q\03F\"&y=\0ceWeE^.5xwV#1?1?X;.EęǯZ\0)ZCo$oitvY&3\'	{wTày\"qx\\ce_4c˲JԒƏ:H|)fK	c,>ɦcv-rH.yBff]:z|\rrVxD[21d&\0#^C}}OcLYH0݁2qC^[=49<M&jڌׅ%+oqzC,H	Ċ:JdlcN:tsF{[r	)\\}z/HbYdԵuyT(7ARK01kc[}u=˔R\"̅qO\0}k6qu^j:;]K\reYO~VbIK[k\r0r2F[ =+ˮC*凕Ă+g70s1=q^?\0:^<M&Kr3zRrn;R=sg.rF]2U$W(enhqr}x|\r\0h,TcO\0xFNV9+鯄\Z;Xh>64X^dm#Y|y=?VWvG$( l Wk#~[[ajOgd:vF+:zqq qּU6`dшRʭJJwUk{*67c>$0OUsmtT0c2rO^[}b28O؋-:K*Bgkŵn$f~Ԟ0u94TE_I*\rmt[\'W]swV>m״_13cp7\'6iJ2ZM?^km5Y\nۅ9 ޼6s{ܘgsangWEs\rc;dV9-\'`1\\4?^H>Fddscjq#NY7EIPCjDJG\'k~،\06&n\r\0{1:L\0Lɴ΢5>T$i;*K[$v_k<XU\ZsӟC܄2k>Ěgt܇~zsOT\'=9f|&78ҿ4`yMu2)9U^W\n\'mٲc|;i\Zh̎ʥz ~<U:Y^E8O1T\0ka=	dލ)bJ*?Fǿ4k+9DIcPU<Rױĺ[4fOg\"RPZ5Ju+{V0Hx1\'g6GsK(	F\'#S_ʳNO?:Z5=%<HT?ean}+[{vzRXfW>Ryaߵxޣዝ3W=m>tlG˜[+^x[\0hx0#	#GIs<=}n7_%zƻq#E\"T}{b6o7fq\Z\r]Zښ,[mC=zUWSiڧاH,Tb8lҽXJ-<¬^hI.pF;cOZn5[sXNIFxpHqumH[wSx]/g.f*ʃFpy{tF)J\0kWw[y.:眞wZeV#$g63Gծ$hHg⽆4\\mE==S@HfĐfb}XbQI^F2>RVM&$60і/$ؤH!\"=>1ghaּ_\'Iml\\\"`㑏O\Zi9XZ75#uFdRI8x*\"heHA\r {㶥bZYdQ\0*񥉧zʪ{R#9@Wmw*bi2\n1%ۭ΅vG3G0a(u\"it$F8j*UU\'#I\Z6urqsp?:佹vo-Cɯ\"xOG*!b&pOҾk\rKAʳP@+̥Iĺrv!T!9皿gY?	.G[ޟz:@\'5vyt$f9BR=B:)m\\0P\n *@|WCK\ZݱVUpǁȖ5S}pĸ3W*YB[ n*F{տ/j6~FN1Xԫ)Gfz8;[Vh#\'Yq0;\n4|wti.e@棸ј/	85R3].XI	<kԅ;t<7^P<ѴYW?.A./}?0W.K,\0m$E$\'*ΜN-G=\n%Gx_\Z5ylpx=e~o\'\'QK;KsY^ʪ2JDcJ|{j;=]\"$ݎ+Ë/}{	_+ijH~8 BR_+5eNv}~-KHW&ٙ@i\0t1q\0Kz^(߂\\%B?v7Gyn]F,01eSKV9kip0y<0~q՞\0U{lL2kgqyYlqOWĖb\r3	>O_@j]+>\"#[cCy;\02\'JRѥu$HS{3ZE*r唏oja4^\"pna(;r1һz%k\n4ª0p\ZNtm*Vݚ!P` Oy,N]Z,jY?7au%&rarɶ}\0JG\0{s0ec88:zW\\ݴ\n,4-߻݀O%,;q{Q5ua\0=qVիLg-\09Yќ9Ԯ#&yI@U%_-Fo]7<@WndKA	6݁s0jcƣ/HҦm0^6:~#cVkZݎfdvȝGn\"u{8}>Kugb$Q27&\n#.`G62IPOz}nz&`g\nJ%wK*h$@%RI8=A>Ƹ4q~Ƀ,UGcrUB+YQjzk[\"W\'1ϡ\rJL0ҮC\\ƃ6:6VѷO>6+g:ޣbظڪH!E$׃N>TztNjF,kўkxbo/ kĿ`eq]U=k>+5¯\0kGlp4ܸ؞:Vç;rP%N.o#ZQykUJY\0T>)xef4$Dܰko4E-!#.*]cs.IJ=,ZRlfp)Q2W{:pv\0^K\r=VaV\\}n\r*Ti>\'1FR奈P9]s_vc6w맺iX@W2nm)P=XpkZGW[;C\"ӽnv\'99iѫaלsZ+.@Hj.<9IvLlnmd]g,*%bARxK^@W#ӿ\\<c)B`;ke\n+N3͖_t]/NpNPb\'xS~G|RTMfXдfLG\"\0v?Jo\'%MA_so*	,/HtǲSVC,\0Xv\0fz,io9,zosGC>>XyůE=G.a?k+!⾿*oXosuw3]Ɨ7B$kN\ZSY[t7`}_3|%xbuOc2EKIfVvBe~=>5!Ea>I-S??gS>(^`e]3JŎz}f3:y<YFCx}mw:WU,ՅrXlg^Ե}FP@NBn>i6AkVꥮsJOdLoV{{t7*Ź( 1xe(=vk eܜ/^DcX1\00	ξ$Hԭ±$6IՊc(Qu*/Z%eO$}&F nBE_A94qB	NqI\\	R[ُvv9\\kЧ\ZKj5UU[Ė\ZF>!#AY\"	\0`8^ץf:qnygIwx<=v|7$\Zl\ZmŮECa@;	<uq!Ds>x<i}\rȕd4L?0|M%ܭ{V?ڃvO\0Zs0Ucӄ:jy%ވ-A6T;8㹯_s:Ə-#cr1៳(<Cmxܬro}hm\0XPC\ZQ<]8$`vw:D!\0,zk?Y\n<>u8vm<ֽ{F]A;}>szE҈C8nC]GW*2{^B$Q޵OJYj=px^؞7#@>T\Zɵ9q_C*x˥a}&isgKjvmbf%1	qlqVGWLwa2q;ƺ׵2O~xU,3m\'ej_Isz*륱(UG|1gݪ\rsֲӜNQSr}r\rQyl++>7ѫ\rļ6?\nЋZt#`\0W?&t6|@u$dgrk|A>MXԞh&m^\rjun.v2=y:z׏|@q/!<W	Yx\ZRlG;7ۥk+^\0[Y$5\nWl{	[j:.e\0P_\'+YG켃^3^1Gĝ?ĺTWK\"\'r9#YsY.R\\$;_91\rpg>X-^l$SBp	R=}^D):UW#gz %;Ҵ˝˓	|:a}[K\ZH$DnukUzߟ]2boskOZ495@1sk=ͬɞ烰Y\ZV]ƟeFoRs+	9<ףN*Tg]NK/\0(5ٮ|;]G,qW/m{mv˓sk˄xUH:\0\\VVq3HR5p	58ί,lfpƙuF2q֓Z1ӕǧ8g݂p}kt{ek\ZZ_.:Vd1\\8CZgZg g8TWVVIYb]ۀ#?Wx	`W>fUY7&ڼźZro9kPS==HUI~ԗ( }TstI[˸-?+>_$kɞ\njk0!o#ھQT+j~GifB\\O~66͆\'9^93eyG|+ɐҀ@1_OI{&&3bk٣yYCOw\'TS˨D^OX \'	$es+qv/*.gbx_	-ُyp嚞5`f=kڃL$ygb|T*@G\"BTUNi\'\0\ZUK\0+}5A\n8WpАNW\'_p}^O?xrz!G%#T1\'2+%D.wԎ4OXPLg\"Ca륱b07ݎyX\'$1aH@_kH)[5̑ƀn/xW<\\iPFd\0#ʥ\\D)]}a\"\Z\'9m$Mt\0hF.?Ǭ^-nwG[{\\-<Al.m\0*B<ѕS}.t똤ݔI7={W	\Zw\0]ĺ|ɫ.Kk<Qo2@D9`߱bӮ\'kh$\n̊qҹ=GGs@~3]7:;ɝn<)ro_\r*\\!AFe9h?Nt4ә.-d) cD\n	>rz-j=RΧ~g<]-@g_<Wm{^u$Wа+=Wr-0ðkղo\"e	G\0&In8]eL14ў@{8~@pw(^6Zw>$W-QH\n]՚9hҷIІ޴N8!Sfp7	<¯FQHXw+[dVhPrpt&Y rW9Q+m$i\0YU%ddck|o#F\'`^˵Q^MXyf%PGw+HrŶxbMc+̵mr\r	Qvڽ[Ķy\n<\n\0xơ᫿kЈ*C;_	RumIu>ZJ{hae^hoHf 휎 IӚ7y<w-#O!-M$`k+{}>Zxu[vgAåAx+ThoWizT6ҾPT^;,ew~4[M7\Z^uJ\'F (*tHBT䜛mywGŦq!t͌(Ҕ 킸 l_)\ZL7q\r2h@\0k\'l`h:nuz32F5=[j8sخLNۥAI;g$Q4! ?`^(ngřֳSQ_I)B7/_ƺ)mw7B8⪽a_K*GGuc;Mr@@sWaonpcq^[y)YW 9ǩz_.aR m\0\n,UN߳|5\n?u>g[[m=O;Gi6+ies+мHȱ2HAgW56ݾyQ@9@\'=fF[3ªu[>>q>YDݡUYߥz	?PI|Ֆ&\nOJ|Ye8WEy><u4U\'1GNTM©6e$j̑Dy Qϡy?\'c%q|\'$?oj7VKW/osIp%[Fy3I zJJ?Jt}3;\0FwvMYgyb(Sx|+iݬֿdБar\0]^xSJقORFG5W}s>ν2+.чaEhxK^Y⿍bV*3\0M~a|,|MChʧ|_c~o~$i\n\0sRsxTF(֠t}*ϴ| qWm!&U~qf岇 ڵa ^7ԽXP@~|pE2+BFM>9LS\0	5RHJ|C8kcE=,\0fny##5Vk\\j+CrṈDTqQ1GF52Bc]Akvr)k\\0vާaK汭4uys%ۚOIZ[g~[V@X8^O-zfs!Q͓^WӾ0O5[|Ϸ<c޼hŦz9Ss1\0,A屌\\>jz֙Ue)Xtr6>\r2\ruw7C#+9+no\ZyNCʑ?*I#?˥|?⿌z;{=8jO0\0}M};a>|xHe=7M#ca}vFW4is}\'w*yf+fsIajך.w A<T7+񖘍L0Y_YC,^\"\Zi/Tpxj܏6i.݀UHG@WKsVZ]/\0xv_hƍ(R_e%#ֺjoeu4ߴ/_v}(qMn|Ayȱ͈eTdpsxCҽ>*h㸃$Rp=GOq|#m[rLrC,-*w9ӫ\r{<uqg\0kn5,\nS-猏ΩC\'vio/<bywu?o=hIsa{KA4M`1NJ]98~rUֱ4J߀ÖO2 }_9|EΓrюyd<ɮމ,u2K;H)OpښxGx.?.Dx\ncannO@վ\'Yh\Zi%khrLJWJ4NSF\rJMı,wNȪ:֧L0YlVǇt;_Z|Gus&1n0\npҴuoxzKKn<Wf(g5HĀ+AlLMlxmBG\\[v \'\'f.\"Ho0wv\'uږ4ls⮼YGu\\uh8m:\Z;n\ZUڥOE9W|:ë|9u$DnaePC$W漎:O1fs_1hUkT{X\\\\)~|)LN4\0O0ѐ^a||`v|C^B\r<+J.IZ6wIt{Ѥxhwn}?)xrKWBq0Br`zU UFE`߳(݂}Z1]QyU%rM$v\\>#NXՂ%$ȧA\'X\'su#oح]8zFx ~L=ꓔ䓒xM-bBpk<s㣧3\0YVB-{׎muEXd\rX\0JGڦZi\ZݺUHD6\'k(>ק\Zm{ۡfTskUݢz8\r/|?>zicT=d>O=l%QH4sy{~ZYtzq	y\nGS^%}U+um&\"ffR{UaU;<= t>$x\07O>(yn\0AzxՍ(Dv/nI^4I[FoV?sVky{aӥݾy$=^=,#B8;0sҾΔNahe#\'\"VqIiM__3q\'GgxsjF1Fryd#`Rǐ7}0kKZ_;xj!z*	[?w٩-5b\'m:nkydKf%%?<\Z\'L{~Á1+_Kpf:crGy#gjڣ ;R <k yd޲FwO6dʔrGc^</d6%	rHy65)FKg.D\\hA5v|1/\\,w	$-7P\ZV~l~\n5LWWv<׮ڳm~ϖrA>JBJIK~֞|QR4K~k6<đ\"D\09⏇-е{{5XX4DEh8,Ƽ8|Ɛh;@RP^>GkxG6M\r&\\g\nW4φ~#k%,u63\"?)4zDƤ/\\c]7|Bi\Z> v,V6h9\0a*[mD[x04qZ^Ђ\Z+`I\03g8åHPEsw g]xDxmJ$;s\nʛYGTV|r1G$?TvCZZ-#f;O9xg_gX5#=r#6hьbrg,)ĪLRc\0%q=GJjӍHIi*ӧ%(3ƍ?ǺM]n줝ky]6\0Wa__*ᖨ9\0$e_|<;!}kjɆ(ӌiѝw}UihϺ-$,gj4J	0\0ZueHkFAu\Zߏ\\^V2AP[vMG=Ɩ7UCel`\r܊Z]{Q/+1\'qIs+E&Ф>6R{\'cqr{FǩVq>[7z͠Uiw&TuY?c	B8\0qڲ&1,¯^}I5o// ҾyC^vi`߻Xsŏuuoqko.|bN-Qd݀1*<ZU&Gw6*]īB2t:לNKx8B\Z-ܑ\ZF\n=OӍ8{OgQ?n@	vp[z17z\0ƀ\0ӥs\r4A<JFd,? ձ5^I5x/~vrSlyc9Ec|$qt[ZtzC}\r}c	EfpAՙ+z֔bdd]m݌ gڏN1dnNqTt`|\"@?ҽD jz5w\Z-T\\j	n<q99\"\'\'I+c˼n#M\nN;G6\0qѧj;1|w WYş=NWڴ;bMı98*Gɯ ,bc͌c* T\Z͙%ѯK/m],H w-{U;޷&xQ/_q/?^5i!70K5DęOn=yZU\r_W_^է6\0jC\"yOf9$g\\m/\ZX]oXɱw_hP?ld;<kĺW#^/`s@	\n\\{mNN+QV\\4yC\ZpO|(1U\'\'\'9^\0Rݫd#ʮs;cpPo!x`zxLS8gF3ZOڳJEjǄ4;;g%2s֣\0QoxFV`\rqulfӆF\0A׭xO◃?RkƔ/gWobzW\\\Z0I?x]kW\\qo#r\0Ltvf$ cz5\0i\nypq[6O+N֡&j>с\\u%Jkm~flS~sS_ͧ]$eȪV*ű\\Ǎ/35qc;CE}RMwRt<7m1	F$*~|cwE{j)U޲}PG+;{!O\0^#{AnǪAEyհ^=a񳥤G>镤B\0wtkko4J\nG<\0*O~{\rgQ6w\rH0HP(EaC	tF=5SX΂ܔ.$P8na	*yU=ǉb[}یgKbYAS؜0q+ͯenooҼ\ZCn?־ZwH2[zAӡpW\"\0߭|5`;`o;G?J𤹪%zJj0&%CgcXʷ#MJRhU*\rxW@\0M;WWz91J(bSSqLTV^mY[?\nkअ;G@grI/aD-#;$Hњj\r~}*$ב,\\<jܗDZF7gn9|f\'sOtGs[8x=)ϸ ְ*\ZW<U\Zgx/T&ay}\Zde21s3p:kK]N zմE4gLm2l~rD% pA5+b8wd*\n*?5f_\n[6\\*~xq~=\n\ZhIizB4R,FW,sׯxu\0!cP*d{(c[f;QX\0N㕙\n3pqYE4Q2pN<VJ=R-F9|og[\0jKHUU\\Tw͜wq:&\'\\dҺRˑۂpMg(d;|Qkqs\ndj=\0DbNrϋϭi x,Ȳ2g{y	h8߷:vu09 q\0\nHǚ.\'/Am][2$a8\\	kqc<A4OM,NF+zt$-$~PS]QyѢҹ&75캼ֺ\\2X_Y|ddg^OYyoLBWAʳ//ZҕL⾝?NI<b냊IS/ܙ\\?\0\'τU*0^hFqOJ[2p{R0ߎƩnhےx5:Jkor]ǁ`J\0>$6k-+uچ2~g\0[c\"l\'N5i	ʛYncAsfqHxq$cQoyݚ)]#3nk\nSSF<laZRx\rKylݜ*?|F]Zu*a!sV\'9+Kmb$nXQO/B\\j*\"lپኡ51<sDi*G\\qd8\\dܼ{v9^6/艭I>ǌqOtQS>zR8jX{:Ѻ>uKq5΅C۟_N\0E%pxW	&4l5!$d+S?;׵W1	(_/wR1\"O½Z>b|1UK_~Ėmlu+I\0>ED^%<ZE)d\"L;sᏆ9!~`r\Z949dhG*\08\08~Ub8/B\0q',1111127700,1142582400,1111128337,'','When I first started this, oh all of a few hours ago, I did not know what to do. I mean, you most likely have gathered that... but still.\r\n\r\nSo a bit about myself:\r\n\r\nName: Christine\r\nNicknames: Shorty, FunSize, Chris4short (you seeing a pattern?)\r\nHobbies: Writing, listening to music, reading, poking around on the web reading new fics, researching for my fics, or learning some more useless knowledge (tm).\r\n\r\nYa I know I gave up a lot! Hehe. I also like to cross-stitch, sew meaningless peices of fabric together and make pants, and just lounge with my dogs sleeping about me. \r\n\r\nDon\'t think of a minute I don\'t work! I have a job, a meaningless, senceless job... it pays the bills! I also am trying to have a life OUTSIDE all this... so far my expariment is working... out > in! \r\n\r\nFriends? Ya I have a few laying around the US. One in CT, AK... AZ, NY... umm and where ever you are from!!\r\n\r\nOk, so I\'m boring you... I am quite tuckered myself, so I shall leave you with a sigh and a longing look toward my bed... *waves at bed*\r\n\r\n- Christine\r\n\r\n\r\n###','4e6f5c9352eae7abea9fa2e7132f4ab7','admin',230,0,0,'Article','7.00','n');
/*!40000 ALTER TABLE `tiki_articles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_banners`
--

DROP TABLE IF EXISTS `tiki_banners`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_banners` (
  `bannerId` int(12) NOT NULL auto_increment,
  `client` varchar(200) NOT NULL default '',
  `url` varchar(255) default NULL,
  `title` varchar(255) default NULL,
  `alt` varchar(250) default NULL,
  `which` varchar(50) default NULL,
  `imageData` longblob,
  `imageType` varchar(200) default NULL,
  `imageName` varchar(100) default NULL,
  `HTMLData` text,
  `fixedURLData` varchar(255) default NULL,
  `textData` text,
  `fromDate` int(14) default NULL,
  `toDate` int(14) default NULL,
  `useDates` char(1) default NULL,
  `mon` char(1) default NULL,
  `tue` char(1) default NULL,
  `wed` char(1) default NULL,
  `thu` char(1) default NULL,
  `fri` char(1) default NULL,
  `sat` char(1) default NULL,
  `sun` char(1) default NULL,
  `hourFrom` varchar(4) default NULL,
  `hourTo` varchar(4) default NULL,
  `created` int(14) default NULL,
  `maxImpressions` int(8) default NULL,
  `impressions` int(8) default NULL,
  `clicks` int(8) default NULL,
  `zone` varchar(40) default NULL,
  PRIMARY KEY  (`bannerId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_banners`
--

LOCK TABLES `tiki_banners` WRITE;
/*!40000 ALTER TABLE `tiki_banners` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_banning`
--

DROP TABLE IF EXISTS `tiki_banning`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_banning` (
  `banId` int(12) NOT NULL auto_increment,
  `mode` enum('user','ip') default NULL,
  `title` varchar(200) default NULL,
  `ip1` char(3) default NULL,
  `ip2` char(3) default NULL,
  `ip3` char(3) default NULL,
  `ip4` char(3) default NULL,
  `user` varchar(200) default NULL,
  `date_from` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `date_to` timestamp NOT NULL default '0000-00-00 00:00:00',
  `use_dates` char(1) default NULL,
  `created` int(14) default NULL,
  `message` text,
  PRIMARY KEY  (`banId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_banning`
--

LOCK TABLES `tiki_banning` WRITE;
/*!40000 ALTER TABLE `tiki_banning` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_banning` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_banning_sections`
--

DROP TABLE IF EXISTS `tiki_banning_sections`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_banning_sections` (
  `banId` int(12) NOT NULL default '0',
  `section` varchar(100) NOT NULL default '',
  PRIMARY KEY  (`banId`,`section`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_banning_sections`
--

LOCK TABLES `tiki_banning_sections` WRITE;
/*!40000 ALTER TABLE `tiki_banning_sections` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_banning_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_blog_activity`
--

DROP TABLE IF EXISTS `tiki_blog_activity`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blog_activity` (
  `blogId` int(8) NOT NULL default '0',
  `day` int(14) NOT NULL default '0',
  `posts` int(8) default NULL,
  PRIMARY KEY  (`blogId`,`day`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blog_activity`
--

LOCK TABLES `tiki_blog_activity` WRITE;
/*!40000 ALTER TABLE `tiki_blog_activity` DISABLE KEYS */;
INSERT INTO `tiki_blog_activity` VALUES (1,1111046400,1);
/*!40000 ALTER TABLE `tiki_blog_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_blog_posts`
--

DROP TABLE IF EXISTS `tiki_blog_posts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blog_posts` (
  `postId` int(8) NOT NULL auto_increment,
  `blogId` int(8) NOT NULL default '0',
  `data` text,
  `data_size` int(11) unsigned NOT NULL default '0',
  `created` int(14) default NULL,
  `user` varchar(200) default NULL,
  `trackbacks_to` text,
  `trackbacks_from` text,
  `title` varchar(80) default NULL,
  PRIMARY KEY  (`postId`),
  KEY `data` (`data`(255)),
  KEY `blogId` (`blogId`),
  KEY `created` (`created`),
  FULLTEXT KEY `ft` (`data`,`title`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blog_posts`
--

LOCK TABLES `tiki_blog_posts` WRITE;
/*!40000 ALTER TABLE `tiki_blog_posts` DISABLE KEYS */;
INSERT INTO `tiki_blog_posts` VALUES (1,1,'All I have to say is welcome. hehehe ok... so look (lurk too) around... if you want to make a suggestion... i guess i can listen (:rolleyes:) if i must...(:biggrin:)\r\n\r\nok... on with your life... in my bubble!!\r\n\r\n- Christine',0,1111127283,'admin','a:0:{}','a:0:{}','');
/*!40000 ALTER TABLE `tiki_blog_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_blog_posts_images`
--

DROP TABLE IF EXISTS `tiki_blog_posts_images`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blog_posts_images` (
  `imgId` int(14) NOT NULL auto_increment,
  `postId` int(14) NOT NULL default '0',
  `filename` varchar(80) default NULL,
  `filetype` varchar(80) default NULL,
  `filesize` int(14) default NULL,
  `data` longblob,
  PRIMARY KEY  (`imgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blog_posts_images`
--

LOCK TABLES `tiki_blog_posts_images` WRITE;
/*!40000 ALTER TABLE `tiki_blog_posts_images` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_blog_posts_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_blogs`
--

DROP TABLE IF EXISTS `tiki_blogs`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blogs` (
  `blogId` int(8) NOT NULL auto_increment,
  `created` int(14) default NULL,
  `lastModif` int(14) default NULL,
  `title` varchar(200) default NULL,
  `description` text,
  `user` varchar(200) default NULL,
  `public` char(1) default NULL,
  `posts` int(8) default NULL,
  `maxPosts` int(8) default NULL,
  `hits` int(8) default NULL,
  `activity` decimal(4,2) default NULL,
  `heading` text,
  `use_find` char(1) default NULL,
  `use_title` char(1) default NULL,
  `add_date` char(1) default NULL,
  `add_poster` char(1) default NULL,
  `allow_comments` char(1) default NULL,
  PRIMARY KEY  (`blogId`),
  KEY `title` (`title`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  FULLTEXT KEY `ft` (`title`,`description`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blogs`
--

LOCK TABLES `tiki_blogs` WRITE;
/*!40000 ALTER TABLE `tiki_blogs` DISABLE KEYS */;
INSERT INTO `tiki_blogs` VALUES (1,1111126259,1111127283,'We Are Open!','Come on... I had to start some where...','admin','n',1,10,115,'2.00','<div class=\"blogtitle\">{tr}Blog{/tr}: {$title}</div>\r\n<div class=\"bloginfo\">\r\n{tr}Created by{/tr} {$creator}{tr} on {/tr}{$created|tiki_short_datetime}<br />\r\n{tr}Last modified{/tr} {$lastModif|tiki_short_datetime}<br /><br />\r\n<table><tr><td>\r\n({$posts} {tr}posts{/tr} | {$hits} {tr}visits{/tr} | {tr}Activity={/tr}{$activity|string_format:\"%.2f\"})</td>\r\n<td style=\"text-align:right;\">\r\n{if $tiki_p_blog_post eq \"y\"}\r\n{if ($user and $creator eq $user) or $tiki_p_blog_admin eq \"y\" or $public eq \"y\"}\r\n<a class=\"bloglink\" href=\"tiki-blog_post.php?blogId={$blogId}\"><img src=\"img/icons/edit.gif\" border=\"0\" alt=\"{tr}Post{/tr}\" title=\"{tr}post{/tr}\" /></a>{/if}{/if}\r\n{if $rss_blog eq \"y\"}\r\n<a class=\"bloglink\" href=\"tiki-blog_rss.php?blogId={$blogId}\"><img src=\"img/icons/mode_desc.gif\" border=\"0\" alt=\"{tr}RSS feed{/tr}\" title=\"{tr}RSS feed{/tr}\" /></a>{/if}\r\n{if ($user and $creator eq $user) or $tiki_p_blog_admin eq \"y\"}\r\n<a class=\"bloglink\" href=\"tiki-edit_blog.php?blogId={$blogId}\"><img src=\"img/icons/config.gif\" border=\"0\" alt=\"{tr}Edit blog{/tr}\" title=\"{tr}Edit blog{/tr}\" /></a>{/if}\r\n{if $user and $feature_user_watches eq \"y\"}\r\n{if $user_watching_blog eq \"n\"}\r\n<a href=\"tiki-view_blog.php?blogId={$blogId}&amp;watch_event=blog_post&amp;watch_object={$blogId}&amp;watch_action=add\"><img border=\"0\" alt=\"{tr}monitor this blog{/tr}\" title=\"{tr}monitor this blog{/tr}\" src=\"img/icons/icon_watch.png\" /></a>\r\n{else}<a href=\"tiki-view_blog.php?blogId={$blogId}&amp;watch_event=blog_post&amp;watch_object={$blogId}&amp;watch_action=remove\"><img border=\"0\" alt=\"{tr}stop monitoring this blog{/tr}\" title=\"{tr}stop monitoring this blog{/tr}\" src=\"img/icons/icon_unwatch.png\" /></a>\r\n{/if}{/if}</td></tr></table></div>\r\n<div class=\"blogdesc\">{tr}Description:{/tr} {$description}</div>','y','y',NULL,NULL,'y');
/*!40000 ALTER TABLE `tiki_blogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_calendar_categories`
--

DROP TABLE IF EXISTS `tiki_calendar_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_categories` (
  `calcatId` int(11) NOT NULL auto_increment,
  `calendarId` int(14) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`calcatId`),
  UNIQUE KEY `catname` (`calendarId`,`name`(16))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_categories`
--

LOCK TABLES `tiki_calendar_categories` WRITE;
/*!40000 ALTER TABLE `tiki_calendar_categories` DISABLE KEYS */;
INSERT INTO `tiki_calendar_categories` VALUES (3,1,'not specified');
/*!40000 ALTER TABLE `tiki_calendar_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_calendar_items`
--

DROP TABLE IF EXISTS `tiki_calendar_items`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_items` (
  `calitemId` int(14) NOT NULL auto_increment,
  `calendarId` int(14) NOT NULL default '0',
  `start` int(14) NOT NULL default '0',
  `end` int(14) NOT NULL default '0',
  `locationId` int(14) default NULL,
  `categoryId` int(14) default NULL,
  `priority` enum('1','2','3','4','5','6','7','8','9') NOT NULL default '1',
  `status` enum('0','1','2') NOT NULL default '0',
  `url` varchar(255) default NULL,
  `lang` char(2) NOT NULL default 'en',
  `name` varchar(255) NOT NULL default '',
  `description` blob,
  `user` varchar(40) default NULL,
  `created` int(14) NOT NULL default '0',
  `lastmodif` int(14) NOT NULL default '0',
  PRIMARY KEY  (`calitemId`),
  KEY `calendarId` (`calendarId`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_items`
--

LOCK TABLES `tiki_calendar_items` WRITE;
/*!40000 ALTER TABLE `tiki_calendar_items` DISABLE KEYS */;
INSERT INTO `tiki_calendar_items` VALUES (1,1,1111631400,1111640400,3,3,'5','1','','en','Java Developers Meeting','Java Developers Meeting','dkernekins',1111363647,1111364657);
/*!40000 ALTER TABLE `tiki_calendar_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_calendar_locations`
--

DROP TABLE IF EXISTS `tiki_calendar_locations`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_locations` (
  `callocId` int(14) NOT NULL auto_increment,
  `calendarId` int(14) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `description` blob,
  PRIMARY KEY  (`callocId`),
  UNIQUE KEY `locname` (`calendarId`,`name`(16))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_locations`
--

LOCK TABLES `tiki_calendar_locations` WRITE;
/*!40000 ALTER TABLE `tiki_calendar_locations` DISABLE KEYS */;
INSERT INTO `tiki_calendar_locations` VALUES (3,1,'not specified',NULL);
/*!40000 ALTER TABLE `tiki_calendar_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_calendar_roles`
--

DROP TABLE IF EXISTS `tiki_calendar_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_roles` (
  `calitemId` int(14) NOT NULL default '0',
  `username` varchar(40) NOT NULL default '',
  `role` enum('0','1','2','3','6') NOT NULL default '0',
  PRIMARY KEY  (`calitemId`,`username`(16),`role`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_roles`
--

LOCK TABLES `tiki_calendar_roles` WRITE;
/*!40000 ALTER TABLE `tiki_calendar_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_calendar_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_calendars`
--

DROP TABLE IF EXISTS `tiki_calendars`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendars` (
  `calendarId` int(14) NOT NULL auto_increment,
  `name` varchar(80) NOT NULL default '',
  `description` varchar(255) default NULL,
  `user` varchar(40) NOT NULL default '',
  `customlocations` enum('n','y') NOT NULL default 'n',
  `customcategories` enum('n','y') NOT NULL default 'n',
  `customlanguages` enum('n','y') NOT NULL default 'n',
  `custompriorities` enum('n','y') NOT NULL default 'n',
  `customparticipants` enum('n','y') NOT NULL default 'n',
  `created` int(14) NOT NULL default '0',
  `lastmodif` int(14) NOT NULL default '0',
  PRIMARY KEY  (`calendarId`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendars`
--

LOCK TABLES `tiki_calendars` WRITE;
/*!40000 ALTER TABLE `tiki_calendars` DISABLE KEYS */;
INSERT INTO `tiki_calendars` VALUES (1,'Public','Public calendar','admin','n','n','n','n','n',0,0);
/*!40000 ALTER TABLE `tiki_calendars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_categories`
--

DROP TABLE IF EXISTS `tiki_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_categories` (
  `categId` int(12) NOT NULL auto_increment,
  `name` varchar(100) default NULL,
  `description` varchar(250) default NULL,
  `parentId` int(12) default NULL,
  `hits` int(8) default NULL,
  PRIMARY KEY  (`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_categories`
--

LOCK TABLES `tiki_categories` WRITE;
/*!40000 ALTER TABLE `tiki_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_categorized_objects`
--

DROP TABLE IF EXISTS `tiki_categorized_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_categorized_objects` (
  `catObjectId` int(12) NOT NULL auto_increment,
  `type` varchar(50) default NULL,
  `objId` varchar(255) default NULL,
  `description` text,
  `created` int(14) default NULL,
  `name` varchar(200) default NULL,
  `href` varchar(200) default NULL,
  `hits` int(8) default NULL,
  PRIMARY KEY  (`catObjectId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_categorized_objects`
--

LOCK TABLES `tiki_categorized_objects` WRITE;
/*!40000 ALTER TABLE `tiki_categorized_objects` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_categorized_objects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_category_objects`
--

DROP TABLE IF EXISTS `tiki_category_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_category_objects` (
  `catObjectId` int(12) NOT NULL default '0',
  `categId` int(12) NOT NULL default '0',
  PRIMARY KEY  (`catObjectId`,`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_category_objects`
--

LOCK TABLES `tiki_category_objects` WRITE;
/*!40000 ALTER TABLE `tiki_category_objects` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_category_objects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_category_sites`
--

DROP TABLE IF EXISTS `tiki_category_sites`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_category_sites` (
  `categId` int(10) NOT NULL default '0',
  `siteId` int(14) NOT NULL default '0',
  PRIMARY KEY  (`categId`,`siteId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_category_sites`
--

LOCK TABLES `tiki_category_sites` WRITE;
/*!40000 ALTER TABLE `tiki_category_sites` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_category_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_chart_items`
--

DROP TABLE IF EXISTS `tiki_chart_items`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chart_items` (
  `itemId` int(14) NOT NULL auto_increment,
  `title` varchar(250) default NULL,
  `description` text,
  `chartId` int(14) NOT NULL default '0',
  `created` int(14) default NULL,
  `URL` varchar(250) default NULL,
  `votes` int(14) default NULL,
  `points` int(14) default NULL,
  `average` decimal(4,2) default NULL,
  PRIMARY KEY  (`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chart_items`
--

LOCK TABLES `tiki_chart_items` WRITE;
/*!40000 ALTER TABLE `tiki_chart_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_chart_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_charts`
--

DROP TABLE IF EXISTS `tiki_charts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_charts` (
  `chartId` int(14) NOT NULL auto_increment,
  `title` varchar(250) default NULL,
  `description` text,
  `hits` int(14) default NULL,
  `singleItemVotes` char(1) default NULL,
  `singleChartVotes` char(1) default NULL,
  `suggestions` char(1) default NULL,
  `autoValidate` char(1) default NULL,
  `topN` int(6) default NULL,
  `maxVoteValue` int(4) default NULL,
  `frequency` int(14) default NULL,
  `showAverage` char(1) default NULL,
  `isActive` char(1) default NULL,
  `showVotes` char(1) default NULL,
  `useCookies` char(1) default NULL,
  `lastChart` int(14) default NULL,
  `voteAgainAfter` int(14) default NULL,
  `created` int(14) default NULL,
  PRIMARY KEY  (`chartId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_charts`
--

LOCK TABLES `tiki_charts` WRITE;
/*!40000 ALTER TABLE `tiki_charts` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_charts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_charts_rankings`
--

DROP TABLE IF EXISTS `tiki_charts_rankings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_charts_rankings` (
  `chartId` int(14) NOT NULL default '0',
  `itemId` int(14) NOT NULL default '0',
  `position` int(14) NOT NULL default '0',
  `timestamp` int(14) NOT NULL default '0',
  `lastPosition` int(14) NOT NULL default '0',
  `period` int(14) NOT NULL default '0',
  `rvotes` int(14) NOT NULL default '0',
  `raverage` decimal(4,2) NOT NULL default '0.00',
  PRIMARY KEY  (`chartId`,`itemId`,`period`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_charts_rankings`
--

LOCK TABLES `tiki_charts_rankings` WRITE;
/*!40000 ALTER TABLE `tiki_charts_rankings` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_charts_rankings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_charts_votes`
--

DROP TABLE IF EXISTS `tiki_charts_votes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_charts_votes` (
  `user` varchar(200) NOT NULL default '',
  `itemId` int(14) NOT NULL default '0',
  `timestamp` int(14) default NULL,
  `chartId` int(14) default NULL,
  PRIMARY KEY  (`user`,`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_charts_votes`
--

LOCK TABLES `tiki_charts_votes` WRITE;
/*!40000 ALTER TABLE `tiki_charts_votes` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_charts_votes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_chat_channels`
--

DROP TABLE IF EXISTS `tiki_chat_channels`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chat_channels` (
  `channelId` int(8) NOT NULL auto_increment,
  `name` varchar(30) default NULL,
  `description` varchar(250) default NULL,
  `max_users` int(8) default NULL,
  `mode` char(1) default NULL,
  `moderator` varchar(200) default NULL,
  `active` char(1) default NULL,
  `refresh` int(6) default NULL,
  PRIMARY KEY  (`channelId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chat_channels`
--

LOCK TABLES `tiki_chat_channels` WRITE;
/*!40000 ALTER TABLE `tiki_chat_channels` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_chat_channels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_chat_messages`
--

DROP TABLE IF EXISTS `tiki_chat_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chat_messages` (
  `messageId` int(8) NOT NULL auto_increment,
  `channelId` int(8) NOT NULL default '0',
  `data` varchar(255) default NULL,
  `poster` varchar(200) NOT NULL default 'anonymous',
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`messageId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chat_messages`
--

LOCK TABLES `tiki_chat_messages` WRITE;
/*!40000 ALTER TABLE `tiki_chat_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_chat_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_chat_users`
--

DROP TABLE IF EXISTS `tiki_chat_users`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chat_users` (
  `nickname` varchar(200) NOT NULL default '',
  `channelId` int(8) NOT NULL default '0',
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`nickname`,`channelId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chat_users`
--

LOCK TABLES `tiki_chat_users` WRITE;
/*!40000 ALTER TABLE `tiki_chat_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_chat_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_comments`
--

DROP TABLE IF EXISTS `tiki_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_comments` (
  `threadId` int(14) NOT NULL auto_increment,
  `object` varchar(255) NOT NULL default '',
  `objectType` varchar(32) NOT NULL default '',
  `parentId` int(14) default NULL,
  `userName` varchar(200) default NULL,
  `commentDate` int(14) default NULL,
  `hits` int(8) default NULL,
  `type` char(1) default NULL,
  `points` decimal(8,2) default NULL,
  `votes` int(8) default NULL,
  `average` decimal(8,4) default NULL,
  `title` varchar(100) default NULL,
  `data` text,
  `hash` varchar(32) default NULL,
  `user_ip` varchar(15) default NULL,
  `summary` varchar(240) default NULL,
  `smiley` varchar(80) default NULL,
  `message_id` varchar(250) default NULL,
  `in_reply_to` varchar(250) default NULL,
  `comment_rating` tinyint(2) default NULL,
  PRIMARY KEY  (`threadId`),
  KEY `title` (`title`),
  KEY `data` (`data`(255)),
  KEY `object` (`object`),
  KEY `hits` (`hits`),
  KEY `tc_pi` (`parentId`),
  FULLTEXT KEY `ft` (`title`,`data`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_comments`
--

LOCK TABLES `tiki_comments` WRITE;
/*!40000 ALTER TABLE `tiki_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_content`
--

DROP TABLE IF EXISTS `tiki_content`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_content` (
  `contentId` int(8) NOT NULL auto_increment,
  `description` text,
  PRIMARY KEY  (`contentId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_content`
--

LOCK TABLES `tiki_content` WRITE;
/*!40000 ALTER TABLE `tiki_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_content_templates`
--

DROP TABLE IF EXISTS `tiki_content_templates`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_content_templates` (
  `templateId` int(10) NOT NULL auto_increment,
  `content` longblob,
  `name` varchar(200) default NULL,
  `created` int(14) default NULL,
  PRIMARY KEY  (`templateId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_content_templates`
--

LOCK TABLES `tiki_content_templates` WRITE;
/*!40000 ALTER TABLE `tiki_content_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_content_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_content_templates_sections`
--

DROP TABLE IF EXISTS `tiki_content_templates_sections`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_content_templates_sections` (
  `templateId` int(10) NOT NULL default '0',
  `section` varchar(250) NOT NULL default '',
  PRIMARY KEY  (`templateId`,`section`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_content_templates_sections`
--

LOCK TABLES `tiki_content_templates_sections` WRITE;
/*!40000 ALTER TABLE `tiki_content_templates_sections` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_content_templates_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_cookies`
--

DROP TABLE IF EXISTS `tiki_cookies`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_cookies` (
  `cookieId` int(10) NOT NULL auto_increment,
  `cookie` varchar(255) default NULL,
  PRIMARY KEY  (`cookieId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_cookies`
--

LOCK TABLES `tiki_cookies` WRITE;
/*!40000 ALTER TABLE `tiki_cookies` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_cookies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_copyrights`
--

DROP TABLE IF EXISTS `tiki_copyrights`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_copyrights` (
  `copyrightId` int(12) NOT NULL auto_increment,
  `page` varchar(200) default NULL,
  `title` varchar(200) default NULL,
  `year` int(11) default NULL,
  `authors` varchar(200) default NULL,
  `copyright_order` int(11) default NULL,
  `userName` varchar(200) default NULL,
  PRIMARY KEY  (`copyrightId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_copyrights`
--

LOCK TABLES `tiki_copyrights` WRITE;
/*!40000 ALTER TABLE `tiki_copyrights` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_copyrights` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_directory_categories`
--

DROP TABLE IF EXISTS `tiki_directory_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_directory_categories` (
  `categId` int(10) NOT NULL auto_increment,
  `parent` int(10) default NULL,
  `name` varchar(240) default NULL,
  `description` text,
  `childrenType` char(1) default NULL,
  `sites` int(10) default NULL,
  `viewableChildren` int(4) default NULL,
  `allowSites` char(1) default NULL,
  `showCount` char(1) default NULL,
  `editorGroup` varchar(200) default NULL,
  `hits` int(12) default NULL,
  PRIMARY KEY  (`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_directory_categories`
--

LOCK TABLES `tiki_directory_categories` WRITE;
/*!40000 ALTER TABLE `tiki_directory_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_directory_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_directory_search`
--

DROP TABLE IF EXISTS `tiki_directory_search`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_directory_search` (
  `term` varchar(250) NOT NULL default '',
  `hits` int(14) default NULL,
  PRIMARY KEY  (`term`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_directory_search`
--

LOCK TABLES `tiki_directory_search` WRITE;
/*!40000 ALTER TABLE `tiki_directory_search` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_directory_search` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_directory_sites`
--

DROP TABLE IF EXISTS `tiki_directory_sites`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_directory_sites` (
  `siteId` int(14) NOT NULL auto_increment,
  `name` varchar(240) default NULL,
  `description` text,
  `url` varchar(255) default NULL,
  `country` varchar(255) default NULL,
  `hits` int(12) default NULL,
  `isValid` char(1) default NULL,
  `created` int(14) default NULL,
  `lastModif` int(14) default NULL,
  `cache` longblob,
  `cache_timestamp` int(14) default NULL,
  PRIMARY KEY  (`siteId`),
  FULLTEXT KEY `ft` (`name`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_directory_sites`
--

LOCK TABLES `tiki_directory_sites` WRITE;
/*!40000 ALTER TABLE `tiki_directory_sites` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_directory_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_drawings`
--

DROP TABLE IF EXISTS `tiki_drawings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_drawings` (
  `drawId` int(12) NOT NULL auto_increment,
  `version` int(8) default NULL,
  `name` varchar(250) default NULL,
  `filename_draw` varchar(250) default NULL,
  `filename_pad` varchar(250) default NULL,
  `timestamp` int(14) default NULL,
  `user` varchar(200) default NULL,
  PRIMARY KEY  (`drawId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_drawings`
--

LOCK TABLES `tiki_drawings` WRITE;
/*!40000 ALTER TABLE `tiki_drawings` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_drawings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_dsn`
--

DROP TABLE IF EXISTS `tiki_dsn`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_dsn` (
  `dsnId` int(12) NOT NULL auto_increment,
  `name` varchar(200) NOT NULL default '',
  `dsn` varchar(255) default NULL,
  PRIMARY KEY  (`dsnId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_dsn`
--

LOCK TABLES `tiki_dsn` WRITE;
/*!40000 ALTER TABLE `tiki_dsn` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_dsn` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_dynamic_variables`
--

DROP TABLE IF EXISTS `tiki_dynamic_variables`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_dynamic_variables` (
  `name` varchar(40) NOT NULL default '',
  `data` text,
  PRIMARY KEY  (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_dynamic_variables`
--

LOCK TABLES `tiki_dynamic_variables` WRITE;
/*!40000 ALTER TABLE `tiki_dynamic_variables` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_dynamic_variables` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_eph`
--

DROP TABLE IF EXISTS `tiki_eph`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_eph` (
  `ephId` int(12) NOT NULL auto_increment,
  `title` varchar(250) default NULL,
  `isFile` char(1) default NULL,
  `filename` varchar(250) default NULL,
  `filetype` varchar(250) default NULL,
  `filesize` varchar(250) default NULL,
  `data` longblob,
  `textdata` longblob,
  `publish` int(14) default NULL,
  `hits` int(10) default NULL,
  PRIMARY KEY  (`ephId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_eph`
--

LOCK TABLES `tiki_eph` WRITE;
/*!40000 ALTER TABLE `tiki_eph` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_eph` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_extwiki`
--

DROP TABLE IF EXISTS `tiki_extwiki`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_extwiki` (
  `extwikiId` int(12) NOT NULL auto_increment,
  `name` varchar(200) NOT NULL default '',
  `extwiki` varchar(255) default NULL,
  PRIMARY KEY  (`extwikiId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_extwiki`
--

LOCK TABLES `tiki_extwiki` WRITE;
/*!40000 ALTER TABLE `tiki_extwiki` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_extwiki` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_faq_questions`
--

DROP TABLE IF EXISTS `tiki_faq_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_faq_questions` (
  `questionId` int(10) NOT NULL auto_increment,
  `faqId` int(10) default NULL,
  `position` int(4) default NULL,
  `question` text,
  `answer` text,
  PRIMARY KEY  (`questionId`),
  KEY `faqId` (`faqId`),
  KEY `question` (`question`(255)),
  KEY `answer` (`answer`(255)),
  FULLTEXT KEY `ft` (`question`,`answer`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_faq_questions`
--

LOCK TABLES `tiki_faq_questions` WRITE;
/*!40000 ALTER TABLE `tiki_faq_questions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_faq_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_faqs`
--

DROP TABLE IF EXISTS `tiki_faqs`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_faqs` (
  `faqId` int(10) NOT NULL auto_increment,
  `title` varchar(200) default NULL,
  `description` text,
  `created` int(14) default NULL,
  `questions` int(5) default NULL,
  `hits` int(8) default NULL,
  `canSuggest` char(1) default NULL,
  PRIMARY KEY  (`faqId`),
  KEY `title` (`title`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  FULLTEXT KEY `ft` (`title`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_faqs`
--

LOCK TABLES `tiki_faqs` WRITE;
/*!40000 ALTER TABLE `tiki_faqs` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_faqs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_featured_links`
--

DROP TABLE IF EXISTS `tiki_featured_links`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_featured_links` (
  `url` varchar(200) NOT NULL default '',
  `title` varchar(200) default NULL,
  `description` text,
  `hits` int(8) default NULL,
  `position` int(6) default NULL,
  `type` char(1) default NULL,
  PRIMARY KEY  (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_featured_links`
--

LOCK TABLES `tiki_featured_links` WRITE;
/*!40000 ALTER TABLE `tiki_featured_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_featured_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_file_galleries`
--

DROP TABLE IF EXISTS `tiki_file_galleries`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_file_galleries` (
  `galleryId` int(14) NOT NULL auto_increment,
  `name` varchar(80) NOT NULL default '',
  `description` text,
  `created` int(14) default NULL,
  `visible` char(1) default NULL,
  `lastModif` int(14) default NULL,
  `user` varchar(200) default NULL,
  `hits` int(14) default NULL,
  `votes` int(8) default NULL,
  `points` decimal(8,2) default NULL,
  `maxRows` int(10) default NULL,
  `public` char(1) default NULL,
  `show_id` char(1) default NULL,
  `show_icon` char(1) default NULL,
  `show_name` char(1) default NULL,
  `show_size` char(1) default NULL,
  `show_description` char(1) default NULL,
  `max_desc` int(8) default NULL,
  `show_created` char(1) default NULL,
  `show_dl` char(1) default NULL,
  PRIMARY KEY  (`galleryId`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_file_galleries`
--

LOCK TABLES `tiki_file_galleries` WRITE;
/*!40000 ALTER TABLE `tiki_file_galleries` DISABLE KEYS */;
INSERT INTO `tiki_file_galleries` VALUES (1,'A Powerful Bond','A short fic on the bond of two people in the Stargate Universe as told by anothers view...',1111124553,'y',1111124807,'admin',266,NULL,NULL,10,'n','y','y','n',NULL,'y',1024,'y','n'),(2,'Work in Progress','A story or two that is still being worked on... patience is golden... sometimes!',1111124905,'y',1111124954,'admin',335,NULL,NULL,10,'n','y','y','a',NULL,'y',1024,'y','y');
/*!40000 ALTER TABLE `tiki_file_galleries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_files`
--

DROP TABLE IF EXISTS `tiki_files`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_files` (
  `fileId` int(14) NOT NULL auto_increment,
  `galleryId` int(14) NOT NULL default '0',
  `name` varchar(200) NOT NULL default '',
  `description` text,
  `created` int(14) default NULL,
  `filename` varchar(80) default NULL,
  `filesize` int(14) default NULL,
  `filetype` varchar(250) default NULL,
  `data` longblob,
  `user` varchar(200) default NULL,
  `downloads` int(14) default NULL,
  `votes` int(8) default NULL,
  `points` decimal(8,2) default NULL,
  `path` varchar(255) default NULL,
  `reference_url` varchar(250) default NULL,
  `is_reference` char(1) default NULL,
  `hash` varchar(32) default NULL,
  PRIMARY KEY  (`fileId`),
  KEY `name` (`name`),
  KEY `description` (`description`(255)),
  KEY `downloads` (`downloads`),
  FULLTEXT KEY `ft` (`name`,`description`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_files`
--

LOCK TABLES `tiki_files` WRITE;
/*!40000 ALTER TABLE `tiki_files` DISABLE KEYS */;
INSERT INTO `tiki_files` VALUES (1,1,'A Powerful Bond','Two characters from SG-1 are looked at by anther member of the team...',1111124807,'APowerfulBond.doc',29696,'application/msword','ࡱ\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\05\0\0\0\0\0\0\0\0\0\07\0\0\0\0\0\0\0\0\0\04\0\0\0\0? 	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0jbjb\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\06\0\0}\0\0}\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0\0\0p\0\0\0\0\0\0p\0\0\0\0\0\0p\0\0\0\0\0\0p\0\0\0\0\0\0p\0\0\0\0\0\0p\0\0,\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0&\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0\0\0\0&\0\0H\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(]\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\0\0\0\0\0\0C\0\0\0\0\0\0&\0\0\0\0\0\0C\0\0\0\0\0\0n\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\03/11/05\r\rJack turned the corner and stopped before the door to Carters lab. Glancing quickly up and down the corridor, making sure nobody was coming or leaving the section, he leaned into the doorframe.\r\rHe did not knock, he did not clear his throat, or make any noise; for the first time in months he was quiet, wanting to take in the moment.\r\rHer short blonde hair no longer fell into her face, but her fingers would subconsciously brush invisible strands behind her ear. Delicately they would linger there, as she once more lost contact with the world beyond the chips and tablet before her. Once more moving, she used them to trace the surface of what captivated her interest.\r\rShe leaned further upon her elbows, as if being closer to the objects would somehow give her answers. Long arms wrapped around her middle as she slowly straightened; sparks of intrigue lighting her eyes.\r\rEyes of blue. The deepest blue Jack had seen, and had the honor, pleasure of falling into. Intelligence ran through them, making him aware how quickly she thought.\r\rNow a small smile came upon her lips, the same lips he kissed when he was lost in the time loop, the lips he longed to kiss once again. A small amount of laughter floated out of her, making Jack pause as he shifted silently. It was infectious, genuine laughter. Conveying more then finding an illusive answer, more then finally being able to laugh at how simple it was.\r\rMoving back to the table and stool, she sat before the objects. Her movements were fluid and graceful, making Jack once more aware that she was a woman who had natural grace. He now let the smile widen as she began to talk rapidly.\r\rJacks features did not fall when her heard an equally familiar voice answer. Rather he continued to watch her. The way she excitedly and passionately rambled about  what ever she was talking about.\r\rThey all, large and small, were reasons why he felt stronger for Samantha, Sam, Carter, then he should. Each was different, a parallel of himself. To be so different yet so similar was what sparked the attraction. Of course it helped she was good looking. Even if she was a scientist. He had learned to put his dislike for scientists aside as he watched Carter perform higher then his expectations, which were skyrocketingly high.\r\rBut as she continued her conversation on the latest discovery, Jack found his heart began to slow. It was not the fact he truly did not know what she was talking about, rather it was whom she was talking to.  Her companion also excitedly responded to her every word and thought.\r\rThey interacted as if they read each others thoughts, stumbling over finding the words for their mutual thoughts. Leaping over the mental hurdles, they both gathered speed, leaving words for pens and wild gestures.\r\rHer reaction to his interest made Jack consider his options. He could 1) walk into the office like intended, or 2) leave and try again later. But his feet would not budge, his hands glued to the insides of his pockets. His heart and head exploded as they each processed the scene before him, wishing for some other logic.\r\rBut none came; and he stood still as he began to understand. Besides them being in danger of court martial, never being able to satisfy her intellectually and not understanding her excitement in scientific things, he know a life with her was possible.\r\rIn other realities. In other worlds. But not this one, no matter how hard he wished and dreamed. They where night and day, compliments and opposites. Poles and magnets. The same and different.\r\rNow the other voice came into view, standing beside Sam, also passionate about  Jack did not care what. He racked his hand through his brown hair as he hunched closer to her, peering at what she wrote.\r\rAnd Jacks heart and mind knew. Finally crashing into reality. As they stood now, side-by-side, proud of their mutual contributions of there collaborated efforts. And as he turned to leave, Jack finally let a genuine smile grace his lips.\r\rYes they were done, him and Sam  it was a dream they both played with and to  but there was something else that was always there. The steadfast, stubborn ad powerful bond of Sam and Daniel.\r\rAnd Jack whistled as the elevators closed, content to let them be.\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0X\0\0Y\0\0\0\0\0\0v	\0\0w	\0\0\n\0\0\n\0\0\0\0\0\0w\0\0x\0\0@\r\0\0A\r\0\0\0\0\0\0\0\0	\0\0\0\0\0\0$\0\0%\0\0!\0\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0X\0\0Y\0\0\0\0\0\0v	\0\0w	\0\0\n\0\0\n\0\0\0\0\0\0w\0\0x\0\0@\r\0\0A\r\0\0\0\0\0\0\0\0	\0\0\0\0\0\0$\0\0%\0\0!\0\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0\0a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\0\0\0\0\0\0\0\0\0\0`\0\0a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/ =!\"#$%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0i\0\0\0\0\0\04\0\0@\04\0\0\0\0N\0o\0r\0m\0a\0l\0\0\0\0\0\0\0CJ\0OJ\0PJ\0QJ\0mH	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<\0A@\0<\0\0\0\0D\0e\0f\0a\0u\0l\0t\0 \0P\0a\0r\0a\0g\0r\0a\0p\0h\0 \0F\0o\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\06\0\0\0\0\0\0 \0z\0\0 \0z\0\0\0\0\0	\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0D\0M\0a\0c\0 \0H\0D\0:\0p\0r\0i\0v\0a\0t\0e\0:\0t\0m\0p\0:\05\00\01\0:\0T\0e\0m\0p\0o\0r\0a\0r\0y\0I\0t\0e\0m\0s\0:\0A\0u\0t\0o\0R\0e\0c\0o\0v\0e\0r\0y\0 \0s\0a\0v\0e\0 \0o\0f\0 \0D\0o\0c\0u\0m\0e\0n\0t\04\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\01\0C\0H\0R\0I\0S\0T\0I\0N\0E\0:\0S\0t\0o\0r\0i\0e\0s\0:\0S\0t\0a\0r\0g\0a\0t\0e\0 \0S\0G\0-\01\0:\0A\0P\0o\0w\0e\0r\0f\0u\0l\0B\0o\0n\0d\0.\0d\0o\0c\0@\0\0\0\0\0\\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0@\0\0\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0 \0N\0e\0w\0 \0R\0o\0m\0a\0n\0\0\05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0S\0y\0m\0b\0o\0l\0\0\03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0r\0i\0a\0l\0\0\03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0\0\0 \0\0\0\0\0h\0\0\0\0fQf\0\0\0\0\0!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0r0\0\0\0\0d\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\03\0/\01\01\0/\00\05\0\0\0\0\0\0\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Oh\0+\'0\0\0\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\n\0\0\00\0\0\0\0\0<\0\0\r\0\0\0H\0\0\0\0\0T\0\0\0\0\0\\\0\0\0\0\0d\0\0\0\0\0l\0\0\0\0\0\'\0\0\0\0\0\0\0\03/11/05\0\0\0\0\0\0\0\0/11\0\0\0\0\0\0Christine Kern-Ekins\0 \09\0\0\0\0\0\0\0hri\0\0\0\0\0\0Normal\0n\0\0\0\0\0\0Christine Kern-Ekins\0 \09\0\0\0\0\0\01\0ri\0\0\0\0\0\0Microsoft Word 9.0\0s@\0\0\0\0,\0\0\0@\0\0\0\0)@\0\0\0\0~\n%)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0՜.\0+,0\0\0\0\0\0\0\0\0\0\0\0\0`\0\0\0\0\0\0h\0\0\0\0\0\0p\0\0\0\0\0\0x\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\03/11/05\0\0\0\0\0\0\0\0\0\0\0\0Title\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\n\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0!\0\0\0\"\0\0\0#\0\0\0%\0\0\0&\0\0\0\'\0\0\0(\0\0\0)\0\0\0*\0\0\0+\0\0\0-\0\0\0.\0\0\0/\0\0\00\0\0\01\0\0\02\0\0\03\0\0\06\0\0\0R\0o\0o\0t\0 \0E\0n\0t\0r\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0\0\0\0\0\0\0\0\0\0\0T3)8\0\0\0\0\0\0\0\0\0\01\0T\0a\0b\0l\0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0W\0o\0r\0d\0D\0o\0c\0u\0m\0e\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\06\0\0\0\0\0\0\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\0\0\0\0\0\0\0\0D\0o\0c\0u\0m\0e\0n\0t\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\0\0\0\0\0\0\0\0\0\0\0C\0o\0m\0p\0O\0b\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0X\0\0\0\0\0\0\0O\0b\0j\0e\0c\0t\0P\0o\0o\0l\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T3)\0T3)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0Microsoft Word Document\0NB6W\0\0\0Word.Document.8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','admin',73,NULL,NULL,'',NULL,NULL,'27470a647203b914cce62de504141bb9'),(2,2,'','',1111124954,'Aphradis1.doc',30208,'application/msword','ࡱ\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\06\0\0\0\0\0\0\0\0\0\08\0\0\0\0\0\0\0\0\0\05\0\0\0\0q`	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\"\0\0\0bjbjqPqP\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0*.\0\0:\0:\0&\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\0\0h\0\0U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0f\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0v\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0.\0\0\"\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0	\0\0\0\0\0\0	\0\0	\0\0\0\0\0\0\0\0	\0\0\0\0\0\0	\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\04\0\0\0\0\0\"\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Mount of Fealty\rBy Christine\r--\r\rQuick background:\r\r*Planet: P2X-2698; Hied people (Neither is Stargate Canon Its my world deal.)\r*Set in mid-season 4\r\r--\r{Sam}\r\rI like being in the military - usually. I also liked being one of the guys - usually. And I have learned in the four and a half years with SG-1s guys, that boys would be boys - always.\r\rBut as I sit silently between Colonel Jack ONeill and Dr. Daniel Jackson, I seriously doubt whether my job, the things I have done to get here, was worth all this. This being what I was witnessing. No matter what the people called it - Daniel had translated it into some beautifully named ceremony - it was a drinking contest. An all out, brutally tipsy, get smashed-like-there-is-no-tomorrow, drinking binge. \r\rAnd the two human males were watching intensely. Jack, Im sure, thinking about grabbing the nearest pitcher, tub  - hell, it was huge and filled with liquor. Daniel is trying to convince me that it was a ceremony (For what? Um, I guess in celebration. I mean we did trigger the rain storm  in their eyes at least.) and not watch the half-clad woman walk around the fire, casting glances at us.\r\rTealc was in a quiet debate on whether the tribe was indeed off shoots of the Tauri and if their god was a Gouald. He seems to enjoy himself just learning the history of the people on P2X-2698. Something I find strange; that was usually Daniels gig.\r\rAdmittedly I want to join in the fest, but both Daniel and Jack were the only ones being offered (and turning down, with less and less fervor) the drinks. I find myself frowning and wondered why Im not allowed to drink; the other women in the tribe were hitting the water pitchers like they had never tasted liquid.\r\rStop scowling.\r\rIm not scowling, Sir. Just thinking. Turning to face ONeill, I only find his attention was firmly locked on the dancing girls. She was swaying beside one of the men who escorted us to the village from the Stargate.\r\rWell stop. Youre scaring the natives.\r\rDaniel gave a short laugh, and I quickly turn to look at him. One of the scantily clad women, (Must be the dress code, I think.) was holding a feather to his neck, stroking him in long, delicate strokes. The woman must have sensed my penetrating gaze, because she looked up and stared at me for a moment, feather suspended in mid-stroke.\r\rI could see that the womans expression changed from one of enjoyment, to confused, then insight. After insight, a look of pained worry, almost fear, crossed into her eyes. I watched this, and quickly looked away. \r\rGeez the Colonel was right, I am scaring the natives!  \r\rI try giving a weak smile to the woman, who was now sitting facing Daniel, and told ONeill I was leaving.\r\rWhere? He asked, not really concentrating on me. Men!\r\rFor a walk. I reply.\r\rHmm, umm ok dont go far that tickles!\r\rI roll my eyes and get up and move away from them. Tealc sees my movements and gives one of his questioning eyebrow lifts, and I simply nod in the direction I will be taking.\r\rAs the villagers continue to move past me in the direction of the free drinks and dancing, I loosen my vest and let out a small sigh. It is heard to be the only girl in a male team, be the one who would be the eye candy, the one the guys wanted to protect. Not that it was all bad. ONeill is the mother hen of us all and would be the first to lay down his life, or haul us out of a situation. Tealc is the strong, stoic warrior, always looking out for out safety. And Daniel he has grown into the man who has faced so much and has been shaped. He is the one to question the orders ONeill and I have to take, and he is the one I can always get a good cup off coffee with.\r\rMoving deeper into the forest that surrounds the village, I come upon a small stream.  Taking my vest off, I ease down on to another log, and listen as the laughter of the party floats to me and mingles with the sound of the flowing water.\r\rI guess I drifted off into my own world  I rarely can do that any more  since Tealcs hand startled me.\r\rI am sorry to disturb you MajorCarter. The others do not look so well, and I fear we may have to help them back to the SGC. Tealc said as we walked slowly back to the village.\r\rWhat happened? They decide the scantily clothed females were not enough? They loose the drinking contest? I smiled into the darkness as the images of what could have happened floated about.\r\rThey did indeed give into the drinking contest. However they have become more intoxicated then they had intended since they have started to dance along with the girls. Tealc once more raised his eyebrow, conveying what he thought of the whole matter.\r\rI put my vest back on as we once more came into sight of the dancers and drinking. Spotting ONeill and Daniel was easy  they were the only males who were fully clothed and participating in the dancing near the circle.\r\rYou join, the same woman who was stroking Daniel said, taking my hand and leading me near the fire.\r\rNo thanks, I think I will sit this one out, I said as I tried to pull away.\r\rShe grabbed my arm and practically drug me across the dirt floor to where ONeill and Daniel were moving to the beat of the drums and whistles. Satisfied that I would not try to run away, she left me standing there. I glanced back toward where Tealc was standing and saw confusion in his eyes also. However he was being let into something I did not know about since the tribal leader was once more talking to him.\r\rHi Sam, Daniel said. I turned to face him and watched him move.\r\rHi Daniel. Oh Gawd, not another under-the-influence-your-so-cute moves. I looked at ONeill and saw he too was glassy eyed and half staring at me as if I was the most fascinating thing he had seen in ages. Maybe we should leave, Sir.\r\rLeave? Have you tasted this stuff? He asked as he tipped the jar back and drank some more. This is the best moonshine I have ever had!\r\rRight. I once more suggest we should leave, and once more he tells me to calm down, have a sip. No, I dont think I will.\r\rFinally the beating and whistles stop, and so do the two swaying men. The scantily clad females once more surround us, and I have to watch as two inebriated men are staring. Please let me wake up! The same woman who led me into this wild dance, once more takes my arm and leads me away, gesturing to a woman with another jar full of the liquid. Once more, I dont want to play; yet she still is not letting up, so I go along.\r\rPeering into the cup the other lady gives me, I notice it is not pale pink like what the guys have been drinking, rather a pale green. They insist I drink. \r\rThe things I do.\r\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	hI@\05hI@\0\0\0\0\0\0\0\0 \0\0!\0\03\0\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0b	\0\0c	\0\0\0\0\0\0\0\0\0\0\r\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0?\0\0\0\0\0\0O\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\r\0\08\0\09\0\0\0\0\0\0\0\0\0\0~\0\0\0\0\0\0\0\0\0\0\0\0_\0\0`\0\0^\Z\0\0_\Z\0\0;\0\0<\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0\0P\0\0\0\0\0\0u!\0\0v!\0\0\"\0\0\"\0\0%\"\0\0&\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0/ =!\"#$%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0H\0\0@\0H\0\0\0\0\0\0\0\0\0\0\0N\0o\0r\0m\0a\0l\0\0\0\0\0\0 \0CJ\0OJ\0PJ\0QJ\0_HmH	sH	tH	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\0A\0\0D\0\0\0\0\0\0\0\0\0\0D\0e\0f\0a\0u\0l\0t\0 \0P\0a\0r\0a\0g\0r\0a\0p\0h\0 \0F\0o\0n\0t\0\0\0\0\0V\0i@\0V\0\0\0\0\0\0\0\0\0\0T\0a\0b\0l\0e\0 \0N\0o\0r\0m\0a\0l\0\0\0 \0:V\0\0\04\0\0\04\0\nl\0a\0\0\0\0\0\0(\0k@\0(\0\0\0\0\0\0\0\0\0\0\0N\0o\0 \0L\0i\0s\0t\0\0\0\0\0\0\0\0\0\0\0\0\0&\Z\0\0\0\0.\0\0\0\0\0\0\0 \0\0\0z\0\0\0\0\0\0 \0\0\0z\0\0\0\0\0 \0\0\0z\0\0\0\0\0\0\0\0\0\0\0_\0\0&\Z\0\0\0\0T\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0!\0\0\03\0\0\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0b\0\0c\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>	\0\0?	\0\0\n\0\0\n\0\0O\n\0\0P\n\0\0\n\0\0\n\0\0\n\0\0\n\0\0\0\0\r\0\08\0\09\0\0\0\0\0\0\0\0\0\0~\0\0\0\0\0\0\0\0\0\0\0\0_\0\0`\0\0^\0\0_\0\0;\0\0<\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0\0P\0\0\0\0\0\0u\0\0v\0\0\Z\0\0\Z\0\0%\Z\0\0(\Z\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0!\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0!\0\0\03\0\0\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0b\0\0c\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>	\0\0?	\0\0\n\0\0\n\0\0O\n\0\0P\n\0\0\n\0\0\n\0\0\n\0\0\n\0\0\0\0\r\0\08\0\09\0\0\0\0\0\0\0\0\0\0~\0\0\0\0\0\0\0\0\0\0\0\0_\0\0`\0\0^\0\0_\0\0;\0\0<\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0\0P\0\0\0\0\0\0u\0\0v\0\0\Z\0\0\Z\0\0%\Z\0\0(\Z\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\"\0\0\0\0\0\0\0\0>\0\0<\0\0&\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\"\0\0\0\0\0\0\0\0\0G\0\0\0L\0\0\0`\0\0\0h\0\0\0i\0\0\0o\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0l\0\0r\0\0t\r\0\0z\r\0\0\0\0\0\0\0\0\0\0i\0\0o\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0(\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0p\0\0v\0\0C\0\0F\0\0\0\0\0\0\n\0\0\n\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0P\0\0V\0\0\0\0\0\0(\Z\0\0\0:\0\0:\0\0:\0\0:\0\0:\0\0:\0\0:\0\0:\0\0:\0\0\0\0\0\0!\0\0\0k\0\0\0k\0\0\0%\Z\0\0(\Z\0\0\0\0\0\0\0\0\0\0\0i\0\0\0o\0\0\0(\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I@\0@\0k\0\0\0k\0\0\0W\0\0k\0\0\0\0\0\0\0k\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\Z\0\00\0\0\0@\0\0\0\0\0\0U\0n\0k\0n\0o\0w\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0G\0\0z\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0 \0N\0e\0w\0 \0R\0o\0m\0a\0n\0\0\05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0S\0y\0m\0b\0o\0l\0\0\03&\0\0z\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0r\0i\0a\0l\0\0\03\0\0z\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0\0\0 \0\0q\0\0\0h\0\0\0\03s&\0\0\0\0\0,\0\0\0\0\0?\0\0\0\r\0\0\0\0/\0\0\0\0\0?\0\0\0\r\0\0\0/\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\024\0\0\0\0d\0\0\0\0\0\0\Z\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0|\0\0\0\0\0`\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0HX\0\0\0\0(\0\0?\0\0\0\0I@\0\0\0\0\02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Q\0u\0i\0c\0k\0 \0b\0a\0c\0k\0g\0r\0o\0u\0n\0d\0:\0\0\0\0\0\0\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0M\0a\0r\0i\0a\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Oh\0+\'0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0 \0\0\n\0\0\0@\0\0\0\0\0L\0\0\r\0\0\0X\0\0\0\0\0d\0\0\0\0\0l\0\0\0\0\0t\0\0\0\0\0|\0\0\0\0\0\0\0\0\0\0\0\0\0Quick background:\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Christine Kern-Ekins\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Normal.dot\0\0\0\0\0\0\0\0Maria Kern-Ekins\0\0\0\0\0\0\0\0\0\03\0\0\0\0\0\0\0\0\0Microsoft Office Word\0\0\0@\0\0\0\0%\0\0\0@\0\0\0\0,q[\"@\0\0\0\0J(\0\0\0\0\0\0\0\0\0\0\0\0\0\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0՜.\0+,0\0\0\0\0\0\0\0\0\0\0\0h\0\0\0\0\0\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Kern-Ekins Family\0\0\0\0\0\0/\0\0\0\0\0\0\r\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Quick background:\0\0\0\0\0\0\0\0\0\0\0\0Title\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\n\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0!\0\0\0\"\0\0\0#\0\0\0$\0\0\0&\0\0\0\'\0\0\0(\0\0\0)\0\0\0*\0\0\0+\0\0\0,\0\0\0.\0\0\0/\0\0\00\0\0\01\0\0\02\0\0\03\0\0\04\0\0\07\0\0\0R\0o\0o\0t\0 \0E\0n\0t\0r\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0\0\0\0\0\0\0\0\0\0 ;(9\0\0\0\0\0\0\0\0\0\01\0T\0a\0b\0l\0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0W\0o\0r\0d\0D\0o\0c\0u\0m\0e\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*.\0\0\0\0\0\0\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\0\0\0\0\0\0\0\0\0D\0o\0c\0u\0m\0e\0n\0t\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0\0\0\0\0\0\0\0\0C\0o\0m\0p\0O\0b\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0q\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0Microsoft Office Word Document\0\n\0\0\0MSWordDoc\0\0\0\0Word.Document.8\09q\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','admin',60,NULL,NULL,'',NULL,NULL,'864ceabc626fe0f0a3f29e823f2f2331'),(3,2,'','',1111124954,'Aphradis2.doc',24576,'application/msword','ࡱ\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0+\0\0\0\0\0\0\0\0\0\0-\0\0\0\0\0\0\0\0\0\0*\0\0\0\0? 	\0\0\0\0\0\0\0\0\0\0\0\0N\0\0\0jbjb\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\"\0\0}\0\0}\0\0N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0R\0\0\0\0\0\0R\0\0\0\0\0\0R\0\0\0\0\0\0R\0\0\0\0\0\0R\0\0\0\0\0\0R\0\0,\0\0\0}\0\0 \0\0\0\0\0\0\0~\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0~\0\0\0\0\0\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0j\0\0\0\0\0\0j\0\0\0\0\0\0j\0\0\0\0\0\0\0\06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\0\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0j\0\0\0\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/Q\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0H\0\0\"\0\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\09\0\0\0\0\0\0j\0\0\0\0\0\09\0\0\0\0\0\0P\0\0\0\0\0\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0What does Teals think about this little  umm mission?\r\r--\r{Teal}\r\rOnce I retrieved MajorCarter, we were joined by more of the Hied people. They asked MajorCarter to join in their ceremonial circle, but it was clear she did not want to participate. I wanted to intervene, but Geb-ren, the tribal leader, had told me of this custom.\r\rFrom what I understood it was a thanksgiving celebration, not only for making the rains come down upon our arrival (I told him repeatedly we did not do this) and coming through the Chaapaai, but for extending our hand in friendship. They intern offered this fest in our honor.\r\rONeill did not want to partake in the feast, but Geb-ren was insistent that we stay and at least learn about each other. DanielJackson helped convince ONeill of this Im sure. The dancing soon began at sunset.\r\rI was not offered a place to sit among the dancers; I was aware of their distrust since I am a Jaffa, and not human like the rest, so I joined Geb-ren and others in a discussion of the celebration.\r\rThat is when I learned there was another reason for the dance. It was a time of court- shipping among the Hied, and the dance and drinks were meant to attract their desired mates. This was very unsettling, but they said that it was for those only seeking mates, those who did not wish to have their intentions of matting known, did not drink, and did not dance the dance of fealty*. I must ask DanielJackson what this means.\r\rUpon my arrival back to the Hied and Geb-ren, both DanielJackson and ONeill were dancing and drinking. I had seen them give in to those who offered the substance, and had ventured to learn the steps of the dance. I was not aware they had been so entreated; otherwise I would have gotten MajorCarter sooner.\r\rNow, MajorCarter looks worried, she has told ONeill they must leave, but he has not headed in her discussion, which I am sure is very wise. I step forward to assist MajorCarter walk ONeill and DanielJackson out of the circle when she herself is taken to another part of the party. I search for her as I grab DanielJackson, making sure he does not trip as I try to guide them away.\r\rMajorCarter is offered a cup, which the ladies surrounding her are insisting she drink. Smiling weakly, she takes the cup and looks as if she smells the contents. Once more I want to rush over and stop her, but ONeill distracts me.\r\rShe is lovely isnt she?\r\rTo whom are you referring, ONeill? I ask, not wanting to loose sight of MajorCarter. She had put the cup to her lips and takes a sip.\r\rTo Carter, of course! He mummers something else, but I do not hear, for MajorCarter is now being escorted toward the rest of us.\r\rGeez they are pushy, MajorCarter says. The ladies say we should leave before the glean. Whatever that is. Lets just get going, the Colonel and Daniel are not looking so hot.\r\rBut you are! Daniel says as he squints at her. I clap my hand over his mouth before anymore can come out.\r\rIndeed, I reply as ONeill starts to laugh uncontrollably. Indeed we must get them back, DoctorFraiser may have some ideas on what to do for them.\r\r--\r*fealty  trueness, truth\r\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<\0\0D\0\0N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\05\0\0\0\08\0\09\0\0<\0\0D\0\0E\0\0O\0\0P\0\0f\0\0g\0\0;	\0\0<	\0\0\n\0\0\n\0\0\0\0\0\0\0\0\0\0c\0\0d\0\0M\0\0N\0\0i\0\0j\0\0\0\0\0\0w\0\0x\0\0,\0\0-\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08\0\09\0\0<\0\0D\0\0E\0\0O\0\0P\0\0f\0\0g\0\0;	\0\0<	\0\0\n\0\0\n\0\0\0\0\0\0\0\0\0\0c\0\0d\0\0M\0\0N\0\0i\0\0j\0\0\0\0\0\0w\0\0x\0\0,\0\0-\0\0\0\0\0\0/\0\00\0\03\0\0M\0\0N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r$-\0\0\0\0\0\0/\0\00\0\03\0\0M\0\0N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/ =!\"#$%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0i\0\0\0\0\0\04\0\0@\04\0\0\0\0N\0o\0r\0m\0a\0l\0\0\0\0\0\0\0CJ\0OJ\0PJ\0QJ\0mH	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<\0A@\0<\0\0\0\0D\0e\0f\0a\0u\0l\0t\0 \0P\0a\0r\0a\0g\0r\0a\0p\0h\0 \0F\0o\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0N\0\0\0\0\"\0\0\0\0\0\0!\0z\0 \0z\0\0\0\0\0j	\0\0N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0N\0\0\r\0\0\0\0\0\0-\0\0N\0\0\0\0\0\0\0\0\0\0\0N\0\0\0\0\0\0\0\0\0V\0\0\0a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0m\0\0r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\'\0\0d\0\0o\0\0	\0\0	\0\0>\n\0\0I\n\0\0y\n\0\0}\n\0\0\n\0\0\n\0\0\0\0\0\0G\0\0L\0\0P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\03\0\0M\0\0P\0\0\0:\0\0\0\0\0\0\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0D\0M\0a\0c\0 \0H\0D\0:\0p\0r\0i\0v\0a\0t\0e\0:\0t\0m\0p\0:\05\00\01\0:\0T\0e\0m\0p\0o\0r\0a\0r\0y\0I\0t\0e\0m\0s\0:\0A\0u\0t\0o\0R\0e\0c\0o\0v\0e\0r\0y\0 \0s\0a\0v\0e\0 \0o\0f\0 \0D\0o\0c\0u\0m\0e\0n\0t\01\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\05\0M\0a\0c\0 \0H\0D\0:\0U\0s\0e\0r\0s\0:\0c\0h\0r\0i\0s\0t\0i\0n\0e\0k\0e\0r\0n\0e\0k\0i\0n\0s\0:\0D\0e\0s\0k\0t\0o\0p\0:\0A\0p\0h\0r\0a\0d\0i\0s\01\0.\0d\0o\0c\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\05\0M\0a\0c\0 \0H\0D\0:\0U\0s\0e\0r\0s\0:\0c\0h\0r\0i\0s\0t\0i\0n\0e\0k\0e\0r\0n\0e\0k\0i\0n\0s\0:\0D\0e\0s\0k\0t\0o\0p\0:\0A\0p\0h\0r\0a\0d\0i\0s\02\0.\0d\0o\0c\0@\0L\0\0L\0\0\0Z\0\0L\0\0\0\0\0\0:\0\0\0\0\0\01\0 \0\0\0\0\0\0\0\0N\0\0P\0\0\0@\0\0\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0 \0N\0e\0w\0 \0R\0o\0m\0a\0n\0\0\05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0S\0y\0m\0b\0o\0l\0\0\03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0r\0i\0a\0l\0\0\03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0\0\0 \0\01\0\0\0h\0\0\0\033\0\0\0\0\0\0\0\0\0\0\0H\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\0\0d\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Q\0u\0i\0c\0k\0 \0b\0a\0c\0k\0g\0r\0o\0u\0n\0d\0:\0\0\0\0\0\0\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Oh\0+\'0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0 \0\0\n\0\0\0<\0\0\0\0\0H\0\0\r\0\0\0T\0\0\0\0\0`\0\0\0\0\0h\0\0\0\0\0p\0\0\0\0\0x\0\0\0\0\0\'\0\0\0\0\0\0\0\0Quick background:\0\0d\0\0\0\0\0\0\0uic\0\0\0\0\0\0Christine Kern-Ekins\0 \09\0\0\0\0\0\0\0hri\0\0\0\0\0\0Normal\0n\0\0\0\0\0\0Christine Kern-Ekins\0 \09\0\0\0\0\0\02\0ri\0\0\0\0\0\0Microsoft Word 9.0\0s@\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\0z9\"@\0\0\0\0z9\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0H\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0՜.\0+,0\0\0\0\0\0\0\0\0\0\0\0\0`\0\0\0\0\0\0h\0\0\0\0\0\0p\0\0\0\0\0\0x\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Quick background:\0\0\0\0\0\0\0\0\0\0\0\0Title\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\n\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0!\0\0\0#\0\0\0$\0\0\0%\0\0\0&\0\0\0\'\0\0\0(\0\0\0)\0\0\0,\0\0\0R\0o\0o\0t\0 \0E\0n\0t\0r\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0\0\0\0\0\0\0\0\0\0qZ[\".\0\0\0\0\0\0\0\0\0\01\0T\0a\0b\0l\0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0W\0o\0r\0d\0D\0o\0c\0u\0m\0e\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\"\0\0\0\0\0\0\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0D\0o\0c\0u\0m\0e\0n\0t\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\"\0\0\0\0\0\0\0\0\0\0\0C\0o\0m\0p\0O\0b\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0X\0\0\0\0\0\0\0O\0b\0j\0e\0c\0t\0P\0o\0o\0l\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0qZ[\"qZ[\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0Microsoft Word Document\0NB6W\0\0\0Word.Document.8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','admin',58,NULL,NULL,'',NULL,NULL,'d02e3aa344d1837d7df5ea17c29a66ba'),(4,2,'','',1111124954,'Aphradis3.doc',23040,'application/msword','ࡱ\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\0\0\0\0\0\0\0\0*\0\0\0\0\0\0\0\0\0\0\'\0\0\0\0? 	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0jbjb\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0}\0\0}\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0&\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0|\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Q\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0The boys view\r\r--\r{Jack}\r\rSam is hot! Goodness, why did I never realize? Why am I thinking about how hot Carter is? What was in that drink and food?\r\rTasted like chicken. I like chicken. I like chicken hot.\r\rLike Carter.\r\r--\r{Daniel}\r\rIf the women were not dressed in the clothes they were, Im sure Sam would have stayed. Usually she is not concerned about those things. But after she left I started to wonder why she was not being offered any of the drinks we were. Special blend I suppose.\r\rThen the girls started in on us, as if they were waiting for Sam to leave. They almost stuffed the food into our mouths and poured the drinks down our throat.\r\rIt tasted like chicken. And the drink had a pink tint to it and tasted like a weak tea. It was not bad; Jack was taking them both in like he had never tasted food before. I figured I was ok in taking it as well. This seemed to sooth the girls around us.\r\rThings they said were funny, and we laughed and joked, flirted, unabashedly. Oh my! I was flirting with them! I bring my hands to my head, and I hear Jack snicker.\r\rToo much for ya, Danny? he grinned like a mad man. No like a drunken man, a very drunk and jolly man.\r\rI simply groaned, he could interpret what I was doing all he wanted. I was embarrassed  I had flirted with half-clothed women!\r\rAnd Sam she was looking radiant in her basics. Her blonde hair gently floated off her face as a breeze past us. I had noticed she was looking amazing when the same woman who had went away shortly after Sam had a staring contest with her, brought her toward us. Granted I was a bit smashed myself, but I could see.\r\rSam stood uncomfortably as Jack and I danced to the music. She was worried we had stumbled upon something we were not supposed to eat. I saw it in her eyes. Those blue, sapphire eyes. \r\rAnd now we walked toward the Stargate, being half drugged and half walking on my own toward the structure. Jack was not any better off, Tealc had to keep him walking in a straight line. Sam held my arm, making sure I did not fall. She is so nice like that.\r\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\05\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0	\0\02\n\0\03\n\0\0\n\0\0\n\0\0\0\0\0\0X\0\0Y\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0	\0\02\n\0\03\n\0\0\n\0\0\n\0\0\0\0\0\0X\0\0Y\0\0\r\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r \r\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/ =!\"#$%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0i\0\0\0\0\0\04\0\0@\04\0\0\0\0N\0o\0r\0m\0a\0l\0\0\0\0\0\0\0CJ\0OJ\0PJ\0QJ\0mH	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<\0A@\0<\0\0\0\0D\0e\0f\0a\0u\0l\0t\0 \0P\0a\0r\0a\0g\0r\0a\0p\0h\0 \0F\0o\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0z\0\0 \0z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\r\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0D\0M\0a\0c\0 \0H\0D\0:\0p\0r\0i\0v\0a\0t\0e\0:\0t\0m\0p\0:\05\00\01\0:\0T\0e\0m\0p\0o\0r\0a\0r\0y\0I\0t\0e\0m\0s\0:\0A\0u\0t\0o\0R\0e\0c\0o\0v\0e\0r\0y\0 \0s\0a\0v\0e\0 \0o\0f\0 \0D\0o\0c\0u\0m\0e\0n\0t\01\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\05\0M\0a\0c\0 \0H\0D\0:\0U\0s\0e\0r\0s\0:\0c\0h\0r\0i\0s\0t\0i\0n\0e\0k\0e\0r\0n\0e\0k\0i\0n\0s\0:\0D\0e\0s\0k\0t\0o\0p\0:\0A\0p\0h\0r\0a\0d\0i\0s\01\0.\0d\0o\0c\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\05\0M\0a\0c\0 \0H\0D\0:\0U\0s\0e\0r\0s\0:\0c\0h\0r\0i\0s\0t\0i\0n\0e\0k\0e\0r\0n\0e\0k\0i\0n\0s\0:\0D\0e\0s\0k\0t\0o\0p\0:\0A\0p\0h\0r\0a\0d\0i\0s\02\0.\0d\0o\0c\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\05\0M\0a\0c\0 \0H\0D\0:\0U\0s\0e\0r\0s\0:\0c\0h\0r\0i\0s\0t\0i\0n\0e\0k\0e\0r\0n\0e\0k\0i\0n\0s\0:\0D\0e\0s\0k\0t\0o\0p\0:\0A\0p\0h\0r\0a\0d\0i\0s\03\0.\0d\0o\0c\0@\0\0\0\0\0\0Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\01\0 \0\0\0\0\0\0\0\0\0\0p\0\0\0@\0\0\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0 \0N\0e\0w\0 \0R\0o\0m\0a\0n\0\0\05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0S\0y\0m\0b\0o\0l\0\0\03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0r\0i\0a\0l\0\0\03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0i\0m\0e\0s\0\0\0 \0\0\0\0\0h\0\0\0\033\0\0\0\0\0\0\0\0\0)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0r0\0\0\0\0d\0\0\0\0\0\0!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Q\0u\0i\0c\0k\0 \0b\0a\0c\0k\0g\0r\0o\0u\0n\0d\0:\0\0\0\0\0\0\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0C\0h\0r\0i\0s\0t\0i\0n\0e\0 \0K\0e\0r\0n\0-\0E\0k\0i\0n\0s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Oh\0+\'0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0 \0\0\n\0\0\0<\0\0\0\0\0H\0\0\r\0\0\0T\0\0\0\0\0`\0\0\0\0\0h\0\0\0\0\0p\0\0\0\0\0x\0\0\0\0\0\'\0\0\0\0\0\0\0\0Quick background:\0\0d\0\0\0\0\0\0\0uic\0\0\0\0\0\0Christine Kern-Ekins\0 \09\0\0\0\0\0\0\0hri\0\0\0\0\0\0Normal\0n\0\0\0\0\0\0Christine Kern-Ekins\0 \09\0\0\0\0\0\02\0ri\0\0\0\0\0\0Microsoft Word 9.0\0s@\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\04\"@\0\0\0\04\"\0\0\0\0\0\0\0\0\0)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0՜.\0+,0\0\0\0\0\0\0\0\0\0\0\0\0`\0\0\0\0\0\0h\0\0\0\0\0\0p\0\0\0\0\0\0x\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Quick background:\0\0\0\0\0\0\0\0\0\0\0\0Title\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\n\0\0\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0!\0\0\0\"\0\0\0#\0\0\0$\0\0\0%\0\0\0&\0\0\0)\0\0\0R\0o\0o\0t\0 \0E\0n\0t\0r\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0\0\0\0\0\0\0\0\0\0\0uoO[\"+\0\0\0\0\0\0\0\0\0\01\0T\0a\0b\0l\0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0W\0o\0r\0d\0D\0o\0c\0u\0m\0e\0n\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\0o\0c\0u\0m\0e\0n\0t\0S\0u\0m\0m\0a\0r\0y\0I\0n\0f\0o\0r\0m\0a\0t\0i\0o\0n\0\0\0\0\0\0\0\0\0\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0C\0o\0m\0p\0O\0b\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0X\0\0\0\0\0\0\0O\0b\0j\0e\0c\0t\0P\0o\0o\0l\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0uoO[\"\0uoO[\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0	\0\0\0\0\0\0\0\0\0\0\0F\0\0\0Microsoft Word Document\0NB6W\0\0\0Word.Document.8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','admin',55,NULL,NULL,'',NULL,NULL,'7c6e0f31c6d3fa052089b3e87ececeed');
/*!40000 ALTER TABLE `tiki_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_forum_attachments`
--

DROP TABLE IF EXISTS `tiki_forum_attachments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forum_attachments` (
  `attId` int(14) NOT NULL auto_increment,
  `threadId` int(14) NOT NULL default '0',
  `qId` int(14) NOT NULL default '0',
  `forumId` int(14) default NULL,
  `filename` varchar(250) default NULL,
  `filetype` varchar(250) default NULL,
  `filesize` int(12) default NULL,
  `data` longblob,
  `dir` varchar(200) default NULL,
  `created` int(14) default NULL,
  `path` varchar(250) default NULL,
  PRIMARY KEY  (`attId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forum_attachments`
--

LOCK TABLES `tiki_forum_attachments` WRITE;
/*!40000 ALTER TABLE `tiki_forum_attachments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_forum_attachments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_forum_reads`
--

DROP TABLE IF EXISTS `tiki_forum_reads`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forum_reads` (
  `user` varchar(200) NOT NULL default '',
  `threadId` int(14) NOT NULL default '0',
  `forumId` int(14) default NULL,
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`user`,`threadId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forum_reads`
--

LOCK TABLES `tiki_forum_reads` WRITE;
/*!40000 ALTER TABLE `tiki_forum_reads` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_forum_reads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_forums`
--

DROP TABLE IF EXISTS `tiki_forums`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forums` (
  `forumId` int(8) NOT NULL auto_increment,
  `name` varchar(200) default NULL,
  `description` text,
  `created` int(14) default NULL,
  `lastPost` int(14) default NULL,
  `threads` int(8) default NULL,
  `comments` int(8) default NULL,
  `controlFlood` char(1) default NULL,
  `floodInterval` int(8) default NULL,
  `moderator` varchar(200) default NULL,
  `hits` int(8) default NULL,
  `mail` varchar(200) default NULL,
  `useMail` char(1) default NULL,
  `section` varchar(200) default NULL,
  `usePruneUnreplied` char(1) default NULL,
  `pruneUnrepliedAge` int(8) default NULL,
  `usePruneOld` char(1) default NULL,
  `pruneMaxAge` int(8) default NULL,
  `topicsPerPage` int(6) default NULL,
  `topicOrdering` varchar(100) default NULL,
  `threadOrdering` varchar(100) default NULL,
  `att` varchar(80) default NULL,
  `att_store` varchar(4) default NULL,
  `att_store_dir` varchar(250) default NULL,
  `att_max_size` int(12) default NULL,
  `ui_level` char(1) default NULL,
  `forum_password` varchar(32) default NULL,
  `forum_use_password` char(1) default NULL,
  `moderator_group` varchar(200) default NULL,
  `approval_type` varchar(20) default NULL,
  `outbound_address` varchar(250) default NULL,
  `outbound_from` varchar(250) default NULL,
  `inbound_pop_server` varchar(250) default NULL,
  `inbound_pop_port` int(4) default NULL,
  `inbound_pop_user` varchar(200) default NULL,
  `inbound_pop_password` varchar(80) default NULL,
  `topic_smileys` char(1) default NULL,
  `ui_avatar` char(1) default NULL,
  `ui_flag` char(1) default NULL,
  `ui_posts` char(1) default NULL,
  `ui_email` char(1) default NULL,
  `ui_online` char(1) default NULL,
  `topic_summary` char(1) default NULL,
  `show_description` char(1) default NULL,
  `topics_list_replies` char(1) default NULL,
  `topics_list_reads` char(1) default NULL,
  `topics_list_pts` char(1) default NULL,
  `topics_list_lastpost` char(1) default NULL,
  `topics_list_author` char(1) default NULL,
  `vote_threads` char(1) default NULL,
  `forum_last_n` int(2) default '0',
  PRIMARY KEY  (`forumId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forums`
--

LOCK TABLES `tiki_forums` WRITE;
/*!40000 ALTER TABLE `tiki_forums` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_forums` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_forums_queue`
--

DROP TABLE IF EXISTS `tiki_forums_queue`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forums_queue` (
  `qId` int(14) NOT NULL auto_increment,
  `object` varchar(32) default NULL,
  `parentId` int(14) default NULL,
  `forumId` int(14) default NULL,
  `timestamp` int(14) default NULL,
  `user` varchar(200) default NULL,
  `title` varchar(240) default NULL,
  `data` text,
  `type` varchar(60) default NULL,
  `hash` varchar(32) default NULL,
  `topic_smiley` varchar(80) default NULL,
  `topic_title` varchar(240) default NULL,
  `summary` varchar(240) default NULL,
  PRIMARY KEY  (`qId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forums_queue`
--

LOCK TABLES `tiki_forums_queue` WRITE;
/*!40000 ALTER TABLE `tiki_forums_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_forums_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_forums_reported`
--

DROP TABLE IF EXISTS `tiki_forums_reported`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forums_reported` (
  `threadId` int(12) NOT NULL default '0',
  `forumId` int(12) NOT NULL default '0',
  `parentId` int(12) NOT NULL default '0',
  `user` varchar(200) default NULL,
  `timestamp` int(14) default NULL,
  `reason` varchar(250) default NULL,
  PRIMARY KEY  (`threadId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forums_reported`
--

LOCK TABLES `tiki_forums_reported` WRITE;
/*!40000 ALTER TABLE `tiki_forums_reported` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_forums_reported` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_galleries`
--

DROP TABLE IF EXISTS `tiki_galleries`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_galleries` (
  `galleryId` int(14) NOT NULL auto_increment,
  `name` varchar(80) NOT NULL default '',
  `description` text,
  `created` int(14) default NULL,
  `lastModif` int(14) default NULL,
  `visible` char(1) default NULL,
  `theme` varchar(60) default NULL,
  `user` varchar(200) default NULL,
  `hits` int(14) default NULL,
  `maxRows` int(10) default NULL,
  `rowImages` int(10) default NULL,
  `thumbSizeX` int(10) default NULL,
  `thumbSizeY` int(10) default NULL,
  `public` char(1) default NULL,
  PRIMARY KEY  (`galleryId`),
  KEY `name` (`name`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  FULLTEXT KEY `ft` (`name`,`description`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_galleries`
--

LOCK TABLES `tiki_galleries` WRITE;
/*!40000 ALTER TABLE `tiki_galleries` DISABLE KEYS */;
INSERT INTO `tiki_galleries` VALUES (1,'Wallpaper','You looking for some wallpaper? Try Home Depo... or here, that works too...',1111125043,1111125154,'y','','admin',675,10,6,80,80,'n'),(2,'2005 Trip To Germany','The trip to Bodensee and Germany in May 2005.',1119467626,1119467675,'y','','admin',12,10,6,80,80,'n');
/*!40000 ALTER TABLE `tiki_galleries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_galleries_scales`
--

DROP TABLE IF EXISTS `tiki_galleries_scales`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_galleries_scales` (
  `galleryId` int(14) NOT NULL default '0',
  `xsize` int(11) NOT NULL default '0',
  `ysize` int(11) NOT NULL default '0',
  PRIMARY KEY  (`galleryId`,`xsize`,`ysize`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_galleries_scales`
--

LOCK TABLES `tiki_galleries_scales` WRITE;
/*!40000 ALTER TABLE `tiki_galleries_scales` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_galleries_scales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_games`
--

DROP TABLE IF EXISTS `tiki_games`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_games` (
  `gameName` varchar(200) NOT NULL default '',
  `hits` int(8) default NULL,
  `votes` int(8) default NULL,
  `points` int(8) default NULL,
  PRIMARY KEY  (`gameName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_games`
--

LOCK TABLES `tiki_games` WRITE;
/*!40000 ALTER TABLE `tiki_games` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_games` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_group_inclusion`
--

DROP TABLE IF EXISTS `tiki_group_inclusion`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_group_inclusion` (
  `groupName` varchar(30) NOT NULL default '',
  `includeGroup` varchar(30) NOT NULL default '',
  PRIMARY KEY  (`groupName`,`includeGroup`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_group_inclusion`
--

LOCK TABLES `tiki_group_inclusion` WRITE;
/*!40000 ALTER TABLE `tiki_group_inclusion` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_group_inclusion` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_history`
--

DROP TABLE IF EXISTS `tiki_history`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_history` (
  `pageName` varchar(160) NOT NULL default '',
  `version` int(8) NOT NULL default '0',
  `lastModif` int(14) default NULL,
  `description` varchar(200) default NULL,
  `user` varchar(200) default NULL,
  `ip` varchar(15) default NULL,
  `comment` varchar(200) default NULL,
  `data` longblob,
  PRIMARY KEY  (`pageName`,`version`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_history`
--

LOCK TABLES `tiki_history` WRITE;
/*!40000 ALTER TABLE `tiki_history` DISABLE KEYS */;
INSERT INTO `tiki_history` VALUES ('Chocolate Cake W/Cherries',1,1111123105,'Welcome','system','0.0.0.0','Tiki initialization',''),('HomePage',1,1111172217,'','system','0.0.0.0','Tiki initialization',''),('DkeStartingPoints',1,1111419892,'Starting Points for Dan','dkernekins','167.107.191.217','Starting Points Home Page','-=Starting Points=-\r\n* ((AntHome))\r\n* BooksHome\r\n* ChristianSitesHome\r\n\r\n* CmsSearch\r\n* CvsDude\r\n* EclipseHome\r\n* FinancialHome\r\n* HtmlHome\r\n* JspHome\r\n* MavenHome\r\n* PhpHome\r\n* SecurityHome\r\n* StrutsHome\r\n* TapestryHome\r\n* Unix\r\n      * UnixCommandReference\r\n      * UnixScripts\r\n      * CygwinHome\r\n      * http://www.dsl.org/cookbook/cookbook_toc.html The Linux Cookbook: Tips and Techniques for Everyday Use\r\n* WebLinks\r\n-=Online Books=-\r\n   # OnlineJavaBooks/ServletsAndJavaServerPages\r\n\r\n[http://judicialnetwork.com|{img src=http://judicialnetwork.com/images/blog_ad_120.gif width=120 height=50 align=left desc= link= }]');
/*!40000 ALTER TABLE `tiki_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_hotwords`
--

DROP TABLE IF EXISTS `tiki_hotwords`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_hotwords` (
  `word` varchar(40) NOT NULL default '',
  `url` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_hotwords`
--

LOCK TABLES `tiki_hotwords` WRITE;
/*!40000 ALTER TABLE `tiki_hotwords` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_hotwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_html_pages`
--

DROP TABLE IF EXISTS `tiki_html_pages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_html_pages` (
  `pageName` varchar(200) NOT NULL default '',
  `content` longblob,
  `refresh` int(10) default NULL,
  `type` char(1) default NULL,
  `created` int(14) default NULL,
  PRIMARY KEY  (`pageName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_html_pages`
--

LOCK TABLES `tiki_html_pages` WRITE;
/*!40000 ALTER TABLE `tiki_html_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_html_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_html_pages_dynamic_zones`
--

DROP TABLE IF EXISTS `tiki_html_pages_dynamic_zones`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_html_pages_dynamic_zones` (
  `pageName` varchar(40) NOT NULL default '',
  `zone` varchar(80) NOT NULL default '',
  `type` char(2) default NULL,
  `content` text,
  PRIMARY KEY  (`pageName`,`zone`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_html_pages_dynamic_zones`
--

LOCK TABLES `tiki_html_pages_dynamic_zones` WRITE;
/*!40000 ALTER TABLE `tiki_html_pages_dynamic_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_html_pages_dynamic_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_images`
--

DROP TABLE IF EXISTS `tiki_images`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_images` (
  `imageId` int(14) NOT NULL auto_increment,
  `galleryId` int(14) NOT NULL default '0',
  `name` varchar(200) NOT NULL default '',
  `description` text,
  `created` int(14) default NULL,
  `user` varchar(200) default NULL,
  `hits` int(14) default NULL,
  `path` varchar(255) default NULL,
  PRIMARY KEY  (`imageId`),
  KEY `name` (`name`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  KEY `ti_gId` (`galleryId`),
  KEY `ti_cr` (`created`),
  KEY `ti_us` (`user`),
  FULLTEXT KEY `ft` (`name`,`description`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_images`
--

LOCK TABLES `tiki_images` WRITE;
/*!40000 ALTER TABLE `tiki_images` DISABLE KEYS */;
INSERT INTO `tiki_images` VALUES (1,1,'IfYouNotTheOne copy.jpg','',1111125112,'admin',2035,''),(2,1,'OneLove copy.jpg','',1111125154,'admin',1645,'');
/*!40000 ALTER TABLE `tiki_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_images_data`
--

DROP TABLE IF EXISTS `tiki_images_data`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_images_data` (
  `imageId` int(14) NOT NULL default '0',
  `xsize` int(8) NOT NULL default '0',
  `ysize` int(8) NOT NULL default '0',
  `type` char(1) NOT NULL default '',
  `filesize` int(14) default NULL,
  `filetype` varchar(80) default NULL,
  `filename` varchar(80) default NULL,
  `data` longblob,
  PRIMARY KEY  (`imageId`,`xsize`,`ysize`,`type`),
  KEY `t_i_d_it` (`imageId`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_images_data`
--

LOCK TABLES `tiki_images_data` WRITE;
/*!40000 ALTER TABLE `tiki_images_data` DISABLE KEYS */;
INSERT INTO `tiki_images_data` VALUES (1,648,504,'o',143825,'image/jpeg','IfYouNotTheOne copy.jpg','\0JFIF\0\0H\0H\0\0#IExif\0\0MM\0*\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0b\0\0\0\0\0\0\0j(\0\0\0\0\0\0\01\0\0\0\0\0\0\0r2\0\0\0\0\0\0\0i\0\0\0\0\0\0\0\0\0\0\0\0\0H\0\0\0\0\0\0H\0\0\0Adobe Photoshop 7.0\02005:02:12 02:11:05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0\"\0\0\0\0\0\0\0H\0\0\0\0\0\0H\0\0\0\0JFIF\0\0H\0H\0\0\0Adobe_CM\0\0Adobe\0d\0\0\0\0\0			\n\r\r\r\0\0d\0\"\0\0\0?\0\0\0\0\0\0\0\0\0\0	\n\0\0\0\0\0\0\0\0\0	\n\03\0!1AQa\"q2B#$Rb34rC%Scs5&DTdE£t6UeuF\'Vfv7GWgw\05\0!1AQaq\"2B#R3$brCScs4%&5DTdEU6teuFVfv\'7GWgw\0\0\0?\0nߛ떂[_i\0Xd\0ۏk\0AmvV9LY=c?M_\ZLNa-c]Sm߿Ԭ~5>M}W\0bquwUmvri9-m]GWJ\'\'ϙ.6㻁Ýu\r~\0\0\0m~6\\ܒ͗L.a\Zz܏e^t|܊1+xn5a2k&SgwYU^n>eN-ͧ1+~51mjͮȫ3Zmx!޽z|?\rfu7SX)csy{m\rcpz~+\0o\0z\'^;/˨+f\nXӶd5hűhzL[ssϳ\"uU@C\r~N+V{7L<pU&#}ƿlkKAulmoYX&Q{+ş3k=3_,}ӎ;VQƣ-_o~UcuvۅF;Vʱ[v b2k?95*O+Hrz{+dt~Hs[cl~J\0U9&sNAcO:={ٓ_M_1h9UkaaYK,/J˰mƷy#Hui\rU2ǳ\n\0꽟?YoUx=a\0AŮ=D1cZa\ru{weo6ퟢ7^GZO=W4Cf}Mڽ^*k?\0<~\0QwueYՙ]߳3MKW.}9vz\\_Lpǳ:\\ܶ36{:\"^+ʾ8|J]{\\\n\0m;ZM=~4lwF罭\0\\?g\0-LSţ9eUs\0^Q}7)1\0mk@ݶM\0ե8}?o\0A%UԣK}bd׍Eɐ)\0V돵ߧo6zqV\';\0쩎l\0co\Zh\Zұُh{nM[?4fÿgژWoҹsY1:s\Z[o-hiy\0}BwafHVdg}c,u`6\n~#G}k3bfnߥ_n^M}]g56\rѿ\"}Sб\\GVQaF-s.k1(ywmL{Nwq_8BG`ORl|n34]P@a\04:G޹(ekV[V};Y9ovU\0;g\0G=~=_	m9.۟U\rsFQe}N}<;GXPOoǹWh{.s6ח`{黩~Ԛ1S/$/z%;ixqm!h.k:dzecMk={_Owoc*=k\rp{\\3\n6_Ye>Nݞ\n@<rmɻ)`c\\+kNhߘ\Zkԙ]cZS.==Za:#%V{1M}>rsKl~]Qe)h\0\rjэ[9S};m;0\\cXVVmMFc=Fe(e6{tk.f?U\0MgӘۜ}7 Y\rk챌ߟn_gWC_tUC#zE8a:^3\"^GljJ=S+gZ֡5FEb\Z^߱1P3kwb}*\0Qw~ZjY-{]y@3q\\}*;n1h}l~>]ߪ\0~Ss*mF}nK\Z܆7E.}Y]ӇS}/Q2M6}\rk?OKdeȧ2d6sTj+}KQYְ+ɪ*mxԪM-ufܚӪӋWgP894Q}U[Ǣqƥ=g-g;5\'ٰOc)%?Y0Zr*{IMVPOӪk_Ϋ=U`SQm.}u==k_]gWK{{`Fƿ։k>/6\0z{%ON%K}_U=;.웝\'+Ҫ\0W\0GUܜ\\j.h&79muwlw=OSuĸ̻P@p6um.{$glw/qI<Z/Fmͦ]]͸]~wYf{?MNG=\Z};XѕUY1ع5׶1[rO髳ի^r:re6`atm~}ttUְC7g\ZS]{{o,oSoGI=\ZPޡyyk(c[={bѺ~GU/.ǭc}ӎb>^Km,nSѯ؏鲭XTWafUV9Q[z7}\0kѢSM:WO.&sics~ƇWe!fmz\n:r,/EJ-\nK05munYsZ*;o쪛V鸕f2lhaZ]Ncӕ[wgۉ.ezއʪϒgObۜ[i결zzeFַmMǦV)ה/ܛ}G\r~5~V2^?}3*ZfWF?b7o)\r2W_\0Xq2gNƧF~c\ru=?Mf]5eY{+}OO\rYbI&\0|YuuvdyfM?;RK;-C0[Jm6C~2r)X%hԦlfvKokG:a7f#i`l!jr1ޭ3\0ُM}cѭƹ˯Eٌ7em-k+mk߷*p}?V~Um!K#N]檼WwG`Ư CsPާ\ZѶzg\"ߴ_ff*3:f\r8V)X\r6;;ӵk#	mލ~}^\ZJS)UHkk6]ck_Cr?߇SEU\nh?\rs}Fss:2+龋nǲ\0K}:94jSM}jCHd5m?k)~#\0OG\0*]1Z;!㗎֖[_տEmwzW@أ+iiT=gc}V]Mwz\0ȻWTX>׭>FC]>keguW-\0#\r4ӽOSڛsIm\'k]cVcov=ِ6ӫet?bݫeaYi?j^+\rv3im|BVu~W]-\'\"Z=m^/fs2]GoV-c2 DtoOت=\'_jhͬ9V,}z~WWӫwZ}W\n3/\\o\0YыIg_ݟ?]Vn8W]z0lmٳ\'~}\'/CyS1YCo1@7גv7PSQWsO#VgQ?dYk6ϱSc,\ZW?W<L{.aVbQ[nf߰\0;|z\Z>^}aּXxlK-^q+e/?&߳ӊ26>ߵ伖6:\r_UWF_K	mM\'A]O\0V6?#=e\rIݎY:\'ٿ~~dfur>۞˚4fM/{s>vOuE~n)yv3jncYYv?!ݶfU}Oe7gf<tF)9v.˸檭jٔߏ_5[C?D	YH6mŹ5>ao-cf1÷}ds]w=}~n\ZjY]pʵ](n[r[l<fl\0h32kk;6ExUY;c}JmO-Lz%OPugc\0/	&k~aP ,˘co,\0aYN+U02#=B}Եm[=Kj5;3=i4at_}\\g3kSȳfGc#!b]c5;idi?ꐙ \0\0H02catc>͟U:ӍN-\ZAX\\q7k^/i﴿#gGٖMϰuw)~.:^pYyɷcU{5\'kYw&EzYqDzKoߌܖ2ʎKk}y[C}z^zzk\0GZ~tzm~^oMnEŘ~?C\0q\'9atƼuf[,ǁo?IeweR_bt/ʟ_C1k=\\v>VUg@K kYk@q;ݴjF~?ҮIq Gjw{\0O䱫Ymj3_\08]zB%`lpųл!4773qz\0Z1~=%nu{\\~o)s1kŶۋ$v>ے_exo}ޓ9\')G{$pbw]ݞg&])}v>mffW=?KXg-r{2,\'uL~*kɾߦ΁4WFN/M`n1ٌަ%ӝGd_X:Sk^C,{?n}ݟ\0(&\Z݂7SjCx=`C״bSa99mޥY^oR1.]Y6PlvIız=\0NbWUWj\0KcffadcQoRA\\ߴSmVc\rE/mOfeUԷ~W?I.pkFM޻w54z6׺udzϫex_05qm,M98V,\rqaǹ+6WFuﲽ+ҧjQtoڶ<u.wo5o}ln+g{/k=<}dqNm5mo{Y]lR\05YUzYuZUVfdgSf]n]w^.etS\"u\Zq}nzSiuL{*%[r!?u^~\0p:.=Õxslw}:qe,Z/5VQԺ{_]@WNGS}[5}.j?N _ۃSE}:F-zCܽDk\0޲\nݶʅNCV\\_K-^6l\0N/\ZkOoLgKtU`khs[p[~>kkE27ǩ5fNQZ=\n?7dJ\0YcM\\lU\0𞭿r53UOϩq\088;3;:o5Y[>{?\\-zvӆ;ͻ\"?k[mZ{^:\\7cV?[J}6ܟۥm:U^NSu2a.:v5_rQk@xgiy}K,`\r;w3e{Z\0Ee>{/ſWkage߿SI]V~s朼%C}\0?kɱ?7Y:-s)ɱw[=_\0F@I߬B\rccn&%\0jM]u[O3mzKs{+\nqmlXYcU5S[}>\\Z?c.~#[>QhqC26L\0E?fΩ@`sc.se+gYQx5\0љ1 qQWʡuwc?~=2}P]qG]dzK#ߛ66cUmOyskF6۲h1\0߭ʳY=Klm{_շXj7kiN.CN8pf][e;.S1ߏg+\"яkG\n!WUu:s7m%8\rޓqN.VVlk_YTRʝ[S~uYmy־^zM95ԧv]99L˻\Z6gQ~]QEޞ1Mt\0CElpU\ZZ1&l/?f\\JH@,RGU*>O,Ech9@e{]m1}/{-ɳZ7[M-ͺb9Zro{f_Of?\0zޟ+5˙,yk\ZhLk!ϡ޳(G}ON\0k?V\nÿu_pufC\rmsu~-gUW\0c@I Dң\0z0ӃR1>9>ga\05T_[aseX]kCyuL{,=KNj_|oͦ[ԉ?M1u]c@\Z=?5lDJU2TGX_w\\dSk2FV&95[Pe<\\{YB=7QU^*zk1밆u[]>l?k\Z9w$~{\'<Gg2©`:3Ԯyyolvcm_j}\'?.c:SZcAss}ߥoG%]e<Kc{Y$\ZkZþ	C/{ĸ^.:~凉gXȱSnM4\0ҷ轟#z@U?}\',f\ZkcC! -[]e9wA~\ZvDOdsd\\>.ww4SdIެ\'r\ZHu	{S$ϵ#6kv;Y3nxlOࠒYO<\0GP#zWH_d}A힄nܯe,]M>\'>S~g6zi\0i({>M۷z?gvVg\0d=?~?>HzKiz#\0`?w}}?׷zF?3k:_az_d_h6ߴ\0?jIN=#gݿӝ\0gK\0ƈ?jl~ϰeO~\0}?Ok_ODSFnPhotoshop 3.0\08BIM%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n	<key>com.apple.print.PageFormat.PMHorizontalRes</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMHorizontalRes</key>\n				<real>72</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-01-26T17:52:39Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMOrientation</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMOrientation</key>\n				<integer>1</integer>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-01-26T17:52:39Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMScaling</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMScaling</key>\n				<real>1</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-01-26T17:52:39Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMVerticalRes</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMVerticalRes</key>\n				<real>72</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-01-26T17:52:39Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMVerticalScaling</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMVerticalScaling</key>\n				<real>1</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-01-26T17:52:39Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.subTicket.paper_info_ticket</key>\n	<dict>\n		<key>com.apple.print.PageFormat.PMAdjustedPageRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.printingmanager</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PageFormat.PMAdjustedPageRect</key>\n					<array>\n						<real>0.0</real>\n						<real>0.0</real>\n						<real>734</real>\n						<real>576</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-02-12T08:10:24Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PageFormat.PMAdjustedPaperRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.printingmanager</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PageFormat.PMAdjustedPaperRect</key>\n					<array>\n						<real>-18</real>\n						<real>-18</real>\n						<real>774</real>\n						<real>594</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-02-12T08:10:24Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.PMPaperName</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.PMPaperName</key>\n					<string>na-letter</string>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.print.pm.PostScript</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2003-07-01T17:49:36Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>1</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.PMUnadjustedPageRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.PMUnadjustedPageRect</key>\n					<array>\n						<real>0.0</real>\n						<real>0.0</real>\n						<real>734</real>\n						<real>576</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-01-26T17:52:39Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.PMUnadjustedPaperRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.PMUnadjustedPaperRect</key>\n					<array>\n						<real>-18</real>\n						<real>-18</real>\n						<real>774</real>\n						<real>594</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-01-26T17:52:39Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.ppd.PMPaperName</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.ppd.PMPaperName</key>\n					<string>US Letter</string>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.print.pm.PostScript</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2003-07-01T17:49:36Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>1</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.ticket.APIVersion</key>\n		<string>00.20</string>\n		<key>com.apple.print.ticket.privateLock</key>\n		<false/>\n		<key>com.apple.print.ticket.type</key>\n		<string>com.apple.print.PaperInfoTicket</string>\n	</dict>\n	<key>com.apple.print.ticket.APIVersion</key>\n	<string>00.20</string>\n	<key>com.apple.print.ticket.privateLock</key>\n	<false/>\n	<key>com.apple.print.ticket.type</key>\n	<string>com.apple.print.PageFormatTicket</string>\n</dict>\n</plist>\n8BIM\0\0\0\0\0x\0\0\0\0H\0H\0\0\0\0@Rg(\0\0\0\0H\0H\0\0\0\0(\0\0\0\0d\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0h\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0H\0\0\0\0\0H\0\0\0\08BIM&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0?\0\08BIM\r\0\0\0\0\0\0\0\0x8BIM\0\0\0\0\0\0\0\08BIM\0\0\0\0\0	\0\0\0\0\0\0\0\0\08BIM\n\0\0\0\0\0\0\08BIM\'\0\0\0\0\0\n\0\0\0\0\0\0\0\08BIM\0\0\0\0\0H\0/ff\0\0lff\0\0\0\0\0\0\0/ff\0\0\0\0\0\0\0\0\02\0\0\0\0Z\0\0\0\0\0\0\0\0\05\0\0\0\0-\0\0\0\0\0\0\0\08BIM\0\0\0\0\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\0\0\0@\0\0@\0\0\0\08BIM\0\0\0\0\0\0\0\0\08BIM\Z\0\0\0\0[\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I\0f\0Y\0o\0u\0N\0o\0t\0T\0h\0e\0O\0n\0e\0 \0c\0o\0p\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0null\0\0\0\0\0\0boundsObjc\0\0\0\0\0\0\0\0\0Rct1\0\0\0\0\0\0\0Top long\0\0\0\0\0\0\0\0Leftlong\0\0\0\0\0\0\0\0Btomlong\0\0\0\0\0\0Rghtlong\0\0\0\0\0slicesVlLs\0\0\0Objc\0\0\0\0\0\0\0\0slice\0\0\0\0\0\0sliceIDlong\0\0\0\0\0\0\0groupIDlong\0\0\0\0\0\0\0originenum\0\0\0ESliceOrigin\0\0\0\rautoGenerated\0\0\0\0Typeenum\0\0\0\nESliceType\0\0\0\0Img \0\0\0boundsObjc\0\0\0\0\0\0\0\0\0Rct1\0\0\0\0\0\0\0Top long\0\0\0\0\0\0\0\0Leftlong\0\0\0\0\0\0\0\0Btomlong\0\0\0\0\0\0Rghtlong\0\0\0\0\0urlTEXT\0\0\0\0\0\0\0\0\0nullTEXT\0\0\0\0\0\0\0\0\0MsgeTEXT\0\0\0\0\0\0\0\0altTagTEXT\0\0\0\0\0\0\0\0cellTextIsHTMLbool\0\0\0cellTextTEXT\0\0\0\0\0\0\0\0	horzAlignenum\0\0\0ESliceHorzAlign\0\0\0default\0\0\0	vertAlignenum\0\0\0ESliceVertAlign\0\0\0default\0\0\0bgColorTypeenum\0\0\0ESliceBGColorType\0\0\0\0None\0\0\0	topOutsetlong\0\0\0\0\0\0\0\nleftOutsetlong\0\0\0\0\0\0\0bottomOutsetlong\0\0\0\0\0\0\0rightOutsetlong\0\0\0\0\08BIM\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\08BIM\0\0\0\0\"7\0\0\0\0\0\0\0\0\0d\0\0\0\0\0\0\0\"\0\0\0JFIF\0\0H\0H\0\0\0Adobe_CM\0\0Adobe\0d\0\0\0\0\0			\n\r\r\r\0\0d\0\"\0\0\0?\0\0\0\0\0\0\0\0\0\0	\n\0\0\0\0\0\0\0\0\0	\n\03\0!1AQa\"q2B#$Rb34rC%Scs5&DTdE£t6UeuF\'Vfv7GWgw\05\0!1AQaq\"2B#R3$brCScs4%&5DTdEU6teuFVfv\'7GWgw\0\0\0?\0nߛ떂[_i\0Xd\0ۏk\0AmvV9LY=c?M_\ZLNa-c]Sm߿Ԭ~5>M}W\0bquwUmvri9-m]GWJ\'\'ϙ.6㻁Ýu\r~\0\0\0m~6\\ܒ͗L.a\Zz܏e^t|܊1+xn5a2k&SgwYU^n>eN-ͧ1+~51mjͮȫ3Zmx!޽z|?\rfu7SX)csy{m\rcpz~+\0o\0z\'^;/˨+f\nXӶd5hűhzL[ssϳ\"uU@C\r~N+V{7L<pU&#}ƿlkKAulmoYX&Q{+ş3k=3_,}ӎ;VQƣ-_o~UcuvۅF;Vʱ[v b2k?95*O+Hrz{+dt~Hs[cl~J\0U9&sNAcO:={ٓ_M_1h9UkaaYK,/J˰mƷy#Hui\rU2ǳ\n\0꽟?YoUx=a\0AŮ=D1cZa\ru{weo6ퟢ7^GZO=W4Cf}Mڽ^*k?\0<~\0QwueYՙ]߳3MKW.}9vz\\_Lpǳ:\\ܶ36{:\"^+ʾ8|J]{\\\n\0m;ZM=~4lwF罭\0\\?g\0-LSţ9eUs\0^Q}7)1\0mk@ݶM\0ե8}?o\0A%UԣK}bd׍Eɐ)\0V돵ߧo6zqV\';\0쩎l\0co\Zh\Zұُh{nM[?4fÿgژWoҹsY1:s\Z[o-hiy\0}BwafHVdg}c,u`6\n~#G}k3bfnߥ_n^M}]g56\rѿ\"}Sб\\GVQaF-s.k1(ywmL{Nwq_8BG`ORl|n34]P@a\04:G޹(ekV[V};Y9ovU\0;g\0G=~=_	m9.۟U\rsFQe}N}<;GXPOoǹWh{.s6ח`{黩~Ԛ1S/$/z%;ixqm!h.k:dzecMk={_Owoc*=k\rp{\\3\n6_Ye>Nݞ\n@<rmɻ)`c\\+kNhߘ\Zkԙ]cZS.==Za:#%V{1M}>rsKl~]Qe)h\0\rjэ[9S};m;0\\cXVVmMFc=Fe(e6{tk.f?U\0MgӘۜ}7 Y\rk챌ߟn_gWC_tUC#zE8a:^3\"^GljJ=S+gZ֡5FEb\Z^߱1P3kwb}*\0Qw~ZjY-{]y@3q\\}*;n1h}l~>]ߪ\0~Ss*mF}nK\Z܆7E.}Y]ӇS}/Q2M6}\rk?OKdeȧ2d6sTj+}KQYְ+ɪ*mxԪM-ufܚӪӋWgP894Q}U[Ǣqƥ=g-g;5\'ٰOc)%?Y0Zr*{IMVPOӪk_Ϋ=U`SQm.}u==k_]gWK{{`Fƿ։k>/6\0z{%ON%K}_U=;.웝\'+Ҫ\0W\0GUܜ\\j.h&79muwlw=OSuĸ̻P@p6um.{$glw/qI<Z/Fmͦ]]͸]~wYf{?MNG=\Z};XѕUY1ع5׶1[rO髳ի^r:re6`atm~}ttUְC7g\ZS]{{o,oSoGI=\ZPޡyyk(c[={bѺ~GU/.ǭc}ӎb>^Km,nSѯ؏鲭XTWafUV9Q[z7}\0kѢSM:WO.&sics~ƇWe!fmz\n:r,/EJ-\nK05munYsZ*;o쪛V鸕f2lhaZ]Ncӕ[wgۉ.ezއʪϒgObۜ[i결zzeFַmMǦV)ה/ܛ}G\r~5~V2^?}3*ZfWF?b7o)\r2W_\0Xq2gNƧF~c\ru=?Mf]5eY{+}OO\rYbI&\0|YuuvdyfM?;RK;-C0[Jm6C~2r)X%hԦlfvKokG:a7f#i`l!jr1ޭ3\0ُM}cѭƹ˯Eٌ7em-k+mk߷*p}?V~Um!K#N]檼WwG`Ư CsPާ\ZѶzg\"ߴ_ff*3:f\r8V)X\r6;;ӵk#	mލ~}^\ZJS)UHkk6]ck_Cr?߇SEU\nh?\rs}Fss:2+龋nǲ\0K}:94jSM}jCHd5m?k)~#\0OG\0*]1Z;!㗎֖[_տEmwzW@أ+iiT=gc}V]Mwz\0ȻWTX>׭>FC]>keguW-\0#\r4ӽOSڛsIm\'k]cVcov=ِ6ӫet?bݫeaYi?j^+\rv3im|BVu~W]-\'\"Z=m^/fs2]GoV-c2 DtoOت=\'_jhͬ9V,}z~WWӫwZ}W\n3/\\o\0YыIg_ݟ?]Vn8W]z0lmٳ\'~}\'/CyS1YCo1@7גv7PSQWsO#VgQ?dYk6ϱSc,\ZW?W<L{.aVbQ[nf߰\0;|z\Z>^}aּXxlK-^q+e/?&߳ӊ26>ߵ伖6:\r_UWF_K	mM\'A]O\0V6?#=e\rIݎY:\'ٿ~~dfur>۞˚4fM/{s>vOuE~n)yv3jncYYv?!ݶfU}Oe7gf<tF)9v.˸檭jٔߏ_5[C?D	YH6mŹ5>ao-cf1÷}ds]w=}~n\ZjY]pʵ](n[r[l<fl\0h32kk;6ExUY;c}JmO-Lz%OPugc\0/	&k~aP ,˘co,\0aYN+U02#=B}Եm[=Kj5;3=i4at_}\\g3kSȳfGc#!b]c5;idi?ꐙ \0\0H02catc>͟U:ӍN-\ZAX\\q7k^/i﴿#gGٖMϰuw)~.:^pYyɷcU{5\'kYw&EzYqDzKoߌܖ2ʎKk}y[C}z^zzk\0GZ~tzm~^oMnEŘ~?C\0q\'9atƼuf[,ǁo?IeweR_bt/ʟ_C1k=\\v>VUg@K kYk@q;ݴjF~?ҮIq Gjw{\0O䱫Ymj3_\08]zB%`lpųл!4773qz\0Z1~=%nu{\\~o)s1kŶۋ$v>ے_exo}ޓ9\')G{$pbw]ݞg&])}v>mffW=?KXg-r{2,\'uL~*kɾߦ΁4WFN/M`n1ٌަ%ӝGd_X:Sk^C,{?n}ݟ\0(&\Z݂7SjCx=`C״bSa99mޥY^oR1.]Y6PlvIız=\0NbWUWj\0KcffadcQoRA\\ߴSmVc\rE/mOfeUԷ~W?I.pkFM޻w54z6׺udzϫex_05qm,M98V,\rqaǹ+6WFuﲽ+ҧjQtoڶ<u.wo5o}ln+g{/k=<}dqNm5mo{Y]lR\05YUzYuZUVfdgSf]n]w^.etS\"u\Zq}nzSiuL{*%[r!?u^~\0p:.=Õxslw}:qe,Z/5VQԺ{_]@WNGS}[5}.j?N _ۃSE}:F-zCܽDk\0޲\nݶʅNCV\\_K-^6l\0N/\ZkOoLgKtU`khs[p[~>kkE27ǩ5fNQZ=\n?7dJ\0YcM\\lU\0𞭿r53UOϩq\088;3;:o5Y[>{?\\-zvӆ;ͻ\"?k[mZ{^:\\7cV?[J}6ܟۥm:U^NSu2a.:v5_rQk@xgiy}K,`\r;w3e{Z\0Ee>{/ſWkage߿SI]V~s朼%C}\0?kɱ?7Y:-s)ɱw[=_\0F@I߬B\rccn&%\0jM]u[O3mzKs{+\nqmlXYcU5S[}>\\Z?c.~#[>QhqC26L\0E?fΩ@`sc.se+gYQx5\0љ1 qQWʡuwc?~=2}P]qG]dzK#ߛ66cUmOyskF6۲h1\0߭ʳY=Klm{_շXj7kiN.CN8pf][e;.S1ߏg+\"яkG\n!WUu:s7m%8\rޓqN.VVlk_YTRʝ[S~uYmy־^zM95ԧv]99L˻\Z6gQ~]QEޞ1Mt\0CElpU\ZZ1&l/?f\\JH@,RGU*>O,Ech9@e{]m1}/{-ɳZ7[M-ͺb9Zro{f_Of?\0zޟ+5˙,yk\ZhLk!ϡ޳(G}ON\0k?V\nÿu_pufC\rmsu~-gUW\0c@I Dң\0z0ӃR1>9>ga\05T_[aseX]kCyuL{,=KNj_|oͦ[ԉ?M1u]c@\Z=?5lDJU2TGX_w\\dSk2FV&95[Pe<\\{YB=7QU^*zk1밆u[]>l?k\Z9w$~{\'<Gg2©`:3Ԯyyolvcm_j}\'?.c:SZcAss}ߥoG%]e<Kc{Y$\ZkZþ	C/{ĸ^.:~凉gXȱSnM4\0ҷ轟#z@U?}\',f\ZkcC! -[]e9wA~\ZvDOdsd\\>.ww4SdIެ\'r\ZHu	{S$ϵ#6kv;Y3nxlOࠒYO<\0GP#zWH_d}A힄nܯe,]M>\'>S~g6zi\0i({>M۷z?gvVg\0d=?~?>HzKiz#\0`?w}}?׷zF?3k:_az_d_h6ߴ\0?jIN=#gݿӝ\0gK\0ƈ?jl~ϰeO~\0}?Ok_ODS\08BIM!\0\0\0\0\0U\0\0\0\0\0\0\0A\0d\0o\0b\0e\0 \0P\0h\0o\0t\0o\0s\0h\0o\0p\0\0\0\0A\0d\0o\0b\0e\0 \0P\0h\0o\0t\0o\0s\0h\0o\0p\0 \07\0.\00\0\0\0\08BIM\0\0\0\0\0\0\0\0\0Hhttp://ns.adobe.com/xap/1.0/\0<?xpacket begin=\'﻿\' id=\'W5M0MpCehiHzreSzNTczkc9d\'?>\n<?adobe-xap-filters esc=\"CR\"?>\n<x:xapmeta xmlns:x=\'adobe:ns:meta/\' x:xaptk=\'XMP toolkit 2.8.2-33, framework 1.5\'>\n<rdf:RDF xmlns:rdf=\'http://www.w3.org/1999/02/22-rdf-syntax-ns#\' xmlns:iX=\'http://ns.adobe.com/iX/1.0/\'>\n\n <rdf:Description about=\'uuid:db2c75c5-7e2c-11d9-80c5-b41ea14a2371\'\n  xmlns:xapMM=\'http://ns.adobe.com/xap/1.0/mm/\'>\n  <xapMM:DocumentID>adobe:docid:photoshop:db2c75c2-7e2c-11d9-80c5-b41ea14a2371</xapMM:DocumentID>\n </rdf:Description>\n\n</rdf:RDF>\n</x:xapmeta>\n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                       \n<?xpacket end=\'w\'?>\0Adobe\0d\0\0\0\0\0			\n\r\r\r\0\"\0\0\0)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\"!2#1B3CARbSc$Qrs4aqDT𑡱dt%5\0\0\0\0!1\"2BAQRbra#q3CScs򃓣t\0\0\0?\0V0`CMEPKf&\"GSa m@\rU^#*`H0f]	e@\0QӒgbU\Z?}.FXL./dG#Qi)V4w\'I3!M2e:`\04rd|bJ\\ڶ`\"1-\nH K\\\Z,Fzq\0VSF*Fޘ`	0@r<)Dr:J)cQYI A:Ru!쒘3Gb=3\0HV>Xnq\ZF;\0DG1$;ge؍1\Zu?^Orr}0`N1zbg(r \nbeaQ=%3>WRGذG1>},a0䧳D{\"#1î@r\'6rYmJDB\"c?x`(#&l\0mhzu\03)F<+O}e\"RxWX]nĀiƮVȁJF(hzzhP ]1@fSy\r.qgf4%cQhi\0BDlnSC(/1|05{EUgl`0`ACV:\0쟆Mer8AvBo:E\0E!0n8g)b͗FZucC_VAXp\'(OF;LG,glɋ\noVfVCy֘?`q)\res阘i8E茔c=\"#H9[ɉb?651na*^Rqdouc42ҕƶُl-Fs-_Sc\'LW*Nݼӿ, !3>ٌqv*\\fg9Db	\0QFtQ&4BC>^BbT%zϫ/jբ5G3߰_cW\0^E$RE9s3kuN4\r+{?3!ԭyNxF=fgE(\n2G\'NJ-*+E^};hD3^sO,4z G9IO(1M$7Zj1:2}霒3w\0Oiݕ*c?-ygȻFќs?n_Fy339l϶p`k8 (PtC;Fe8XD,:&Vye=\nӮhd*Z/zҖ0 1활qehvF.U\'>۟tI?kqxM}%+r>n]0±bQu@adݡ*Zi8#cI7l>3VA|&b\0ӀTdDD:Hsb}k&BFS2	\0eQ\"BJL*ЉW]9R5u\rAh@I[>/Ż|g5րIƱ:Z2ڭs<TcWhV	\\LE@=\"DͱV\'+\\s&6_kLF\"\rq+p>w0]\\zG%tKJ]sl̠ŏ=x-\Z܏$Qam10Ӆ-4+^ֽښ7MRVT\ryD$n	{ÉIV!d \rD@lC;t-ia	&-q>fJԵ>!/szT{5)&Cu;֍\0g0V0TnhqbMT+tɔA2~!T.X,d/gOċ.+:$a[\'3>h\"95\'x{=QB A|X0MYOI\n+\0s\"8_euD܉&%ԓfKxrn:{	kdkM?߳#q$ }SpYyN	@{N25RNi9)ēHc\'IDJϿ;͸3@V(zϼ]e\\2aD^9垽S\ZD\0%~Vc{my7|ǽ?wbD\n=`LϷHLKѮ73{g0S-S<\Z, Nmp=-ŰNBaLv/8bFH80J\Z_oo6b:#Q}\"1:=b@ZBYINB\Z\\\rxP#y{3)\n|. J\\1TWv:>0VIkU25f4iHIH陌1\"5f/,lNPGٟ~bg R\0	qjv]?aX$\rX!Mnn\Z]ٕQ&74ol\r#d(Ƙ=fZLGf\',|]Ů-Q\r}p=_W^[]Uvv:^)R+S]u}#ҪLifZbzƩ_o#<&kSG8Ѧu/o=[-kTbjz59E\'Rvyi2ƀKr*W,91Z\0gZcjiLLL@)*\0?\0c*q\\v&E9ec,TdӓӖNV4鞢1tS\n.E\r3v\0^VM&419E1Otq\\jHV)~P?i;\0XE=#1DGS-I:Ϗ:*q0!mErJd21\\$SxpӐ?@\rϨaXfGtza6(bk!P\'puYnG~\Zx[-,v$FǞ/f`j2kԭ>	p`c,	I{zح«{=lDJbM\03Ow<UbT,9ۘźGcd\0G9,g9էǤfAr\Z>NĄL#(#JUɶbFlZawVosV]ϵa\\!9`\\AENzr9!ww7Y| Mzt}Pb+66fjXP+;Y?>8j\nel$5Ng_7\nUQ	8F$3eUx{>MzS슒U@)*Fvu֒2ĭ\"*U[8> A\nDfg/gW2-31=;W{Wȶ~(V16mxی9-sx̧QcT&$Uݦuב;$IC3CDS%U6bDw5HN]ȃ/K*YuɐD&\'9:k&6`8#XԁUgDlC\Zr\\n7[ԣ\"kOiOg\Ze+cȲ3jwg	R`ĳUz%de\rfgO.jIɋ Uj-Z$u	g\rr%qՎD`O`0z`Zː)ڬ/b=Lik| 1h9$yzf;f7\'̷OŵkB׋R*zyx0D`7uv޷9C__NH>ْ(Ԟk wQ]iDZa_I5Bs)JSsPS%g1)=Bi<FԝOў9xkgj\"{)k\0;Es1\'=F#2DvvOa..fՏ.҆psƤ_?\0/ȵr;3d)aHw.nw#hn9rWt5O*~ϘocaѯX,[l\Za׊ja3*GӜΝ?-r-ur@W#:!u>k|\\XMWPe\0d\0vSrlxϚ^0:ҡR*cLt\nIg9NycǊiR+}w\Z\rlHnbJLƌ{vd6e1ٟw715v|s Mۗ{ӳ?^csf3d1L,=✢f#=#@i,>XF\nbF$ܲ#v	Ċř@rk{GZA\082f~{ʙK}{;3?XrE51X@\"#8!MZZؓs1[B\Z{> Rhz:=َ]nM\'flX	\ns,c*i1:\n垲n\0̝}̴+tbʤ\rZ,e[j^\r)\r)4]]լ[Hk9i`) ԫfLH۸ʎwi\nL,#%1vy-OoXCۜ/wOg,V{I\nOѦ?.\'Ew v\\PϺ%11I4x/UUu)l%gSjBKQHDqGǌ*yv5OgqfP6;p\'l9,;ѫ0Tmp[vz5wasWg\rJ0O1vE\nxy$@ޜ\0333g\r#\n9(XB YFxj_x&∐ ՜{\Z7A4InTpU[1c??nu^gJ9v̾{4ǩ([xSD}\0y|tgHN\"d~%IͰU(?;kCK<d2v_7}/d$E>Șnp1̛Ii،-1{ū.*p9\n~޼y[s#|rz^\04)fU\rj핟{.\0\'F*ׅA6A}CV+(3g1eFӜ̀L{g?vsǒ䡜}?⁢z_2%Bc,1۶c~I;H`CJuXj{CLRt`go]su}LM\\69:uvj]\0b\"2vZ,w?g\r\"i=\r孶ߴ&Y\rzLtY΢Ϻ=CvG%2\0_]jHaCرPU\\Bc]aqFo1+\royx~ˋՄBr\r\Z\'\'YwM:O ؈~gbs%R=?cXU8\"\\7DΣg/cAmONO\0Vɳx<a]m\0݋%E1dVyj{>=sF#J\ZVܣ=_\"bq0*gldg\"UK:^N\\i@a._˿gag1H{c!2.¨cNeL`pEy[$_13\0V6L\rjmZfc89J{P\03^{Tq3HcScy\"Q\'0`\'V0,s-!F6=+=M9k +l֗ qhYhZP_HQj0%22ׯ#\'uSu=Gl\'C/=:;&ĚV`3С4,w\'\0d@-sDm[[&zt\ZÖ=tJr%KRĂkύ36\0/?2^0ǌKӶKca%)qx.%US9i/rZ-\\+/:\rv诼c7c9pVS[`a4] ~rgHa^)~irZKDF3ꎯxpܮv+s6M>ZKOE>]Z_u8/4#dXr罋k[:]\Z\"_P9+.]0c^ȗX5	 ╾P-\\-Ld\"HdA\'^.\\1\"S>P2i-֞tw<4m+sMM0l;1q^\'%?BYd\"\Z\0qaޞu[V3\"c Dj&8t	F=\'+#%ӽxiM]	aE&Q߭DGplYCW+dy[hg1jE+vV-w71@o)DZECtCD53f\n*_igfV}GEc9N_,e9Vפ5񔔣`ZDA-i\Z=^(|\0*]^1P gju3~[lu[v~xSugaLti\0kYo1،Qi=8quO\n}cKjIk#`}gFjsS3#/{nH8=tfybbhO$Iӄ`\'DYa.Lע!f֕+q926/$\nhլLTN6ib;߼뉸+!UqibäWswŃY̊O|-jACi\n=O|k/SOo\ZN/\'e\Z^	 3E;e$i	[;0BhUћy\\, âucxPǗQP+p\"G/qܺ1uW2hɨ^kUWalXYi`	Yv\n֡cÿb7˳Kf$oĀ邝Df\0\rab?gKzQP.BHXBm@<=B-3j\Z0*(E\\m!1fE]V]cϝ\0Dg33숌6Oָ	Xzޑlgpۣ^_ݳgUPm*V 0K\rZ?*Ͷ-\rU6MIp+T5\ZeM1`]e?N[om{x^ubb%`ea)17<=/w:ֽjҊ@bT2;hPux3^ug?\\XLp[pSca\Znm\n׭MӵUUZTj\rppp5wC Qyjֽfon2Q3dDcSzg]94I)364nM\0mZ\\*\Z|Bx@F?_[CDqrW8Љ\"[ezaдx={|-zsIvPjSv,5mvO?j2\0e\nqI@F>:<\\|ʓBّ<xm-vǵ=Cџ22-U\nQZ\ZDh~G3Q%\"YH́AN4OD髵A`&39^OC\ZB{y{)ydpNPN1ݽS=`M6\n-:<ôWREU8Ug\Za4)ENR9;QO\nQ#ZZ%_J͇>CasRNsdQ=&=%-xjq\r*zeaniiH[歀5x!V?*JmLJJXHϱ1$fN-xmp9ΞnSy[\"!:t_ѷq\r?H_#qkZa\'>&r\\]Av-1A0tl2gd?_ۯMp86{NM*&:A^F˨7?r1Kǒ	Ɛ-xr추5ln<LGq,5V(ɍM{#]53i6}YܱB0qٻWTm\"tj3ZU׮kl\\5KMouuzδ֟`UT_W專sÒ8#9kKX2Ͽ-\nQrGrVkBvy~ܭx˱m(tZss ?.\0*ޮ\\9v,KSOiLdW	\0IږGij_KuKQ?skڢo[u\"7p5l۸+-yNӐh\0S^g)qa-4Q( H#ǯW_<eVN,)Cv,~cP4n>(^˙+15 HhR50З;]&{P/W1`%\Z_3N/V/l\0!Y3_hf<\'֤\\97̀nzk(,\0W<\\1\0Z,BOj(D	F#1M3(}lswD\r	DL?0եN-/;GPfǘ씈S,gk<M3wJxei6צ5.p2ҳo@\0s\"Gp9QDDi\n=O|n\nэ\r>y>Yx> *\Z3TmȜ`w-o#	>V\Z|kKn Bމ@0sw=ǊzG|`.JU^m<-XwU@/ȉgN\"dv9v)w]XcRͭקy[>xxbK];׬efl@4xy\08RrHf !6ܰ%+LX@Ӯ}y~bn6foX+0&p$f\\\0@خ\ZU&.:Tq7dHmJJ`[xb2(ZkHf|,YCz{\\/gu[aj#kw_h5CW\\J_-l-ȁ1-;_6͟Kcthb+0eqNT\0#4+W񬧸ߔf{VUQv~!B-%\"\08D^5Z:ubvZNcVCsz?\'cyz炽`uDfؽ541a5>Gs.Ţ] 1lfΆ3i+\">)a)Ӊlv=+?՘L*\'d=m`,{\"#90Dwn`@9gtL{#{fp`\"DSL\0g@<ZR)XB=~^BӨ,(uNQ?[p}0s(TK]9GY{#<HNIVn^5MhRM3ť.f`F3D~{>ȈJ1ӎsXx#LU1%[5ef\r~ذR\0@g\0f4 ā9gq}q6A_\'/Ava{_@avL\0V*=ыyɟъmTA[jaWDa`4OT~<RdxQ_-*qgaI*ybs{dS\n;5%(λ\rtJ\0Y~Mc)k:j}}~9.*9Jr>fA%ބ&,mRrfv9*0B/׭P8OXCה/Q/p: Mz\n֬8o)Gm\n+]C\"3:G^H_E@^r.)Z-ɰ4 tx5.ngEF <B\r\\ ]G*T\\d\'kmx¤Mq4Q5\ZF:L!\0a\0˯NC wk:K \"$φaxD|~fUȥ@L>Hy~ljLA5PAC9\r]ǼG:@K̚G30dgP\r`Dǀ8P O˨.{)&gü==\Z ~mK ܖO@j{kc{R1A+`(4c&2\r]ZX\\]12XM]LΣvq1\ZK)\\{PuSF:s;rb2+ܝETKT=:F\"\"R՗露_cgP#*ͭafO5BE%Ns8^7f\"#9Qf.P]YNy猤cD]3{p\nd4D\0F\Zӭ/JGk&f/,d}S\r\"➘Ӎ_#\rݦQXsZzNu5kEv\0!j,cHe=WfP&g\0ˇI\"S02:)pC#\"Y۫DRe2YuH};\0v68dD1:G=Cz\0<h-#K`ې\0:slg]ʾ\Z\\<w,r\"]PeL\rpHFs%F[_)U]sΑd=ﳧxȰ\0D@dg)\"ΑGקןA!+eDγu6h^<eV%p:\0ZI;swU/M[1\r0gW]Jr\0F)v$9ż\Z20Wqn	-\Z@Q:|.(G(W{zLo1nX{AY>:>T\0\nf~^vm{9s%y=\0ltPPcCVly$uY\r\'ΝG\Z\0\0\'8>]EM\nuf\ZcĉMYKz4ǱMH-f0͌.X{/rKHns%VhsZګC}WX\\XtZmYl6#22GjDm=R	>bmi6Ec׭:<<PZWU䗷hƱx\rYV:F2l~\\&Կ!VQ,d 0[em|Ϛ+NiT%,-aIacOmRɨ,@nθX?FXXw]#\0\rf pΘ)Yqm$gk%e1Zʞm=QҨ*ƟP\Z|-mqC\0NnVWJݓ3١UIY P{;*FDYN\n眓*D^מDW\0_}*s6\"HZoSIVd V}=9MS͘S5ҔK(]S4@	M%x.2M,g͌Iܮ K91NŻ\\Ez	ebɽ:f`K\rol_HU@`2^hB\08H2͛#^խ52L(?hw\0=+iiR<TW \"&jw^+|Mſhw+ʭ!-]j,΢߶\'ZuJx\0z^dR*Tvja4/NO+\\mEpԳ(SX-哋ˠ֯~|\\0\rR0$A\'W6U$+v\"u۪f!Z[UlIyumqiI\rs_l_e	wx\nȅ*=VSLju:|VWaO_ߦQZ[Zbb;\0t+[^7I\\{yKbGW@kV-EVU<0\rx]Ejۮ}Nw,¦4LD\n5I#2΢gf\0a^@[+zgFsaRzkyTV\"P$e~^sF:}AjV3$i68z[az\0z1µvp+&+%gΞBpN*խV\\[騑*LʏN\0 )ih$m^ϋ+V|X򼅱Y\"Ͱ13ePwO\\NR,tuNP6sgk1-sm\\eNZԁN\\oY70-yw[ig\\0ݱ=wHjM:a\r5\\6g>L\03V9.7L^0JOSbi B+L5Dӿ,*Alv^O,}{N\'V(7\0h\ZvxwGΡU-M-)d.:WAtmPFvMJĜN\Z\"\0_tc3g`ZE*e1Wmm&-zK+#tqnƈs`NUmw4~]THY9*]rYhfAHWG@\rz{>;-V\n\"ɑWVˣe)\Zg@P?\':$-d,3!xVCT(.]>d\r=*#+d`%Zw8|-sY_BVҪr`Afix7|<PAH,H:e[=[u@-k	5A4Xp6Жn|}:XړӜ70ZbUµYIn4k7ԗٳ@Z*W^YnyIեw_Emhqs\\N͆u\0-&&c	[ Kް,~6LԼ䪊Z%	D>Nnmߘa}wUBnKOW#z`6b0\0s	Q\nH[{c<E[d-qg-l6\0JLv\0ǒYd$Sp\n<T6ܪm6 XGsZ-Yb~| gD\nvuycO`veo1@INB133F6\ZY-Zݵ1.\0Z^\0<LXH_6`0IW-ִGg\Z70|#|{*ꆭט-{vɠe٘&h-lӶAH,uLu]CO3(\\RZf\0\r\"	N!xxD1gf9B(g,\"u^	H-bTIg\Z#\nyW8$\0%`&vُٞ?Fxb9{g=0d<L\0e?%Df#s\0*g2)LI.ܵG\0Z\0A13\062>>Zpnd>ٟ\\G~k\\\'e۔FZ[jK_iℇ\0ЭF2	(?6+\0F5+P@d#FbsP4s,pLܜ\'V[kNK3Sakk~45R>EnH}Y8̰\07N=%Y5en5%fYZKtK-ZRhru]u-dO+K\nҠVѵO~VE(%;HH@w﹟}Aʯ>Xe\\}@\Z>J+0njਡ*|=L۫U>\rt/\nƇ)}Έv/{$jqjѾex~\Z-[|\\h9Uq!>z$u_b~i\0~rт>]gMn>+ֵօT~kNNi@ul` LXAaGqCoR5\"$;GeZ:q \'(MSB& q\'!/e&X-=cjeg5:r^s:4oEv8\"\'^EӮF]N+Kk$B1S=2K씒^FuTK)gn^&%QDeI?dzZ͋\Za\"J5L~54@uLDgDI9Vujj\'Hg333gx欢.LzU!Fy{XFWtOl}\0V#Eb) OlNSj0\"lgI	DDޟĆg5q\\LW}=TޑE+,uDh$6s(YϰK]Wnt)eH\\I0n0q#V,a(*JIDƨuu\'	aXa#\\[F8C1\'?#1~&UL6̧\ZcSĐtI秣(;]YkJ~e9{Ǽ!S3ӑu{?ˇ>m<%3c,(cm&4j\\ĤD0R]0ˣ^*HXE%ȑᘁ}L#\0Z\0h0&f&b<z\\RJ&$ju3d+>N!J2ȵc5גڨ#%1;u+O.*	lz\"\nJ2)8z!W^&@u&dgpe,Hp)<*75GDSId@LJ>6WHW?dTfWޭp|n[qHXF@3w+[iR\\5W)\\F\';^dMJ%q.mF~3iOOV4J^/\\qWd^%Eb?tڬتuvC3)@xEͥ)5yQLC0]\Z <Cȗyե+2Ll*|~A)gESM_e[jϥW.`a,[A>\n![bxϨhW+fCߧyvL@WE\0JѽJldF2Ռr+k_);&e$g3U@0CTS696X%ڰM\nXؽ0_[6<7b͋,ݰi<=TGj+֯uMBW)-?ν8Dsh{џ.WxMQgEL?sKpm9@SpsНH}RfY9gYn*iرb|\Z@dv}~}NZy[NCx< $Ŧd1?jzV\'TTP*:[yɜblMD\0P{LWK#<w9h]5F#joB<u][Ovv\nɐF)\0~&\Z7n&Jyqkq=!Yl_듌,?>&Ǥ(߯7,Q,d.m=Av۫(x@Vt|涛<$;kE5S\0+͗*3v恈A]=K$[Q꧿+M3IL\'ƋV\Z\Z627;F4^n۹9CO6%;XcM۬wf/),5j,W]gSf鳈8BvsLi\r%?+Uvyp&${+P-_wk;_~wR+D3uOsUŴkq;\rUtV֣c`QZ>ڰsvOX%R\0שEU[QgXC1_+]nsj+[LFr0\0qn3os:rIS2K`{bf$@ZpGKhPjqyNtDznw±+9;!]|uemi򮻹d	8?k~,]{!CJr0:{>^Q+\\vƜr\'УuPZXpYƶ;Al<4ν:x^;iDT2$\00rCJZez(k>P[c69Seˈ=K\r8?%\r,H\rsJ\'Vϧz+U\09ș\rFv<%iTOEexm;Xʫj%1k\rDPf˦^6.O(~;>yk<ͨh{RZ͚w\nM܍{5ŎwrZ#BQ:ݐ>pֻkL^<CjL[d#\\5.{j|-~w\'\r=鲵Y7\\% #HX-`.JUG1S,-qm(&ɥGb/P|x)U.5KDYF۳K5,\"}\nS+7);ťk7ܯ	4scGWwܛi9[u$yZ]u5eo+\"΀\n˒v;ݯSF犮Q5ے%q\"]V&<[ӫV\'~\'ۄOܓ]9*V\\,PlcjPe]xO\r~V=?ǩS^}XVVi?#K̬ZRϫ\"6Iz2\0o0шn~G\"%z_1F,5kգ{nu,Pl++(d\rr|lu7mXCɏ4Кʳ{%IVԦ<vS]cesKqk)j̠c{1mxl׌	Q}:`w&7RXBk7 P$+^z<b=ru/*QQe5UfoǮ{<R\"9Z+SI=aBYщLxDd譜\Z_j\0UkMwOp,A@XzmMZѰV6kži!/o\0ʐ	Y1	\"6ϛ&01#gLGXD1K\n\0O\rTYv:TA:W1ⸯTjvv9)P=TSeëX>qײyu/okg<eȊ3I|t77^+[ݾr/%\'_{Z@w]zuZT*c\Zˠ۵}Lt@c#9D11/Ut.,\"u#t7)0Kbg8BDO?N/LvLaL{;g?ۆ5{;pKbb#9𳟱^srQ:q,{;qSrr.ډ#fb3Ӗ1JCC^)ae>fhm;A \"ghY\"\'ȊOJ enh!i+\0;eEd,9zLg9gمɲ,9,<6KbPy&Y:uч|HQ	h4N#ٟ;O<!B3F:/y{g`~\rV=sa>װ{{19\\DV:JZ 1;ҳMiG:2 0/f0>-ܜ4кIdd^3׸~%at)PŌvS~NbZgPTIz/%#}.\'gUO\Z.{\'pDV# \0#2&qp\0/SmNH\08DnBЈavČ}E9DFDFk!Kb3@ʆ#莨^hV\'D\'jg<UfE̜~a Hr$Q)c<8׉YC,#{P25嗶=ǄYdG|M%V<l9(.qfKMTF/Ӕ}/fcQx!BF@Lg}hQ.SeLDm^ȧlT2l(F^ҟGY$s=D܊+W+,3Yvg/6I:8i~S;b?LIuf0Ӌ[r#!b?-r1KJ\0b#vc);LR@TXFC(dm):#,{\'7:8Eg[~TvxDɌTtfqQ8ɲ1ROYdqe|0a5t.m-ZG\n=ggrT=k^R8ͥM>3,xyw1+H/[<<Uw{6jaHIL\\1P,+_KףV7~ŤB#\"7TgtY~W^1hOLڴ9&7jn^\\yKѴ6Oqa.\"\"򵙤صBK~&*q&\0-[s3RSZJUܰYU	nLX`t!j ФwGd0vaPHp#d3 ]>P>%\r}?.Vb+1W.`i>@\ZO,UzxS\\O>~+M\ZU7slhi.oY>S*~ŭO:RҏF7equy	g{+;iz#Trg9.2l\Zjd<q0VUCÍ:ҩsH8Q.j\ro)m@![;^E>Ok2ۣ&:F$e+lc=#׎lqU!+s_Te\'03 \0{Z\r,\Zd<\ru/\0*!X\nǝfQN.>Ѝ%r[z?ލX%FV	KDIeszfYpayZ&g=)\\\0OZK_~o8DbyB\r,]6s@;L\0;Яqo^R(\Zl@^\0nU}\nߌϧr+qYII4k-y=k\nyʌ`^zm\0uk_MC\"9\"Dl-\'1%*Ed1ˎ͖n776\0wǪ-Ұ4y6i^C\\邫K(V/us5al^%jB\0P\0:gv&H%Jc>;|o(⸻ХL`Xb;\"9Y\"2w/=Irv\Z[JDw_:M;5.3,r7lq4_`Fm9\0\0:\'ө9O\\lqxD%òq\"/|?-Wq!M<g5\\FP%턑mXȧWHmGC՜p<;ERzYF	/ؑ|*3u+񶹄\"Ê\'w~By<WWω((a(UiGV9mo~a[~.&(Qdf>\"*ٱgݶ-S٩\nY\rzPF25+ˬMܥAj&hk|_PγnO+ɳ̊Sq=\rZbҳm/ue/Pr.گYA+&LI0ԪBk[q6yxjʢAaLD4/Vd7uGπ\"<\0)\"¬0dED	Ume*,\Z\rny}JKiޠɮUbӧ3PdNJVx߉80&r6*..aoA䵪j!1M[\\rD{,rK\"3wAiQ\"zW-w\'o|Dۺg\'hiqF-WAolq~a|G;	__:521V1EVa!{qMWUǟ(-:뺩`C|ȴWwn*Wh9>iB؅pg +N`%jD&m[	\rv&|LOJJKpvQfgX,K^=I^PtC2U`eݒ7i\n5u|}f05	#U9Ae=Oi*ޝ@M{ug۰ ݹ4V\"%qst*o0*WG\'<\'4WX4վL.Mޥ:>f1&RRق\"@clQ\\)̯`NrEVu+COyvHdsٙ\'ťq!1C%30cpԖu\"F(,b9*2ϲ\nqF$Y?LVf/.DV	O::F33ȈSRy%N;32)&\ncv{%\r̢=bZO۟x2\'10S%N	dS\'C7ztDN9c4y[cd	e1er\0> [3Fqk<jkXZqÛ3D8Oon*L;9q\Z$ld&e?`wC\0+/mցbZDix1vt&V0`М?\0px>+E+J$cY2g?,!K#eыi\'8.ն\rgSoZAON_Ӌ@̧(3AV)ȘC_Ҳ?HG3AGnALD,Id?׎2|>q%1踴ǲq>f_I{>4rЩ֠\"D?Z>\n383рN^LDIvb,bʰ83g05ޓ>?Xd\"\Z})ǳ\nZ/Gg?h1tMLhDgbYos،N9DR%)Hcwxr,,:iK,\"Dfd᝾\Zjn8A5{a^0a4|hYCk峌Z;\\uON^x.@&\0VZJ9gK^JBXL\0s3>ƁGNr_Պ`y$\"1^X{\nLkY(\00?,1ғZ֭~n]6DbHmaƽF/_7ZQ;,g2kKK\nPLCrVxWApM~-+ͰeW~oڣ>4%e&6ա\0dnuJJM~O.]*UE퀏k[\0\nՆT8,}3s{q[d5D?\ntM\"XX٤6`dN(.^Rbe\r>-\0|6O/!cuM:[Ԧu$;&W77ijr˼dB;Z>ެEQU9ӫrYOƲCvS򰉴o=\Z/yzb8)gC5(.^R>/7^)ǭ8{uh7ByuJ!ˑD)r\Z|6𱒧N!VfzQ1LLcI n9m#؛ +UY{6n{\n\\Ohlز-tKR+K#Mc}#SrW)ʈ#VR.C2t1#?ϼ>yeZ\"rd0,Fu;KZn	c\'(숈t-a~\'|5\ZV*e;:DX0<\Zu%[{0\01Nxʜ?\Z\rU%3(e-b*JF^_<X-Hh82(-L3ƣg\"iUg+--_X=D!qNek.ŏ_E蝙zcukv<(.+)Ok>*n1o`^@K.8GxB-וL\"h9PqySj8e\002/:|VP/sm)bSEឺ v.1h&0DR&ɽ{{i-χl!.LwWGǳLShX\'@G`q\0>ç>CPf<uŲ31*`nEqb`~&c`@La\0LϰDG7xi)tL%qsfwJ0`!e\ZrW\\\'I2&5}NVJXT2la@Ƕf{\"0۝pVZxJY̓a/?| \0(I∟;Ba59\0g3?\rUN\r-lPyW6zՉ\0k!^p2\\g%O\07W\"#)\"\")̊{ff~ŞH6\"	FY£o~1ʸAZPM!===vcK\"AdPEdbg2茽{lI9wz2vt~&$x,qtSfb.ɘK@f%s8b\"EY陎˲tuOV\":(pks1IÅ5L}38a	`MTc3h:~L\0٢^jz\\^CqZsϦq@ 3#\'zHcʔL\"JG^YOQ{cHPb6F</E]KidL?d{\0\\=K\'蒜ɵ]br@SXjJ2%38lLDϧ:\nTyvLvc(fF`6D{1v8:M1dHĵDŻ5Uڍ\"	R}hw׊6̋JáC1$Sf_dܳ\r(Z3L?gޗ\'`\'%f<yx\0Ox)\\CV0ׁ7]X`q\Z$rrf4\0889-y_GK/_/?k0F369q)6am\0ǷӲFgRf7]2:KGNjqZͧyXyjag\0= :\"ө_!|Kb^@WeuuHq[_**U|ҶB^zmˣw^ύLOnyF\Z:i*NmzIa2E,\0vWQj\rz1*eQ6i,|ofzCN\r-J~.$_[DyH*EIO\0\"#d\nwfFr1k21=F9;Ys\0K\ZJxh;#+i\0-\0O&\'ṣ9İ}d\ng^\'k2{hw?/=1{atG)=Ys-~&*4k3`g3#9aqb͛o\\\"\"B??Sa\"Z`HȈ+T*X-`f3\0S:\ncriUZ5Yl$YdӜQMk`3J[Nd{=[~_Mėa?(1\'?b\rk\r:U}f[_\\\0>O;uMm(ӒCNfy΅RKtD#r0m/(\0qT4AM6\"\0|FGJvyGO.mҵiIMt.4\rXLbJJ4~p/ &}b|5WrFrE0q2Zb!aj^/1`Zku\Z6+lga%\Z({1`\ZO&.H$`#̔kٖh,\r\nv}\0X jh(u:G\"\"#uam\06L\rC?y	C&d[jߠo(\Zq~EA0k˯Z{42\\[Yi!Xȟ<kHdsٙrcKƥDZwWmNp,wQq\"*-ɮwȴWaag9H9;p`OYiX@!	*$<u/?qU \0-FS\0\"\"Ĝ_$<,[lr`$Ǳ\Z^pkEĳu@l-yԤЯQqlrWUNjk{g<\"$WB&}\"WԩZiu*.ZN\0ffzDz˸qITF*G Rr[i]urt.?il6# Fd0ym8fgnV=j//y}\"!+⡵(nղB]jk{߉g*ſBU| ƻf\0L5Q7z1&LePwNMJuNM`W$un ,dt@<Cynzi\Z/X@?`&S^d,]-yKv\0\0l//Zs\'٘\Z2Rsm\ruږGm\"2uISc\"$Z[DjѸ5|KD-BCqv@hW;jvm}\"f8/\n$@T3iھ~!jîv(Aq|xN3Uŏ:36S./K)ܵ^\rVdn+ѶLL|2\ZquOW\"}I6y-?\rgnCXh)ZuaN+DxS>~i..е=WlB\n,_^qYa2\nG+Aomx0V7UT`蘙D`Qe;@}xDq<P\"P]`\0\0rkii?$Wߵ\\O:mVK̸f; E\Z@+j?ʲnkWi\n߻ Kq*kE^Wp>갓ٰ\r#1XK^GG)ȸ;3bsi+Xuۍ\'.2Z\\VBD	w,0]Dmj~Q5JqUЗs|N?LmhMOͿE~kuWs3)X}U!M>]TXh.wl^-$P5n=@(ʸǠ&NrZ.kW+o<6ZG~\ZGN*rXo$;MgwB)\"|7\\ ̙mUڴGnϊݬ\"1_ӴN+M\"\0`&nZ	eTתZf`SkK\nZ\'q-\n!Ыz6~R#&UMqQDd#6<M]\0(lE:7- o>!^oi(ƊY\'I}CGӴ*㍷X+9 VИn9Ł;+^^ ϐKT_el\n`SEYh?g|۽kr᠕Y10d|Ws[Ob8OmMmHeVoq]!ATSma@zv?@Ed\0H,*5C/^QiQU*ɶbk#tpnn9*QBuc~?qWJ8#9;D5%a8)\"Yow㉧<4$sM`ҜC[ѫkV<:_\'|en\Zr*2ajڵy>sN7g-xT8{Z^\r|&kmZ;mZa:Jt[v0J~+WW󜞖RzM\ZfLVfo6o(	,XiȗP\0r[|3ZVغ1A؅y.&n\0+e~\'sxٲS4W\0  0;X<OxsL{yeȱ<\06k̼aPWxt864Ƞ+B,5c~n:<kamV{\Z%^9qq>2/lgR?d~̑̑3=38һ)qw(a\\_˫4=$]r~\'mȎ}=U#WjH\nmzQ?K\0\r\0V<$d\rV-U3n3NcgѢ=[xq4VRSwa{:O1VNL\"\rQ	58b̀ǺC3GaF5\\\nimcY\n܄V>Ȓ>ȝ:jG_m:kqj9k9n6<%E+O̑Lv\0N;e-W\0L}H6B(u{QXҬ[ekZNNcb\Zctb~^nVbJYqQ,o=EX>\rGwfRSg9y};=.D@/^Q3f˻45j$΍9897o\'\0f;c-YRbcpWmf<-yq+Ljh$zG[|4\0w\"勐Y\r\'oNS\0RYg/\0k\\EzˡSC&K[\'Wo\0C3adH}33gi?+-S_gt5O5Lxwm^+j1^N2\\O/əg9q PCɱ\rP&NGn=^?!G/\'^m>:C>UL	k?R~HQL%nxt}Yڙ/\\gF̄\'WW1hinZOn\"#\")=&q$̏~Rf@45.{3laGYf\"/g	&?c┷/c)[&ffRc11ݞ.W6̑E3&ij.G!sحfڣ^@}*v/A5>dfb\'%Wޖkr9putݷlVh6*SzPW!oc>y&\'DvD~]_Wa`	L}8Ļ\\kaLV&qm e(5Gtl;]^1#\Z>e+ϕUe6	&^pYs~=-\\8r6Uk0MЀr{u+76:E4h/l#%\0A\n\"Y-ZȒ,_8zJtx%	I,~cЭwPtĦX.`̋LQ	Z`RoLhb+$[ʡ͵®,Cfa_)wz*y@QI{,]ԅe&60l7nAm\'v	aväz1P̈ᇷq (M`&vr\0\\FE\0Bıͯ9G\\>ʜKZ<ۑ!e0L$lLL@5kըi{nZzcg/Z9dI\0Ͼ\Z$%N-_rKZU\n;i*#S2[&̔L&wnVq)XȎG;Z5`Q>O[\Zy{ͨ蕟7i{%V	m3`@:ԐR5oI\nbR$4R#.8U@ɼi{C k_w_[R+NRNc{_Og7|s(oR`A\' :NӺ]_oRl34LDdAH|HNpi`Ki$J:`hVs[TB؇4׏[m}Gɯ)7g̛aa\"e}`Kn	Ґ=g}5x82ʜD\\YN2pJ3BMA*V&*Zu(\\žl3`YAvH3CGwV%%\0t2-Uj%L@?kk+)X{nޯD%L䣫Raf~\0MLW\n-X\rncYD.H]KSXIu=\r51Oa89	BTGV`)CcGi	.\'(\00C.65V,蔡hS:7?\\6ȍfS	kRfaI\Z{a^̖G<ah\"V\Z1-/\Zz=Ak!*>-gؙ`oI	Wvq4zT-U\r5DMmf^\n*[s%\Z<o^gA@W\\\r]$0PZ<$:OS\r¢e{؈,!\0n02$7VP]8CUMF8Q1n2\0Gh>tR\0,,,EyV,gt[lxN~kqs\nm.LV\0ZWŏ+N:b(Y28:!-6K?eocy )^\"^6q<*!^LmíXYn}}@n<PX0nW5[|6	Ѝwok|!-֤Z\0&EM	Jnńm@4ߘ63XaKna5E cCH:4ǌLo=O@IOxKN%W{vNmV)X9\'m\0@mgdKr׹2L8Eu=Z?sgP)PQ\Z>k^Y_\0	]%pic Y)wwfnb+N;$\rKQjhկ<-&p>L_WsBV`T*\\\Z\":[kfSNKS6iS^XĘ\'7q{fWLbZd{Hй5x򒟌\n\03E٦[鰛!&˯Za,@\0kUln\"T[]/VdB le5\0ĦF%>Xs7+s5>U|.UaefԳnV3Q0tEPT\ZB)RLs4m)`ܳgm>7ԉf.]ا-P\0b5=kE}vLu;om7+`GNFKp=[͉X%Kf-t-\n)ht,t3\\@1\'!UtkىԂ\\)к)`VL\'I\rx%ђ[Ԩ0Zתkz@rI54~߄\nޭjMC!kۂ&\n\Z\0iMpN\rUOm\0f:\0-Vz\r)*	d-j\r`LY{_\"}U\\`s\"Z xCz~Z\rU+Z欛y/LYdVCtL<3bk_}íG$ ѭǄjq5?wycRj5IM\"Fmfقͻ%_JF][[UmsF$J׺??b>K&+rՃ[!)r῱a}5F3W Tdm5J\nb\ZV}[u+{Z)q)*{ԕ% ^+Mu\"R/ƺR)`aY5k\'l>:/U((!y5^?S+R+Ȯ12jZ6:½cgko\0HV+j\r(E>9*BL5n;sq{f;^B) \\!YkK\'+z+llPhVAiKx[x9>W.v+r\nLȈV6݂l|[14LV_/b\0$2v~]qy1LQ~?D v\0GՙJfTJl- Z<ӭ+\'}F^L=Uk[F&l:LǮ˩*u\0-R]s{IE-C3D`wщ@giSUVD@Hiӽjǿcᗧ;C8%ɅNDꝲ^6_~L67VYDD},?dpY;\ZEQ&MqDtmOОͮh?*UjKb׺Vv/oi\"Z-Ex RRn&loRGόKtPre[a6^#;{+BB@\n..mݥb\061tWfN#%`HtqXWB]h;L>8^36->wʷet[kbo|N^/!^@^(R_7_嫨7<E%H\rj\r)PND#\\3\0q;W\ZhR(/dxk$y51|\\;xeB>\'&Yk$O`sGO̭YfqrHxq]N?b1`VǐE^Yi^du5%DA&{́kLlh9\\=!{@PB!+Zrx~%?L䭲q<xyE;qB\0H7;y{PFW\\}DD0g\0usN8$pㅉF!|Is69$eɯ<,1t,LXNm>#on=9_wUеL%$jO1E+f^E!nĕ}\'ćEX8Mi=_ۭ[|[+\0weֱ742ldS<-^Wr]mW9VH{o(71+.(Uiv@gvⅅթLg_Z[u᭣E0mo\'f>O^`02j=kT:S^%i=M8oшSaq52; gC_bŃܰqf\0h|1:lt%q۔}$S0\081e|} _]d=,#:\rLJرN=Ҹg\0?\0-zU&FLݣ\0LF0AHD^Ɨ_W6Q%,v4!_T~c[t(0&;/X_1dOdqx0a0a?V:SCRdtdJ3q=ʔע.])Q⏒\0uvF>&ݿIW逜rgU+G˃k4Fs{,\\uQ F4`,4D(gV$:\"5[B23AG.=ve<$obɽY*S$d\ZF%=Ͻ}X85xչzN\"\'&ި>5k6\'ʘIйv5f3Lγ\\Dvw]cM2\"󙙟N/jB(c=\"\0?/y\0Zc\"g~::AK}xi2iS_7a&jZ,=$}Վ[bÊ	6I`W8+W u\"\n:SE3CZ82SGwq\\U]<Lm$̊b>Td\"\Zb1\" #4Ɠ,H\"as3?nQԓa瑖\0}xq35*&H|*b+nҡ(`vzg/xynRaC7#Jpc)\r!Z?S*mTr:d9~5DA$dg0#?q3T:,Bvi=>k$%Bj2btFE	aDdS==Z8QXCzrN%ʜL(>=2\0iXmFL/	lDY\n5[ȸgZ(JD?.]a3\n\n\0Y=e013}:\rLs;̀c\0r@\r98Q\0jJ\nL{,{3ҦwwibfI3狵}I%#bT2oHvk~6%\\].?Da\0b !c[^zGo3mas_:1Д({=:0>₢]ސ.vnʬZeqhVj0V̷\n`K.9iu\':b݂SQ޵yi+L-q9#7~=vg2!/ab<-/$yCxy5af陉92˼sod5L\0cF&=Tْ S+ۂ\"`~@C; +AUFv|Sr]Ue^jFR\\΅}x˗k^ƴ&Lc:utTBw	,Fl{Ǖ!+Y`OY(s)Gv~=PfN<xݢ l\'ubBagդ~n=rso4%&19=K-az!\"Y̔$X}_@w%n4A2:K;b7*2>\'*\Z׷{\r+}찊1I.214@r_@hev[BM;CG\'oFc)EtJ9{=moL;x!Úu4ma1&Ù#2f{Hqb\'vf@\n>\r<P.XH:Nb`b=Qܺɭ$w)7Gk5V?:ɖrlZ[S=+=ҠC.ե,ԧ1jdĘ	L	LwdgIiťHHΙkF2)RqQ2`|`S{;nճZsqғXDiF̾ȆCQ$	\".wpδpʨ,N$gm#1Ώ	n+֖6!~\rf\0)	p7x2 v`KQ?i*\r^ٰ/;Ld)G{>2)\\z+UJ{7^l!^3kJֵW$&ŸEhҠ2g>ﴱ٘р4濇\"E˕g]IK2&.BcA{<c[6[,<G~\'㦥Fax1>ݸ?u0aLDG9>6Vbqp锖ME&`a\ZE%+sltxlc&%\'1F=v\0^\'*zyz\'>^~;^TDFFs	팴}fUUf.~Ej͈{M\ZKLGf==f.N{e#=KLƬpB@ZJ2.\r,|!ab#j<F<.)in\\\0Ll&4⼖N%׷ӏf5=iReDwv>?g&DݟYrze1R;\rT!s|N:eV|̹LZe6a1Lav\"^fQDDFbYȪ@G!pU&ei?Ո8C%5<NJ+bלmՓuksIZw5x_&dH9ٙD vLO;XMmP2fdSLw]2TPM:dQ~,6YYd110[qG|r|%5]uns:\Zu5*+[sϻVfȓ`O Zbǲej`2yClʹ/eU \"fday8jͣyeљKhR!BDGdF}̣q\rrw8(d#,Cauܴ7NO{ZRdĚK=31F^\0ǗZb{rKf@f-Ϣ5F\0v+`+Wfwz;),)Ɉ۠_v!uu0rB\\UTb՜=b88L6:^6cNS:#iшp`!\"0`!\"Ls蜱\"33gD0`CD0`CD0`CDHJL^-#uv3i]\rD錣)=լ}!4%ް,jTS113|Jv+ծbg9-1\"#\\Izh.v{j`3}NyN.6k\"Jf$Jf3يx0L΀BCx%AMlNQ31EُqmBjSLd91GrA ljT\\d-a\0(rf~~:;J4	YbF\'TWPD1>~J&VV^eOJ;zaK=1sEpcqɌF$ü $j-!r4Y{ģJާW\r,XB&sc ~&)PGv~!|8\0I)*ߕ\0yͥIh]vkZzsգRL?f!囦	6\'hLsH9jګ*eiC\0NzGvhÚf\'fXfe\\zbF3.ipޜZfb+b4NJ3JytSFip$MwF.3z3`u+IBtT(/\Z6w$ke+ʽzXaoLs\\&[f\0{]1VCa<.UX*jCa\0@3pӐքVSvʋQ33339:JwWL+DAS-jpJVK6/moq[ʙuLL۞H|:~+W\'qNlX1eb=B9#5h2|NU@yL;uw\nl330EѐմM,BfcXJcNz0e]n\ZyW,ER$bq#}ۄdaӕh\rҥwWt|qxIƓ\'sWv*\'AID}8[4ɳb46wXyW!`gBx2JK0$ɑиtqC5_,uEE3Dbp+U:e3<b=ϲ8PI<VRdtHޠ[&Td3QYO#!%M[egS^JFX\0\0s%3Dc{E&Chsg\0 ׶E\rKड़/6\\G]P8%ן\rꪏ_%99v_`TMm։iwhbEC3_]S, cIOd@g,[J´30i0C#܂oG=3fb.5gDZZǛq&\Z\r	#iD:W.@g#ȏ\"fb\"3숌9uzr	\"گ,:Ŷ| zz/߈\0ݭ$^Wa:\"	gjcIhׯow:iSӬ5WL&{BdjiEL,ge1w).YTF5cѶ[*;NG\0AL{|5C>5nةJ2Thc.\Zk\"Ŋ`ĒՔO+2ՒQ\"pQ٠,0udD13̳9}Aa9N7\ri_ĞێMdvgDGtGqwdVJ&F\'\"k\n\'J^s~J\0[crvm.W`$\"0Yx\"\rB3x,$jc\"G\Z,5q8@wۤZJ2:Ъ2`mef;%u9Z\0q\Zcub)&Q@(7n똈^ZE0+G^QB E$n}b˺89 9WjdK2\"5SۜۉؖP=RmӜsy>92NfD3)_SNF231]\Zhqc)^==\\b컶\0 \nbswVTɖQǼ%-VN $F#YڗVrRBq+U`If<lh\'v;WekEZkriw=:;>/$@Y钎	ucTİ2f#P|Qg6vjEvGΫSWwOlϲueXTrr\"#4>01PMA.pC4A( ,ֽ&A1hLVg20[[Y|=_AiAE,\0miHe0יjD{oK\'Pl:cC\\=ZJ*Y5&9x{iaՊX ǵ2-FNfp$1>Lzq[p\0c(#uĐzRw4wS1PY/pa2:{\r],	F۸Wov\\\\g1	HDL9vF~sY3z=9q9-X0rQ19}ޟťoSF19UxgfWxi]3\"AIn-]pb|?xv¬cԀBhշLf]]G[7Cs2.g))6ƐS|?\Z/p\n8qd8`WQL, WᆷNkUMe.MlIקzd\"Э]*k|_~-{n=UL\n!շ\ZF173NbNG#D7#2j\\Fւચχ=Iv]i\0W*\r6,Zr\r{ō\0фE0`!\"0`!\rU_Pr+٪!-\"eq\ZV\n`0`0`0V0`0`0cF:ǶLLiq\Zm\'ɌF:	ISy[M\0QhXb[ȬyK>RufDE\"=	(㥭`C&L\0s%3{ň6|k9PV9SCո J\")ՂbXCW8XWKwm\\V- ѫ,̕RO<*73HǓ˼\\j\ZC\05XPPo\r#T<2dj~^f*|+SQX~\"*ScˉWG\\`v߅}OŦ5Y^[82bDAزnՆ׎}5+Gre|e <BCY)ct@KChJCBf,jbj.B7(c+WlȁKL׬j)UUZH7\03Ԕ@TٹgÙ5A!G]_c\\=?O\\rn\nFKCNrk\Zj?3|n*\0\'_.Jmd7I8`	[^\Zx\ZzȎSχ\'5[r݅5՜	p[׫SGZOIRrl|9u(1f4pio\rMWG{]zwT\"%1+\"ЭAe\'_9ͫlirJY\0{I\"34eP%ק\Z˼<	q.*<Jul.3s]uW+] ,dBVl1x>WN<Owq )BNH,\'NDoT1Dҟ%*R;NUTk->La\rdkn\\o!ڱ-9EpW(Y/2VVXb<V!$Q[bL0L}1#; vc\"Ehj[mL#>Zb=R2etdv+&?V?_834؆_s̥tZ)dۯBO\Z~\'jVq㩏v\rTY]F۴kxxumqA2/&Ygf~Xtx7uԟǾ,%L\r_WaV/=>CO8U0a2C*llaQOبS)jӍ\ns+(K&ւL5Я\'9FR\\\'yVҷ@7;\'|qqsSVdćuӷ{鯞`UN@Y*@e{M^4RXXAĔsg\"\0?l*)~pWOuL5IOP,+Vܵ\0p\"4h7vw\0prӮ\Z4tmsQK|o2\0+%i;cmq#x`hZ|gy.Tqh\\J֑wBZK>x=-2*oDFkգ_ZY\'r&Zu6udq>[<zZK&g\'<m7\\Z>𱇹U:dI2YZzOpA{2Fx\ZR\'\\m\"jPqaν+\Zxԙ\"Y\Zv_-bFbn6\\+=)\\\":\\cٳk05o?ѼM4\nR;aE4XtbRӹ-EF\0,5u4=e2\"|s6Y3e32=#1_{J֯1xUx;\rYFɉ$#bݫl\0ZUVgr}:V0 w]]ՈkݘJ0-9W^\rZي@M\rv{1Y~\nJhJ͑V|01[?Y^78X޽f_br!\n)鮶gwo;Bn$IfU4Ii?@ǆ[ׄ\\~<-5:&:LX[jmmZX47[C*\Z6Y~EGCyTe.!ʵOe>b|M+=\0ʪ@l0c9D8\"إ 6 D&ep`FYomy>KGDX%DKY@p\r2h/\\ۣuUSۡ$?wxQ.\'m;w\\g:rn>%nLhSA|\02}~JB𪗣ypJuJ,:t,@[$H3r]ᠢ.5*+b24th(iEMŇ_Xq\\/r0V8PKcISRcʡo,=߂͐V.V*Ep8*l^bW-(1ęz>5X\0R( bI&k#)Yl-qj<O)׭WK)ɆLMr-B^}[kǭy\n+/1,W*50u\n}3c7mpI``zr<W4|ëۍElczD{jN&E\\Z,b	-Ry-ؽGZpĪxXLE\"歸J,황~~÷<Ew>ˎ,۱1C%+B!Ut\'0@E{ŰWm,Iɔ%:~83!Ykf6a\\jv\0M\rq4X\\MPh3=8jf?c,E8~N6k#q߄T_\"wy{3bhLP0m``T:<1ߡ8W\0jFd$D[IE}%K5n\Zio\0׋9;{0,E5=%q)n\n6!FfY_~>[iTNB)qd\0|_uԉ{Xmف셁3I4j`nz>xʊҺDЏ)]IiqJZKq2fqmL%kcҵA-v>лB\"vx[)6zUZ;|ט?:ݚAX!$\"U՜v=O;٭:li1	BEղ:Z{=\0w/SmIYb/złK&x8h0ۦ{{yU}i{`3-׳Xk\0unnF\Ze%q9-OKzT߼?jZr%Ylcr짮F	B	n5s6Kړn2\rX̗N|Mr׳=!1,2.#$1~TvtL\0,p|Zγe;+DO\\͟%^N6SI~VY}c1Ȯ&=gRqXxqV\0&)PeaosK6.)3O|4Gyx(Iwik\\79\r->o\\T$-d*,,RDsZ\ZYxD%nԐRx̳ڬ];P5{{x3jQUnjALjۉhvr-pdMԙXJf_`6F#a*SN23Kץi.D~+\rF0`z\"FPDSFs3?1Ӓ4DAuv%dfRS\"#tM:%ak &zBMb[{@wnĶE]}XETOV0`0`0`=1)>,ǘ0?͋\nGi2Bap?{6\'}͜_/\r}\"mLm:Y>~]{kG\\NlaqJk=&\\Xs38\\/!TG?6jl9cdHuOcJU>!NࣉCQAA9\0f}/^m&Vrąr탴Q\'LMgye|\";K}>>iu%|b\'D~UWL/Z\0Uz.7E+\nc@9tDe&s$E3$S9fgaZwg#6N	-e2}6(̛://~4z92&>OL6ۀ=,\0r;=u(\rWKeI`\\̳[W^DO:7w0˕b^)CJ7.ۍ&1e-\r[Pp<=<u^5\\{L<)NQ.D:Q\'\ZޥPҖCnLmT5͋z3sqmMiPU妫܄JtXWаO#D$\"<Uz}b\n%Nf|Zt=~V2cZ \nP6: }e0&K1_._ʺTjsM\\t%kש`\0iT׷ݱ=#?k	lӡm6dݮ%V\\	Yj׻[iu\r~jUĴڼ_h|yF7m[Gv[|L, `,|~&0E\Z	A,Se֟XN~Z/cx݉)dL,t喞Ͷ~20$suyUŕFUC(~n\Z|M{׭la;Ur\nXE+_sso|-faU\08˽cos2\nz@p%(5kcw6U< 78)ofuѩ+z-~oGۅti\Z/.Ďp؞jKi\rz:{$`9_	gxmA$pm\0͝;{k7KOjs4*\\Z3VضӮ+{OuaV<F/IZ<+	c9\0GgF5=wH,!n555*Vl=lk_^JT:!u\"V]mUwhQl(,u*qǺD«Yص/j(0^&Hԯ)\"\Z1~]_vh8Dfشd4s9IN-S7\\)eŲP-nU$E]Tmnkbg\r\0/NCډ4Fc.s3~\Z]R͖ڰv9G\0A6/6>=T-p- 5cjPXjˏı<MRq\\\09\Z++=kZ7BٟY\'jw189/aLvOcV{$!L\0x\\kxI0V$S%vv/}igFhW\'\n2u2VbV_[6+p㔕;ʦK1 .Ur]\'!x[~JٝoyIǲ?~Ǥ~ *zOgM^{\0j唂bYPX79k}q❋\\JiR:M?\n۩{h]\0	\0\ZIE39&_w*WJHt\"euk)jXx?DWTi˳ PDU|ak;fB++e=a\r Ƕf\Zk[|FKO	A`D{z\ZnU}Y6#gt\r7]3kuiBL\'Y ү3-$(-wY{0Lxq\"̦&tx[w>+Ymakd1GHBbI8٦x?vȲͫY\0&na2ԡ#kFxռ?})<P[p\0niН>?jضF4	V25\0I}A\ZfG=Zd2B%i/\Zq)J%֪sW-i0\rN6v3ÃH\0JOp#\0|\08jP&#\nefϗ;\\v߼CuSٱ{?T\r́q-l.<\r `\0.e{CJTe+,̖N/CGQT^uBX-aL1Bvζm*lq~d0b岁6%`ZLAXf1kO\rNjWAMvjcYd,%x5wY]fz*:\\VA3P,8B;,RGO\\nZ\n:b\"cQe Yq{?azMmq	o@-^џagd3{Lnek\0)*yЮsnaw6KJCmш=Vh6\n(љج,rIEֈLuS%^BKg%`^V-Ҙ,4d]T[}\rkGO#l\"5ꖹ-+ռq^h+(329,ILp;><fuaAPq@== wLeD1UA[kŴXTGط$+{H8\"L]\r/7FJ `s혌#0O8EЊhrLB:]!a1v֙:ڝfy}\nҤQ?5|uMEgsPͷNϚ!?D@	{\\qiDU`M!ӈpƬDAU9Z6%\"mo.>^oJl0`=\"(\")\";ffq4\0Q+;tӐML?1шހ;LxV\0ZO5&tۭo3\Z0kjjZ^A\Zݿc-_%~	$=#Goұ^u=PNQ%a^5%:t7nMQ,OISnkXyj;LҐ$d~:S۳v$T\\zzo?JHn\0o\'0)\'.$?39+䯾<H`wV5.k\r7~L;җ\0+IZ\rđ.s%ଳEM\'r+ӯ>n3`=Gm~[ħyZVOAbkJɸ`$d]\0Y8aE>]x)MH9z%C<5F.S/\\l֥YQ\Zu[Z[Rx7BvYMg/qA]9+rj\rʍ=0#8\"Gti\r\ZU\0Zֳh_ba(=QfHy|\"/|5E0@,jG9%k0S~k<_tmY\Zcbbr)j\'r}Hr[:KiUa];[+Kof*5uHYiǷ-:݂s( #\ZAKqkCCD1\Z5Lv_NXMS\'%2V;IK\01p4KO4VHV\r6315STql&qrkҺݏw{].!KMDvDHV9\rQZ \"jhGqD^Lc6H6H#=-Me|?q\"HK`in䎂\"o*N9H).N2\0OƳ+*mjX#﵆@\Za[wLW\\`\Z\'[?+k\"yG(.F0w-?0\r(=f9WUZ̄!s\Z`a\"aB5~a	1nb%v+ʔaej%\0YjF==*]l̲VYJ$gQ*d4ٵbN+0M#!P{ktlSF<uw<VXHadC Zl{DD$k[([jZ]6ȭڲB9r`zejPczqeٔDCpfu$j(w\\MZJڪJ\0p,Ȑ\'+9=`i?\0|Z\'Ǩk7Kt*\\;CZ׃S\'ͬEZ&G?JӡP\0^\\**#O\nȾ`6OGUбB\rsT\"䂶>`k!3	S~^S7\0eó:i}NWxr޸P#~!VZkt^՟N&)}Kѩ4M{3.<VKj/q[\r掳a!,4xp!cV}؇odEKE:\rūiI\r`(\0c~T_-9WB\r8\0C.C?͵mH/<,.\r!%\")W.J9|$BۭE2  o\n/E.[m|iaNpE56*W\\ՉF:TaĴ%}3[+	]=:S]E>c6u\ZԣMoMCi͋j5x>Tq^x\"An,;E46\ZZ	;xjT5Xw\0\0{V%_\rޚJ{>$aƚƪYf.\'oa]V)tNs%V&}]ĕ9F9$U1KfMY8z>4	/r,\nLA:RgL)tu%Y%qǭZ_/(YPLjaIi.~_F\\Wan;̚2hW@+K\06~Ǫ8ktQ%\\N!tk?|w08J/\'JUj3@6jzMZi-Y&ֱԞ`ŗzMM	aY=ҨL6x\rl[4ٯ^&]< \"GaWiiKo~)طŗi.b@an\Z\'A. PEe_Nha|s/Mh\ZE@zv\'y]mjyF<mNʨ+SUb,1\"@vO>}Uo+6kܙ|A)	\'ms[K-\Z\'մpbY	3;:uI-+k|w9^8j\ZcAOhW\"e\"m\0,m^-+ݿy]ۼ4\0rDX4GQ_ӷ]-TuKaD\"?+I	2QXiF\Z]$/Ŷ_^s\rz5uC)P|<QGVLt\0	Lv{\\i8磐}COItXmbkұ1+_W\0xEpfc\Z	6z	-_7qܒxt;@PH0?0[q\Z<ag}_2gn]y\'숈\09\0oc=q(֚3vZ{W8;	jwb}zj\'vB~dk}\0*-9T}8[MKdI\Z![g@]oۈMb lBU0]\'B=Cȧ`uYt,fn\nZ1xh\Z	EA3֙VUDY[ ڂ]2\'%\Zx򋠎EXmҧgZ: tR/<iЕA1^~cEg(M/mVRU4ĩۥEH\rA;|oq[O>1_7׬\'VX`|0>ڵ_8\"KstЃ% xM\0\0naP)bdԑf3#5=\'Vqrۥ̷[NY4Q[!9[JLBdEWUk+˲8ZZDjn4xK1`ND3ӍX\\[R}88T1yBdAW1G3mBK&hP@y+ԧ	=c;tG]XE\"I0++1w,7~g>Bx)ŭ?{_Xcǘu/j%6[xp6*Tdt43qaJvmYwh\Z:Ō̎֒k>d<̫`D8קgCY>⚺Eʇ*QLHdYJ6/tc[FB	[ī\"=8S,uTFK׀h;;/\nPtjfZs|\"\Z[\n09VV\\ɴrbǚvR&orlW>[`SP\"\"$Gj~^VE@ mLaٸ{EE&Ծm%]e1,UVu^h>_+STyS`xճmIJ`DA\0r-a,#YC\":ɆKڵ͑\0j8x\0P\0SRƷ~JA5W+Gb3jd<?,=_ \Z+{rUS!8/4M-\'\"Bv}$nZ.֥HF6]wsie9Lf33,uĎjokVaqBkT[ZJ@vf_|fxʹxw*&޴)Fn%v6 Lw|0^u(2x>.ro)iٵ%/ z#R\0b\r\\woz\0mDt1CkJI)p	ŎA;c^@?{¯Cg-Ȫ,d99iȭ^?[fSg/:jf=$a,\'\ZUq:ʬvdr 	hKuһdh7K mN\"oOz[ACč1\\:J$u-ѧy|?mO-OGB\n| sdZy˶\'Rj/@΀Ecl>O,r0͜cT\'=/S~8	Ug1`:H\0\r}6l`37=⢑r빶qpu΁X+\\H]8b&<~Ayu:v1toYʇaYQ231!5{XC\\+<{C2etzu0\ZGI|/qxɑ*{DokQIaRN2G_!gS5+jq%Vc0$I۽Y\0mRfmYKsZ#o9_7\n.ܱznY-nyILG\0ڀt[~i\"{!yknPģNep_GqWyզo:\0ث	\\b *͘\ZC#808{\03[d+U#J 묂`PgS,[6>v7)j޶	6R.VjT23f~#KA[\"ny^繞i(d_YDU-eu\'	mZ\0RsE\r&\0k6j-ӹxOP\">|,.{DzHai-JoNlx$>!ʯ_W.<WT0*@5o<\Z=Zlղ>6+PmZ\'kd<#vOKoxvAbǫNI:\\A^Z01a0-\\VK+Q\Zb\nuh=wƤZסc]Sd7ɭdfs2S?S`z\nSd+NprW®{3\Z-r݁lSׄoƤuĖ\'9c)fZ=KȣZW\'b6ްh-C56sXUSZ!X.`6N ?%[|Z̸L+d5̘\'*_^_l|/*#w}<*`ogHBQli,)[jwg\'xbg\030zu;Ơ>Yo(xrXC.9MPM8VdZ/[RYD}J\\)Dxڎ묐h*4E,2XnX_gg[f+\00\"95d1!\Z/wF9Ӹdz\"5LC\'X<_K4yC5ȸjŰ>WP:S\"%\\pm7Lddg:wjC8t[\nXPE6vYYPJ~kqX^;vjՑLD 7O_Sxxrm\\/;)uNҞ_6MxO7}Sxe7ӿ?ņf)֣CңJ卆1aiS6֭~+r<lʊŰLYkBLHz&a+Mx+mU+)pzFZQOJ1lSzQUdq_\n\\[\\X^)9^>\Z6XLƭ\0ieǼO\Z|\n^D6T?ݮ??6h8MHը-:	&Yv.[na)16WD7H(l/!OA,\Zo!:5ZkALI8\'pAi}kύk.Gan<e-6uuV>yPQ:.462>:bjnBWcXc\'~\ZD\n4)m^Xl*-{N-O7fQUA\ZR*6	͍^\"^)Թfr cE4a{X3\"}~}:wߜG$ C)|ruyjH)|@?V,zOJ9uz|pjA()f=l%^VT_\'3[˄vVB4nlBۻ~{g/2hYj2)=Fs𰉼q|/p6fE:ZVF#y>IQae{v(Ӫ⑝7P\n]z~a)\nxJԸ&ihb\\`{[tQ.K?2\\ĖDGUwnrݦ3Q-Kn#\r+M)qW=6tyWX#9Vns+UWR`Z̃~|?skb\0AެVyw0f,W3[qi\0myJ6׼b\n#6fchTO)\nxF煍\0A1(4z%WY`#$lF&}vVOG1Nw!4n(GNeׁ\r{i;\"XeK2(viI{`+\Z溷}g+ˋ<>TȤ+ƽ;n%tyd7|Fk1\\Ukը(~kMkT)ض1T*I\rXXx|}BqV±7ם?E}GEJܲOan5oGAk܃&T\nf7vV\"RYc^Honu<r9bӡn nBH\0-4;U7;%uE[cKye`с]Q#hw^.ENr>v5`ac;Z\rν\ro}CCvYmלfopmrz#t\"qϺZ:gfk3ȉX!^vګRk7Lh	EIuzq܅;Ҽ:A`Dȉi	ψK̳wqE|\rDKնqVSB`HQ\09ii㩻\Zgj\ZZذ>/ӱ*|_>eJxJ	^$# W`Tw՘*?5YJ?P\\&DI_c\rQ!qϽC_YtBJ\\iZrv|-\Z?)T\Z0~)yo[BN;B5kz̭yӯNJ\Z6#Ԧ\ZRջr,S\'T#<yZ\ZR#q%m=\n_?殊Lj+ZǨ>iBkqcܳ`vMy5T2*OUXnsG\'{WPs[^\n#5b&X iXDSoTi%v&Dnl0ȇH5d\0N݌!MBڝmIcT{Ӭ;9;M[,S^%rF-N,d%l۲(_褽N}:qշ,J8,D͂D58,7}\" >\nuVD⌇&(K%4R(rDSDccM%R<Nu\0bIkkN\'gc[o1_Z33\nw%\0.[!zrB\r鞘jm%m9PQ\Z7V2SQ\n6|-ջ3=\'yodT@[w#xEìH#G˫cpRSa1nY,ר	\\,Vj-zںvR@̐Vl^Ӛ/~b*mJ߭w/<	?PRY[h#Bg%`?֌u6W/(+!m1\0wGB+\05yțK(ZZŷvtSV^XLdXMAw[j>;\0ï͢.Yz)I~\'Ӗ/ys\"-ImF\\IX*q50*:ќnhZ1U&QQ1\0aNd]:fW]JwymٝցFݯʚ\0\"++o=Ȓxq&\nmqwxx^$no$aLC3K\0J}e\\M\Z]wf\"E+u;\0	tKh|UD*\"ѡJR\0ED4sq}4dJFr\')bcN5钶]<<%S\'sa7y#i4uf; ls|Ƙ9ҥGk$PqNJn\r=?Mb?:9˞*-DJ4#W{[x]^nXd$DufB%)ohׇr\\-k+\r!^,$R8pAU~L(+<ݖQ!&N2)Եmz.(\r-\0Xk63Wy:ZƔHu&4ˬzKOɯִ.r|\rkлtꊟH\"	D׻to6|MNZj\n@7nF}E_\rǹ?!+Z˖\"gmH<%wYG}<EY.>^\nMﱯk_ޭO-{\'P]	]3K?\\K7tm_2f$XPn!\ZUA<Bry5T&XZ#	̌\rZLnlc>`%91D9i,kSHj+yd.!oP~φ,nf36REh3yɼ#aNY][k|3e뾒,\ZtOx* L\ndZ2auwz\0u/\rzMaot]bhRԶ+s{I|e=\0\r+GkZPFP|CoGcj--qt\09}%#+\nHV+OXlOG.\nNѥwͱP3	΍ǫՖ\Zyj\"DG9d69fgsf@g9]\"7Cfo5\ZDL$L\ZRg19wt_V*	:ٰ=\\eyiUIUu,C.(SWkGL,Γnnm9?GtM/Bɓ`޶=\Z4LS{7lXڳ3vzJM(Nj\\wkJoi9[z9ofP )rg{nçhjUkTh1!KobV\'diӉl(6:a%+bܴRm0@qUE)e{\'J}~gk㸺Dl<n\0\'֭G--_.869ʄA5?.+sǊŞ2%~\\YM`]#9i\0Vj\"bPR\'w8ݧ,HE&WV+ԫ6,)12Ӏ̈tXq\n]suenJzumR1Jm_`_Xi򀆟A-A+?˭*?f)owUhPc`` |: >pOmj57	3(H9NƢ9l\nU8tZY!-v8\"x[J~ z\02R\r_uό͟ek{\\\07h\"k+(4p?µ\0`tW8˜Ql#cX{勣[L\\UegJk1	bX)[lXa*HhG摳^)&\nN|s={>\ZI|lBٕf</W3IuW-:v&\n|HY=J^\0LX?\0:wM +Dh)KZhkqwUAp렊0|9pF>;tx<}}\Z>^P&d,pL\'|vW_5ljR՚ڶn>hbZpb6FXJK`[>3c1pjx CŉPzېR{xӐtUmԎ,Y1RK	j\0;kZ/#*T4HڕFj|߻V3;9+STR]Y٤i}^*ʜ%7C)THF\"D{mwlG;hbGȎ\"QRlᥝJw/n$kKd]UlI,uhBw4xBx;T.[u\rYP|Ο8փVmz.Xi6s\"}\ZDDc@\0(4d0`Op̥KWʵ\0<+t3\"诿d+$y`KʬUBKui1a[믺YfN{9f}8wW4J݈\\q}NZ*Z[Ot@+}Ěs}XUʁO10RHj\\a~sd\\<Rת$;6fn\0ue\ZM~L^c8Yw?c$KZ3=2Dpd /{*p4	M]ըŶrW4<J=||ut^-oXajd.ue=e$=Ǐ\0Rf?lǼ_UC\0y(T霆ʦIHTo\0-0Pk@xzL\"\rY>99e4+[j>v֏1tau$mrFghZ4t{s\0N3:Ffr1Yj%:<WfOGb~<U)3!OrsqGlǼ({~fc1Cw(>$\rUw<y[{\n:TmIzbHUPʖkXx]U\"t0zkhXx񱁳gv!kR3%]E=6}=\rxH*\rƒׄ7C\'AJlu:b.Wf^\\ӹjyMd(XDAoc_ܫc/\\dwYԐ6MY~rIQ\'crk[^vՅW[hj?/Np-LY7mzYxY\\\'Sk~]+|PqU:13F~~9/kFTBttFڄt(\n/ evq}ɳTB*`L\rF+F)J@ůk籿nW2qƔߗq׳lcOQI3!ki6a\\rO,\n!fSS+P-4t>Č}5D֖|o)[i4RB54BVI4A1\0MP_ZK[U]*|KQǣgj!ɤor%<t6\r~rW_||NQS3\'`rNQ^\Z?0MpժI@b31\0iyT,#@m4m\n~T\rjм,RU<u6/X(Ao3\']?>n^5\"q.i>Gx]DLDFs=45\rLbc\'?1D0OT\0jK67Ko6>$KI	5V\Zmη\'rlNsG%f6DCŭݫǧBhbѷ76w*P%Ϋ3Kr8w[O𰂁hgADƒ[ Ř-m7~tʛ.&\"<Fln4II֤U۳/&52ΥHS!RF\Z|^~gg/}8H*edSt7$gLǟ\0a}lV\n9d%:fav}bn:}:**|@nEmPxe^e\0]*gq0LPE/q+/s_nxH+\0%ӥ5TD\"5m\nJ#GrBhBX\Z :>+Կ4-H= [/_ݰϋ3aJ+Nm#tɥM/e{\n6KD3?3 :)C{ߗwrVP&T8XIS\04)nuNWsO5F2KDBn HJW_sok&S&tYzeI o=&-~ph0vV0a0aT7r r܀u47\0>^%*<=)brv)GWl[M}|LK55i^(uHhTW\'l|y5xݤ\"\"29\"ȧfgKn-p@F ;Xή38(;NC0`(}Bɧ>`N??n<%,%IlB]6=D1t2×]Q-#<e}~.a9Y2=\0k	ƕ\ZDaQAzv|-TF1mYǰWV,gL_}iX7s|I9\\{b\r[ -/´bJ\n\nItP}DF#2*U_> e\0O>4ɏmlxxϵsI9csI/K	qb~glG,Ihqm?V{1\"bdLO|`E\"Z`N2$\0Fs+d9	)Q9eE~c?:*\'>/׃% /j)\"}8P,Ա3)c9>~\" \n33l{N\\#pWpǌe3Ak(u5=gNYZ1]s|A0B]|$|U\0)A&YLH=31lKa?s2Ԏ̧VR,TGs0î!m`)m.<K#ZzbzxP6A)	cY:@3m*2)6boY#:Y%\0\n\0Ŀjycߚ%Szk0٣t@Ja0b*00`a\"Q;Ϥ:=yRvpW^DFQ۳g\\N1Z#rܺڋR1Hx; RXB:^ٟ#7T~NVYhUA**6x\"Pdx@Ngr\0	Zz>\'bڤ8OXuW>bmvkյ	\\IǶȉ򉌦2(8!,Y*nvY	CiSLwino˶Z<DkӰcQhZ/on*RL&sa@}13dz˟0G#X\0gUy2Ԙrl4\0T3ݝH88ycph.\0$W^UDND7St|g\0cf.횁HNsH^ަ*3dmHrz\0cF/q<͢_ M7 \0̘I!G5fة4%nfŵiˁVe,-#%ۧHu4gBWYz͌U,Q>j4|7߇sf%Ʃ9YvHӋe1f,`YӣK@dVSl鑨B?{KFի<&2܈v?o5j*b-2a\\tҁۄL(eD􀇾:G^7\r!S+>p:>/P\r\'xN9\0J\nꢈnvջ6ZF4Ĩ#w3ϯzPjo29^FL׈3aNB;CI7\"ߜSHlK=2]Zڳġr!00\r@\Z31\'.6 @\Zik2-i.M֪rNm\0<5ҠQ=gp#u{xFu=)G=l)\"3?DbZ׭U`ΠJX_s\n\0.YD4\'ӱy]ۊWsrBx&Ԣ-}S\n,Zsȉdu@\0:G\'\0tz e݃v196ϴsqપz[3\"ق6(ѯ	jB!	)(iV,8d.@\0K-3\0J<*]!ҧe\"Q9{;X9^CZ\\DUKZue9έ]\0g\\込Sv9\077rBӍ#tZP޲uZ\0 TPN )P}߼¦Y-녋E2{Ub=c+8jZ\ZVe**j\nw~Ѽ>)\\oU,`\'Bw&e׫1%u:)TW)uY/«ll\r9OlK[rna(ҎӯH}4eR\rF2wksꭑ\0a8\\}%,h=r|ݾi\"c[͓ҁZ1!gSdC0i#$oKϻV媵d?.D41AL{3gqw*P\05寻r&@Jbq-/:^0lݪB*c`\"`\n>+\0K=,?X\\\":rlb`tN+ںE$-\00KBGWI&@5gў^ΡE3\njwzxr\"0aG5ic\\1J5[?yE,h?L)b	ǧ#%2\"33&sbee0\"wq*J|(ʦvtggW#X3%2E9϶g7u;=6g>mU\rlQAϯ`fI\\DZڡkH`*0`!=\"()\"=3K(>R:\0eZYǪH\rc$dt?II\rd+\"q6;ϳ=ʋ/C+mg(teh=:@ifUL#\Z**ļ;ݫ\0ۜ׮v\n<}#\Z@zby6>s1_ЬJ_Ƃ3\"u)ߘ؃T\Z7OݝE2TT^jm\'m,ΦOdDWb8gg1$Rze\0\0\n\0(0gkWmtXYFs\\	CBXg`L,j@/\\	ge6ir	R1f:\ro8Q$DyZ\'ULk]cDe9K&r&$c.K@xr-IiS>\Z_ix~1qV$B-]$t/MwY-ÿfyZLY\0NYuvbcٗb-E1c9%pjԥFbEs%dCbg8\0&N;8@ 3je&N~G\0=ssY,ۖ5ɮlf4:?\08D`H<<yH<f}.ݟq5:AgQ>w\Zs9?bs Q}Ҽ?;$0^?1?qg*UeX\r͸ó\0bqV1Rfj}{r35qlE`dd;3ˠKoULBɑс 	իs1I5\\Ubۧ N`si\rkYQCz)ȣN3IL2r/5&R:LTQ>N-;XڈQ1YN%kVpFuPQ&>ucS.m^8#p>bQ0N,;Ӊ}@ǪkKXS̏\0!X0c@d`0a?uzeF]#\\izdĜC}BOu4p~Jp\'![\Zs2y.Pg эTmUO\'5x.2F11^dzO/X:ՈJ<cNd#3G8Mx%ijFP\',aOcr5S8yXs F:#$,NKZucC@麳ΞpEQrՙ5vowquN9F9KDl.߬xQMuӰQ]	yƒas=,\nҭ]6բCƥb,)!l>>\0\n*RG$2-߰Zr7q\rX6׹KZE5{ܳ3Ŵw;xRg(⇎˷tjk3:mL-k%r&b_Ss2lݰoflcK9ϳ\"]7Ζ2J9NEW31DF\\S55гFxj#ȝ\">]?. $%̼9f~wG5O lIYA62.xˈ#Aj	3.<\"\0 aV[r|ÏjkJcSRP\'هD\"śZiR)7[Bz{3`ӏF>GAJ(>op\'>.լΝD!1ߪ~c::C&\ZQE\\̒@6kȽ{S\Z+NZ`4F#V=Zt^`KN.\"ifl6{1ON3kR~RW3@Oiu.|ͽ#qH#\0{\ZnwwԶ#\nR(_YwI=m<6W6Z)ӹK\0,ګ;WJeU;v_\0n}wLĴEn/1>TŧzK5NyA+ï\ZVݘhJĬxT)%ǇIz^<wɰ`}͹90q/wkQU3#L/WST \\Quτ^͑x\'JJVҒNue\ZcRow|]6Neja+(l?f\ZZxΖvi\0 9>:	)gdQ_Q0a	7>3\n,SSZzةj[86FRQZ:~PImez\0DeUX&^߯N/\\ؘ%kD;z5.Pgk}gX\03B2:zh1\ZTuc^ Z*jfur%)nAt镔G}zqs>ڢ^>\rB&->gv=x}Civ#$ G\\Ǳָ7-YͬnfAz\\ ?Au}Yћ!BTSF_jQZ5\rL9@j)U_\\25iPBq7>%~I+\0(Q*WU%(>&-_ڼfk`C\rq!+PI\0Uԋ܋g-^5!Vo.pnҾSZ1\"\"R=J_[z:>0ru,&&{3\rMb;]Y2C\Z>,Qw90Z4|KU!Gߌ\0c˾\r˨yx\0f Jٛu7 f3Y{\Zz6Y!4Xnߝ.Ri-?IQ9Ԁ#bf9?ί4xȜW/\0۔ǌ\\%/B3~hf/\"QU_LR\"`}.*SL5$ƁDDbz[\'OQj4ldeE1K*u)/Xֶ7IIL{fg#\ry:ULKa>t\'?=|q2ف6DQ)իP}MQcݙ4H#2)B?X4;ϧ?^iV|;>?9\0#1\0Ȧ c;rDruLhXB@]sũ*5	QӮE,ֿ៿]ͬR@8\0~X Jo|+Da\Z/6|\'\\4UD̦\0fs\0X#>ǡh1\r;^d+LLƶnh!Of[#L0\"`i*42-\\-Z+\0Ƙ:ňcLرc@oqc,ZůzpScThY鼷\Zv(Fjf`K[gTYO}Ӊֱ-Ld/n܌#Y!ⱇT(P%(^ltO=cxU+ZZL99ܓ3<F7e|39 Z@}rObHb2Ů;-\\\":&S+9 #Pg#D^î/:Ԫ!dG3\\\06/8Xh\0AW>׊FIh[6♊zLI4#X|v}^;5J+X])SB/s	\r^9覄4x&\Z&ZǙxβɍm\0q	~89QhJJah(DGo{@1]{8:PSv9hŷکng\"w\nsLOIH,bs0Dۦ\'Ljܟ\\:\0ygb\"*BJ\"-dZWq8ȩmY0%U(J>ffVB՜v\'iB:Dc-q|EF>Yi)`BtUD\Zv?79:VSNǕ.12Z n~7yw:!e_{,rHŀ;@>\'3l]\0)/7\0$.r$Nna`?>uiVk)<#m[lTJ\r0#E%&G:5Psɳ\01,}NTH58Ѻ@[wW,U̴SpPDFcKec\"p2C5Dj=Z1cwHYg8)#2f:R݅9;a\n7 uĲ-g>V]JmNwg+R7y/o/sRqN$\ZdF@w{]\0ҋ\\d=F\0_h+s*P#<7%q(	$\0ힲxH\0.1\ZYE<R~?XR7M#!\ZX{c?}pgty%I7f Ŷmֹe]b`!\nuǨ4-O\0kyu\r\\l\03e\" X\0_e\\Ո4\"0ߺ,+-XR#ܷ\0o\\.Uޡ!5>鱗Yu	`4\0ƘO($YIL{b3ǜֵ\rJ	F+3~/$P\n&?Wjɀ)\"-YwH~NFAkxp;qWNXVz\ni\rpՊYE\Zgy-\"X&\\Hџw\nhĬ&acw~]X\0&Fqϵ\Z`\n5Οw\nyoN]r!,)&:ޑP2%r˳J#\0q\nJEC=:ًQI%5\0cꞒE3MVq9:|?\ZIR8:33fGpA1l*\'mi>Zr&f$cTնb=ZuOI\0wk;		k`鞍?g#qSEr{p1:-]S\'Ӊ&SVL+Ja$@dvF숎1|	7\Z#SqgV]kWeehZX@@0P^)m)8,ՉiAYg()8Wv(G8ѨD/<y23dԬGюqR!\"0`!\"0`\'\nc7Ygu,~ZNvƛĠ+׫L#e/w^IJvZZ@cMpQS>^}Ƿ<;EV=(|d2kM&ͱG[n|7\".,Gmԩ2F)cF(\0xN܁n<Vv\n{eNX߉`-ݶH\'YP\0LCf>*[rմ.TbFUX\Z/6Y ףZwD]o:LEt&b\0|-Bפ^Ꮦy>H\n\Z89Pkp:5vk>nX>6,\0 K)MB]8dw_qSm~s9	sS%ml)Z<F	-*@}-9yv3ic\0#2̽}\ZTakHKrYLDt®N>.&,<C;krʬLYg,d4\07zD:eʣiVƢ%6Z$r|=}xŤtٮ\ruEzL}?0Me6VkhGuZ;\Z|<M\0D÷$JFdƮ\"\055JlTI2ūƔN	95J\'H4JE|tALVs׹\ZP^;B&$s|yf=\\DCi Ռp9:v6<_YAi3Nj\0g ($Ss^W<{2yO\\i951P/w\Z^`!!3&3:uv_q#1չ:zDuU$S@\rU~tsmnN8\nۙGXg\Z 2ER՜I[ƻՐWAV9&>҉\"\\g˾5`$*\"CcV\ZvVedst\nM@PvV&Ua`Jϖ\0XbzTN9XNOJl3++LyL(&e\rW{BX1[\0t8_R2\0BŊ9\r@iJ9I	1PQDz{\'vaQF,	v5	\\σ7mb	\ZLW1ђ4+GuWtٽz\0mrQuG$CDR[+_FdE6C6,Ͷ8,X.LogH=lͷ*ӕ6H*Lk9bv|nĴ9)7n+VVR0	\r\r3`;>U?^-+ںBkc|[eȊIV \'[[kGs(d	VQ\Z˴|l$ޢ0Fw8;Sb&!./m\"_IWJ>٨3X*)	ua8+@J֏Pw|Ǉ~&vRK]jC]Y\r]2Vҵk==\0-\\- \"iBkA7ZzVkF,w.U.DQVܗ6~Mw}B0l	,k30E585ao횬e\"кd$HEu̔\0X~\"-ȍЭFֶHZ-?3ƪ[!Ԛ8CD[;ueW\ZxN_qYW<CP.Y\0]b>\'o&U*K0}uA:yb-fo4W^s_a?W96i%9Wf*)\"wP繣5g#2M`Ȉ41\ZjQ\rIh \rv0\'_.q7y+_JbE#{\Zt)*W\"_g/{#SXUs!,a6eUvWΌXyqX./936e!^(/<LK髏w(|[4W+NHHobMmC[79j5ߴZOkؚ[eSݱN\"gIrk6mj!(VaY~S\0ےc6W}Q]u5|4)#^)PT˙V_cڞ=eB!ga%=ЮxD=A/ɲІqMD}\nBncCcK\"\\eM^DM60k7oPWJve,<yR#]h*>X\\I`/Ʒ[\Z$i}AjŜYcvkطl~kNS455FB2\ZeU!z\Z%\'WTstZO&1kS\rU/e]\'\0Q\\\'0Bӟ2965m/qޚ}\nm OVd!>@\'ZknzGrT/~iGcPf+\'-[{B\Zo~s]s7JhY3\r[ČOgnj:\0=H2ފhTi\n5%g\0-Q$M}|<\"0ԨAz]<qřDaTB^1?S6y;-^K5K,,\"I57VB_NCKPqiKi5bV0\0Yn\"-)8QIۭB\rƅ		iMy^o+^S\0Q1&Ee?V c\r&G9\0Lr(3͞REߎΣ\"0=#H	eʴHNJ멃ug@k,|5`O@i~m\rZUs0PCܻ\nR4({avq)4\Z^	MWn{jm<ܵQ1i}լ#Bcա&ۮnY=~&i \no,D\"riksJM#)l[vQ*`f}1nۉB`:OGێG\'}D\0^<bqLg2y狼/\"\\_)ZR@B;$q+A1G9\'!D-aG4T\Z\Z\"ֱ,	zŮdZ\n)؈ۖp7JjI۳ҰA/c@/dcgf\ZϙE뻲{g{oJSQȑrDg`aPC}b_LsACmTEMăSmD盔vΨ3SL8&b\'1MdFf\"sȄt8LS,(%ӔıK\\\nBF4DD猿V݅	LWC6>Y!qnD\0^+dÙ<~)Er#,}br?nS\01kݽ2!1P5ϻSfz>V/љ\0b-yfBjs)g\'|4SqE~FM%9j+qY}KƁm~@)kϜs\\)h(EfΘoX/:NbjYSgs=8sE8mIY8-9apځ̢>euZ#xi\0F2ף+\'sƱR!fq1JJ%99ǥ9cl`0`0ӡ^rGX4U9͊\'Gmw|krSh$R6tyGFr7\\eeRV>Ⓙ\raJtmاejڌFzzHWwF\nYiqMe7ӼXQpȁؚfS؊zĶ@Vߋ(zm<miy&yu\r0L\0}{SlF^٦m¸XtNL\04HY^֌\\PݻVDS6$Z/%hֽ;k>S4eg夜s.33eƱJGUQ֓	X)vI>c۞iPYDgv66_Ni.7am).̿c\0P]10ٚk̫᷅8[#緰>;7R~,%S\0ZkLijұ:Yt4&AkZA#VZmAs]\"8P\'͠ע$p,$v\04}v4-sؐ/~&j<6s!#˻6l߀)>jъƷ&yΨ8\Z;孰\08-0%ӫxRpdW3{Hz~s`d\\{)%<Bۜx[ӨOTi0%e1T3,MEddq6Z4n\Z\"&cɁ~:!L۩wV^<<!Uݜâ@,Q	3}@\\AE\0ԍi;\\@wkr>KvQI`4!Yk.WCQެF/aX3\n1V\0:5:7W#혈9cTYc徣y64{,`kfj\0AƦ!,|LHrÚ$@i\r08K.,EFrY*BwCa+!>jmw15NcUMv0B\'r\\\"_:N&UoZs3!L4Uf#JZS\'fZ$\0;mn~{wVg^z6<ř9`D,͛@\ZXDrT)24.}讁ԬTո{{g=OZW[x2@Ɏa3c&I_@/_>D핁\n\03\\hdHjy-	\"\"5t\0HlF|\'Ʀ)^|;9ȈVգ^sB+#~&$K4=Y68n4Wӓ2W/Zhǿ%WYl:M5#![bd1ݭ׵74f{H1c(K\rĒZKļOUPSp\\ݴkQTe\"k\\f_ۂh\\XXNIz6뿋nQ͉HN=r#ӎ#^|VgF[K%9%g6-621=-ϖvǌV9H6OwOSRi+`\"\'/.קnU}NzݒäZecQ>%z>\n\r%us[g-^$K{9nB8a qK4nݶlZxx(5lWKJ,[<iP$YDt9lJG[GI,>KdT2\0:eڣVS\nIʮ1uHX\0²aہ׏Ԝ6d3]yS#(8rhn-լl:Gi?K|\' 12p>>O1SA~Ţo1\"IkP}*\0(9#ed@@ V잕4n_xi<^Zr9cߙ:Ou}[|tqF#&KIG[{|9QVd\0F5:`O&ҿE,,Oe~=*o[\'ع1Е	ve֭\nrQ岵L89τ?a{g.ㄪBcn^BZz[+(-E҃^ʅԓ)n_+^Z\"vɠOejȼW^_=7wZ<ۇrdc~[+|Fx=XyI&e?L8S<8X+JYYjb:e\rZKToΚ1$;1v&}MFivF]\0jd>mGϮd bu=o\\զ2#|<fsM$\"c-z7\0HFR[	>G7@\nKPB\"GBu\nӗN揘6zaME0BXre>\\in*SatՆ\'/TsfŅ0S77<ʄVZ}ŇlLd\Zs>aEOƲ5PݿDvau@w]aa;a?N05M_c4THyN}՜}[E1!dKkfVesZ/sq~uyU>kjď+f\nBdQ|3QJѵϞW\"	EPKeGn#{F/Op*ˍ\ZN|dV~Nm6VmtJȄ$|r\ro@gYEtM*V8^kO\"\r޼*)9z02v@&c7?oϰe\0?/`Ɩ0%\rI,z0`0aDc2c9ǉ_n,}8hf$H#_ӎy8()\0\ņ\\NY\0Վ:Qa/fd+\0#c<c1S\'/l>A6r5`	-zj\"glV\n\"2;cl3:~\'\03~ݒX6~`{~,AkZRcOnȏg*Q=SAÏP+j/	R\ZCXVYLe՜}RbzU y+miL̊uLOc,xMvEqƀ0%31V!>Ttі gCA,zOҗ\"\')2/[ĔioofW\Z\\sj:Pt-ݯ\0h҄NqS=Djz#\\@9g31oG\Zt{kguuD1JI&i+&S0r.qGOƻ!OTObs^c?~J]6&%@L@OF/!~/f8䪚N|239~N<0a:}/菣	Ydǳ1e<jfNg4͕W2fP+\'=S?1ir\"{\'?bnB-d0_v#3c\ZO;t8l`0`0H`Dc3>>WWx=⎯#	\\H͉5Lϵ?T}.)\"H9(%9}8Y\0_JȪ״L.u\ZRdkbe-^Dk	YylW.]|T.e	ig{\0\\urun؜53w17yqXGؚenZY$]ΞӍgk5z9a{hU!Yy]%Do\0Tv~?\\|=cWR(2Y*\r1Z}ӉXԪqtotq}X9dZ+ÿd)z%-8ol8Ѯ\0cӗnP>:!nIZuOO\0MA\0><P%j=ariEؽiϻ-0k\nk5,gi-f?0V]l(D\0Ʃ,\"J`b?+Y\"Xϔk&/_wy88	ؽ@t!Sпf{\0k\n6O1*z3%0g<\0?w-K79˿vVwB^%FܭȫT(цblG!2\Z`;5f\Z*5Ae⯚~ƍpj3%5[zJu\Z9iǈ/fnUwf̑g\08\nFO-Q]]h7rΈr{#|uid#2ceuqIݙ᎑?<ե(?_cƢPwTM=}ɾs4mF׋?14@N`\'T}Yx{aE/)9yj:\0k};MA+f!]\"Oa2r,O\re\0w+YiH85a+VlԨ{yd3M4?\0$E28W-.]яx,3wSjӞOoH.jeKYנ3òwpuƽ\Z	Y;?ėXkp:%.YFK|@(fXĬC0S$)^_\r9%vn9-d$ҩ2DBya8*-RJS1ɒAM}3я!)siƜ|v*q.˓ϲ9:syrYK\";MFF7<U))]pd:H>{V|Q]jv4t*zFB&,lg\0}|\Z}!yVpcꨣ9ߺATHeM>ɀuSKD+]1?c>_F\'u]dNd ]ݐׯᱟ\03\nJA0֖Zш!ق@\\Tӳʋ7\Z!z\0Hm\0f;ϕw$iK^RBX!ٜT\0VˤJ3ae9FspピUL2wRba)3*Yzպ.!ݮXoo&l71Jԓ]wך!UQmBcMo͊`l\"Z8S/wV:Y[)xJ%#>؂1Kiѣ_ii{`g=E҈{={M#)fq.@֬~)VITkqTI@,z\\x(\"҄5hj|OV^l5tF!\"`>!n$R룃dTrͦmXi^?bHZlIO,u*R)SϑĔ0MWWl\nq\0wXkK|Mq5|mԤ3lLSu6*#\\yj&]L\0{<LELX\ZlVey01\0K(x\ZPK0MNF@ϖgxYćC~?{f&rD{̵5ӞS3}di=jIQ]0Q)U$LC;sd~34}dS/_)B[M8QLVL6L{,ka~H(0a0ah2fÄUNRg\' ;gO\0-+kV\n30ΈŝhD\"Z\"+`\0\ryџcglkW#vӆ5)*\"Hg9.\0cuľ~O5,YiS3cZp[]jj˲~%LuE3I7k#)g\0VuRҴٔgg8<#(onD\Z^?@G7lF2\0\0\Z ^ĵZrEӄLtJb.Șr3|L/mn\0DeI-7`[xχTJF\05?]yAn_J]H:tLNՏ1Sṵ8Z\0rĳźSLLL}E!4:MDC\Z9OF#ƌREs>n,>f3FdS%3Ӊƽ&^WzDFDfRDE$E3l~13=33F:s(c4ǳ\0i9Lep5k\rO9tgLzM!,-_.A1kkVm7i=\'\Z2\0qD\0Z`&gb~Yʍ,8<\0?\0fz;#锳\")\"3h*Yv\ZFΪG1?s-c 9LϷlQj5Qtq=1X!FB#1h,i^z]-S9Ny}c~+O;x%묪c1Z#(s:\"U0a0a?x##F9ʤN<Ӌ{cjSu0xPX61QK1Dl?,\\\"Ʒ\\7Ȭ\\J`?>p\0!$s/pBh8WA\rBոR;=Ifԇ{f#2_bÓV@.J}z>s;14J=Yj}09Y?g\r\nt3lGnq?YzF:csv}>0JQf{;pߎ	\r$ufaHr(H<J9dgAIO#VDՂ:z!90Ͻ!ghg!3~!<Q=ghE(F/t`=\0kjۣK\'g堢&D2kxazd,yj9	׍+p4s31-&=:j/Kۨ[s\n\\J15I\ZD< <=\r^\'\nսޞ|ͺOY2,\\uqErvd);\Z{mOφ%R[z*9ZOVӫw_lsV۩s:q0byh,8ܣ}z|6kW䬉_؂;Q;ud66{\0íz77=$`US\"TؾL弫5ؖFRQxJ?v}Xd&Q\\K,qMT2XiKtՖ[?ܧnamQErDS3yItuA5rޤ\"#t԰@KĶM\0od:i=홙3F.LP\nb&\'AjK5/Tbe\0M-6Gdȭc^n|=-kVxBYKa!ajLcqJZ̀#^wq\nZh),`&DfcBS/s>j,ѼVuS3uQuŖqyVMK޳_jG>?5h<E.:a	yKlRW_cv6lAS\\٢֑i/T1_b\Z6]J&\01﫹\n}p	}\nՓ^cvFS%{`/KܫN.º4挘p6\n]7oq\\|:laB̧72:XԯHmZ_/X&HծbC>(\"skpu2vl_ P&9<eߗ>Dn[LU\n^0YIz QDlf:V=݄qCխ\na@@E|ֆ~kv[:`2S9ӧj·>y28VIq,uI_o]rl-L/دz^]iG55&)`(m2)ɚ\n{=Iuk\'~3/WNWZ۷LT(ə-*o	?3^[ziUiu#b\\w=3!Sl]5<<`_\0:HmFzgP끪׾KVSp\r2W9dpՖw\Z\r3ѽ,^Z}#Nwm^ybA.t8jӮ JSdUꭡV6Ƿwm}ŉ\'(Q{2rD>*fDDk)l@(yVD3({[){1/q8#pZZUQ:Ѻ+%g_̉5e9I4]c\rxS=BBhop~s1d8BSONSr C\0ӸL+%Ū5s5YM#!\"\\@F/i{kS;[Zn\\B(*Aa^aZhްx{tL/*aQSX^ָ&ʪn|tlѤ6Ş_f5y$϶.rF13uw\"Ⴜ4S.|	7TIig3#\">pVZ歈ƄVb%qj\nTpKna-e]1-qIQ##>Z6#-dr|\nW1[BmkS@!$`Z	GO\"VBXDf\n`0g4STdXdǐDeiB }n,j8\rz]~\01&$7NlU\ZK?Clb\rqw|Vᢴ6W3_ 7~^ͮzbma-۲Wr|}`]2;cffs|l6VIulźcn;3DoY}2-]4um}^:,74|}.@\Zuy>7\\2U!\\lml?ۊ@Byij=`W9GF<=+nl0ŋR \Z\0c\\#\"Q\"vnNN.\'rnpciaMRm(Nǹ,w\0Y%^6qW^O\rʍՎteȑꝰ%yzĊE}3ǠbQeef|V\rF,!p渺o$x).fRʵáZyP/ͯ4Y=Mc+`Q^k*\no/!:I+VjE%DtW̺DűQɄ%	X!#w.XKEu,c\Z{5XnBXbyّ\rvX|]q!u(%\'ĜOd1#05I{Z׫bp=Hb\"{?b>Q	sU{5kь$[rJ,Id\0dn:tHp]dA0Lu RB$<#Gq^]\\.53QB0\ZT+!Ӹψi񾛎2s4bDTJ`ax\r8ҿ^4ͱl$@3!dM\r?X4zf/z_$Hej(\"2\r:qר8o3-=!nNFreAH\Zl\0,TO,\\(jJ\n]z>YE+ox	4#J*۪4hfTpϓZP(ꛦwE*A36\'/EVlҩW1i72:iBɃxXg`.k7ƪYYvt!Z/x/u$P\rmUd4v{kO_LI\".ccmYk@<Olh8-3D:ĶH%dOz gƮȢ8s\'qUk:)7,\'wm8Șe&	a\0Jf \"tg|1>xlbIE,f8ZǨrѼφkƢ/^qxhqnxrpSQzm},?	+|YV4qP%)j>\"m!kmXDHmRsb	jJA!/xg\"*tS1\n=o.^Ye6VP%Sѩn׫s-|\rn@<ȸyW%xTk`Njb{`޿y?7nPWzju^1[ӏX۷ʥMX\n\"nz|5/0})]^[2}l.r\\G3k0^=N{zQ\'΀ˈY5=q%uԫTu\Zjԫ6_7K=liSJ]+2a([dazfGAn1\'o-]/ˌ\Z>\Z-ޚl^W1vhGS-E>>#,:zSsUkim4\"aB+6WU\0Z~Ą|{>o̿owé~e	P hRT>꒱ďL`E2Ϥ5{N<JXU\Z!	%J\0Þq#_rebI QF{@-]^a}T9\\G%~~Z\0hɏd.G9\0/KWB_l\"1*tf#J&\n\')옘TV06!\"ì@X3dcĻ9n-y0</2퉜H\"1Ej\\.^e\0gўi\\:?¸N4FS\Zq:.;\"h9Gd\0LNA,ylOъ/]CZ\0P\0l0 B\"c>li!:JJʵ9ɏq1@CϿ8.̓q\"!9}b\"ڙШ&b{b rE6dJS=V2ll\0k[v3,?Ƅ1rT\'NE֢*2%c\ZY0bs?D{ƃ`AK)̖˷G,GУTIJ{>Y~(5/$=\"-$=Q_Պ*\0E\\5_G\'u69\Zʵ,W(\"%u>{Bx22{3cНCNxr8&00ǟǴe\nǖV]UPҚg툙\"n-xhJW1q㼰@C˝1{L^\"\\$_oZ8=⬢\"0m\"_*k]K^ON1!n_u}{^[KKW.dC3^+C-\r\0ēZL4qƨ̿W/(g85?&,hYQjt*jF͌~ ~<W\"U3\'1)G]ы3cW,c==D?ˍժ]usa]P9@KCR3f|J)ㄙǔcB:cZ\Z[+sPO/5!e\0LS۠5O~NX\'l	mQZE<wH@ƣa-\"ߥr5YwT밤ks9:O!\01hI3/\ZwzVE*lMzsȉΤ-UI$譻v,x禪Tk\\\"aT襛[ikJ̀eyo։(FUd˽fxEj)X㐹٬Y9\\wGWN}1/DZb\\CfϮ^ZqBȮk_RQDA/{uud\ngE:/wQt[TO;ktI1Sj?&\0}7C7\"c&q\nmmj-\Z	{bx%H߳X6M7[ǬbMm^Z4!%Ƃ:GCt=YMX:=c,?]C?u7y0mF0%KIgU֯n!]SEY3E\rk2a.cM6!i>]Z>hP=$&dpe?1\0AOI(\"9ĈXYjW	⟇L:M>ՙty>a3&s\r]\njbޯ:ndي#IQȺ#w\nQ~~*kN{a\\wl4 F&tld3- =cC͛ͳesK]k\ZqՄ>s[om[	{/ХFb|4j\03>ƙJx\0m^\'\0,/g8s\\EW$Z\\vzQIX:}.}燊?-TW	K=&+R}I&/7^2x0לAV\Z\\liZF\'/p\0tXvŞ\' A5hꈘXYoPf91OIwW}\"4\'LYDLd@55VzX(ZJ	N1tc|]\0\0Md`ET;ͷ=\ZlHJ]m\0НS$o{ް2h	GwW?<A\rAuՉDW5֮+Bt.Z]|R`fRrۍX|Ly%]VCK{ߟ!BӋHnYPl=Տ~c_&ȼƵڼA?GisU/,:QƮ[sM%1ܫTrZ3oIt\'|žJBEV713-!*J;$ q\"C33LL{bc\ZzzF^wǘUJW^\0|5+@y9+1 }\0ZوOi\0\0J_W|#X\\*_mȃ.&J2,]jފܙB$W!\ZA\'߻uMe&e$YDDg3B8-R+kNK@mDV81#\ZT0Lլzq&	*Zt#(JYwwx=K\nh\Z	o;WBH[y k~XDDwH\"\Zv(Fs4eat!\"ZG\'VﰜX}̊ffqo4cxddK)S;K}ɑMeF#= 1떎ՂyF H,P1\nH9BlX\r<F0}%^\r6HdN!Y2[iB\'P8/15g\0=՛#\"q,%3 3GdLcWD/jj\\j\'bogGXs*Bܔ#B#\' t%]@)R[w^=y<\'Jxb\n$LOo,1U:ʫctϔ,Fr:z c[cӯ*wNP`M2,$0@\r`#l.?3>Qd}LlUxRfɻ*nvՈ)f.ѣ^);(	ڮ]=Zsl:ݧbu:ݵWWS^٨.Aɾh8jS5bv#\\-Hx{*@նicQB]mQM5s9FYyGx$.Y 25!ByabvYkN)=\rh(ܢ\"\0ܞΓ{}d/N.яP=KCϷb=C}Xasw\rݽu-7\rhY?QT˻ICF:HջQrvJ%&dSe_\r]N|TJeOl\0Vm\Z0p\n33٨3?7[J;1仿\04?LѬܠs#XN\"$| Rfr}ZƑxr\n>؂ܶ!Ӧm>L^<X(c_Xxj[p~P\\	43Zvk3\\=N\r3LuO||=C1\'&?Aa8qn|\"rc!%hR=OTg!n\"bmaHD,D}\'?a[`$ׇ \\*u\02)WŅ1%jϕVy@3ȎΚ\0 <\r7aq;ֲ^~;v-s\Z\0\rF1ѥANn!W\'aQ\n^>Xc,o˽x>E\0N-/@4Տjf)\r tFseƦT0blXu]Tj\novK/&!Eň!&R;3%:Nx*AQjrp\'w\'ɡ\0u-AbZZZ\\Dny2{ӡ?0~,Zq.сϷ_HXq3ۨw\nco+\ZqWRA=mÏ{nɄ6yC9TN6[o098K;uR0Aظ`xк11NnؑLgiW⽞c?V vyq~d`]Qh-1$Zbg!^9Ɵut/kɥZGrmC7Le|P*חeP_d{`Ԥl^3(b\r7o7ȩ\"\'A^aA>WW.qfG~7ky~ek3I򷭯ٟ16ybH%ѱDgdF;1?LvF)1}8,G;dLduihdL}1dC0KVzŴ2K(Y_ua/T؎X}%1ݎHfCVrq:3R>){P ш#t\Zg4Ή2qzpX:\'8ླྀ-%fCbe};F+/6ęO1_x|ƨ).\"\'Xj\ZP82.ٜ|\0ΆGR?י\0Zq	ͪEb^3M(\'Ʒ 9u1~0j(O6*N\"-P=R!LTruM!_2%\"QWH?owO\\)?9[[eeHQ <;\rgFσwKGQQ1Ϻ#DqꞜL\Z\0+KمWkP~05Z[Oj0^/wp~*MaYaJp!}#-b>s4\'רBӮf#))׶Бm$t;5iU?3MSdY2)tOHn\'}{+={gX=[__V>~,O]A$QwLG8I+W_P#94mBT;ѹ\r\nE5v2ZæG_\0ls1A$3i)\\~&tl ̊P;$@5-D5=z\'ƃVvu-^p\0HS&FEc]eu_fyEvn)ϴO!b+[3ckcoT[Y}O1~7ܗ޿Rj\'0\\\0c BOl/\rv߱QEmjKuTD8|YZ+_TTsahV+;0)vjhW;5XU\'Og)xqxS[]1Z5z7@7[93֭Mm\'nU|tKۛ\0\\m{\'𰉝RCb-Ցo%FaVR`xcI)wOURڕٲ$=2S-q60?пs\\C#zJuZmz h?ܫ\\!CM}PfSQ0^Ed\0:uCgѲd0_ª%{7B㹍6y$`]	t/ϊd`akuϥ^#)q;U̕-׽w7	AUŊmm]\0(w&IR6$I{\n_Ih漺_Bl`3c2-#85rQUX*Ȭ*^b^gb4=;vV1ZkMH\nNn\rVʞr\\E\\\\|Zm\r<2-be@L=19-GsmfKcKQ3?Ƥ\"*!;F\nH}rƕo~/B1Ȯxm.XGzt<0G#QGŖ\'R3\0+Z9֔s#)fg,os7	nԸ[.qU]VPz0Th\'ݕGR\n\\G\"U=u\Z&MTvVL\'ǝ`s=:ۯaoS7+H@_Hk5S]/_13\"\0ح[J;uۗ4\0WlV\"5Du#DJNŗ87i@{X}b+MEQ̤Vŕ@|7|=xwuNRkk뜅\'%rb7\rOf(/BO8.6\0ǛhTBk޴CaIEaFQhb\rA1#%UYZ\"`Hzp~@tgMY̹a	/(kcd7IIEDˎ;f~B+ӺM[6nODjбZ\0Gq}|<ALAhT~N\n6^%U2y5\"\\h.ھmN6xZMoRĮ\nբq#&bb6&]n\n\roT)WWX6@\"եYcx+$MKϕHTiYkj׽rڪ5p#/$*Z\nJJJ۶3NK׭0oZںUZ<k;8f#M1ƺZ_媬NZ>^D\0@BjTW]R%n˅m쓜\0S^+*Fd\"rg{8ۮrHsdɆcn:kwPR0Orukm[taYQ)16ޱ=ohlLZ#͓递d16#q9|I5|*30[-\\V}ZR P||Ojm񛏩**Q!5\Zc/u(Z٩ef4* vfqwȞn3p_^kP g@GZsӡV#vP@wI\ZqV[[	^NguFAs6fا<_傾6_dM\0UM:fN°2b\ZG3%1&]_^KhZV3ZYTzޢ1\n-w<bku\0P\\?\Z:҂6-ԣi/v<]N3w9;v#ҰBqjT($I]LLX=]CJy$CAvN!V}X%33<X]i]fn|\'f,nY#r/H| דl9\"2XID5׊0;bX4\Z }8옘?Չ-7M`<<Hba	v\Z,0 ((BYӹ~M,ޏwc\n)5*	*GAh	>BEd`Zs#:r>rW\\cuIOa}qlh)E]4\ZlJCznۤuuLSVk;ZVȂc9`x4*h\0.@݊ԓX)\r.\"8VViYAq1#{V`ĜX$=ݩLceb Wl*֬Qi2	N`SП	bUBKi֦۹>Ae(hLDN_7\Z)_	@u(I\".bOMf^ݣ˱r^>ns ՠxONg(:M]OTǲK<TQbJ^G\r&2\")f\rAPꭤaDc1˿XT\ZςeO\\15{BljYb\0LH٤| b)\0X_h>b)liKw&soޖ}1\Z\rYIrv0#--l}s奶Z-I5n\\p牠m,qʿ95;9riZ5}n=1\r_S\n\"vNMf㏟A$(j5uw 0Ys313G>dF#/ӗ99\0;DcQnd9vLvbw\0dE8]FoF-*us\0Nxk:V-P0fxbئ\".̲qYEHYFx%ROfx)-79\'l-LvT#3Q,q>6XYd}}ŋSUiǜeF,=8km.sN0~Kp~hc]Fwz{q[\ZATDb8rFw!Ť]2lg֍c\rWsudDD{\0\0r@P:VА!${cL3:ןn}ᤛcjN	e1Q:ƑXKrߧ\"lg\0\\anEZ}xHN-2=}؁(y5\'jf+؞yN<\\;ma-k\\b,qNB&+lV?2R1(̱Dv]]3\0}:K>A5\n,@IYYǾ\":=uǖy=ć U^L-LGd\0\"%Q6DOH0}ɫ\nyN#\Zd]K!</l&rG`c,EF;1`~)%{6*,Ui3\r$8eNÙss6Ș6IolNX/CFhpob\n8e?N3LW?b۹\Zȭi6mh`=,jWLBxnNIv(.%R#BSu:#T	R+n˫s_汝c\rLaȊNs3=E8dhR2LڇQj?.!Z@&:0DDNQ>80a6z&cSQDNYժ`ٮf3i}OǔꝻ#aw@51@qi5SgۗWwqxNlĵhiVn]+mQB\ZOFد{ثmoKL&`\"r?DTvb#Hɰr﵅%FZt]Y3Qu81YzOx?\r8Kry82\0`\0ƅ>a<>lۉI?1mn\"w<qAȔ{&;\'?Ĵ[K&,$%9_}]CR*Ev,XK)I\0x}▖=RyŹ`\\ΝYkuWŮ*nţyC#Uk LE33339HDk6JTӪ1bKHuʂ\'u}E{2|efý`CT$\'}┖]1<}Y֪ǳ\nn{fg;[[L%%f3KO0`!Uj^aCS1*,ӧ8kcN2w^,X\ZS3KTtkjI{afjKflɂH/^XdI5k5v\rvc􉵺Zc\n<pg14\0\0g^ hg\'3(D?i&ĲӎD32#q)$@BDD~:\0Z\rmӬ0ldgngLSf=X!M`\nV3D鉟f*:1)lJrt%s$p!1=a I\Z=YEqǳSDqnhZVծdH4>Cqu:t\\_g_11Z\r)_LLFPVPo/~`:D0`N9#ٜ0Zx$.^LAW\n˧ay[7Ҥj]Ǐ\0Wan+8WwJhrSf0`AfÀXə{c9ĕ1S3K#ϪxRa`*IO;Yl}_a娊{TO_>:FVI\'x_9d)?wx\0|W+-r~}I5îne`̉KtfsC$(\00`l0`OuXr4e홟l\rN	&`[ag]84]\\v6c/o\0^u|p(_r^eZ˔2S`ok{i0l\'ejNv((T&33Lk)\\mO䬪P/8Uq B51ŎhISxŎ727,6ǊXiveMQڄՑ\"{1{=?3cFkTҭY)\"cozbzK+dDG)6ubJבA¥=E:Ieׯ=M?M-Vb1*5W\Z\0lk.x|uͦL3$ I>+\'u|	R[Mxm]磦/\ZC\\de\Zs9{q\n1a2:Gk?WUda\"ZM1t\nK_50φKᗬh\\bCdqAl*?eyz1+J_zjDq	VKU~sfEn#o>TANQ#=^\\̓\Zsyv=#a5\"ҷ,\nLLtD˧Ox:{Nϑ(<NW>Uoї\n=EEƶ9Fۘuvb94K<MQ\0gOxbARt&gs\0Vq\\y)Y\0]Ѵg̫Pj˚l$DRlB3=Lf&_bNd#r-\n)\\`0cPt}B\0ɈAj(=$	\0ˤвaumh?y1\0Eãf\ZqӍSf%$>\'7,\Z0)\'C-Ft}|9j4&@K(-%sS#z@@UCFu˗%Ձr\0Ny:zbmVe	K(HNK4\0vCmyit50{ϻžZdsE]\"PC+|{\r2=\Z?}+fuxb¦4K\Z*%gpohͰ܅MKY⤁WU^: JG?\ZW%ٞ+ZxXcfN͜A=zcP+~9\Zq\\IuĲX̜Dvu7G=xBխeޜ]\n23ldDL3˳Crӟ{\Z)Mzt}hKs\0uV#8ȻƩb\03ϧn=83fS\02пZjPnzuucP1=Va4 X9ƀ@?_O_\0k)mqf_h0مiL3Ӷ\0uMsi1Jy-Zl~|51S6+AL@~eE^|bx&2F@Ϩ;цPVJl2kݳ\r-:uc\0H\0οS~|Z_@,{g.q:̍\01$e\0$E9le<zѳ09iFAh-\"[&᧧SPDQadJ:>6<q觏\0EBv%EVz:DL4hu2y3sS\0*_1:\\HIN]$scED4g%[z4%QT\"d[FsWB6]O8Zx\'y32Tۂ:jvx#TN8Oy?vt{#l1̲Ri&TQ/sB?ѳk-6ŐKC un;xOF&	mX]w2&sQ0:>,?:s.9y@uH4\'ONs^\'Z!U ف#j\0yxˮDhĳc^YiJ~gR~q󽥀*P.L:4_n/g\r, }h&3Lg\"­UCU\nr,?U#\r9T$rTSh+Z*K6NǦ\n2-iNm9-}?	n\\1R<(\Z\Z~\"_7OȪdg钁)eۙ^@ddն?X0)S>^NZ[O/xxښe8Pփ+230n.xz;OC1ETE]p5݋~?}\'9O$SJü>yU5 d2$WVrܕ%eǷXW@95@`G<0`0`m*%\Zt\0)c|/IX4F*e	\0M 13$~10G[b2,Wd8i5Ǎn\0v\nTi25huQbY\"rde:VcvJHjbdEQcvݥm*B?N!-[ݫHXjހTPԭLJⳫǼdqNJ\"-הfƐV10m%\"Mj5!Ӎndu߯o2{@\nQZyxn_vNO\\slӖj29§LΑC1v!^X?TȐYH|ڈi}ѣ\Zʮl}Db$\njCp?Є޵p1߇u\'{U;w\n*ο0qଋ-45|(r8s+IWSZ\"SOqхtGہ1Ѫ72`\'oglez)ÏsB;qqda+fRSV{z{C0+ZaR(\Z>/XGqcpDvQXXW!;z8yZRjLΠRM*PZQ\0y]vnCc+&\\ڊǃ\0\rq\0~$BŨ3\\@yn8 2,<SŻ<!\'WuYD>dFú8E+8\rTжN؝[Z&nh\r\0:,,ȆN;,t0\0OC>1Mآjujo1YlBSMf/ͻmo_2V*Jfv\"&u2|%RT2la@ǶJgH/d	ᬲfDAg J3{zSѣzv:_a<qIB..2@+?w`b~U㜧mI2	?Khףb^tB(e?\Z\0w-&nEsfuή\nbl^\'^8L݈ӈƾ?ƚ[|ʸif剓&E.ogodgJA\0s2\07yUŶ}j\n2`Nm>^9&%`k[m}1)=\0&BD\ZCi?5$2جD:G|3c~Wl*7[^,ϓf\n*dg7]Dk?ݕ-pR[}ka%+h|mxdZuun(FKu^}2/p[v.,r?akѥ5%B3̍2{{F?]U_z8V\'ujD\nH5lXniu4cmPNګ?72\"K+)+j6})Gƾ\'^jō?[\0QtFnm\"Sd2312;./oB&3{(xxd1%}\0h>GѳGev/?,0eQIƭ\'3m,]*FFQ}W\Z=^f$Ea;%k:T%>`\rrݏfS7a\nF B51:AcZ\0\Z$Ze]hAbzA|B-\\kdlO߉g6\\8vs\"0\"3.D.턭^sc2dz@{>#iĵWら!$W^wf:7>f%*Uҗq- /X~rvXkdկNXyڽwf]ŅYn\0^gVZLY))	5c3qײF K\r:*\0ׅX{^p\rjvmWȵ-:6tO%)uNk;Q1Zd#2nۼ[bwW6yRxIsgYe:gTmY|{1\"uQ	X$afAVb9#~eh@2E*5yE\Z;&<]<=U}\\j-q;,/x!=:ն{J.\nbP;WJo*C91zdbK|<S-ca)^eFt4Oݳ:0Ɲ!<s\\m(dTաnoiXg\Zov\0(5\\0Dk^޶abҺkᬑ@0T¿m$)\0*\n<WȤtUމ.G?Zad5ONf9zY,E<zQPm~:}\\o+SmXTeNT=/b-ҜnF33&Lu%\ZLXBŨ3\\@Yn !_X=9gGcOJ*W+ \ZYcM@\01iBjv]bk#M+kESka{\Zw}\'dHN3yk11\"/|\Zaj;Z%ɒU0FqZ(F-σK~ŚD\"dnПׇV)Ug9U]m_2y|<DZnM\"jJy@,31L8o+T)JC-ckJwM^^O\'H7ݛ]!\00Rc^zPp;a_Y|ŗ0{FxiBʣ\"c\nVEͺ1\0ڔ$SѮ.hQEj~)ƫzbK>FHz+B3({-]%1[w5]aX`Z_?ڼ:m?\nֻ^/\0Vg^(-7EK!jY&UNΏc},gӁ^Bv	搜0gYFa`30]-8~G#6qDV	Udmh\Zi`\Z6q么i\0`-*?Y-˶w~g#l6ʪ(``wjLƵ6:r厬|)\0þP[-SxԪٱl,]%]r]LLf$I5ǕqLczM{[2h\01pfLdrЯ\'Ӈܪ,gA[=~!8~mxO5d-di;wG>{\0vq$8Ek/\\}xCơe?~(!) g?>\Z|OX\0_oR[Npj_suoI?χ\'T)e.Ӯ$[c@ɜ1B8nUzļ`%\0ζ0׷|,OP:%n֊O(R!V;?[;)D\n Zkv3,L{?DΩe9l϶JqҸtz&\\jq.2n?L)8. s0A&dEb==g[`w=# 1H-ӈ>W}\0ڬScNd̑fE?gQ«\".W\rT\0H%?.71=]>-_g9)5S+\Z|K.{P|>_\\jxiT;be!esd:N>x5am^pUbj^|4\Z}al)Dbm`1=gC>ǒr6+RL!\\&\0@4~\'UfOO\0\n|\r;<kOE]%\nӫz6U`1Of\"J;8P&\0ao5v\0XVTi=^i<#/X%d-Η5n\"Y+/չaߖlt639EPZ+aZz=zZP>pϷ13\"_D8/҄, m)*4:[2$TOg7OiL&ׇ=3+\\\0vP?5޵/wmLC1\0\\{?{363`W$JOx-%3?#=W\0ܤ\0U)WNm%y疩sk9GiŢJtS*uX\rikW*ucf1cXMiI$fSLDE>cjEÌc_\\!fVW(+V]i_+v|\'h3_Dqar^qJLн5\n8J)g\"=8;4lk#F\Zg-}}Ư?NRgU\0B3\r{s:ڒ?.fO\n[Z0OSOxV*OfsyU@9NdUB)ɞgĵKޘjT\nŷ,ķy_dQlE/gD֬vZKⅬ#$SG9G%1e#^skDi7}J>/Ű=.f\'lk9Q\Z9\'V[^\'	פG?\r`&(9D>5qwFKmשG)RZd^/7ñְa^mD\nv\0Fß	Vr,\Zg{k\"ccS_ӕ,U_\\l)NzUM]<S4Mb~￝2bD \\N$\n]hXDiJ 	.54\0x_	#ｋC]bR-C\ZOSEjXwɓQzYlZu+\n~W*bJ򻖹V݇4¬B<Cs\r:ڼMU	vF19`=ab?og_I$DBkTB\"ÔWU&m+%3	HRPiWJ5~ep\06F\r=rm|b״ғc&H}3-)Qx;7(\"Y-^Qo)Oc? &NFRa2),iJ@Xq}xZ` :<8*XP\Z(DwE\"Ak%\"s;TQ	zzA7C~\Z۵v\ZJD#*gy\"ũ\'e	m`qZX\\s!a9S\\Ʀ8K<yߊq&IJԺI@nOŚIn䯍sf]QU6ł=iƊ>\0uMNجG=1,cD32Ƨ]r%qt(Ղ D0K+ǯWt:K-PP*-깗\ZTp\'ҮZB9zؽ]|L\"fWXo:fB}qgIV*9{)60_~?hA1Qh%d<l<zor䛒G[l[jKLP207Eק@xD^6xmɧ9D1:76=ѡ\ZW\\)\Zk:fVeK[iOÇ.B˸	ss]`Щ<Q_\"Ntm50] )a3`v[Äfs^s\\ڬs^UNڕ\Z>.<ٝ^^`i&ݿi>311__\\)TaW$LgH>#?\nڧqRA-Blٹ:\r6kҭ8:UTo<e5޵\\V\'z `[p\"N\0\0᧨v;Ld+9{G\0U_b58n$zYF@Wᑭu_sk$K4\\Ȗrk?,{^=u({Ht5Uh4߰Jv-i9UևXJk|çԦk\\9Q3[|)(=\n5w[a;>3P2+ssGI\'Woa_s**+᢬tK\0R67}\Zt#wWaw	%d,Sҡ\Z(V%οiWhgU45zdׇ2dBW\Zs˧qoZ6\'@D@q,\\Vuuenj?\Z1A&Uh`.0`!\"0`!\"0bz)Cl3eg=%n~\0Tc0U,ztdj( J4r~Ww}L\\bΫk^eCfIaYߑ*4Q9\"1zJm;MOSjFֱ&0H~&t)tR5k)-6\0=3+{sSpYZ0\n4\\|nFQ=\reuyX8vg˶\rqgi.W	ʹ:LYclGWᆷ3aܲjTAp>ͥ5QkC[ucWr?VL)K4&\n%4k55G&{i6̪UCشBu0b{fc<drH\Z!N@Zf/2(z\'?$5WoIG3bL%էN/Fz1ykAb-fZ䲏lOGqj{U\"\'kC.5뮥<܀\n&̖I:uo+RcNFݫ\"\'Xi6ϼEW\\q*Dl:z4?gMp2&ݽrPә<ZƳGw98>1+=Dsnf}~-bJa(d<\r+GY\'fg<B<[S-Ra(qfaY9e	PhBXl[vέ|K;褻3cs\ncNزej{K+kRwQq1O(\"\Zj/m}kƑ@y.EcHNb$NEnXA\"hD63ˣ-\Z?Ӵx%.Áң#	*mp.eqn{%wvcwq)3s/BzPɒ Er-?\n%=x@JpFG2>Eqy9&*؃W\ZZTH,m\Z\'~>\'S#mdztOUtᇍZtOE&M\')mđ̘C=+1׻g6xN՛Rmb#=1^bqd*q7BR(L.`U@ZGƳ.W`R=ӦPnhNpQ䈭-&Irp$A\";#A1^)iVAJrXǽ{m9om\r$0S1-,~oaԪV)kPܶoQ1.\rKB+p/(\'i\ZM%3ژsg~~ wq9Ai0DC\Z^hV\\QBM;X	̬\\\"*\Zҍ|cpՇ|,f*bӵkYGؙq3,Jԫ3&z5ÏM\0ou):V޲eHI\\dŻ|^\0ƛ\Z8ʁfωZ47򜅺V*>>cDBźmôznW\r\nfXR0+YP:aļ\'uWm5Ml\nD;UG;.nZ\0]+ ȹ-RkTOVzJ\'j&np4WI7<T0auCfՎ)wkFʠs:Re%/Ú\\uٹx\"G})PmW^m=l6./ʳZ1SEpmZ+X$7^Kgnb<_MYgW\0QeaN-$,__/i<CMcT:;|qs#h\0@XRPcZɢ,3Ӎ=M_cj٨I*F,y+ַ=+WBμg[5иz:rfl!L^_Yjb҃5HĔF>{N!n;+U\n-khEƽOpVv5⬉`Ю&\\;KAѩY65&\\pVu<{k&\0\\ք8$4s9_4yѻs#+QTCxnM=\Z<5pRsn\0Ӫi(QPMY+,/l\r{PM:k\0j%n&^3ekmށqwHYϺgK.z\"[l\\$UZǬ7@\0^39Kjx]՜@QkmZVhuwvhr/79eESxC\\muȗRivo1Mu%9`N8=n5R)`Cl,ī>5UYuG*\ZLh=letiԣk/mwcS\"͆R erfM-W[f_V?4L˖ʰo 5صL`ÄXSZsA{\01Ǧ=[qA-Fp*=S7#6a)\rG\0XL:-<F:u<\\ÎMZޕ1FG*ȑ\rEF]>(GLnIq͑9z&=;n=>G\0;[6--;[2h,vsd͎ggqpTʢxo QA؂cR!:|D7Xz--h]QEhZҕUN^ҀGA}G΂Ҡ\nLAiv쎾0Լq	kq101$YĹmS&{ש!JNI:s3[zlH|H1GJ!{Xj1V\0/={=K,\r6m\"5[Ze{Ex6GV(`}8J\0@(%|!D\r!b\"#9Aia~p*]{)fL\0Ni\rՐ.\ne]L-bbZg/IkQlj˻P>\'___5M9g\"	fd=31Z_:zƮ2\0	.t\n\nb{z#쎮PkX曚RlaI$E:~9%s<cjt-q:dc/p40J\0\Z}vȂr}a,VKyf:CYILy]?>f[r!!BC8.SqWSdbאhl.c12}MϠW}ѴxZlNxYAbHRZ\0Eq/SjػGO]LH^?0,Zv\0T+$&JYIOym&1\"YT.B J`bJ2?gO.uWmn%S$$=}oIXp@Qnjm$n5m8$x)Nbi	`te?.$9FFZ̘Ӂb>ikORvP;^ yWViM12Da^ybdRe,2 MgPjج%յ⟊Q!\"0`!\"0`!\"0`!\"0`!\"V$],\nTsAKLa@)13x<:.G,PP;\0sG^\n_7^5lܴ@}\0_3w\"\"ʂYa&)92#+1Շ\\g5R\"Hu!5i>а~<*\\qVR%$[a`ri4,8+>m+FJVs?GnYk\Z~4AP9Х$9y}`SGnXVw\0d#; 9;4*mz˲CXHVcNrcgBMϙ	4[֖ٳpic(tH|\n`~!Uwq3LL	#D\Z\Z\0s|jEsbN xz)/ZEP۾&W#3/{MȧXdt[\Zm\r/[&`(J`6fqzgDӎ3p~oEAX`La.0Xob%q)lZ]X\\LIk+k\0m--\'E^&h5+;=f=GNi=g1v˭ѣ\\HT`)^aX\0a4O&w,kͲu*RPćBg%\0,^zC`6{#?)G\0U?azMeEb,Xrܕ~>ET\0lY,;_w9<Et\"@j\'`R*8<=VK;	\0q}|</c+UM8Fg^2ryT[W[䕶OXLY2yJf1iӯONym<@K &,u_ҹɥ^nL`μ2\'f\Zf?bOL4kCL1s7VրR&lX^1F\'DC1\Zת}\0v,|z<A5I&R\\6\"Zz;ϼǾ)5]R-J޷aݱ-P\rJZܛ]j!5H^E\n*rȭVի,5/t!,rHQIq[y9PP_-0֓-,Cg!9/l~K@6қL]c	PvCIXu&3oAi݈0^}}qlh,d̎ DbffrdF5^5E?ΝJ+1WZE\'{xLS*MM՚J/LX\Zֆj\Z&LӶK\nK\0;s,Aby&v,VQcjCsp?^4,k\\}\Zl$܊+uVկx5-5_ZHe~0pJ!IJd5X~~cp)VM$W,gkEaE|F3^P\0/?|^-.䘋$Ӑ:k\\ D2Fȇx6<j==k+rKSmӵK;\\uXfGȻ:_uQK$S2i=wytgUR\nE+/$+CGtHFOR1b9E(ZpԮv2\ZHhhȖN&)ؑ)UM!eh1yM?O.%Vx3ݥWARmn{7Fjp;Na=De5<Zŷz\'9fJtjq?)RܠT夣Slm]#TSN%{?õ5:mrm%kDjEUozզ7i{L+\r~Dx\0Ol2ފ~7ŋuE(r0ה?A+_Qu1{2\r;R\'΅P\\NzR2\\S ]|޴ݕJ2EaaW}7^&:ؙGA4qWĶ	{DǪf[^A94X)\r\0GU8XԨc^y$wMmcDq<T;4\\cJOd+h71{W[pMadMWЕ׋Ʋ?3L㸕GL@j޷0\0x^ph+Ԇdff	R٧[oïW\'s|o@6U3+{IVlviS</w\\O.Jśk4od|wt+VoGjvi;Zȥޜ!\\[BmvhaSN#YXalbSX.:홂sL3@}Հ,>$i[#J~XYc\"k2ӺAc]/T09.`0`0~9ڵnF+u+s#@qOưٙkNfHs\0dSD}38J80ޟ%\n\\հin_TdŞH_[ON!^f9REz҆1a\"0`!\"0`!\"0`!\"0`!\"0`!\"0`!\"0`!\"TL339l϶p`!,c\0nwG0KLwjM8_\0 \Z{ES?b*U_^qMMxUp&`\'~Ԗ$o\"`hc/b9z34LFGǄ*sqeVIOS\0?40Hۤ>Ūu8Ԫ*bZdf5Zgx╜ز+Y-nԷ}ȪYdfaG{yʶOxQYIXQ+n²׀v:NhxFsmiK\Z2ْuׯ$gHf2f	\0dEFĪ52GZdÖe숏tWN,I1\rb{3?D.Eô Y}\\``jw쮃\nz̔k{Ouqp\0r]V gHD?TS\rNnG{ ۨV7hejfa[S6^d䔰aOdq5GtSb\"ZT6.7VQ۫\0\0؝n7(A}ݿ.TwJj@D%= BNAG9DcCi]s|rJ#.իo2>L(v똌N}G1+)׼XE3tFvF@z\\\r	V%Q9ϛ)\n[k%3>|)b	@,MNg_\Zw\'iQ9϶gǯ`Z_0Qґ2)yb-Z9\\BP9}p$,7ff9KUUɓ[)?\Zۛis\\\Z	V n  E#&D<H\n`Gp\'RVx)uǖ-u[nMF|5Ns$g@K\rz/X7u|̖,=\\otc\'2dPwD}xU+ m_ss^;LHμBęL/JM#<Yw+؜oؕ܀B\\̽Og į/2a3\Z)Ǖv	iYK\Z4>*PEA!1ܫu<TunDƘ^8N=d\\]aI$˗H9VtLw~	~&$q5!BrȉH[ISL]On0@kkYl|r9dW3l\ZidJYFb2J=原0\0NJ#s])lIl:f9nl!YYSN7<4Jţ\ZQV_Qor#/{FciḶC@1sQ.a0s\"q.5\n%[ۮ19W!\0BNdlxw\ZA#\'dE922F׳<=[$ծV=SN,U30ɕ	tXI*\ns}&\\r0RVűɏGnx+lFfEPw{zg_rSh_*->s%bY9g3Fbs302^FXƔYVQ6faڋb_JX0bЮؐnIw{xiOL{@\nږ/ޑ9bҴWXgasCT8Fga]Y|^62`-Erc~w\"Ήp1[f21\0G;`\\\"N5g_Du;{d1&x;w\0[0`0`0`V֮תycA+xDD0`CMbڠ]\0~700`0`+ֱi7}XɔfXD=! )Ȇ{&&>ǘD0`OV0bTO{:Sfg96mTh;whnˁj(,NS\'+ߘeTNSėzR{FT[ynV\nʦ+jt̔r~,\'ag#	\Z5Fs[~\rϫ1:\'Baʢ#˽%YqoǕxLgLb<hA霆V[\rF\Zݽ,\"FHfr8\n\r\nXĖYGE8F{9~_q/2DDF\nsG!ǶM6}Qi8iיd7Wx\\h;\']31쌲81h121{>(Z_k!YE5O*-?)\"g9ĨI@G[#N#4tS##\\-.&Ea)r\n9wǕlB֡OcO%g|/~\0\0bJsҞӗF$Q5ֹ_Tsf! 1c(9{3я0b\'Xˑ	F=юSt\rVjh\"mzKUzv=C\\.oZۼ˷wZED2Q!]\0jmu,sTLvt,keP\\]$-a\0@ǳ9:M]f0-tL_6JS#Uʔ$ۅ|mANb0\0IRϖapa!1]\'E\"85aTOVp@YL9=1cH8\0M|E4US;K%Ng+(,\'<wbFy8K=_h VQm۹wxqX&D`ej(8}?c,-Yes39Gl\n)76f@&*tIĹ`D&Ig>㙳~Ҳ#9cxAl\0W}E\0O\\詈7᛼-[^OfMWטGl{{`PIy!|i\0nUhkɒI3(cW0c@s|Tԭ6-S`nĎy{}tOkSiq(6m^{\\>BZys3˻}nCg	e1j=E81.\0V,(seVGm{rҬ\nj4ob \'Olvƌĺq5\n,jv\'E\0ί&k_7۬Zg)\\˙hCl^a:(\ZOBAU\n\0\'7j,>6q1R\Zͥ05DaSSrIvYH!tn#\rggճ\\6pk+7ZFd eUԫ\r-[lmlbGiX5Xrq6[9hVyϊYJv2\r[jXǾ,>kv<SQ		F$EnZ{kJ-cwy+Rв]:(7zL4|/-7JօnbC;DeE\ZMk	!ՔrR0oaTj\n\">*ծB*E,$JuB\ngYtcA^<DY\'29ؿg[_rCӮLm+\0IkpQt6%_YŏN=GyhZx\"g\0*kVNJA[h\0N4|+8^<]Z#W)Ϙr@Dlt몸1hbk;^omT.L @[*(5[1͢3+\\}%i?OAyj?!Hw,z`~\r}ߗc~1XzRHǩZZ(dϥt\'}{xy%Vb	2@AZd΢n@jЊ }EyUyP	CY.it*Q_#ƻń\Ze!$\Z\n`g]R\\\'\ZCl#U~b+c`F^koxJҕ2J[aca\n[hk6{I	&10n_Jϱ.ݵcJ]W^J\rYkƒz~))4\\fHfvmhXkr±fH_uzj^XʧgSR\rBj]_L\nMmu0$2ms\'RT&,ߴZM5&+RK`\'~[?%\Zy>WM\\BB4L\\bDAP6U,7l)\0bg4s(tmiT	 +f{.o.pb!1hIƒ708!K7Pۓk@=$6FQ^\0t\'q̠H/.9c%Ũ6X*+/elo1/-BWtDF\03aoN\\z	jSby$دC~aۘVrs+ϤJuLGj5\'\\`,SZ`@SXUq=YT7ODSR֮E,ɓ^}nxU[swxAwbÍaCYX5;n^kpҢJ6j(OAs,y+|`N$aJhQ²bՊ\rVmQ1asngfR[ lvSHkh9!6k\ZG_W^4JZStc42k]M_yOV\ZXc|*12)ml| uU(o5qzTȎmx~\Z[^gMH	́$N5	dDnm|\Zlx?|o\'Oh.s(krYSJDZ-2S+ȻNۂk<k	H\' C\ZƄ/zvv:F.nԬ@mIRXu7]aJRf_T\\aWbYV]RPLg\ZlݰBD\rlG\Zu\0js5^<H 20&F\\qiamj~\0w\Z~EĺC*\"\rMsBvϩk\0!lzWŔYRX\"d8O[UUgoOfyRґ~n5oA7geM5kan\0QVGE%4=Ni]ɟ--\n%a[Z6u;_4|6;	+Lذo#nadtt>͏/7~v3|O|,\rΝZ٫O@G.=#߾R	F`2ҹlCk4[WDV0`0`0`0`,yt`kh)}WjI[m9$ԏ[̲ޮ_o`3-te-W0`!\"0`!\"(\"ҹ$GgL\0k⧘q~jO5z~L\0l@i\\{3?Xb<^%>MR2<K],\058t0_O8R7=?ϫ\n֒<<\n?*0`0`0`.mu\n3b2tLLЧ.eg1K&c6$GmA\Z5nnb0`0`\\VɁd`3\"z2Ͼj=jg,­uҨȵ:AE	\ZiS7Q0b_vd\" C*R_\"0`!pk5QY[?JQ+ڳa0`0`0`0`'),(2,648,504,'o',48520,'image/jpeg','OneLove copy.jpg','\0JFIF\0\0H\0H\0\0Exif\0\0MM\0*\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0b\0\0\0\0\0\0\0j(\0\0\0\0\0\0\01\0\0\0\0\0\0\0r2\0\0\0\0\0\0\0i\0\0\0\0\0\0\0\0\0\0\0\0\0H\0\0\0\0\0\0H\0\0\0Adobe Photoshop 7.0\02005:02:02 12:02:46\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\Z\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0\0\0\0u\0\0\0\0\0\0\0H\0\0\0\0\0\0H\0\0\0\0JFIF\0\0H\0H\0\0\0Adobe_CM\0\0Adobe\0d\0\0\0\0\0			\n\r\r\r\0\0d\0\"\0\0\0?\0\0\0\0\0\0\0\0\0\0	\n\0\0\0\0\0\0\0\0\0	\n\03\0!1AQa\"q2B#$Rb34rC%Scs5&DTdE£t6UeuF\'Vfv7GWgw\05\0!1AQaq\"2B#R3$brCScs4%&5DTdEU6teuFVfv\'7GWgw\0\0\0?\0I%)$IJI$RI$\08	V_JvHcknӴ	1Tu:X\\֮ϡl7)Ƌ~[H0\0Y߼w􈀐zyu0U]akC+\0K[NCA٧b7Z6cHn\'ViZͮENy?jgS l]\'+\"4%\nurO!	4I =VvoKk*vF4fsw~nb\Z<Rf8pbSʪus9ߺ7-S߭kpcZ\Z_e6+1\0Ic*\'YLlqnZ1 &%1:ƹo]{Xݔz5YC)obzd۔r+Vss*ԯնX\nk};=E0я}\rml}ڽ7=lf^\08Wm085Ţ$?k\0{ƽMYNs\\IK\0\"Zt-,YNVNQux  9J\Z\0\nZ\'^́/HqWu\r&G)\0O֩UnE썶=K6ަs3.Ku>\0Qo饪WBAi-p4 \nC̜0V^\rk\01\0Q->ǒė8\\8-Ȯmuӫ+\rak[Sg7l[\'/U\0~gEɮMȿ4<50ö[g\0OP$n\n2\\[;a\0W_E\0\nԐeockjjȢe9[5??=UŢKlh\'y$3oŃwCtue!V4sc\\L><U@hyX4OoEV\0aL`@eDv.`o{^ zp\\q=:MP\Z֓׷+nn-W4ua;?kkh{*/֙3zu[~zi`x\"w4\0Ree\ro$}`.q+swR}~Kg?v㵛-\\<Z>`&3cOFw}$Gu-o+\r>p {u̍Aitcno˶999.X\';nUEBvIS=9@\rLas?LgJ>532Uc%6ߟDLC$zJMu\\uc,$\'hU3`s/;ϱ;.\0[u;.#=Jsq$+ΟgѦ3M2 dSnct=UÙ|\0玙^C_et6zYc$KXFW{:]6yZw;\"O>T+O̭նո5O\0Z-t>IZG;$9p28G?eT*-;Z<§k\0?<<mk@kIs=+>{05slc\'\r3<s]\Zb5;^SnkmmzG\0:7ʽwWu/!S4\0`m{7md\0\"v/g\rܱd̨$[hqKK$;}~C]n[hķ4TVoe\0\"#1ENtLEMw1ճjYIyP\0<OY]ǽ+kq?Qq,\Z׊-y݌}n*l\0ʘ\\[v}\rͭ۾3oyfUwz9~=s6Գ\nf1d\0-Wfy\0 OgPUfm8(Lq:x^s!Oi\\ژ0)l}OMYvcEMhm{ڱMGt,YwPi1+Sgcʬ?\0dct[sر=Bֿf\0MἍZ_ƪOGXͼz偮6=Xnw|]߫Y!իV9G7s\\ \0FEp;{ΰ`Uuk`~*![ן&:68;~ݥ\08͊QvfgGȧUVAvEk۶coѮZM{H>`\0rºrvgb=@}_=+Y?\r<w`8д>!z/Y\rvkIW*ۯ\0_=FKQBQL+;u}m5u,w`im}zns?K?2ᵹ1bi{]ίw(t_de\0nwsՃMnk[\0wLk{ǻS^3r`\ri;\0Y+\\b=Ͻ;ӽֽӴ\r@+8NNU-:&ǒG*0HDznݰ+=ޜAgjw\0?9\\\0hVm#u)YS6-%X=n~KM9.hkٿիlo?{ٕc=G`\Z{!Νn1ش~ݍ}A?4(weǐ	{SkX&%Ek\rA\n6kaβV}\\kWVgo\n=_tp[V+kZ͎:;vc4:Crs\\;7w\netI%7p!&Ѱ䚺\ZƷ\"$.\rh&*$}k\0 ~n^e^\'\n2`tA0]Uivֻ?*w2l~)wd(p9>}=ip.ݔs\'l}JI^:yoٱX㸰Cf{=::I_\Z?X%57E*;d4=PUWz迥czw}}tf׈SK\Z_7\0\Zjz\ZGc][}-e`*swv2o^5MM1zGbaUn=!fm{e7}mUoOfEt	ٙjEʫ]F\0OJ{\0EbCkcnwLooY~ԬEǊCØ\0חMxz^=z_e^ʣɱS(C+%_~W=YbGViK험\\\0Q-m3d\0Q7\Z˙ok\ZhW~eh\0F}QH|kݴu~Wz~zʼ#U鶓+}/qmu/\"Ý]ovg	*JNuW4c{#OV{,n=\0_jI%)k#yoI$wq1Ƒ?bgSxUIt$IbI$I%)$IJI$S4Photoshop 3.0\08BIM%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n	<key>com.apple.print.PageFormat.PMHorizontalRes</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMHorizontalRes</key>\n				<real>72</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-02-02T05:08:32Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMOrientation</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMOrientation</key>\n				<integer>1</integer>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-02-02T05:08:32Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMScaling</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMScaling</key>\n				<real>1</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-02-02T05:08:32Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMVerticalRes</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMVerticalRes</key>\n				<real>72</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-02-02T05:08:32Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.PageFormat.PMVerticalScaling</key>\n	<dict>\n		<key>com.apple.print.ticket.creator</key>\n		<string>com.apple.printingmanager</string>\n		<key>com.apple.print.ticket.itemArray</key>\n		<array>\n			<dict>\n				<key>com.apple.print.PageFormat.PMVerticalScaling</key>\n				<real>1</real>\n				<key>com.apple.print.ticket.client</key>\n				<string>com.apple.printingmanager</string>\n				<key>com.apple.print.ticket.modDate</key>\n				<date>2005-02-02T05:08:32Z</date>\n				<key>com.apple.print.ticket.stateFlag</key>\n				<integer>0</integer>\n			</dict>\n		</array>\n	</dict>\n	<key>com.apple.print.subTicket.paper_info_ticket</key>\n	<dict>\n		<key>com.apple.print.PageFormat.PMAdjustedPageRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.printingmanager</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PageFormat.PMAdjustedPageRect</key>\n					<array>\n						<real>0.0</real>\n						<real>0.0</real>\n						<real>734</real>\n						<real>576</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-02-02T05:08:33Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PageFormat.PMAdjustedPaperRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.printingmanager</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PageFormat.PMAdjustedPaperRect</key>\n					<array>\n						<real>-18</real>\n						<real>-18</real>\n						<real>774</real>\n						<real>594</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-02-02T05:08:33Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.PMPaperName</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.PMPaperName</key>\n					<string>na-letter</string>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.print.pm.PostScript</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2003-07-01T17:49:36Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>1</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.PMUnadjustedPageRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.PMUnadjustedPageRect</key>\n					<array>\n						<real>0.0</real>\n						<real>0.0</real>\n						<real>734</real>\n						<real>576</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-02-02T05:08:32Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.PMUnadjustedPaperRect</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.PMUnadjustedPaperRect</key>\n					<array>\n						<real>-18</real>\n						<real>-18</real>\n						<real>774</real>\n						<real>594</real>\n					</array>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.printingmanager</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2005-02-02T05:08:32Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>0</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.PaperInfo.ppd.PMPaperName</key>\n		<dict>\n			<key>com.apple.print.ticket.creator</key>\n			<string>com.apple.print.pm.PostScript</string>\n			<key>com.apple.print.ticket.itemArray</key>\n			<array>\n				<dict>\n					<key>com.apple.print.PaperInfo.ppd.PMPaperName</key>\n					<string>US Letter</string>\n					<key>com.apple.print.ticket.client</key>\n					<string>com.apple.print.pm.PostScript</string>\n					<key>com.apple.print.ticket.modDate</key>\n					<date>2003-07-01T17:49:36Z</date>\n					<key>com.apple.print.ticket.stateFlag</key>\n					<integer>1</integer>\n				</dict>\n			</array>\n		</dict>\n		<key>com.apple.print.ticket.APIVersion</key>\n		<string>00.20</string>\n		<key>com.apple.print.ticket.privateLock</key>\n		<false/>\n		<key>com.apple.print.ticket.type</key>\n		<string>com.apple.print.PaperInfoTicket</string>\n	</dict>\n	<key>com.apple.print.ticket.APIVersion</key>\n	<string>00.20</string>\n	<key>com.apple.print.ticket.privateLock</key>\n	<false/>\n	<key>com.apple.print.ticket.type</key>\n	<string>com.apple.print.PageFormatTicket</string>\n</dict>\n</plist>\n8BIM\0\0\0\0\0x\0\0\0\0H\0H\0\0\0\0@Rg(\0\0\0\0H\0H\0\0\0\0(\0\0\0\0d\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0h\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0H\0\0\0\0\0H\0\0\0\08BIM&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0?\0\08BIM\r\0\0\0\0\0\0\0\0x8BIM\0\0\0\0\0\0\0\08BIM\0\0\0\0\0	\0\0\0\0\0\0\0\0\08BIM\n\0\0\0\0\0\0\08BIM\'\0\0\0\0\0\n\0\0\0\0\0\0\0\08BIM\0\0\0\0\0H\0/ff\0\0lff\0\0\0\0\0\0\0/ff\0\0\0\0\0\0\0\0\02\0\0\0\0Z\0\0\0\0\0\0\0\0\05\0\0\0\0-\0\0\0\0\0\0\0\08BIM\0\0\0\0\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\0\0\0@\0\0@\0\0\0\08BIM\0\0\0\0\0\0\0\0\08BIM\Z\0\0\0\0C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0n\0e\0L\0o\0v\0e\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0null\0\0\0\0\0\0boundsObjc\0\0\0\0\0\0\0\0\0Rct1\0\0\0\0\0\0\0Top long\0\0\0\0\0\0\0\0Leftlong\0\0\0\0\0\0\0\0Btomlong\0\0\0\0\0\0Rghtlong\0\0\0\0\0slicesVlLs\0\0\0Objc\0\0\0\0\0\0\0\0slice\0\0\0\0\0\0sliceIDlong\0\0\0\0\0\0\0groupIDlong\0\0\0\0\0\0\0originenum\0\0\0ESliceOrigin\0\0\0\rautoGenerated\0\0\0\0Typeenum\0\0\0\nESliceType\0\0\0\0Img \0\0\0boundsObjc\0\0\0\0\0\0\0\0\0Rct1\0\0\0\0\0\0\0Top long\0\0\0\0\0\0\0\0Leftlong\0\0\0\0\0\0\0\0Btomlong\0\0\0\0\0\0Rghtlong\0\0\0\0\0urlTEXT\0\0\0\0\0\0\0\0\0nullTEXT\0\0\0\0\0\0\0\0\0MsgeTEXT\0\0\0\0\0\0\0\0altTagTEXT\0\0\0\0\0\0\0\0cellTextIsHTMLbool\0\0\0cellTextTEXT\0\0\0\0\0\0\0\0	horzAlignenum\0\0\0ESliceHorzAlign\0\0\0default\0\0\0	vertAlignenum\0\0\0ESliceVertAlign\0\0\0default\0\0\0bgColorTypeenum\0\0\0ESliceBGColorType\0\0\0\0None\0\0\0	topOutsetlong\0\0\0\0\0\0\0\nleftOutsetlong\0\0\0\0\0\0\0bottomOutsetlong\0\0\0\0\0\0\0rightOutsetlong\0\0\0\0\08BIM\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\08BIM\0\0\0\0\0\0\0\0\0\0\0\0\0d\0\0\0\0\0\0\0u\0\0\0JFIF\0\0H\0H\0\0\0Adobe_CM\0\0Adobe\0d\0\0\0\0\0			\n\r\r\r\0\0d\0\"\0\0\0?\0\0\0\0\0\0\0\0\0\0	\n\0\0\0\0\0\0\0\0\0	\n\03\0!1AQa\"q2B#$Rb34rC%Scs5&DTdE£t6UeuF\'Vfv7GWgw\05\0!1AQaq\"2B#R3$brCScs4%&5DTdEU6teuFVfv\'7GWgw\0\0\0?\0I%)$IJI$RI$\08	V_JvHcknӴ	1Tu:X\\֮ϡl7)Ƌ~[H0\0Y߼w􈀐zyu0U]akC+\0K[NCA٧b7Z6cHn\'ViZͮENy?jgS l]\'+\"4%\nurO!	4I =VvoKk*vF4fsw~nb\Z<Rf8pbSʪus9ߺ7-S߭kpcZ\Z_e6+1\0Ic*\'YLlqnZ1 &%1:ƹo]{Xݔz5YC)obzd۔r+Vss*ԯնX\nk};=E0я}\rml}ڽ7=lf^\08Wm085Ţ$?k\0{ƽMYNs\\IK\0\"Zt-,YNVNQux  9J\Z\0\nZ\'^́/HqWu\r&G)\0O֩UnE썶=K6ަs3.Ku>\0Qo饪WBAi-p4 \nC̜0V^\rk\01\0Q->ǒė8\\8-Ȯmuӫ+\rak[Sg7l[\'/U\0~gEɮMȿ4<50ö[g\0OP$n\n2\\[;a\0W_E\0\nԐeockjjȢe9[5??=UŢKlh\'y$3oŃwCtue!V4sc\\L><U@hyX4OoEV\0aL`@eDv.`o{^ zp\\q=:MP\Z֓׷+nn-W4ua;?kkh{*/֙3zu[~zi`x\"w4\0Ree\ro$}`.q+swR}~Kg?v㵛-\\<Z>`&3cOFw}$Gu-o+\r>p {u̍Aitcno˶999.X\';nUEBvIS=9@\rLas?LgJ>532Uc%6ߟDLC$zJMu\\uc,$\'hU3`s/;ϱ;.\0[u;.#=Jsq$+ΟgѦ3M2 dSnct=UÙ|\0玙^C_et6zYc$KXFW{:]6yZw;\"O>T+O̭նո5O\0Z-t>IZG;$9p28G?eT*-;Z<§k\0?<<mk@kIs=+>{05slc\'\r3<s]\Zb5;^SnkmmzG\0:7ʽwWu/!S4\0`m{7md\0\"v/g\rܱd̨$[hqKK$;}~C]n[hķ4TVoe\0\"#1ENtLEMw1ճjYIyP\0<OY]ǽ+kq?Qq,\Z׊-y݌}n*l\0ʘ\\[v}\rͭ۾3oyfUwz9~=s6Գ\nf1d\0-Wfy\0 OgPUfm8(Lq:x^s!Oi\\ژ0)l}OMYvcEMhm{ڱMGt,YwPi1+Sgcʬ?\0dct[sر=Bֿf\0MἍZ_ƪOGXͼz偮6=Xnw|]߫Y!իV9G7s\\ \0FEp;{ΰ`Uuk`~*![ן&:68;~ݥ\08͊QvfgGȧUVAvEk۶coѮZM{H>`\0rºrvgb=@}_=+Y?\r<w`8д>!z/Y\rvkIW*ۯ\0_=FKQBQL+;u}m5u,w`im}zns?K?2ᵹ1bi{]ίw(t_de\0nwsՃMnk[\0wLk{ǻS^3r`\ri;\0Y+\\b=Ͻ;ӽֽӴ\r@+8NNU-:&ǒG*0HDznݰ+=ޜAgjw\0?9\\\0hVm#u)YS6-%X=n~KM9.hkٿիlo?{ٕc=G`\Z{!Νn1ش~ݍ}A?4(weǐ	{SkX&%Ek\rA\n6kaβV}\\kWVgo\n=_tp[V+kZ͎:;vc4:Crs\\;7w\netI%7p!&Ѱ䚺\ZƷ\"$.\rh&*$}k\0 ~n^e^\'\n2`tA0]Uivֻ?*w2l~)wd(p9>}=ip.ݔs\'l}JI^:yoٱX㸰Cf{=::I_\Z?X%57E*;d4=PUWz迥czw}}tf׈SK\Z_7\0\Zjz\ZGc][}-e`*swv2o^5MM1zGbaUn=!fm{e7}mUoOfEt	ٙjEʫ]F\0OJ{\0EbCkcnwLooY~ԬEǊCØ\0חMxz^=z_e^ʣɱS(C+%_~W=YbGViK험\\\0Q-m3d\0Q7\Z˙ok\ZhW~eh\0F}QH|kݴu~Wz~zʼ#U鶓+}/qmu/\"Ý]ovg	*JNuW4c{#OV{,n=\0_jI%)k#yoI$wq1Ƒ?bgSxUIt$IbI$I%)$IJI$S\08BIM!\0\0\0\0\0U\0\0\0\0\0\0\0A\0d\0o\0b\0e\0 \0P\0h\0o\0t\0o\0s\0h\0o\0p\0\0\0\0A\0d\0o\0b\0e\0 \0P\0h\0o\0t\0o\0s\0h\0o\0p\0 \07\0.\00\0\0\0\08BIM\0\0\0\0\0\0\0\0\0Hhttp://ns.adobe.com/xap/1.0/\0<?xpacket begin=\'﻿\' id=\'W5M0MpCehiHzreSzNTczkc9d\'?>\n<?adobe-xap-filters esc=\"CR\"?>\n<x:xapmeta xmlns:x=\'adobe:ns:meta/\' x:xaptk=\'XMP toolkit 2.8.2-33, framework 1.5\'>\n<rdf:RDF xmlns:rdf=\'http://www.w3.org/1999/02/22-rdf-syntax-ns#\' xmlns:iX=\'http://ns.adobe.com/iX/1.0/\'>\n\n <rdf:Description about=\'uuid:608933b4-76a4-11d9-b152-aafc8939ca32\'\n  xmlns:xapMM=\'http://ns.adobe.com/xap/1.0/mm/\'>\n  <xapMM:DocumentID>adobe:docid:photoshop:48f7354c-7246-11d9-b152-aafc8939ca32</xapMM:DocumentID>\n </rdf:Description>\n\n</rdf:RDF>\n</x:xapmeta>\n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                                                                    \n                                                       \n<?xpacket end=\'w\'?>\0Adobe\0d\0\0\0\0\0			\n\r\r\r\0\"\0\0\0)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!1A\"Qa2qBR#br3CScsѢ$4𲓣DTdt%5\0\0\0\0\0!1AQaq\"BRr2bᒢ#\0\0\0?\0TD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDDʎ0.hzU@L\ZưX|`\'mn,ZǶ:Fea|yIÁkf4O?eBonn?\rO3CpP\0#tpR>iWol\nWILx.Ԁc(q^#Ip3 3x^ҦE,ȼR|!l&>$yE>TGY-3oLJ*^riʺ[>fUrt8$;5&<e+iJ\ZDD\0$q\"\"TD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DD6L+$}^ R%e,8|Ǆ\rb\"\" KU\rg!-Uc0:=LGЭ@$K5Läqe@2ptTL摚åFiKbFL1C׌<$-I/ɑ2Sk{d2G}Sq<5̋D.Yɘ|&Ef_F|&	i&HZM>iA6RqЖ.|`I1d$>	GPf3`qy\'(\nFA\rv׹}b\"TD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@K]Tpʯ%Y?W܇!=O̞&l/n M}qEg`46Bl@F&`9$Xlq5%=\n@ىo>ق@щG-CJ0>a*aLGצ[(=14(\n)\Z\Zl,#&\"|dj[2NbLp<ہt\0x@ψ3L/ߧtbm&5r$;zQCoa	\nwQm.R*GMj=GTD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@stO/ZuQ̐\':\\7%D]fQ·R$Ԍ1.\ZOm\n3s焰u͆݅.3{}Ľ<\0H#0\"]G7[A_	u(\\f̪ٯ2׎3!*ZdE!|ЯoD..W,A1L2N`D6`@LlPAR!\Z6^<9HW1NBFY8u	όQL\r6@Ȍ.\Z>7TD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DK:omY9\nm}M5~Yt?`r9z\Zu*D\0	%??cN:X\'/Ek9Lt6?,ԿBYn)MOH8i6f3n3@ЀdvR9qMǄ.3UH#j)45.8##(*q`K%10ˑF&ƿI2fI!0%93R[9$5pl `g8|`oҥqE|&ē>\Z{z@>0P@Ffz <x¦6TD@DDD@D辺+d;)t1z{hڲCë\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\"gb\" z.58sOZӤO`Yz[e|W_|K$foҼOs<u{JݝNl<#rjNdosiغAkXֶx#jͅ|gMNc5O#c<q(Uݭŕg>FyMܚl<s(؜r1灩R9|cß/\Z12`ո#\"gb-@$	GS_KxF\">SLK/Z>yGpa]M\nK鎓qˈUs2|aJHeR12 ǌˀf麁a:NfTxa\'1T@W%p9TD@DD誠H:unV?O\0_?aשX9_+QWІګ:Jw=:/ޒB_h*̙gg_=bj>jQ?\0ZFn?ϱc*RkƳϵǷݴZ۳C_aⴅ\'\0sg쿉<Ż[z*u?	w]ߧɬ\'SyGֺԻ\n$TDoؚO}ub%NϿ5}aP~#gՔ%\'Uj]f?UdvŽ5S\\F}go5;_a\'GQwժ+oKuWֿY?\'w2s|G̪BŘf9$$]ts^?eĚZU\'|>V7OO[8ޭ\'Q>,WOjRyto׿fT)OYNSI:F4ye~n\"]5olURÞ]~+_XTJ`\n	6XQ&1>om]j\0H0.W2Ye~\rZ}罇c9\0㟆/s\'ڔ+nIX6c_ۍ\0W\'pv_Oajz\0I\0auk1mם=ݭܫV5pk>EIe}]T)vḬԳ@3UX<¬K[ljXG[2U24f(jʊ\\\Z½v~KSzuUEQh鲦(	)2yLLSb \"\"dGFN1=>}\Zt\'Pbz5fץVEֽRKu2xpr!9%T8!~p}zH2n3b\'N(~iltPԫ.ؗەE-FF}vȋ;wҨIūfҹ,r0@fsq=m516320q23Rx``c&{.S\rI3>ɷ1\"#<ČՎ)<$\\pqp3N92?4Es`#{\0l<f8d?	$@3q畃lJ\0WJe{?TD@I/ٯW]z\0IR훔voEM+]m{WZ䩵qէuءv&$6l~W~\'ϗ;Gp\0-4z~NIVEqMqR,_iz-X\0}g.䳱Iev{nl3\0QS9iN$=lg$zW\0~F=v>ޥ\0c;_n\r\r{rFkV⽝*4U\nTtu*nWqFceJȅY\n[z>.>9Ykv}?]7?TjVל9۱ss.|I93I0뮸i=W-;\0.iye>󱯨6mi94[+}z,UeMKݣmw]MuV.0=OWܙkGDK?f]wc_ѫ\'glx۵L|kk=.ѓο^?-SEj~P;Í[?ף^Oim>;u\\er9f]vw6+ev\r3?K$W;ٮ5WwM{rM]%giҿOҷ|}>vzL-lWeWM?eӓfʵEer,Tkyzko!`ol\0kǔtYWlbs%ϗʛ׫ܻ<7F_R}nry?Ufu즻z^?fXρ\r48O}!;vv?gOzenlBzjCP|I,=\r]t׫%*\nr~-~?yw5u^)i\\6YמϞT߬PW1ltD\0noQ\nPGF?\rdgkh>Nt\Z-~AbNM]^Emǎ9NۥnߺՇEX1ff{߭gK]OhMJUT)nO9emm]ܖvcIKKVAP孳Qg[ӽmi:߇[}ަÎX֤?\0&ޝNS\0U:IWz?s]9]]7ޠHVCigk%ٱNvu;?fU_.z\0ƪ,Fͧk<[nOSԭ2ܖf9f\'$LӤljV-(²zCzwͭݫۙR}@:U3`:}GҞ\0vګ` `FOIi9%sʭmF8<+\\WZvઠ~Ev=u6p\n𪏅oٻv5\Z+58\'$7R\0f93qze@\"eݝ1%ZlF&bdLO8\':T0~LOOawmtOYzX2YZn][Vm\"2U\" zsw4yzzgVqS$F\rH#Q5@Y\"250ԫdr@12AzAJf*8~\';VϔǾk]cm%覶}l8\",`~̀GN-γi\\n%yjGI61#+-ߥH<f1S	R&Iq3Mz~l&ϺlxWǇ/,901,1+Դy)\"1;vvvq+eFjlϔk¹)8F/vǱXp=[BQyL6sl5+8>j(E¢وٷ;;zURF#ugWTD@DDD@D޶pU\0f+]kK*$(3E6_rSP˹)+\'ݺ&νrs[\0_9-խ:vlSEխE=J39oDD=g7\Z\n3tiov0WU8pbXgmM\0x	\'%rUQ@2	JjY1+jܟ-Y\\x{$j6gL/OQc$n1pџ9č1a<q s/2+9czO2X0 e}N=!H~id]G51ͫ>$VX舅a/0̚Uriq5k\nXO曗,lg>ϖcb<= yN&kGOT3R>dF$Dt1@0q@xkn\n/yEd=֦bpEJ/;3f֦tkg#̫Ù]rּ2	\ra<	?d\'6!\"̭`4zV(oQǇFC)I[X78sjbL?kX_cTD@DDD@?u컕J߽֋[]EEB5/Ҳ+F$qsMЍ)J>$fig\"%h7F\0*ҹpgΕK0Q̜}渫X	6ƹuQ9s[\"A۶	8+2+d7eÐj9|)QZ!%M8c<O\Z:=6sZZcU<YI	2FQVI\nsWV=<L)G&{d\'A\'3ejGS?OZLַ\\sMgq	Aϰjڗ0bk.^\n*})*_is\'#$Md֣ZH(xMyGW,\0	(ĞU|\'SAhQV0$H\'2rV+#8W~67H&t9\"W	|\0J)S5WK\0xK醯-$l|\"%Qۧ,ą/dZx )\n#$~bN3\n{0X5df`9fj\rZĨ=#Orl]]Yю\\\0TD@DDD@DDD@DDD@DDF&BM`G_HǤ`EOL04S1Vv*gdRS8kPoW.	Ѭ%g	SwUcϵ.5kQ&ӈ_*<^dG\\7\nt(G`T\0,F\0R\0xWyr&qy眥o/\\0N<e;FNf::H0zDwL{a<Up`\0\Z`Վ<fYSqRfVf2DPF?3{%W7Ǆe05Qb\\SZ>I2VnQ6\0xMʏ5+Ä3yi5#nfp$(=l<%l.-lr̹ Qd(\r%,q4JZ]|3}J}W,|2s2\"UHHvz8[}[\rď?^ǼTD@DDD@DDD@DDF&	BdLN1 SZI&>l:Gu5MUikvvzQbH5+Xv]?,˰>+b<vmg${{;}!((RGS/|=xOofpFJqe6a\Z&gbBA\\JVk*)$YB b\" \"\"\" \"\"\" \"\"\" \"\"ūǛ\nTc|\0N;P~s>[L{G]z|dOhSĎxkmZכ\',Xu52Q#q3*kAjkbLeg8ڀrNx	\ZW=\0`%gG2rz:5rٯt|Q5㔼Rjk!02W,ѓ)8gF$\0AxL?,\r0&23B!9#(J;d	VϋFן	Ygd\'8D䜘Y#?wU^Yv8(-2yJ\0K=$6pg&p9soLmX~3TD@DDD@DDD@L\0Ik&eukj#w4{`g>[YF;Z庵L\nR$k\"kR%mJ)\'R~AG&)=0T`g/\Z^$ucAș55sK[6ɑ`RWg\0k.jmr<8e>B(j/Y89zdrbw!9Rsv!sWZo>2%q׌9+g{\Z(Kzā9<G\r5)!2. k=o-\\@O~\Zm-`d{gרYBXAǹ/_Ng~\'#9q5WpÁ3^׆s+=dW]?xǜѮ\"[gG>]f`D;.3٨	r4\Z?$D\"R&LɄ&lp}lG,|X+qM{L.#B&G$iL4*&dCp49ZxȈS&Q&1Sr15>rm\'d<aZyhe1Tx:rH.Vn\0	XnSP:KyGP,Y}^`!ڷ*>/3TD@DDD@DL I2`+&t5kFHݤ\0Gh\0j\n&+(pPdin&|9O|[	X^$#%Y3]nu=`29l0Â,<3\".)\0\'tOG/a㙖:;NķISd=WlB<?$Ux,\\=̲EQ=@c1/a_ulod[;;yC8Z` VG#\'nŰ=\'L֥\\R*g+R*ڍߗLk\'>3Lz\Z@\06c%O9v1r6RT]}~q$+S{elf~mVk#P|%Eg-\Z욕GwPn3uD7uÈo[ea=HDD\rj<~Iow{of~ x_؟&rR䲶!l0sX2V>	\rf֋z{)a`ό\\z><tRR0dwvu95?i\0r\nHeX<\0<$\'I9c5&T:$mM:J)#B*@q\'U$1yd*<{o2dO$6f5\0p23l矾`u2c-6``:n9ML؉ǺBNc\'3jAҼ[%tÞ%L+ґ!B\'L5i<$)Nke-NRyG	vee]oWz~I)-2e%8P2VC(++9˺x;¾uYMGqllTD@DDD&@Ue*:&tG;vSG=Y_G\\\"	uUQ`Q9[{<gn\nk,,y\'3쳷H8Z\'COBJ֭\'>N2Cc3-tg<@-Q]#Ϻg8x-OՅ4]]k8Pb$_D7=W5;rg#>b0<xӣP)|<$ϫ&.տ][MUNezO/tNDOxҽ]_8%ޛ/[W)8Bv\rKSxY$9\Zװ3#gK1q[ˡPI\'Lj\'M\"_9S޾a>yZ/:Z,OAWR73=	8ׂeeV&H	\'LA9?\" %8[I~RA }w\0u_RV<\'m|ux#Ϧ:}yʹVkQijs|}ү@jɬ.,^C|}rܱ8:IpxxM\nu-ï]	<6(\\^W.bp\0fǺFc,9\0񐻁9O^^-zDf5-&8Nu:5t	+6&FČ7<8x\n|$o\\aɕ\0όlH\"|l>!q\r$D0O;#\01	Ͱ$3z*8\0c_$\0?>ps&:\'#&]cs#9I<Y	*<DI(uY\n`nsH\\_0/ĞRi]c$f5n%g^93T\'\'WTD@DLOO.6@%E8?g~\nA\r_;ǜ=\Zu+\0Owh۫g\Zn2>VŞ҆b2.P̌3>cMq^{mxwcOrz^$WJ/q\0N!&_=7k4UZ\np}`}驾nwq˅Rtj-7g7q͸w\"s.bA6IaVO`q\0r>i*uӔSQHU\0\"E\0?<lȕjIR22@đ	6MKnʀȪfq7QPn>zH4jr>%/GYv)kd#\04k=BA!wK+j (q.6\r%~Yr2]\Zk[a1̗AC`.Lޝ\0$ث߳错YxxΚ_lwo)3v8Eƻ\\lb9<X&{\ro˖\\73I=˃ 2D@DDD@DDD@DDe)kW~eD7e]?/U6\Z[59j^\n|1\r7f=ɝ~N\0m017`cc_=<fu/c[1z*}V8*[g5\0ȭ[c#!k{d5-Igl#	UV\Zc\'	CL5W7	a\0vcrJ:r\0W<H4@Jʪk\"(\n\0<M0x%홵ߜfBx7e&@$ O.%0g33od\'%$Ld{dy&DG\\JL$O<ȘM0^Cs	P,C+]&ZK,z~q&PePBR4ߪ.AФ-9\0naZ+a\\&_ҼIS\'qVZ5><|bAyDۋTD@Ln.שQPs\0f}oSn\ng{?\0}g׹s-aYeϫ_i|YG[u_Ѱs<V^\\P\0QN8_	S$x	<<[d32L.L]t!t@ޜ\n^bPH~A6:usAvNY`@io@\0NWWi\0^EI\'3[QT9ȕXG{{*\0 ,Jǹ?!~֪%<z!4}4wc,b:gGe55ԛ68FOEzc3yKk]!ʊfqkWoo\\Vp?HМIM\0,+%@X^k5Z|\0$p?!MVcS;馶{:(85:eջөxuqb\0g)uV~+<\0pRr3Py2׉_M:IN^gg܎{Q^iqԤdY\'mK+?0Á6=B9T2믺DՉ[£Pj|d8<$Df.8|sYP8foVk 	>hl\\,odjI#c8	71Yc4\'uMrs.M]LО&XͨV$iQZ\0a3/:~YjmǺW;^lJ36͙60l`c\\`ɄL9|aG>8EČ/g*ϗ<I37oczYjh+{IÖ5~B\'NEGTD@Ljk;cr\0z{\n1<ªZz*~YA~W\\%^84#Ёd3Y9v:%	]w<%=!tlNwOR?4ޮ;-s.\\b^e\"\'&])5Z`TZxy·!&D KZe=G9噝7TƄ=:3xq%L-VS7<qIٹ]}\'gr,cx?fM=.DDwkUV-f}>6~rp&zJzsYHკ%5֋\0ULlͨWHu7݀#%0weƹ>Ñ,cCJj.T0ݳcװ\Z歲sxyjv#.A\0L9;/}k5YRs5瀝wǽھTrN^XX	FL9ek]Nރ*y%+)w[eMA79tw9~rb\"\" \"\"\" \"\"\" %ݲuwit0߼ht%@#s;\0NA|?\')q9ׯDV2`	\",sr^f#dO3xekL0H#`9ELՏ)	;#.9Șǜќ$gX`1Xa\ZL3#-,߫RBмf 9SȝIbhe*>W#2Y\ZQvlNf-d9^W)ʛE.c{0\'QcҢVr>#T/Z0e]Pg#vYbO%,u.=.8g7/TD@L|byYu-a\\|wؖϲs߫ߥRn \"kb\'dt|$,,\00dW4uNV:[QxΦ}.$J/V+G)7L\0\ng<q5)<jUL^Uq\0X3{%\rKu\\01ȏh%#btg>%c*\ns9𣏕vswuu= 2ފ_%ݳe\0foF\\!Zk%I2s3L9O0D<)=>3-u[U|Z<`mP㤃kۿSεۉ\\	*v4Eg@D~ KHNր9\ZNފ׫[\\^9l2s6[$M\"\"\" \"\"\" \"\"\0$iӣV+gVL>\0urQ\0Xi\0Ӿ~E4PrS\Z*ف;w;++4{s݂P\rx=N^җr,<xM|q\'Ε}g\nSd\0D5۸]X&~dH&q^F 6爚-S34/ǜh\\{fpŀȍMN1i8\"k@/TRDB3Gd95.%ꖶ,fm`ueg5.f#n9@bxL0|&	0f	-ds+deOBT\\9($y\\MK>3\"{϶Ot/bʹC.yfZř\'>)ӠhՔz/B\\2cJ4i	^\"\'=,>8!TD@Lَu1Bp?\rsc;40${6Gx/39Z|7uZRÈpj,ch*\ZψWT~FP$9\\LU_tvolz@T|v*,^<8tJ4\rձwێ\\ ~$?!$;HT|p	ncɭ>Q-1pe*WG(2H*#}]B\0fW-gtä__@68C҄{\0j\\}2ʢ>y]2G=K8dω<O)W^Θ۟3=k\0˯XmҸ>C+sDmV	]kx|ՒߐI-\n\ZyǙgPܠǨyIͳM=FM`_GרOgm۪Moc[t6n[`Pec%dP	z[p3Vkfmg,ˊ!V0\0έIWH:8Kae9Ycת°f㯑\"sPtĚn]ݫ-\'\0zQN6\0:)\":@c\0y64_y>|ksߎl{~|e\ZvV%ey,k=zl3nh%[4vL$	P 	l GP\rMIf+3f22x̃\"ec2eǲD\Zm^W`Ì.*\n_̲Ԅ#UoELHL]YJ8b\"pD#HTD@LDklk/2vr{UfTVc3;Gmol3W<.<oQUj\02-gOTMOyxt\0\"%6m\'\n[ӡx*8v]v<T5晏`9?o%$|>	bJĕ9p/DuYYCL\0?mָ$9ه[ppt癭 xgjbyy8%yp\"js7;|e:yoR+	\Ze>`Ӊ^\0R5oVf-Y-_ʿ9T3HW\0cwzVʥL-h]*v.<݉\Z!sq]֓g>ÎΝ/\ZmbNtg3MnpSȉQ(Q:\Zz^Jݕ|emc`圽񌢾#b̙gfsld@L126efi$#gCv+ňOI\'6zo>%<syl=J KW皩6\nyś3,kGb\"X!L(xHCdg]z9]na7q(#ns۫\\dB$fe\0d,fVd10̣lf03xLfjf&jL k$\r7!gH_ Sl[jr[9vO~Ű(\"bCTD@DD:WznWNVe H9gZ+~XZWQgR\'տjNvWxwA޼XYJZzĖaǈ8u}\'-O;4si=k?dM8=\\w=[f u8\'9;ogWm{Z1:her3be+<&Mv2Cđe%VǈLM]mJGJnk\ng$an5d?8(oKjBPrc@pAqg<Fx|bu\\G/slKW	\Z]}v@TOHsWSmofOyh{XBftgl]7ؼg>s,fef3glDDD@93Z5Y\0h3U|M}z}*^+ZVXbDF8+dVꚹȚL 3 l2r_;_řߩN[z}33̻eܙe͉|̉\\4uMK@3RfMKB2Lc:mz`mc2H7	3aCR(mC;oYϿwp1.TD@DDp1·MC\0O182ҝ-kH\\{[\rτUbx\';:XLҽ3;\n3%ÄM`|8eU/Amd2	aˈlyBp8H=\rj{v+:fXuۆpÒGf.FUN,A\"89{-e\0sied\nL.~xv_z.mE2=3AoFW?H2d6]4BG	I=\0u_)n`bs*feDL531`\0$DZȬ^9437%sM\0 \\԰+*S\0u[rVzssF|fh{fp^7	9g5;>lɚٛn3O;yDW1\\ǩ2锄٦d2ٚB5{ek.\'񒭼%ep56ʦ顾0el0l<=ANǾjv=_Dǫ(}26=<C	D_Ƕ0y.u	%c\0 hm\n9>טx3X2bU,LM0TD@DDD@wZ#rd8O?vgkVi{j:77Q.c3o`p3dg˵D#*ղX\Zb¼\"W=F2 \0n,*ŕ\'?kT`.!vyp3sRw*8*Ffq*12J؁j͉Ry207fWՏML1bX<LD@DDD@@8\"30\" nn(\r$Q>ٷT`Y϶=o|P-eO]t-\'^y}]ywsMӰ=S=\0|߽8km퐾Ǿrh۞pgB͏|Rm|ݗd8[7W\Z)F0Kke8]UFI>ak0SX}MZ3dϭD>{_47py:?y>Ǭc]q\r|Ϯ}}Kvdl$^L3+$D@TD@DDD@DD\\kV<g\"\rn{AOP>izŗޮ_\'g̻V,綮{_3nr9Ң06h`$dN>:[& &iPe3oV=I&1!{y	e7k̳dq#33;[9 i崎=@gCc[9[YS4ōeI3Rc3%jgR[e~/ЁNmv簛k*ŨZO*rv=E7z}gytkGg39=\\l[y2TeftDB$[bjWpn?8	+EzzwwgPlOW%RWT{n%v?KkYwxcb\nTTGOVT\0:=)}#>\0gSglYZUJH@+\n_s%ɉ\'DBiF-5]T6ltT\0gnEUiCQA骳ۈJ\0R.a,yy[Ӫp*Kk=|t~}MO]mS_\\D_/U͕v[;}mRW`cJ:?x|U$dV%k+_zol}e\\arvOk+dnoC_:[~׃)=sJ`7xJ*ILgv1Tq$@L߯B\\h@	_輕3W_ڵ55K-p)Qy~ʞ?yb~W[cSavir,S_+)\\&\'=Ւc&\"U\"\"1TD@DDD@DDڣ_#\nf\0g.#瑜>RQc>zw`xg%%Wǌ]kngO_s<;-}|uôe[	i z<	%Zp\\I;\04*p<XǜH\'S}\'Xe2j?huXxFOW@Q4\"}rÔK_YS 3N\'*YO,]lWa1+$D@DDD@Iu5n٫VmGȧ8567F+.Э/N|k9:$3eěTSٴ:t3qI׳gbzl 铞׾__NOwU_v\0/iv4kvZ8GP8v?S죤|uƿV~-?u_tSuV\0\\:ӟwgM~v)RnN:\0{:ZI.u塁k\rк\Z}\0&P_\Z:\Z캺/٩Nkl?\0ˎ=lcYq5\0wW7SoEٰX\'\ZßGYruV|7O~}7ѵoJ;zn>R[gYi?J55{VRZXZk|OQ?uksoO_Gf큧[V\\zIvVƺꞤiZ-.*ʟηiWp}+j+vE_I+ֽ>G\0v@vlnWopmnSc;yؤgٜ}W;kei>}r0W_+\0$$˅jsv&%abu>Uvt7oz*ݰ%6kP@^DƲ޽Fe4㦕n\Z̎>?MQ]~z[C6ŌpTx30?\nZjw㪾ەҩi&k)\0g9kv7٢קH z~_οMwf}۞YV˹WUk>ӣ5{̀@?ONockv흅C\\Ōoظqo>ş\0$ۦ;EMӣ+=U[)uwVvyT6q;Oji]G~`\0gק(K>ꖵA`IO5L*_\0ر-ASK8Vt=~GY^_tIO7)VPoʺ8hm׺*MFI`q-mջuV\\ZORutފQ6곷wcuuow=C1Myk.~:[\0n[9c\\좝vvk*^ETH5;?pܣ֨ئJLn+_<Ǝځ)xg{nLe_zu1e:z\Z5křqSbcs}ם=ut:\nтež|M*OC޵m5 |֎?j袚p-5\nC~K.[kuj{}Wee)ut/ܷ-Ͷu[s!!QGұTY{n\0nԾ[p-8T+f~ʿ*i6j;M{۵ߵ+Qס*n#WOzi&{y\\w,s;mM-};mm$(ES\\]\r]U<ާOl/Mos~ϿfkTTlҦЄ#`Uuz/M:5,^?y6q[=Zҷ9Jc\"Wv~\'%鱛rھz^,AUc\ro%ZڻT,K,)Ym=KGDvf\Z\ZڅNn[j#_S?_]~c9Ks\0\Z=٭?U-OQ9~ƙثb5P=:_Huљ~:t{}ZקF~`~ۀg\r~\'VO#-咕\n.~=5R_g&uLs1{>j]+Z+[Y\\ՁWݥi]uj&uvE<˒\0C:ձ]v(̩boէJ~cP]ozzZԧk^K>;%jmz*m]5˥*^ԄYI5.ֳԥ[3Mq\'^.p\0H!f{?TD@DDD@DDD@DDTgc_p qO=_8vU,%su	h47+Fd΍;JqyհfAŎnnebiú-[< [xNu[KSl{dR{$j2;.2xE+ud~a_[bq;\0\'f˥=jZKa:XNu&B\" \"\"\" \"\"\" \"\"$lYИgn\n>\'v:T>5n7`keR~$-IĿvt6;\Z.lPb}BR\\DBm}͍ut`z֝^G:G`,u= EPmˮc19$K[ҵ6TOKyu-RumUJ^!Udy	e5Կ߶۹nzܺO[~/OԛU}~nBTMIoS˓1<&\"%iw|un`赻T{f4\rb%\r\ZӻiY֬e|m\Z;\0yFݝ*{\n\Z,\Z\0/W}k?Tuss,yNIh6l+[X`	nV1gov%sg)\'ɝ-,DJn-;#NPt,a֤keߩ*{6&J[1Kq\0/Ҋ\"!HTD@DDD@DDD@DDD@ʱRNgC[u_gs2;g7Ww\0Wir -ra/)@{lN%گ2g,ĝ-3Gmwv9l{4_llϋ~\\/Y~|e[.2n`ˆnkc\03V(mf\\3vL\r:2)<\\\"!	 x\0\'M5XAfƝmQN,ڱ>S}*I}QV>6c6\0S{$>]q񨶈կ57s:?\"3ǈJa5\Z[{ULo\"vص]RWs55ԇ9:ս)\0ա~\0{Iϲwl۴cl}JxuZUDIܱoI$~=MKM;U56%q\"=֎R뱲J\"6[8@$\0K:r֖ek}.ޞ+l[}ku\'&{?xȾ	妐r}\0<w`;n}?m3UշDNy5y;?lMԞI|k,੾J=C\nդ٤nŝ㹵\Zd)YЃuutZԿh\0~w=;-kFm.Qz	_:>:T?NWpٲEw3l-?\0ʖ{s[֮UꧣGe_j\0C_Bں~\">w[YwM5g^Pݨ)KڶZ$Wa+ti4Nv4ؼiPOuVzL3<ͫkK;$TEMg\\|]J{%hcQWarsVw_gАm.5^z\05\n:<ű?cˬOxZߤ~ƯO @$\0I=YgsDڻT#>S5\" \"tԭ[KgG~slZF8TPKUXKb \"eU%̓\nNu[AS֊hx_E}_6\"K\\JmE5[_hٻ^d)ss5Vvw=.ZNl}%{ZXr|L\"VTD@DDD@DDD@DDD@DDnS)Ρ rgQH\rG8,DM`eV\Z5Lհ&-դҺb,Y[Y|:q,bF}¡bi	=ښԄE졂֣67Mg:Ykl}XJ0`JĬK6dIx\Z5szt\'BW>U;sߣZX:vUnn~v}Ww[Vje\0V_O@~3u5M44ZKzߛz_֪OWۼq<ge}=njmeEPJ֘nO*jKjkqֽmq\0~\0=u+մWr]{Qlu6<uuu7֚ۥm8X:GN/^ۛǗ8\0Gzش_HW}ş/\0\0=xGV<1ޫ\0Ow%fc̓ęF᱗ոz{4|kĘfo?aUUCcu]wMSҫ\r;{Zt+E$=-U-?/lUۑ@k)>z_{8:۸V/ıE=T}O\'T[:ۏWGb]}\rnmuF/c:wRYQο3o흲ޖb=gӣU9]}ѴY6ˎ!5omﷵe]/q&֥}\\_zڦ}_]r[_#+mu{:wU_~QkdQ~G/U?0}hc[.+KhΪ~X̿Mv:m˺:c{sCB\0u6ˣ\n\04jvەzX\rfcZHII{p\Z]^v\rbM;PҠVu7b~zsyOt\Z=q]m(zЋu鮟ק_[]GYTU[Wt=w-Kt}UǠfP~WDdkX:M\'C7G_n_Oշ4\"z8jT7ԝ\0uWպm{tJIbYIILWzݪ+R;w\rzGUk>Ke[ͮotww^4Uz5>2/J\0[uZm74􏥯qOls\0Ӈ_q;k3uib\rMGzΥWz-*O]^}}8\0c\0pǫk)C%.:k쿋9v%Z͊Q>U2ŽnM}]BS`!Z~m}ILr޲7O5N6/Gϟ\0FVݥ,{Y*OT곩WsjUV.^ʶ/Wйm;^,}d}a]~VmhسH\r_Zg>gPmGnx\0޽+.un\0rik]ՊӠ*==ע5~;YY~uF/ؗK㈽]}[ݻz;iaC_gt/,{Ot^۱ܯZ:5+Zk\\f~eO_^p77Zsai7$zvi\'CƮ:<u/lêngMzzj,UW챺(=6{|}V ![U=+^~PoU^GӶE)9k	=\0SMV_Ӕ+zҝ=W_]v\'_ogo*YU5zp޳|vl^W{?_\n\Zv<mxJ4,{uZ\'f7.bz_7\\Zr\0T}U5WeԹPXp>yΟrүbf6ӴUo#ٳSfRӨddqYZԍbxajUWe!_=,F>$ٿob͝,&KܶjצJ*Q@\0x}6b\"TD@DDD@DDD@DDD@DD&}TU,G2p\'RJR1g:q-\n)`LIgۄ|p&eV	QfD̋I\rg2ӓ8̈nm?^PǛVOImͫ[?X&\'\\B\"!HTD@DDD@DDD@DDD@DDג#Ï9\0|24/e׫tP8IfˤѹM)I$3tÔӉ\'q=9x[\r*79\\b\"!\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"\" \"\"TD@DDD@DDD@DDD@DD\Z%N@	8UO	j+rhm_W\"Fz#jhH~q8Q)r2dz\"z\\ʻDVo<ec+\"\"'),(2,80,62,'t',1784,'image/jpeg','80x62_OneLove copy.jpg','\0JFIF\0\0\0\0\0\0\0>CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality\n\0C\0		\n\r\Z\Z $.\' \",#(7),01444\'9=82<.342\0C			\r\r2!!22222222222222222222222222222222222222222222222222\0\0>\0P\"\0\0\0\0\0\0\0\0\0\0\0\0	\n\0\0\0\0}\0!1AQa\"q2#BR$3br	\n\Z%&\'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\0\0\0\0\0\0\0\0	\n\0\0\0w\0!1AQaq\"2B	#3Rbr\n$4%\Z&\'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\0\0\0?\0\n*haH*3ԲYeF20\0wjrmB\\~|mӵ1\"Ŏ>P>^7ۦA%JuRKkk{{[Q$9\'UIwL4ALzk+wa\\YѾC\'ߌ\ZPks0qScF(vaknkFYe`Pg!OOZ<N4,U,ZtZഏ|B3v:IQy)OnvlT\\YG}jXå<ʳn-g<O1^\Z̈́<Ьg\njI,3c#jDr8\Z	`W#cJY;*q\\I21SVMR][bHQЏ+FDZM\\\rǧDf\0\n˟<\0󎢻	v6erd,!ФܧA㧥V7` tE#75]ҋ^G.<=o2OJ22! a\0ĘW+y~HAnqR능\'-&\rêk7G\0^h-}D\02?xEq &}i6[x%GjsB҅lps=Z|R(SN2S\019LfC/1T{w^[43W$;No]&֮>sU-aKed(=\"Řy=iQC:N{j`})k:_t2kX+3t`q@lx[hmc8¯?]xNT3c5wӯxA5ְuhX`h%O\0:̹u.I8dz^;cf\0/!AMERqksķz4c۵a[a\0^mhv7߅yωm-;mpISڴmvc\n\n2j2gx*6fӒqjVso&^%q;B*~`6+2YRepWpǏQѥ2_ǵrP|cTKE$bgv?@sTҜFޓ͓ysƕbq8Q\r܏NEkK\0}\ZibF	\'4'),(1,80,62,'t',2411,'image/jpeg','80x62_IfYouNotTheOne copy.jpg','\0JFIF\0\0\0\0\0\0\0>CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality\n\0C\0		\n\r\Z\Z $.\' \",#(7),01444\'9=82<.342\0C			\r\r2!!22222222222222222222222222222222222222222222222222\0\0>\0P\"\0\0\0\0\0\0\0\0\0\0\0\0	\n\0\0\0\0}\0!1AQa\"q2#BR$3br	\n\Z%&\'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\0\0\0\0\0\0\0\0	\n\0\0\0w\0!1AQaq\"2B	#3Rbr\n$4%\Z&\'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\0\0\0?\0-3bgv`M}eW*FG~5j6E*	Ū%~cq\\\0WUݻj4K\";6啇ҢW[\ZWvek\Z3%6\\ր*K\"y\0=?1^`Ct.wE &\0\Z{[P	RPquKB\\;Ž|㧵E.\0Tčʻ[zHBࠝ|ͻ\Z;Is*Ysڌy 󃏔nu`sfYTZK2Ȟ\\InNϷaX$ib9\\k\n/n8clA(N#i\\`T(a&YHgW\'<Ѭ;SbgB\0n9\ZG堉&x`vxc\0Pk3슳E\Z.7 \0^hI$ӏ&\nB\ns=\0AV!.LR7ʸ3ʧ\ZM$߃\0Ƥ,VvaW|?Eiwmnd6%FUXjy<coUD7JR<گZrK/:BfV1ǧA4˿{xv\nrV?-\0?8>tW[+\"^>iW\0VJ8^:~v#>f\"vLR+ ZB~Xʐ\0wai-\ZEڹ|\n^x\'}av6a#n=x\0c*osq\nBb8cw\0iomp\"G݅nz5.m.>c꜒YHU3UIjZsiVRt+u}mojՋy\n9~C)sd;XtkmB\r_{89 pHs~5j\049.-n.D]]Trx#?|9|#n!xe<0=pkPhoZh᷾i7	9I\\:ued\\0<b⍤[0>Znfwʫ+p̀~ҺOxwY󣀾d #m*zw\0Ȭn\'zuIWJksHX,,<B@6$p:|5^l@SkOr@\'v-)	[u<^>_z[wClB.$Xcs)BDNYS!z}\'NPnx	*&9lrz27PH=A18VTdibʢ\rJ;BѹYuD.bX\0\0\nq큟^y[WiDj3r윓V{EnI&f@rCy|苰I4qd019 쵉M.ͥ^\nNNp^Wo\\@YVc3kr\'aԺI	Z6}}|Y]m#`>|15rHP5r=G/NuK\n\rs\nveM2<yTv\"QOVmaq4$ۨ$aTa0T p)Sst\0K.$r^c\r76SQ.W_̿,I1*wrNitF?9\n\"`\0UHd6<c۶JirHkr\"%E$$qҋȎprG7ei#\nq(ewapG');
/*!40000 ALTER TABLE `tiki_images_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_integrator_reps`
--

DROP TABLE IF EXISTS `tiki_integrator_reps`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_integrator_reps` (
  `repID` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `path` varchar(255) NOT NULL default '',
  `start_page` varchar(255) NOT NULL default '',
  `css_file` varchar(255) NOT NULL default '',
  `visibility` char(1) NOT NULL default 'y',
  `cacheable` char(1) NOT NULL default 'y',
  `expiration` int(11) NOT NULL default '0',
  `description` text NOT NULL,
  PRIMARY KEY  (`repID`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_integrator_reps`
--

LOCK TABLES `tiki_integrator_reps` WRITE;
/*!40000 ALTER TABLE `tiki_integrator_reps` DISABLE KEYS */;
INSERT INTO `tiki_integrator_reps` VALUES (1,'Doxygened (1.3.4) Documentation','','index.html','doxygen.css','n','y',0,'Use this repository as rule source for all your repositories based on doxygened docs. To setup yours just add new repository and copy rules from this repository :)');
/*!40000 ALTER TABLE `tiki_integrator_reps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_integrator_rules`
--

DROP TABLE IF EXISTS `tiki_integrator_rules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_integrator_rules` (
  `ruleID` int(11) NOT NULL auto_increment,
  `repID` int(11) NOT NULL default '0',
  `ord` int(2) unsigned NOT NULL default '0',
  `srch` blob NOT NULL,
  `repl` blob NOT NULL,
  `type` char(1) NOT NULL default 'n',
  `casesense` char(1) NOT NULL default 'y',
  `rxmod` varchar(20) NOT NULL default '',
  `enabled` char(1) NOT NULL default 'n',
  `description` text NOT NULL,
  PRIMARY KEY  (`ruleID`),
  KEY `repID` (`repID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_integrator_rules`
--

LOCK TABLES `tiki_integrator_rules` WRITE;
/*!40000 ALTER TABLE `tiki_integrator_rules` DISABLE KEYS */;
INSERT INTO `tiki_integrator_rules` VALUES (1,1,1,'.*<body[^>]*?>(.*?)</body.*','1','y','n','i','y','Extract code between <BODY> tags'),(2,1,2,'img src=(\"|\')(?!http://)','img src=1{path}/','y','n','i','y','Fix images path'),(3,1,3,'href=(\"|\')(?!(#|(http|ftp)://))','href=1tiki-integrator.php?repID={repID}&file=','y','n','i','y','Relace internal links to integrator. Dont touch an external links.');
/*!40000 ALTER TABLE `tiki_integrator_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_language`
--

DROP TABLE IF EXISTS `tiki_language`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_language` (
  `source` tinyblob NOT NULL,
  `lang` char(2) NOT NULL default '',
  `tran` tinyblob,
  PRIMARY KEY  (`source`(255),`lang`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_language`
--

LOCK TABLES `tiki_language` WRITE;
/*!40000 ALTER TABLE `tiki_language` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_language` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_languages`
--

DROP TABLE IF EXISTS `tiki_languages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_languages` (
  `lang` char(2) NOT NULL default '',
  `language` varchar(255) default NULL,
  PRIMARY KEY  (`lang`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_languages`
--

LOCK TABLES `tiki_languages` WRITE;
/*!40000 ALTER TABLE `tiki_languages` DISABLE KEYS */;
INSERT INTO `tiki_languages` VALUES ('en','English');
/*!40000 ALTER TABLE `tiki_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_link_cache`
--

DROP TABLE IF EXISTS `tiki_link_cache`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_link_cache` (
  `cacheId` int(14) NOT NULL auto_increment,
  `url` varchar(250) default NULL,
  `data` longblob,
  `refresh` int(14) default NULL,
  PRIMARY KEY  (`cacheId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_link_cache`
--

LOCK TABLES `tiki_link_cache` WRITE;
/*!40000 ALTER TABLE `tiki_link_cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_link_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_links`
--

DROP TABLE IF EXISTS `tiki_links`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_links` (
  `fromPage` varchar(160) NOT NULL default '',
  `toPage` varchar(160) NOT NULL default '',
  PRIMARY KEY  (`fromPage`,`toPage`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_links`
--

LOCK TABLES `tiki_links` WRITE;
/*!40000 ALTER TABLE `tiki_links` DISABLE KEYS */;
INSERT INTO `tiki_links` VALUES ('ChristianSitesHome','McGee'),('DkeStartingPoints','AntHome'),('DkeStartingPoints','BooksHome'),('DkeStartingPoints','ChristianSitesHome'),('DkeStartingPoints','CmsSearch'),('DkeStartingPoints','CvsDude'),('DkeStartingPoints','CygwinHome'),('DkeStartingPoints','EclipseHome'),('DkeStartingPoints','FinancialHome'),('DkeStartingPoints','HtmlHome'),('DkeStartingPoints','JspHome'),('DkeStartingPoints','MavenHome'),('DkeStartingPoints','PhpHome'),('DkeStartingPoints','SecurityHome'),('DkeStartingPoints','StrutsHome'),('DkeStartingPoints','TapestryHome'),('DkeStartingPoints','UnixCommandReference'),('DkeStartingPoints','UnixScripts'),('DkeStartingPoints','WebLinks'),('UserPagedkernekins','AntHome'),('UserPagedkernekins','BooksHome'),('UserPagedkernekins','ChristianSitesHome'),('UserPagedkernekins','CmsSearch'),('UserPagedkernekins','CvsDude'),('UserPagedkernekins','CygwinHome'),('UserPagedkernekins','DkeStartingPoints'),('UserPagedkernekins','EclipseHome'),('UserPagedkernekins','FinancialHome'),('UserPagedkernekins','HtmlHome'),('UserPagedkernekins','JspHome'),('UserPagedkernekins','MavenHome'),('UserPagedkernekins','PhpHome'),('UserPagedkernekins','SecurityHome'),('UserPagedkernekins','StrutsHome'),('UserPagedkernekins','TapestryHome'),('UserPagedkernekins','UnixCommandReference'),('UserPagedkernekins','UnixScripts'),('UserPagedkernekins','WebLinks');
/*!40000 ALTER TABLE `tiki_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_events`
--

DROP TABLE IF EXISTS `tiki_live_support_events`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_events` (
  `eventId` int(14) NOT NULL auto_increment,
  `reqId` varchar(32) NOT NULL default '',
  `type` varchar(40) default NULL,
  `seqId` int(14) default NULL,
  `senderId` varchar(32) default NULL,
  `data` text,
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`eventId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_events`
--

LOCK TABLES `tiki_live_support_events` WRITE;
/*!40000 ALTER TABLE `tiki_live_support_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_live_support_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_message_comments`
--

DROP TABLE IF EXISTS `tiki_live_support_message_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_message_comments` (
  `cId` int(12) NOT NULL auto_increment,
  `msgId` int(12) default NULL,
  `data` text,
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`cId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_message_comments`
--

LOCK TABLES `tiki_live_support_message_comments` WRITE;
/*!40000 ALTER TABLE `tiki_live_support_message_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_live_support_message_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_messages`
--

DROP TABLE IF EXISTS `tiki_live_support_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_messages` (
  `msgId` int(12) NOT NULL auto_increment,
  `data` text,
  `timestamp` int(14) default NULL,
  `user` varchar(200) default NULL,
  `username` varchar(200) default NULL,
  `priority` int(2) default NULL,
  `status` char(1) default NULL,
  `assigned_to` varchar(200) default NULL,
  `resolution` varchar(100) default NULL,
  `title` varchar(200) default NULL,
  `module` int(4) default NULL,
  `email` varchar(250) default NULL,
  PRIMARY KEY  (`msgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_messages`
--

LOCK TABLES `tiki_live_support_messages` WRITE;
/*!40000 ALTER TABLE `tiki_live_support_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_live_support_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_modules`
--

DROP TABLE IF EXISTS `tiki_live_support_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_modules` (
  `modId` int(4) NOT NULL auto_increment,
  `name` varchar(90) default NULL,
  PRIMARY KEY  (`modId`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_modules`
--

LOCK TABLES `tiki_live_support_modules` WRITE;
/*!40000 ALTER TABLE `tiki_live_support_modules` DISABLE KEYS */;
INSERT INTO `tiki_live_support_modules` VALUES (1,'wiki'),(2,'forums'),(3,'image galleries'),(4,'file galleries'),(5,'directory'),(6,'workflow'),(7,'charts');
/*!40000 ALTER TABLE `tiki_live_support_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_operators`
--

DROP TABLE IF EXISTS `tiki_live_support_operators`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_operators` (
  `user` varchar(200) NOT NULL default '',
  `accepted_requests` int(10) default NULL,
  `status` varchar(20) default NULL,
  `longest_chat` int(10) default NULL,
  `shortest_chat` int(10) default NULL,
  `average_chat` int(10) default NULL,
  `last_chat` int(14) default NULL,
  `time_online` int(10) default NULL,
  `votes` int(10) default NULL,
  `points` int(10) default NULL,
  `status_since` int(14) default NULL,
  PRIMARY KEY  (`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_operators`
--

LOCK TABLES `tiki_live_support_operators` WRITE;
/*!40000 ALTER TABLE `tiki_live_support_operators` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_live_support_operators` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_requests`
--

DROP TABLE IF EXISTS `tiki_live_support_requests`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_requests` (
  `reqId` varchar(32) NOT NULL default '',
  `user` varchar(200) default NULL,
  `tiki_user` varchar(200) default NULL,
  `email` varchar(200) default NULL,
  `operator` varchar(200) default NULL,
  `operator_id` varchar(32) default NULL,
  `user_id` varchar(32) default NULL,
  `reason` text,
  `req_timestamp` int(14) default NULL,
  `timestamp` int(14) default NULL,
  `status` varchar(40) default NULL,
  `resolution` varchar(40) default NULL,
  `chat_started` int(14) default NULL,
  `chat_ended` int(14) default NULL,
  PRIMARY KEY  (`reqId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_requests`
--

LOCK TABLES `tiki_live_support_requests` WRITE;
/*!40000 ALTER TABLE `tiki_live_support_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_live_support_requests` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_mail_events`
--

DROP TABLE IF EXISTS `tiki_mail_events`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_mail_events` (
  `event` varchar(200) default NULL,
  `object` varchar(200) default NULL,
  `email` varchar(200) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_mail_events`
--

LOCK TABLES `tiki_mail_events` WRITE;
/*!40000 ALTER TABLE `tiki_mail_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_mail_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_mailin_accounts`
--

DROP TABLE IF EXISTS `tiki_mailin_accounts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_mailin_accounts` (
  `accountId` int(12) NOT NULL auto_increment,
  `user` varchar(200) NOT NULL default '',
  `account` varchar(50) NOT NULL default '',
  `pop` varchar(255) default NULL,
  `port` int(4) default NULL,
  `username` varchar(100) default NULL,
  `pass` varchar(100) default NULL,
  `active` char(1) default NULL,
  `type` varchar(40) default NULL,
  `smtp` varchar(255) default NULL,
  `useAuth` char(1) default NULL,
  `smtpPort` int(4) default NULL,
  `anonymous` char(1) NOT NULL default 'y',
  `attachments` char(1) NOT NULL default 'n',
  PRIMARY KEY  (`accountId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_mailin_accounts`
--

LOCK TABLES `tiki_mailin_accounts` WRITE;
/*!40000 ALTER TABLE `tiki_mailin_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_mailin_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_menu_languages`
--

DROP TABLE IF EXISTS `tiki_menu_languages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_menu_languages` (
  `menuId` int(8) NOT NULL auto_increment,
  `language` char(2) NOT NULL default '',
  PRIMARY KEY  (`menuId`,`language`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_menu_languages`
--

LOCK TABLES `tiki_menu_languages` WRITE;
/*!40000 ALTER TABLE `tiki_menu_languages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_menu_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_menu_options`
--

DROP TABLE IF EXISTS `tiki_menu_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_menu_options` (
  `optionId` int(8) NOT NULL auto_increment,
  `menuId` int(8) default NULL,
  `type` char(1) default NULL,
  `name` varchar(200) default NULL,
  `url` varchar(255) default NULL,
  `position` int(4) default NULL,
  `section` varchar(255) default NULL,
  `perm` varchar(255) default NULL,
  `groupname` varchar(255) default NULL,
  PRIMARY KEY  (`optionId`)
) ENGINE=MyISAM AUTO_INCREMENT=156 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_menu_options`
--

LOCK TABLES `tiki_menu_options` WRITE;
/*!40000 ALTER TABLE `tiki_menu_options` DISABLE KEYS */;
INSERT INTO `tiki_menu_options` VALUES (1,42,'o','Home','tiki-index.php',10,'','',''),(2,42,'o','Chat','tiki-chat.php',15,'feature_chat','tiki_p_chat',''),(3,42,'o','Contact us','tiki-contact.php',20,'feature_contact','',''),(4,42,'o','Stats','tiki-stats.php',23,'feature_stats','tiki_p_view_stats',''),(5,42,'o','Categories','tiki-browse_categories.php',25,'feature_categories','tiki_p_view_categories',''),(6,42,'o','Games','tiki-games.php',30,'feature_games','tiki_p_play_games',''),(7,42,'o','Calendar','tiki-calendar.php',35,'feature_calendar','tiki_p_view_calendar',''),(8,42,'o','(debug)','javascript:toggle(\'debugconsole\')',40,'feature_debug_console','tiki_p_admin',''),(9,42,'s','MyTiki (click!)','tiki-my_tiki.php',50,'','','Registered'),(10,42,'o','Preferences','tiki-user_preferences.php',55,'feature_userPreferences','','Registered'),(11,42,'o','Messages','messu-mailbox.php',60,'feature_messages','tiki_p_messages','Registered'),(12,42,'o','Tasks','tiki-user_tasks.php',65,'feature_tasks','tiki_p_tasks','Registered'),(13,42,'o','Bookmarks','tiki-user_bookmarks.php',70,'feature_user_bookmarks','tiki_p_create_bookmarks','Registered'),(14,42,'o','Modules','tiki-user_assigned_modules.php',75,'user_assigned_modules','tiki_p_configure_modules','Registered'),(15,42,'o','Newsreader','tiki-newsreader_servers.php',80,'feature_newsreader','tiki_p_newsreader','Registered'),(16,42,'o','Webmail','tiki-webmail.php',85,'feature_webmail','tiki_p_use_webmail','Registered'),(17,42,'o','Notepad','tiki-notepad_list.php',90,'feature_notepad','tiki_p_notepad','Registered'),(18,42,'o','My files','tiki-userfiles.php',95,'feature_userfiles','tiki_p_userfiles','Registered'),(19,42,'o','User menu','tiki-usermenu.php',100,'feature_usermenu','','Registered'),(20,42,'o','Mini calendar','tiki-minical.php',105,'feature_minical','','Registered'),(21,42,'o','My watches','tiki-user_watches.php',110,'feature_user_watches','','Registered'),(22,42,'s','Workflow','tiki-g-user_processes.php',150,'feature_workflow','tiki_p_use_workflow',''),(23,42,'o','Admin processes','tiki-g-admin_processes.php',155,'feature_workflow','tiki_p_admin_workflow',''),(24,42,'o','Monitor processes','tiki-g-monitor_processes.php',160,'feature_workflow','tiki_p_admin_workflow',''),(25,42,'o','Monitor activities','tiki-g-monitor_activities.php',165,'feature_workflow','tiki_p_admin_workflow',''),(26,42,'o','Monitor instances','tiki-g-monitor_instances.php',170,'feature_workflow','tiki_p_admin_workflow',''),(27,42,'o','User processes','tiki-g-user_processes.php',175,'feature_workflow','tiki_p_use_workflow',''),(28,42,'o','User activities','tiki-g-user_activities.php',180,'feature_workflow','tiki_p_use_workflow',''),(29,42,'o','User instances','tiki-g-user_instances.php',185,'feature_workflow','tiki_p_use_workflow',''),(30,42,'s','Wiki','tiki-index.php',200,'feature_wiki','tiki_p_view',''),(31,42,'o','Wiki Home','tiki-index.php',202,'feature_wiki','tiki_p_view',''),(32,42,'o','Last Changes','tiki-lastchanges.php',205,'feature_wiki,feature_lastChanges','tiki_p_view',''),(33,42,'o','Dump','dump/new.tar',210,'feature_wiki,feature_dump','tiki_p_view',''),(34,42,'o','Rankings','tiki-wiki_rankings.php',215,'feature_wiki,feature_wiki_rankings','tiki_p_view',''),(35,42,'o','List pages','tiki-listpages.php',220,'feature_wiki,feature_listPages','tiki_p_view',''),(36,42,'o','Orphan pages','tiki-orphan_pages.php',225,'feature_wiki,feature_listPages','tiki_p_view',''),(37,42,'o','Sandbox','tiki-editpage.php?page=sandbox',230,'feature_wiki,feature_sandbox','tiki_p_view',''),(38,42,'o','Print','tiki-print_pages.php',235,'feature_wiki,feature_wiki_multiprint','tiki_p_view',''),(39,42,'o','Send pages','tiki-send_objects.php',240,'feature_wiki,feature_comm','tiki_p_view,tiki_p_send_pages',''),(40,42,'o','Received pages','tiki-received_pages.php',245,'feature_wiki,feature_comm','tiki_p_view,tiki_p_admin_received_pages',''),(41,42,'o','Structures','tiki-admin_structures.php',250,'feature_wiki','tiki_p_edit_structures',''),(42,42,'s','Image Galleries','tiki-galleries.php',300,'feature_galleries','tiki_p_view_image_gallery',''),(43,42,'o','Galleries','tiki-galleries.php',305,'feature_galleries','tiki_p_view_image_gallery',''),(44,42,'o','Rankings','tiki-galleries_rankings.php',310,'feature_galleries,feature_gal_rankings','tiki_p_view_image_gallery',''),(45,42,'o','Upload image','tiki-upload_image.php',315,'feature_galleries','tiki_p_upload_images',''),(46,42,'o','System gallery','tiki-list_gallery.php?galleryId=0',320,'feature_galleries','tiki_p_admin_galleries',''),(47,42,'s','Articles','tiki-view_articles.php',350,'feature_articles','tiki_p_read_article',''),(48,42,'o','Articles home','tiki-view_articles.php',355,'feature_articles','tiki_p_read_article',''),(49,42,'o','List articles','tiki-list_articles.php',360,'feature_articles','tiki_p_read_article',''),(50,42,'o','Rankings','tiki-cms_rankings.php',365,'feature_articles,feature_cms_ranking','tiki_p_read_article',''),(51,42,'o','Submit article','tiki-edit_submission.php',370,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_submit_article',''),(52,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_submit_article',''),(53,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_approve_submission',''),(54,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_remove_submission',''),(55,42,'o','Edit article','tiki-edit_article.php',380,'feature_articles','tiki_p_read_article,tiki_p_edit_article',''),(56,42,'o','Send articles','tiki-send_objects.php',385,'feature_articles,feature_comm','tiki_p_read_article,tiki_p_send_articles',''),(57,42,'o','Received articles','tiki-send_objects.php',385,'feature_articles,feature_comm','tiki_p_read_article,tiki_p_send_articles',''),(58,42,'o','Admin topics','tiki-admin_topics.php',390,'feature_articles','tiki_p_read_article,tiki_p_admin_cms',''),(59,42,'o','Admin types','tiki-articles_types.php',395,'feature_articles','tiki_p_read_article,tiki_p_admin_cms',''),(60,42,'s','Blogs','tiki-list_blogs.php',450,'feature_blogs','tiki_p_read_blog',''),(61,42,'o','List blogs','tiki-list_blogs.php',455,'feature_blogs','tiki_p_read_blog',''),(62,42,'o','Rankings','tiki-blogs_rankings.php',460,'feature_blogs,feature_blog_rankings','tiki_p_read_blog',''),(63,42,'o','Create/Edit blog','tiki-edit_blog.php',465,'feature_blogs','tiki_p_read_blog,tiki_p_create_blogs',''),(64,42,'o','Post','tiki-blog_post.php',470,'feature_blogs','tiki_p_read_blog,tiki_p_blog_post',''),(65,42,'o','Admin posts','tiki-list_posts.php',475,'feature_blogs','tiki_p_read_blog,tiki_p_blog_admin',''),(66,42,'s','Forums','tiki-forums.php',500,'feature_forums','tiki_p_forum_read',''),(67,42,'o','List forums','tiki-forums.php',505,'feature_forums','tiki_p_forum_read',''),(68,42,'o','Rankings','tiki-forum_rankings.php',510,'feature_forums,feature_forum_rankings','tiki_p_forum_read',''),(69,42,'o','Admin forums','tiki-admin_forums.php',515,'feature_forums','tiki_p_forum_read,tiki_p_admin_forum',''),(70,42,'s','Directory','tiki-directory_browse.php',550,'feature_directory','tiki_p_view_directory',''),(71,42,'o','Submit a new link','tiki-directory_add_site.php',555,'feature_directory','tiki_p_view_directory',''),(72,42,'o','Browse directory','tiki-directory_browse.php',560,'feature_directory','tiki_p_view_directory',''),(73,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_admin_directory_cats',''),(74,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_admin_directory_sites',''),(75,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_validate_links',''),(76,42,'s','File Galleries','tiki-file_galleries.php',600,'feature_file_galleries','tiki_p_view_file_gallery',''),(77,42,'o','List galleries','tiki-file_galleries.php',605,'feature_file_galleries','tiki_p_view_file_gallery',''),(78,42,'o','Rankings','tiki-file_galleries_rankings.php',610,'feature_file_galleries,feature_file_galleries_rankings','tiki_p_view_file_gallery',''),(79,42,'o','Upload  File','tiki-upload_file.php',615,'feature_file_galleries','tiki_p_view_file_gallery,tiki_p_upload_files',''),(80,42,'s','FAQs','tiki-list_faqs.php',650,'feature_faqs','tiki_p_view_faqs',''),(81,42,'o','List FAQs','tiki-list_faqs.php',665,'feature_faqs','tiki_p_view_faqs',''),(82,42,'o','Admin FAQs','tiki-list_faqs.php',660,'feature_faqs','tiki_p_admin_faqs',''),(83,42,'s','Maps','tiki-map.phtml',700,'feature_maps','tiki_p_map_view',''),(84,42,'o','Mapfiles','tiki-map_edit.php',705,'feature_maps','tiki_p_map_view',''),(85,42,'o','Layer management','tiki-map_upload.php',710,'feature_maps','tiki_p_map_edit',''),(86,42,'s','Quizzes','tiki-list_quizzes.php',750,'feature_quizzes','',''),(87,42,'o','List quizzes','tiki-list_quizzes.php',755,'feature_quizzes','',''),(88,42,'o','Quiz stats','tiki-quiz_stats.php',760,'feature_quizzes','tiki_p_view_quiz_stats',''),(89,42,'o','Admin quiz','tiki-edit_quiz.php',765,'feature_quizzes','tiki_p_admin_quizzes',''),(90,42,'s','Trackers','tiki-list_trackers.php',800,'feature_trackers','',''),(91,42,'o','List trackers','tiki-list_trackers.php',805,'feature_trackers','',''),(92,42,'o','Admin trackers','tiki-admin_trackers.php',810,'feature_trackers','tiki_p_admin_trackers',''),(93,42,'s','Surveys','tiki-list_surveys.php',850,'feature_surveys','',''),(94,42,'o','List surveys','tiki-list_surveys.php',855,'feature_surveys','',''),(95,42,'o','Stats','tiki-surveys_stats.php',860,'feature_surveys','tiki_p_view_survey_stats',''),(96,42,'o','Admin surveys','tiki-admin_surveys.php',865,'feature_surveys','tiki_p_admin_surveys',''),(97,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','',''),(98,42,'o','Send newsletters','tiki-send_newsletters.php',905,'feature_newsletters','tiki_p_admin_newsletters',''),(99,42,'o','Admin newsletters','tiki-admin_newsletters.php',910,'feature_newsletters','tiki_p_admin_newsletters',''),(100,42,'s','Ephemerides','tiki-eph.php',950,'feature_eph','',''),(101,42,'o','Admin','tiki-eph_admin.php',955,'feature_eph','tiki_p_eph_admin',''),(102,42,'s','Charts','tiki-charts.php',1000,'feature_charts','',''),(103,42,'o','Charts','tiki-admin_charts.php',1005,'feature_charts','tiki_p_admin_charts',''),(104,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin',''),(105,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_chat',''),(106,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_categories',''),(107,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_banners',''),(108,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_edit_templates',''),(109,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_edit_cookies',''),(110,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_dynamic',''),(111,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_mailin',''),(112,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_edit_content_templates',''),(113,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_edit_html_pages',''),(114,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_view_referer_stats',''),(115,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_drawings',''),(116,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_shoutbox',''),(117,42,'s','Admin (click!)','tiki-admin.php',1050,'','tiki_p_admin_live_support',''),(118,42,'s','Admin (click!)','tiki-admin.php',1050,'','user_is_operator',''),(119,42,'s','Admin (click!)','tiki-admin.php',1050,'feature_integrator','tiki_p_admin_integrator',''),(120,42,'o','Live support','tiki-live_support_admin.php',1055,'feature_live_support','tiki_p_live_support_admin',''),(121,42,'o','Live support','tiki-live_support_admin.php',1055,'feature_live_support','user_is_operator',''),(122,42,'o','Banning','tiki-admin_banning.php',1060,'feature_banning','tiki_p_admin_banning',''),(123,42,'o','Calendar','tiki-admin_calendars.php',1065,'feature_calendar','tiki_p_admin_calendar',''),(124,42,'o','Users','tiki-adminusers.php',1070,'','tiki_p_admin',''),(125,42,'o','Groups','tiki-admingroups.php',1075,'','tiki_p_admin',''),(126,42,'o','Cache','tiki-list_cache.php',1080,'','tiki_p_admin',''),(127,42,'o','Modules','tiki-admin_modules.php',1085,'','tiki_p_admin',''),(128,42,'o','Links','tiki-admin_links.php',1090,'','tiki_p_admin',''),(129,42,'o','Hotwords','tiki-admin_hotwords.php',1095,'','tiki_p_admin',''),(130,42,'o','RSS modules','tiki-admin_rssmodules.php',1100,'','tiki_p_admin',''),(131,42,'o','Menus','tiki-admin_menus.php',1105,'','tiki_p_admin',''),(132,42,'o','Polls','tiki-admin_polls.php',1110,'','tiki_p_admin',''),(133,42,'o','Backups','tiki-backup.php',1115,'','tiki_p_admin',''),(134,42,'o','Mail notifications','tiki-admin_notifications.php',1120,'','tiki_p_admin',''),(135,42,'o','Search stats','tiki-search_stats.php',1125,'','tiki_p_admin',''),(136,42,'o','Theme control','tiki-theme_control.php',1130,'','tiki_p_admin',''),(137,42,'o','QuickTags','tiki-admin_quicktags.php',1135,'','tiki_p_admin',''),(138,42,'o','Chat','tiki-admin_chat.php',1140,'','tiki_p_admin_chat',''),(139,42,'o','Categories','tiki-admin_categories.php',1145,'','tiki_p_admin_categories',''),(140,42,'o','Banners','tiki-list_banners.php',1150,'','tiki_p_admin_banners',''),(141,42,'o','Edit templates','tiki-edit_templates.php',1155,'','tiki_p_edit_templates',''),(142,42,'o','Drawings','tiki-admin_drawings.php',1160,'','tiki_p_admin_drawings',''),(143,42,'o','Dynamic content','tiki-list_contents.php',1165,'','tiki_p_admin_dynamic',''),(144,42,'o','Cookies','tiki-admin_cookies.php',1170,'','tiki_p_edit_cookies',''),(145,42,'o','Mail-in','tiki-admin_mailin.php',1175,'','tiki_p_admin_mailin',''),(146,42,'o','Content templates','tiki-admin_content_templates.php',1180,'','tiki_p_edit_content_templates',''),(147,42,'o','HTML pages','tiki-admin_html_pages.php',1185,'','tiki_p_edit_html_pages',''),(148,42,'o','Shoutbox','tiki-shoutbox.php',1190,'','tiki_p_admin_shoutbox',''),(149,42,'o','Referer stats','tiki-referer_stats.php',1195,'','tiki_p_view_referer_stats',''),(150,42,'o','Edit languages','tiki-edit_languages.php',1200,'','tiki_p_edit_languages,lang_use_db',''),(151,42,'o','Integrator','tiki-admin_integrator.php',1205,'feature_integrator','tiki_p_admin_integrator',''),(152,42,'o','Import PHPWiki Dump','tiki-import_phpwiki.php',1210,'','tiki_p_admin',''),(153,42,'o','phpinfo','tiki-phpinfo.php',1215,'','tiki_p_admin',''),(154,42,'o','DSN','tiki-admin_dsn.php',1220,'','tiki_p_admin',''),(155,42,'o','External wikis','tiki-admin_external_wikis.php',1225,'','tiki_p_admin','');
/*!40000 ALTER TABLE `tiki_menu_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_menus`
--

DROP TABLE IF EXISTS `tiki_menus`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_menus` (
  `menuId` int(8) NOT NULL auto_increment,
  `name` varchar(200) NOT NULL default '',
  `description` text,
  `type` char(1) default NULL,
  PRIMARY KEY  (`menuId`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_menus`
--

LOCK TABLES `tiki_menus` WRITE;
/*!40000 ALTER TABLE `tiki_menus` DISABLE KEYS */;
INSERT INTO `tiki_menus` VALUES (42,'Application menu','Main extensive navigation menu','d');
/*!40000 ALTER TABLE `tiki_menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_minical_events`
--

DROP TABLE IF EXISTS `tiki_minical_events`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_minical_events` (
  `user` varchar(200) default NULL,
  `eventId` int(12) NOT NULL auto_increment,
  `title` varchar(250) default NULL,
  `description` text,
  `start` int(14) default NULL,
  `end` int(14) default NULL,
  `security` char(1) default NULL,
  `duration` int(3) default NULL,
  `topicId` int(12) default NULL,
  `reminded` char(1) default NULL,
  PRIMARY KEY  (`eventId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_minical_events`
--

LOCK TABLES `tiki_minical_events` WRITE;
/*!40000 ALTER TABLE `tiki_minical_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_minical_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_minical_topics`
--

DROP TABLE IF EXISTS `tiki_minical_topics`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_minical_topics` (
  `user` varchar(200) default NULL,
  `topicId` int(12) NOT NULL auto_increment,
  `name` varchar(250) default NULL,
  `filename` varchar(200) default NULL,
  `filetype` varchar(200) default NULL,
  `filesize` varchar(200) default NULL,
  `data` longblob,
  `path` varchar(250) default NULL,
  `isIcon` char(1) default NULL,
  PRIMARY KEY  (`topicId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_minical_topics`
--

LOCK TABLES `tiki_minical_topics` WRITE;
/*!40000 ALTER TABLE `tiki_minical_topics` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_minical_topics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_modules`
--

DROP TABLE IF EXISTS `tiki_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_modules` (
  `name` varchar(200) NOT NULL default '',
  `position` char(1) default NULL,
  `ord` int(4) default NULL,
  `type` char(1) default NULL,
  `title` varchar(255) default NULL,
  `cache_time` int(14) default NULL,
  `rows` int(4) default NULL,
  `params` varchar(255) default NULL,
  `groups` text,
  PRIMARY KEY  (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_modules`
--

LOCK TABLES `tiki_modules` WRITE;
/*!40000 ALTER TABLE `tiki_modules` DISABLE KEYS */;
INSERT INTO `tiki_modules` VALUES ('login_box','l',1,'P','',0,0,'','a:1:{i:0;s:9:\"Anonymous\";}'),('application_menu','l',2,'P','',0,0,'','a:1:{i:0;s:9:\"Anonymous\";}');
/*!40000 ALTER TABLE `tiki_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_newsletter_subscriptions`
--

DROP TABLE IF EXISTS `tiki_newsletter_subscriptions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsletter_subscriptions` (
  `nlId` int(12) NOT NULL default '0',
  `email` varchar(255) NOT NULL default '',
  `code` varchar(32) default NULL,
  `valid` char(1) default NULL,
  `subscribed` int(14) default NULL,
  PRIMARY KEY  (`nlId`,`email`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsletter_subscriptions`
--

LOCK TABLES `tiki_newsletter_subscriptions` WRITE;
/*!40000 ALTER TABLE `tiki_newsletter_subscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_newsletter_subscriptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_newsletters`
--

DROP TABLE IF EXISTS `tiki_newsletters`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsletters` (
  `nlId` int(12) NOT NULL auto_increment,
  `name` varchar(200) default NULL,
  `description` text,
  `created` int(14) default NULL,
  `lastSent` int(14) default NULL,
  `editions` int(10) default NULL,
  `users` int(10) default NULL,
  `allowUserSub` char(1) default 'y',
  `allowAnySub` char(1) default NULL,
  `unsubMsg` char(1) default 'y',
  `validateAddr` char(1) default 'y',
  `frequency` int(14) default NULL,
  PRIMARY KEY  (`nlId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsletters`
--

LOCK TABLES `tiki_newsletters` WRITE;
/*!40000 ALTER TABLE `tiki_newsletters` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_newsletters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_newsreader_marks`
--

DROP TABLE IF EXISTS `tiki_newsreader_marks`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsreader_marks` (
  `user` varchar(200) NOT NULL default '',
  `serverId` int(12) NOT NULL default '0',
  `groupName` varchar(255) NOT NULL default '',
  `timestamp` int(14) NOT NULL default '0',
  PRIMARY KEY  (`user`,`serverId`,`groupName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsreader_marks`
--

LOCK TABLES `tiki_newsreader_marks` WRITE;
/*!40000 ALTER TABLE `tiki_newsreader_marks` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_newsreader_marks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_newsreader_servers`
--

DROP TABLE IF EXISTS `tiki_newsreader_servers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsreader_servers` (
  `user` varchar(200) NOT NULL default '',
  `serverId` int(12) NOT NULL auto_increment,
  `server` varchar(250) default NULL,
  `port` int(4) default NULL,
  `username` varchar(200) default NULL,
  `password` varchar(200) default NULL,
  PRIMARY KEY  (`serverId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsreader_servers`
--

LOCK TABLES `tiki_newsreader_servers` WRITE;
/*!40000 ALTER TABLE `tiki_newsreader_servers` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_newsreader_servers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_page_footnotes`
--

DROP TABLE IF EXISTS `tiki_page_footnotes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_page_footnotes` (
  `user` varchar(200) NOT NULL default '',
  `pageName` varchar(250) NOT NULL default '',
  `data` text,
  PRIMARY KEY  (`user`,`pageName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_page_footnotes`
--

LOCK TABLES `tiki_page_footnotes` WRITE;
/*!40000 ALTER TABLE `tiki_page_footnotes` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_page_footnotes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_pages`
--

DROP TABLE IF EXISTS `tiki_pages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_pages` (
  `page_id` int(14) NOT NULL auto_increment,
  `pageName` varchar(160) NOT NULL default '',
  `hits` int(8) default NULL,
  `data` text,
  `description` varchar(200) default NULL,
  `lastModif` int(14) default NULL,
  `comment` varchar(200) default NULL,
  `version` int(8) NOT NULL default '0',
  `user` varchar(200) default NULL,
  `ip` varchar(15) default NULL,
  `flag` char(1) default NULL,
  `points` int(8) default NULL,
  `votes` int(8) default NULL,
  `cache` text,
  `wiki_cache` int(10) default '0',
  `cache_timestamp` int(14) default NULL,
  `pageRank` decimal(4,3) default NULL,
  `creator` varchar(200) default NULL,
  `page_size` int(10) unsigned default '0',
  PRIMARY KEY  (`page_id`),
  UNIQUE KEY `pageName` (`pageName`),
  KEY `data` (`data`(255)),
  KEY `pageRank` (`pageRank`),
  FULLTEXT KEY `ft` (`pageName`,`description`,`data`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_pages`
--

LOCK TABLES `tiki_pages` WRITE;
/*!40000 ALTER TABLE `tiki_pages` DISABLE KEYS */;
INSERT INTO `tiki_pages` VALUES (1,'Main Stage',263,'','',0,'Tiki initialization',1,'system','0.0.0.0',NULL,NULL,NULL,'<br/>',0,1228094710,NULL,'system',0),(2,'Chocolate Cake W/Cherries',224,'Ahh so you found me!! Well come in, come in. Don\'t mind the dead plants, they were like that when I got here... I sware!!(:redface:)\r\n\r\nOk, on with the real thing. \r\n\r\nWelcome to my happy bubble (tm), the one where I can write forever, and people like it... that and people enjoy it when I update my stuff... gives them something to do.\r\n\r\nAh so take a seat, we are empty for now, and just let the bubble take you, and the steam of your drink be your guide... (:biggrin:)\r\n\r\nThanks... \r\n\r\nChristine\r\n','Welcome',1111125853,'',2,'admin','70.244.80.34',NULL,NULL,NULL,'Ahh so you found me!! Well come in, come in. Don\'t mind the dead plants, they were like that when I got here... I sware!!<img alt=\"redface\" src=\"img/smiles/icon_redface.gif\" />\r<br/>\r<br/>Ok, on with the real thing. \r<br/>\r<br/>Welcome to my happy bubble (tm), the one where I can write forever, and people like it... that and people enjoy it when I update my stuff... gives them something to do.\r<br/>\r<br/>Ah so take a seat, we are empty for now, and just let the bubble take you, and the steam of your drink be your guide... <img alt=\"biggrin\" src=\"img/smiles/icon_biggrin.gif\" />\r<br/>\r<br/>Thanks... \r<br/>\r<br/>Christine\r<br/><br/>',0,1226153906,NULL,'system',0),(3,'HomePage',1231,'Welcome to my part of the web!! Don\'t mind the few dead plants - they were here when I got here, I sware!!  (:redface:)\r\n\r\nAs you can see this is a *rough* website... I\'m still doing this in the wee hours or late late at night... between work and writing... well you get the idea. (:biggrin:)\r\n\r\nUmm look around. I\'m sure there is a way to contact me... if not, then use autopsygirl99@yahoo.com to mark your comments (note, not complaints - I have enough of my own, thanks!!)\r\n\r\nSo take a seat, there are plenty, don\'t ask me about the whole login thing, donno yet. Ah, some places on this site: Image Galleries - has some of my wall paper, more coming soon; File Galleries - has my stories - note a few of them... more to come; articles, umm somthing  did last night don\'t remember what i wrote; blog... ya it\'s one for laughs...\r\n\r\n(:confused:) That\'s all campers! \r\n\r\nChristine','',1111173034,'',2,'admin','70.244.80.34','L',NULL,NULL,'Welcome to my part of the web!! Don\'t mind the few dead plants - they were here when I got here, I sware!!  <img alt=\"redface\" src=\"img/smiles/icon_redface.gif\" />\r<br/>\r<br/>As you can see this is a *rough* website... I\'m still doing this in the wee hours or late late at night... between work and writing... well you get the idea. <img alt=\"biggrin\" src=\"img/smiles/icon_biggrin.gif\" />\r<br/>\r<br/>Umm look around. I\'m sure there is a way to contact me... if not, then use autopsygirl99@yahoo.com to mark your comments (note, not complaints - I have enough of my own, thanks!!)\r<br/>\r<br/>So take a seat, there are plenty, don\'t ask me about the whole login thing, donno yet. Ah, some places on this site: Image Galleries - has some of my wall paper, more coming soon; File Galleries - has my stories - note a few of them... more to come; articles, umm somthing  did last night don\'t remember what i wrote; blog... ya it\'s one for laughs...\r<br/>\r<br/><img alt=\"confused\" src=\"img/smiles/icon_confused.gif\" /> That\'s all campers! \r<br/>\r<br/>Christine<br/>',0,1228801541,NULL,'system',0),(4,'UserPagedkernekins',219,'-=Starting Points=-\r\nI would like this to be my ((DkeStartingPoints)) page.\r\n\r\n\r\n* ((DkeStartingPoints))\r\n* ((AntHome))\r\n* BooksHome\r\n* ChristianSitesHome\r\n\r\n   * CmsSearch\r\n   * CvsDude\r\n   * EclipseHome\r\n   * FinancialHome\r\n   * HtmlHome\r\n   * JspHome\r\n   * MavenHome\r\n   * PhpHome\r\n   * SecurityHome\r\n   * StrutsHome\r\n   * TapestryHome\r\n   * Unix\r\n      * UnixCommandReference\r\n      * UnixScripts\r\n      * CygwinHome\r\n      * http://www.dsl.org/cookbook/cookbook_toc.html The Linux Cookbook: Tips and Techniques for Everyday Use\r\n   * WebLinks\r\n&lt;h2&gt;Online Books&lt;/h2&gt;\r\n   # OnlineJavaBooks/ServletsAndJavaServerPages\r\n\r\n[http://judicialnetwork.com|{img src=http://judicialnetwork.com/images/blog_ad_120.gif width=120 height=50 align=left desc= link= }]','Dan Kern-Ekins Home Page',1111419715,'',2,'dkernekins','167.107.191.217',NULL,NULL,NULL,'<div class=\"titlebar\">Starting Points</div>I would like this to be my <a title=\"Starting Points for Dan\" href=\'tiki-index.php?page=DkeStartingPoints\' class=\'wiki\'>DkeStartingPoints</a> page.\r<br/>\r<br/>\r<br/><ul><li> <a title=\"Starting Points for Dan\" href=\'tiki-index.php?page=DkeStartingPoints\' class=\'wiki\'>DkeStartingPoints</a>\r</li><li> AntHome<a href=\'tiki-editpage.php?page=AntHome\' class=\'wiki\'>?</a>\r</li><li> BooksHome<a href=\'tiki-editpage.php?page=BooksHome\' class=\'wiki\'>?</a>\r</li><li> <a title=\"no description\" href=\"tiki-index.php?page=ChristianSitesHome\" class=\"wiki\">ChristianSitesHome</a>\r</li></ul>\r<br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;CmsSearch<a&nbsp;href=\'tiki-editpage.php?page=CmsSearch\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;CvsDude<a&nbsp;href=\'tiki-editpage.php?page=CvsDude\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;EclipseHome<a&nbsp;href=\'tiki-editpage.php?page=EclipseHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;FinancialHome<a&nbsp;href=\'tiki-editpage.php?page=FinancialHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;HtmlHome<a&nbsp;href=\'tiki-editpage.php?page=HtmlHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;JspHome<a&nbsp;href=\'tiki-editpage.php?page=JspHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;MavenHome<a&nbsp;href=\'tiki-editpage.php?page=MavenHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;PhpHome<a&nbsp;href=\'tiki-editpage.php?page=PhpHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;SecurityHome<a&nbsp;href=\'tiki-editpage.php?page=SecurityHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;StrutsHome<a&nbsp;href=\'tiki-editpage.php?page=StrutsHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;TapestryHome<a&nbsp;href=\'tiki-editpage.php?page=TapestryHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;Unix\r</font><br/><font face=\"courier\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;UnixCommandReference<a&nbsp;href=\'tiki-editpage.php?page=UnixCommandReference\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;UnixScripts<a&nbsp;href=\'tiki-editpage.php?page=UnixScripts\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;CygwinHome<a&nbsp;href=\'tiki-editpage.php?page=CygwinHome\'&nbsp;class=\'wiki\'>?</a>\r</font><br/><font face=\"courier\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;http://www.dsl.org/cookbook/cookbook_toc.html&nbsp;The&nbsp;Linux&nbsp;Cookbook:&nbsp;Tips&nbsp;and&nbsp;Techniques&nbsp;for&nbsp;Everyday&nbsp;Use\r</font><br/><font face=\"courier\">&nbsp;&nbsp;*&nbsp;WebLinks<a&nbsp;href=\'tiki-editpage.php?page=WebLinks\'&nbsp;class=\'wiki\'>?</a>\r</font><br/>&lt;h2&gt;Online Books&lt;/h2&gt;\r<br/><font face=\"courier\">&nbsp;&nbsp;#&nbsp;OnlineJavaBooks/ServletsAndJavaServerPages\r</font><br/>\r<br/><a class=\'wiki\' target=\"_blank\" href=\'http://judicialnetwork.com\'><div align=\"left\"><img alt=\"Image\" src=\"http://judicialnetwork.com/images/blog_ad_120.gif\" border=\"0\"  width=\"120\" height=\"50\" /></div></a><br/>',0,1226318602,NULL,'dkernekins',684),(5,'DkeStartingPoints',225,'-=Starting Points=-\r\n* ((AntHome))\r\n* BooksHome\r\n* ChristianSitesHome\r\n* CmsSearch\r\n* CvsDude\r\n* EclipseHome\r\n* FinancialHome\r\n* HtmlHome\r\n* JspHome\r\n* MavenHome\r\n* PhpHome\r\n* SecurityHome\r\n* StrutsHome\r\n* TapestryHome\r\n* Unix\r\n** UnixCommandReference\r\n** UnixScripts\r\n** CygwinHome\r\n** [http://www.dsl.org/cookbook/cookbook_toc.html|The Linux Cookbook ]The Linux Cookbook: Tips and Techniques for Everyday Use\r\n* WebLinks\r\n-=Online Books=-\r\n   # OnlineJavaBooks/ServletsAndJavaServerPages\r\n\r\n[http://judicialnetwork.com|{img src=http://judicialnetwork.com/images/blog_ad_120.gif width=120 height=50 align=left desc= link= }]','Starting Points for Dan',1112023099,'',3,'dkernekins','167.107.191.217',NULL,NULL,NULL,'<div class=\"titlebar\">Starting Points</div><ul><li> AntHome<a href=\'tiki-editpage.php?page=AntHome\' class=\'wiki\'>?</a>\r</li><li> BooksHome<a href=\'tiki-editpage.php?page=BooksHome\' class=\'wiki\'>?</a>\r</li><li> <a title=\"no description\" href=\"tiki-index.php?page=ChristianSitesHome\" class=\"wiki\">ChristianSitesHome</a>\r</li><li> CmsSearch<a href=\'tiki-editpage.php?page=CmsSearch\' class=\'wiki\'>?</a>\r</li><li> CvsDude<a href=\'tiki-editpage.php?page=CvsDude\' class=\'wiki\'>?</a>\r</li><li> EclipseHome<a href=\'tiki-editpage.php?page=EclipseHome\' class=\'wiki\'>?</a>\r</li><li> FinancialHome<a href=\'tiki-editpage.php?page=FinancialHome\' class=\'wiki\'>?</a>\r</li><li> HtmlHome<a href=\'tiki-editpage.php?page=HtmlHome\' class=\'wiki\'>?</a>\r</li><li> JspHome<a href=\'tiki-editpage.php?page=JspHome\' class=\'wiki\'>?</a>\r</li><li> MavenHome<a href=\'tiki-editpage.php?page=MavenHome\' class=\'wiki\'>?</a>\r</li><li> PhpHome<a href=\'tiki-editpage.php?page=PhpHome\' class=\'wiki\'>?</a>\r</li><li> SecurityHome<a href=\'tiki-editpage.php?page=SecurityHome\' class=\'wiki\'>?</a>\r</li><li> StrutsHome<a href=\'tiki-editpage.php?page=StrutsHome\' class=\'wiki\'>?</a>\r</li><li> TapestryHome<a href=\'tiki-editpage.php?page=TapestryHome\' class=\'wiki\'>?</a>\r</li><li> Unix\r<ul><li> UnixCommandReference<a href=\'tiki-editpage.php?page=UnixCommandReference\' class=\'wiki\'>?</a>\r</li><li> UnixScripts<a href=\'tiki-editpage.php?page=UnixScripts\' class=\'wiki\'>?</a>\r</li><li> CygwinHome<a href=\'tiki-editpage.php?page=CygwinHome\' class=\'wiki\'>?</a>\r</li><li> <a class=\'wiki\' target=\"_blank\" href=\'http://www.dsl.org/cookbook/cookbook_toc.html\'>The Linux Cookbook </a>The Linux Cookbook: Tips and Techniques for Everyday Use\r</li></ul></li><li> WebLinks<a href=\'tiki-editpage.php?page=WebLinks\' class=\'wiki\'>?</a>\r</li></ul><div class=\"titlebar\">Online Books</div><font face=\"courier\">&nbsp;&nbsp;#&nbsp;OnlineJavaBooks/ServletsAndJavaServerPages\r</font><br/>\r<br/><a class=\'wiki\' target=\"_blank\" href=\'http://judicialnetwork.com\'><div align=\"left\"><img alt=\"Image\" src=\"http://judicialnetwork.com/images/blog_ad_120.gif\" border=\"0\"  width=\"120\" height=\"50\" /></div></a><br/>',0,1222554171,NULL,'dkernekins',627),(6,'ChristianSitesHome',205,'!Christian Sites Home\r\n!!Calvary Satellite Network [http://http://www.csnradio.com/webcast_broadcast.htm|CSN]\r\n!!![http://www.csnradio.com/scheduleCentral.htm|Weekday Broadcast]\r\n08:00 Chuck Smith [http://www.thewordfortoday.org/|The Word For Today]\r\n08:30 \r\n09:00 Greg Laurie [http://harvestradio.org/|A New Beginning Radio]\r\n09:30 Jon Courson [http://www.joncourson.com/|SearchLight]\r\n10:00 Alistair Begg [http://www.truthforlife.org/|Truth For Life]\r\n10:30 Skip Heitzig\r\n* [http://www.preachtheword.org/heitzig.htm|Preach The Word]\r\n* [http://www.connectiononline.org/|The Connection]\r\n* [http://www.oceanhillschurch.com/|Ocean Hills Church]\r\n* [http://www.calvarychapel.com/library/heitzig-skip/|Skip]\r\n11:00 Jay Sekulow [http://www.aclj.org/|American Center for Law and Justice]\r\n* [http://theloganshow.com/|The Logan Show]\r\n11:30\r\n12:00 Chip Ingram [http://www.lote.org/|Living On The Edge]  of [http://WalkThru.org|Walk Thru The Bible]\r\n12:30 [http://StreamingFaith.com|Ronnie Floyd]\r\n13:00\r\n13:30\r\n14:00\r\n14:30\r\n15:00 Dr. Vernon McGee [http://www.ttb.org|Thu The Bible Radio Network]\r\n15:30 Pastor Jack [http://GrowingThruGrace.com|Growing Through Grace]\r\n16:00 Woodrow Kroll [http://www.backtothebible.org/|Back To The Bible]\r\n16:30 Mike Fabarez [http://FocalPointRadio.org|Focal Point Radio]\r\n17:00 For Every Man An Answer\r\n\r\n-- 2003.3.28 dke','',1112106892,'',2,'dkernekins','167.107.191.217',NULL,NULL,NULL,'<h1>Christian Sites Home\r</h1><h2>Calvary Satellite Network <a class=\'wiki\' target=\"_blank\" href=\'http://http://www.csnradio.com/webcast_broadcast.htm\'>CSN</a>\r</h2><h3><a class=\'wiki\' target=\"_blank\" href=\'http://www.csnradio.com/scheduleCentral.htm\'>Weekday Broadcast</a>\r</h3>08:00 Chuck Smith <a class=\'wiki\' target=\"_blank\" href=\'http://www.thewordfortoday.org/\'>The Word For Today</a>\r<br/>08:30 \r<br/>09:00 Greg Laurie <a class=\'wiki\' target=\"_blank\" href=\'http://harvestradio.org/\'>A New Beginning Radio</a>\r<br/>09:30 Jon Courson <a class=\'wiki\' target=\"_blank\" href=\'http://www.joncourson.com/\'>SearchLight</a>\r<br/>10:00 Alistair Begg <a class=\'wiki\' target=\"_blank\" href=\'http://www.truthforlife.org/\'>Truth For Life</a>\r<br/>10:30 Skip Heitzig\r<br/><ul><li> <a class=\'wiki\' target=\"_blank\" href=\'http://www.preachtheword.org/heitzig.htm\'>Preach The Word</a>\r</li><li> <a class=\'wiki\' target=\"_blank\" href=\'http://www.connectiononline.org/\'>The Connection</a>\r</li><li> <a class=\'wiki\' target=\"_blank\" href=\'http://www.oceanhillschurch.com/\'>Ocean Hills Church</a>\r</li><li> <a class=\'wiki\' target=\"_blank\" href=\'http://www.calvarychapel.com/library/heitzig-skip/\'>Skip</a>\r</li></ul>11:00 Jay Sekulow <a class=\'wiki\' target=\"_blank\" href=\'http://www.aclj.org/\'>American Center for Law and Justice</a>\r<br/><ul><li> <a class=\'wiki\' target=\"_blank\" href=\'http://theloganshow.com/\'>The Logan Show</a>\r</li></ul>11:30\r<br/>12:00 Chip Ingram <a class=\'wiki\' target=\"_blank\" href=\'http://www.lote.org/\'>Living On The Edge</a>  of <a class=\'wiki\' target=\"_blank\" href=\'http://WalkThru.org\'>Walk Thru The Bible</a>\r<br/>12:30 <a class=\'wiki\' target=\"_blank\" href=\'http://StreamingFaith.com\'>Ronnie Floyd</a>\r<br/>13:00\r<br/>13:30\r<br/>14:00\r<br/>14:30\r<br/>15:00 Dr. Vernon McGee<a href=\'tiki-editpage.php?page=McGee\' class=\'wiki\'>?</a> <a class=\'wiki\' target=\"_blank\" href=\'http://www.ttb.org\'>Thu The Bible Radio Network</a>\r<br/>15:30 Pastor Jack <a class=\'wiki\' target=\"_blank\" href=\'http://GrowingThruGrace.com\'>Growing Through Grace</a>\r<br/>16:00 Woodrow Kroll <a class=\'wiki\' target=\"_blank\" href=\'http://www.backtothebible.org/\'>Back To The Bible</a>\r<br/>16:30 Mike Fabarez <a class=\'wiki\' target=\"_blank\" href=\'http://FocalPointRadio.org\'>Focal Point Radio</a>\r<br/>17:00 For Every Man An Answer\r<br/>\r<br/>-- 2003.3.28 dke<br/>',0,1228850824,NULL,'dkernekins',1306);
/*!40000 ALTER TABLE `tiki_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_pageviews`
--

DROP TABLE IF EXISTS `tiki_pageviews`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_pageviews` (
  `day` int(14) NOT NULL default '0',
  `pageviews` int(14) default NULL,
  PRIMARY KEY  (`day`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_pageviews`
--

LOCK TABLES `tiki_pageviews` WRITE;
/*!40000 ALTER TABLE `tiki_pageviews` DISABLE KEYS */;
INSERT INTO `tiki_pageviews` VALUES (1111046400,139),(1111132800,78),(1111305600,178),(1111392000,183),(1111478400,29),(1111737600,3),(1111824000,46),(1111996800,136),(1112083200,76),(1112770800,26),(1112857200,10),(1113375600,7),(1113807600,3),(1113980400,3),(1114153200,2),(1114585200,1),(1114671600,2),(1115017200,3),(1115708400,2),(1116399600,26),(1116572400,3),(1118473200,39),(1118732400,26),(1119078000,9),(1119250800,2),(1119423600,161),(1119510000,2),(1119596400,2),(1119855600,49),(1120201200,33),(1121065200,2),(1121670000,6),(1121756400,2),(1122447600,49),(1122620400,2),(1122786000,30),(1123218000,29),(1123563600,77),(1124341200,26),(1124600400,56),(1124686800,3),(1125550800,160),(1126846800,169),(1126933200,35),(1127278800,2),(1128229200,2),(1129525200,2),(1129870800,2),(1130475600,179),(1132552800,26),(1133676000,2),(1134194400,2),(1134712800,1),(1135058400,2),(1136527200,2),(1137304800,2),(1137564000,1),(1138341600,561),(1138773600,2),(1140242400,26),(1141279200,3),(1141970400,2),(1142143200,26),(1144213200,125),(1144558800,2),(1144645200,21),(1145163600,9),(1145682000,2),(1145768400,4),(1146114000,1),(1146632400,2),(1146718800,1),(1146891600,2),(1147064400,2),(1147582800,1),(1148274000,1),(1148446800,4),(1148878800,4),(1148965200,2),(1149138000,1),(1149570000,1),(1149829200,4),(1149915600,5),(1150174800,2),(1150347600,1),(1150520400,1),(1150779600,44),(1150866000,51),(1150952400,4),(1151038800,1),(1151211600,27),(1151298000,20),(1151384400,41),(1151470800,82),(1151557200,28),(1151643600,78),(1151730000,267),(1151816400,36),(1151902800,303),(1151989200,298),(1152075600,120),(1152162000,210),(1152248400,255),(1152334800,70),(1152421200,131),(1152507600,125),(1152594000,76),(1152680400,148),(1152766800,101),(1152853200,128),(1152939600,43),(1153026000,164),(1153112400,96),(1153198800,69),(1153285200,134),(1153371600,99),(1153458000,120),(1153544400,65),(1153630800,55),(1153717200,47),(1153803600,59),(1153890000,59),(1153976400,59),(1154062800,48),(1154149200,39),(1154235600,35),(1154322000,13),(1154408400,38),(1154494800,40),(1154581200,69),(1154667600,7),(1154754000,52),(1154840400,34),(1154926800,28),(1155013200,52),(1155099600,40),(1155186000,18),(1155272400,28),(1155358800,43),(1155445200,19),(1155531600,40),(1155618000,42),(1155704400,17),(1155790800,106),(1155877200,105),(1155963600,27),(1156050000,74),(1156136400,106),(1156222800,155),(1156309200,313),(1156395600,164),(1156482000,164),(1156568400,103),(1156654800,191),(1156741200,165),(1156827600,135),(1156914000,31),(1157000400,152),(1157086800,168),(1157173200,247),(1157259600,158),(1157346000,181),(1157432400,148),(1157518800,105),(1157605200,166),(1157691600,112),(1157778000,147),(1157864400,190),(1157950800,124),(1158037200,193),(1158123600,197),(1158210000,187),(1158296400,320),(1158382800,196),(1158469200,108),(1158555600,320),(1158642000,196),(1158728400,58),(1158814800,246),(1158901200,320),(1158987600,171),(1159074000,157),(1159160400,106),(1159246800,111),(1159333200,261),(1159419600,190),(1159506000,196),(1159592400,73),(1159678800,181),(1159765200,264),(1159851600,157),(1159938000,172),(1160024400,78),(1160110800,119),(1160197200,128),(1160283600,99),(1160370000,189),(1160456400,80),(1160542800,10),(1160629200,194),(1160715600,40),(1160802000,216),(1160888400,231),(1160974800,312),(1161061200,350),(1161147600,333),(1161234000,364),(1161320400,386),(1161406800,431),(1161493200,691),(1161579600,310),(1161666000,518),(1161752400,420),(1161838800,263),(1161925200,211),(1162011600,359),(1162098000,691),(1162188000,612),(1162274400,832),(1162360800,708),(1162447200,721),(1162533600,369),(1162620000,282),(1162706400,448),(1162792800,273),(1162879200,311),(1162965600,390),(1163052000,423),(1163138400,361),(1163224800,102),(1163311200,496),(1163397600,467),(1163484000,395),(1163570400,395),(1163656800,319),(1163743200,195),(1163829600,647),(1163916000,548),(1164002400,537),(1164088800,500),(1164175200,550),(1164261600,259),(1164348000,539),(1164434400,299),(1164520800,403),(1164607200,509),(1164693600,543),(1164780000,543),(1164866400,642),(1164952800,643),(1165039200,579),(1165125600,858),(1165212000,121),(1165298400,568),(1165384800,247),(1165557600,252),(1165644000,114),(1165730400,196),(1165816800,104),(1165903200,336),(1165989600,183),(1166076000,415),(1166162400,274),(1166248800,68),(1166335200,231),(1166421600,171),(1166508000,223),(1166594400,73),(1166680800,149),(1166767200,25),(1166853600,65),(1166940000,13),(1167026400,28),(1167112800,4),(1167199200,14),(1167285600,4),(1167458400,4),(1167631200,2),(1168063200,1),(1169964000,1),(1170050400,1),(1170223200,4),(1170309600,4),(1170396000,8),(1170482400,8),(1170568800,1),(1170655200,1),(1170741600,1),(1170914400,1),(1171000800,5),(1171087200,6),(1171173600,2),(1171519200,6),(1171692000,35),(1171778400,6),(1171951200,26),(1172037600,4),(1172124000,16),(1172210400,44),(1172296800,1),(1172383200,37),(1172469600,65),(1172556000,5),(1172642400,28),(1172728800,65),(1172815200,24),(1172901600,30),(1172988000,54),(1173074400,41),(1173160800,193),(1173333600,31),(1173420000,24),(1173506400,5),(1173592800,8),(1173675600,16),(1173762000,5),(1173848400,25),(1173934800,35),(1174107600,9),(1174194000,1),(1174280400,5),(1174366800,9),(1174453200,15),(1174539600,10),(1174626000,36),(1174712400,30),(1174798800,16),(1174885200,35),(1174971600,32),(1175058000,43),(1175144400,43),(1175230800,25),(1175317200,30),(1175403600,25),(1175490000,3),(1175576400,34),(1175662800,16),(1175749200,26),(1175835600,24),(1175922000,28),(1176008400,192),(1176094800,153),(1176181200,64),(1176267600,99),(1176354000,39),(1176440400,48),(1176526800,55),(1176613200,49),(1176699600,43),(1176786000,48),(1176872400,25),(1176958800,33),(1177045200,40),(1177131600,31),(1177218000,15),(1177304400,14),(1177390800,4),(1177477200,11),(1177563600,7),(1177650000,3),(1177736400,1),(1177822800,2),(1177909200,2),(1177995600,1),(1178082000,1),(1178168400,2),(1178254800,1),(1178427600,1),(1178514000,1),(1178600400,1),(1178773200,3),(1178859600,62),(1178946000,46),(1179032400,2),(1179118800,21),(1179205200,3),(1179378000,5),(1179464400,4),(1179550800,1),(1179637200,19),(1179723600,23),(1179810000,8),(1179896400,19),(1179982800,12),(1180069200,13),(1180155600,9),(1180242000,18),(1180328400,6),(1180414800,10),(1180501200,10),(1180587600,6),(1180674000,2),(1180760400,1),(1180846800,2),(1180933200,7),(1181019600,73),(1181106000,11),(1181192400,55),(1181278800,326),(1181365200,129),(1181451600,329),(1181538000,150),(1181624400,16),(1181710800,202),(1181797200,80),(1181883600,92),(1181970000,20),(1182056400,7),(1182142800,7),(1182229200,17),(1182315600,10),(1182402000,45),(1182488400,9),(1182574800,11),(1182661200,11),(1182747600,102),(1182834000,41),(1182920400,43),(1183006800,206),(1183093200,70),(1183179600,201),(1183266000,124),(1183352400,117),(1183438800,172),(1183525200,89),(1183611600,60),(1183698000,44),(1183784400,21),(1183870800,102),(1183957200,30),(1184043600,223),(1184130000,139),(1184216400,267),(1184302800,394),(1184389200,322),(1184475600,334),(1184562000,219),(1184648400,188),(1184734800,108),(1184821200,149),(1184907600,108),(1184994000,418),(1185080400,475),(1185166800,968),(1185253200,1422),(1185339600,1034),(1185426000,1822),(1185512400,1856),(1185598800,2223),(1185685200,4033),(1185771600,3249),(1185858000,4052),(1185944400,1244),(1186030800,524),(1186117200,402),(1186203600,30),(1186290000,143),(1186376400,35),(1186462800,40),(1186549200,102),(1186635600,230),(1186722000,135),(1186808400,237),(1186894800,126),(1186981200,232),(1187067600,225),(1187154000,144),(1187240400,283),(1187326800,355),(1187413200,176),(1187499600,139),(1187586000,430),(1187672400,993),(1187758800,950),(1187845200,1411),(1187931600,1127),(1188018000,936),(1188104400,1125),(1188190800,843),(1188277200,644),(1188363600,534),(1188450000,434),(1188536400,301),(1188622800,307),(1188709200,536),(1188795600,334),(1188882000,334),(1188968400,388),(1189054800,117),(1189141200,333),(1189227600,273),(1189314000,253),(1189400400,657),(1189486800,338),(1189573200,203),(1189659600,199),(1189746000,699),(1189832400,350),(1189918800,144),(1190005200,108),(1190091600,95),(1190178000,146),(1190264400,32),(1190350800,99),(1190437200,23),(1190523600,63),(1190610000,64),(1190696400,49),(1190782800,52),(1190869200,61),(1190955600,57),(1191042000,31),(1191128400,71),(1191214800,77),(1191301200,76),(1191387600,102),(1191474000,62),(1191560400,46),(1191646800,44),(1191733200,58),(1191819600,15),(1191906000,18),(1191992400,77),(1192078800,88),(1192165200,141),(1192251600,160),(1192338000,274),(1192424400,324),(1192510800,214),(1192597200,126),(1192683600,64),(1192770000,90),(1192856400,100),(1192942800,50),(1193029200,76),(1193115600,45),(1193202000,222),(1193288400,85),(1193374800,22),(1193461200,96),(1193547600,95),(1193634000,10),(1193720400,43),(1193806800,14),(1193893200,15),(1193979600,67),(1194066000,91),(1194152400,154),(1194242400,138),(1194328800,88),(1194415200,126),(1194501600,120),(1194588000,74),(1194674400,229),(1194760800,247),(1194847200,284),(1194933600,350),(1195020000,245),(1195106400,377),(1195192800,307),(1195279200,487),(1195365600,684),(1195452000,578),(1195538400,277),(1195624800,202),(1195711200,589),(1195797600,395),(1195884000,329),(1195970400,741),(1196056800,217),(1196143200,296),(1196229600,206),(1196316000,312),(1196402400,358),(1196488800,274),(1196575200,251),(1196661600,590),(1196748000,402),(1196834400,494),(1196920800,257),(1197007200,639),(1197093600,560),(1197180000,581),(1197266400,767),(1197352800,977),(1197439200,815),(1197525600,870),(1197612000,151),(1197698400,921),(1197784800,664),(1197871200,772),(1197957600,488),(1198044000,590),(1198130400,312),(1198216800,693),(1198303200,526),(1198389600,617),(1198476000,847),(1198562400,577),(1198648800,480),(1198735200,253),(1198821600,281),(1198908000,357),(1198994400,396),(1199080800,413),(1199167200,387),(1199253600,324),(1199340000,381),(1199426400,326),(1199512800,341),(1199599200,351),(1199685600,448),(1199772000,241),(1199858400,461),(1199944800,200),(1200031200,149),(1200117600,155),(1200204000,256),(1200290400,571),(1200376800,592),(1200463200,653),(1200549600,787),(1200636000,632),(1200722400,277),(1200808800,164),(1200895200,44),(1200981600,61),(1201068000,42),(1201154400,172),(1201240800,138),(1201327200,39),(1201413600,31),(1201500000,12),(1201586400,8),(1201672800,2),(1201759200,2),(1201932000,1),(1202018400,1),(1202104800,11),(1202191200,4),(1202364000,28),(1202450400,1),(1202536800,2),(1202623200,2),(1202709600,2),(1202796000,15),(1202882400,4),(1202968800,28),(1203055200,16),(1203141600,10),(1203228000,7),(1203314400,32),(1203400800,35),(1203487200,8),(1203573600,25),(1203660000,8),(1203746400,1),(1203832800,29),(1203919200,6),(1204005600,26),(1204092000,16),(1204178400,15),(1204264800,52),(1204351200,2),(1204437600,45),(1204524000,63),(1204610400,23),(1204696800,17),(1204783200,5),(1205125200,2),(1205211600,3),(1205298000,3),(1205384400,4),(1205470800,3),(1205557200,1),(1205643600,2),(1205816400,2),(1206075600,2),(1206853200,1),(1207198800,2),(1207285200,2),(1207371600,1),(1207544400,1),(1207976400,2),(1208149200,7),(1208235600,2),(1208494800,14),(1208581200,13),(1208667600,1),(1209099600,13),(1209272400,13),(1209531600,4),(1209790800,14),(1210568400,1),(1210654800,2),(1210741200,1),(1210827600,1),(1210914000,1),(1211259600,1),(1211346000,1),(1211432400,1),(1211605200,1),(1211691600,1),(1211778000,2),(1212210000,1),(1212296400,6),(1212382800,1),(1212469200,1),(1212814800,2),(1212901200,4),(1213160400,13),(1213333200,3),(1213419600,1),(1213506000,2),(1213678800,1),(1213765200,3),(1213851600,1),(1213938000,1),(1214456400,6),(1214715600,59),(1214802000,13),(1214888400,138),(1215061200,112),(1215147600,68),(1215234000,9),(1215320400,30),(1215406800,3),(1215493200,13),(1215579600,9),(1215666000,10),(1215752400,10),(1215838800,6),(1215925200,34),(1216011600,5),(1216098000,28),(1216184400,4),(1216270800,19),(1216530000,8),(1216875600,27),(1217048400,370),(1217134800,22),(1217221200,247),(1217307600,118),(1217394000,222),(1217480400,173),(1217566800,141),(1217653200,277),(1217739600,4),(1217826000,158),(1217912400,210),(1217998800,100),(1218085200,130),(1218171600,50),(1218258000,81),(1218344400,28),(1218430800,12),(1218517200,34),(1218603600,4),(1218690000,25),(1218776400,6),(1218949200,56),(1219035600,5),(1219122000,33),(1219208400,1),(1219294800,5),(1219381200,26),(1219467600,3),(1219554000,4),(1219640400,8),(1219726800,2),(1219986000,3),(1220072400,4),(1220590800,24),(1220677200,2),(1220763600,11),(1220850000,9),(1221195600,6),(1221282000,14),(1221368400,2),(1221454800,10),(1221627600,307),(1221714000,14),(1221800400,22),(1221886800,27),(1221973200,32),(1222059600,106),(1222146000,12),(1222232400,20),(1222318800,108),(1222405200,38),(1222491600,42),(1222578000,20),(1222664400,25),(1222750800,13),(1222837200,3),(1223010000,10),(1223096400,5),(1223269200,1),(1223355600,2),(1223442000,14),(1223528400,2),(1223614800,1),(1223701200,4),(1223787600,2),(1223874000,2),(1223960400,3),(1224133200,8),(1224219600,10),(1224306000,6),(1224392400,5),(1224478800,28),(1224651600,9),(1224738000,16),(1224824400,33),(1224910800,13),(1224997200,293),(1225083600,6),(1225170000,4),(1225256400,22),(1225342800,53),(1225429200,74),(1225515600,135),(1225602000,31),(1225692000,233),(1225778400,73),(1225864800,15),(1225951200,47),(1226037600,33),(1226124000,323),(1226210400,172),(1226296800,242),(1226383200,181),(1226469600,111),(1226556000,129),(1226642400,102),(1226728800,54),(1226815200,186),(1226901600,42),(1226988000,334),(1227074400,251),(1227160800,29),(1227247200,195),(1227333600,78),(1227420000,32),(1227506400,478),(1227592800,15),(1227679200,57),(1227765600,107),(1227852000,18),(1227938400,77),(1228024800,73),(1228111200,73),(1228197600,118),(1228284000,22),(1228370400,23),(1228456800,7),(1228543200,29),(1228629600,15),(1228716000,33),(1228802400,36),(1228888800,30),(1228975200,21);
/*!40000 ALTER TABLE `tiki_pageviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_poll_options`
--

DROP TABLE IF EXISTS `tiki_poll_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_poll_options` (
  `pollId` int(8) NOT NULL default '0',
  `optionId` int(8) NOT NULL auto_increment,
  `title` varchar(200) default NULL,
  `votes` int(8) default NULL,
  PRIMARY KEY  (`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_poll_options`
--

LOCK TABLES `tiki_poll_options` WRITE;
/*!40000 ALTER TABLE `tiki_poll_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_poll_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_polls`
--

DROP TABLE IF EXISTS `tiki_polls`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_polls` (
  `pollId` int(8) NOT NULL auto_increment,
  `title` varchar(200) default NULL,
  `votes` int(8) default NULL,
  `active` char(1) default NULL,
  `publishDate` int(14) default NULL,
  PRIMARY KEY  (`pollId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_polls`
--

LOCK TABLES `tiki_polls` WRITE;
/*!40000 ALTER TABLE `tiki_polls` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_polls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_preferences`
--

DROP TABLE IF EXISTS `tiki_preferences`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_preferences` (
  `name` varchar(40) NOT NULL default '',
  `value` varchar(250) default NULL,
  PRIMARY KEY  (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_preferences`
--

LOCK TABLES `tiki_preferences` WRITE;
/*!40000 ALTER TABLE `tiki_preferences` DISABLE KEYS */;
INSERT INTO `tiki_preferences` VALUES ('allowRegister','y'),('anonCanEdit','n'),('article_comments_default_ordering','commentDate_desc'),('article_comments_per_page','10'),('art_list_author','y'),('art_list_date','y'),('art_list_img','y'),('art_list_reads','y'),('art_list_size','n'),('art_list_title','y'),('art_list_topic','y'),('art_list_type','n'),('art_list_expire','n'),('art_list_visible','y'),('auth_create_user_auth','n'),('auth_create_user_tiki','n'),('auth_ldap_adminpass',''),('auth_ldap_adminuser',''),('auth_ldap_basedn',''),('auth_ldap_groupattr','cn'),('auth_ldap_groupdn',''),('auth_ldap_groupoc','groupOfUniqueNames'),('auth_ldap_host','localhost'),('auth_ldap_memberattr','uniqueMember'),('auth_ldap_memberisdn','n'),('auth_ldap_port','389'),('auth_ldap_scope','sub'),('auth_ldap_userattr','uid'),('auth_ldap_userdn',''),('auth_ldap_useroc','inetOrgPerson'),('auth_method','tiki'),('auth_skip_admin','y'),('blog_comments_default_ordering','points_desc'),('blog_comments_per_page','10'),('blog_list_activity','y'),('blog_list_created','n'),('blog_list_description','y'),('blog_list_lastmodif','n'),('blog_list_order','created_desc'),('blog_list_posts','y'),('blog_list_title','y'),('blog_list_user','y'),('blog_list_visits','y'),('blog_spellcheck','n'),('cacheimages','n'),('cachepages','n'),('change_language','y'),('change_theme','y'),('cms_bot_bar','y'),('cms_left_column','y'),('cms_right_column','y'),('cms_spellcheck','n'),('cms_top_bar','n'),('contact_user','admin'),('count_admin_pvs','y'),('default_map','pacific.map'),('directory_columns','3'),('directory_links_per_page','20'),('directory_open_links','n'),('directory_validate_urls','n'),('direct_pagination','y'),('display_timezone','EST'),('faq_comments_default_ordering','points_desc'),('faq_comments_per_page','10'),('feature_autolinks','y'),('feature_maps','n'),('feature_article_comments','y'),('feature_articles','y'),('feature_babelfish','n'),('feature_babelfish_logo','n'),('feature_backlinks','y'),('feature_banners','n'),('feature_banning','n'),('feature_blog_comments','y'),('feature_blogposts_comments','y'),('feature_blog_rankings','y'),('feature_blogs','y'),('feature_bot_bar','n'),('feature_calendar','y'),('feature_categories','n'),('feature_categoryobjects','n'),('feature_categorypath','n'),('feature_challenge','n'),('feature_charts','n'),('feature_chat','n'),('feature_clear_passwords','n'),('feature_cms_rankings','y'),('feature_cms_templates','n'),('feature_comm','y'),('feature_contact','y'),('feature_custom_home','n'),('feature_debug_console','n'),('feature_debugger_console','n'),('feature_directory','n'),('feature_drawings','n'),('feature_dump','y'),('feature_dynamic_content','n'),('feature_editcss','n'),('feature_edit_templates','n'),('feature_eph','y'),('feature_faq_comments','y'),('feature_faqs','n'),('feature_featuredLinks','n'),('feature_file_galleries_comments','y'),('feature_file_galleries','y'),('feature_file_galleries_rankings','y'),('feature_forum_parse','y'),('feature_forum_quickjump','y'),('feature_forum_rankings','y'),('feature_forums','y'),('feature_forum_topicd','n'),('feature_galleries','y'),('feature_gal_rankings','y'),('feature_games','n'),('feature_history','y'),('feature_hotwords_nw','y'),('feature_hotwords','y'),('feature_html_pages','n'),('feature_image_galleries_comments','y'),('feature_integrator','n'),('feature_jscalendar','n'),('feature_lastChanges','y'),('feature_left_column','y'),('feature_likePages','y'),('feature_listPages','y'),('feature_live_support','n'),('feature_menusfolderstyle','n'),('feature_messages','y'),('feature_minical','n'),('feature_modulecontrols','n'),('feature_newsletters','n'),('feature_newsreader','n'),('feature_notepad','y'),('feature_obzip','n'),('feature_page_title','y'),('feature_phpopentracker','n'),('feature_poll_comments','y'),('feature_polls','n'),('feature_phplayers','n'),('feature_quizzes','n'),('feature_ranking','n'),('feature_referer_stats','y'),('feature_right_column','y'),('feature_sandbox','y'),('feature_search_fulltext','y'),('feature_search_stats','n'),('feature_search','y'),('feature_shoutbox','y'),('feature_smileys','y'),('feature_stats','y'),('feature_submissions','y'),('feature_surveys','n'),('feature_tasks','y'),('feature_theme_control','n'),('feature_top_bar','y'),('feature_trackers','n'),('feature_user_bookmarks','y'),('feature_userfiles','y'),('feature_usermenu','y'),('feature_userPreferences','y'),('feature_userVersions','n'),('feature_user_watches','y'),('feature_view_tpl','n'),('feature_warn_on_edit','y'),('feature_webmail','n'),('feature_wiki_allowhtml','n'),('feature_wiki_attachments','y'),('feature_wiki_comments','y'),('feature_wiki_description','y'),('feature_wiki_discuss','n'),('feature_wiki_footnotes','n'),('feature_wiki_monosp','y'),('feature_wiki_multiprint','y'),('feature_wiki_notepad','n'),('feature_wiki_pdf','n'),('feature_wiki_pictures','n'),('feature_wiki_rankings','y'),('feature_wiki_tables','new'),('feature_wiki_templates','y'),('feature_wiki_undo','y'),('feature_wiki_usrlock','n'),('feature_wikiwords','y'),('feature_wiki','y'),('feature_workflow','n'),('feature_xmlrpc','y'),('fgal_list_created','y'),('fgal_list_description','n'),('fgal_list_files','y'),('fgal_list_hits','y'),('fgal_list_lastmodif','y'),('fgal_list_name','y'),('fgal_list_user','y'),('home_blog','1'),('fgal_nmatch_regex',''),('fgal_use_db','y'),('fgal_use_dir',''),('file_galleries_comments_default_ordering','points_desc'),('file_galleries_comments_per_page','10'),('forgotPass','y'),('forum_list_desc','y'),('forum_list_lastpost','y'),('forum_list_posts','y'),('forum_list_ppd','y'),('forum_list_topics','y'),('forum_list_visits','y'),('forums_ordering','created_desc'),('gal_list_created','y'),('gal_list_description','y'),('gal_list_imgs','y'),('gal_list_lastmodif','y'),('gal_list_name','y'),('gal_list_user','y'),('gal_list_visits','y'),('gal_match_regex',''),('gal_nmatch_regex',''),('gal_use_db','n'),('gal_use_lib','gd'),('home_file_gallery',''),('http_domain',''),('http_port','80'),('http_prefix','/'),('https_domain',''),('https_login','n'),('https_login_required','n'),('https_port','443'),('https_prefix','/'),('image_galleries_comments_default_orderin','points_desc'),('image_galleries_comments_per_page','10'),('keep_versions','1'),('language','en'),('lang_use_db','n'),('layout_section','n'),('long_date_format','%A %d of %B, %Y'),('long_time_format','%H:%M:%S %Z'),('map_path','/home/keobject/public_html/christine/map/'),('maxArticles','10'),('maxRecords','10'),('max_rss_articles','10'),('max_rss_blog','10'),('max_rss_blogs','10'),('max_rss_file_galleries','10'),('max_rss_file_gallery','10'),('max_rss_forum','10'),('max_rss_forums','10'),('max_rss_mapfiles','10'),('max_rss_image_galleries','10'),('max_rss_image_gallery','10'),('max_rss_wiki','10'),('maxVersions','0'),('min_pass_length','3'),('modallgroups','n'),('pass_chr_num','n'),('pass_due','999'),('poll_comments_default_ordering','points_desc'),('poll_comments_per_page','10'),('popupLinks','y'),('proxy_host',''),('proxy_port',''),('record_untranslated','n'),('registerPasscode',''),('rememberme','all'),('remembertime','7200'),('rnd_num_reg','y'),('rss_articles','y'),('rss_blog','n'),('rss_blogs','y'),('rssfeed_default_version','2'),('rssfeed_language','en-us'),('rssfeed_editor',''),('rssfeed_publisher',''),('rssfeed_webmaster',''),('rssfeed_creator',''),('rssfeed_css','y'),('rss_file_galleries','y'),('rss_file_gallery','n'),('rss_forums','y'),('rss_forum','y'),('rss_mapfiles','y'),('rss_image_galleries','y'),('rss_image_gallery','n'),('rss_wiki','y'),('sender_email',''),('email_encoding','utf-8'),('search_refresh_rate','5'),('search_min_wordlength','3'),('search_max_syllwords','100'),('search_lru_purge_rate','5'),('search_lru_length','100'),('search_syll_age','48'),('short_date_format','%a %d of %b, %Y'),('short_time_format','%H:%M %Z'),('shoutbox_autolink','n'),('slide_style','slidestyle.css'),('system_os','unix'),('tikiIndex','tiki-index.php'),('tmpDir','temp'),('t_use_db','y'),('t_use_dir',''),('uf_use_db','y'),('uf_use_dir',''),('urlIndex',''),('use_proxy','n'),('user_assigned_modules','y'),('useRegisterPasscode','n'),('userfiles_quota','30'),('useUrlIndex','n'),('validateUsers','y'),('validateEmail','n'),('eponymousGroups','n'),('warn_on_edit_time','2'),('webmail_max_attachment','1500000'),('webmail_view_html','n'),('webserverauth','n'),('wiki_bot_bar','n'),('wiki_cache','300'),('wiki_comments_default_ordering','points_desc'),('wiki_comments_per_page','10'),('wiki_creator_admin','n'),('wiki_feature_copyrights','n'),('wiki_forum',''),('wiki_forum_id',''),('wikiHomePage','HomePage'),('wiki_left_column','y'),('wikiLicensePage',''),('wiki_list_backlinks','y'),('wiki_list_comment','y'),('wiki_list_creator','y'),('wiki_list_hits','y'),('wiki_list_lastmodif','y'),('wiki_list_lastver','y'),('wiki_list_links','y'),('wiki_list_name','y'),('wiki_list_size','y'),('wiki_list_status','y'),('wiki_list_user','y'),('wiki_list_versions','y'),('wiki_page_regex','complete'),('wiki_right_column','y'),('wiki_spellcheck','n'),('wikiSubmitNotice',''),('wiki_top_bar','n'),('wiki_uses_slides','y'),('w_use_db','y'),('w_use_dir',''),('cookie_domain',''),('cookie_path',''),('feature_server_name','christine.keobjects.com'),('feature_wiki_icache','n'),('feature_wiki_plurals','y'),('feature_wiki_showstructs','n'),('load_threshold','3'),('modseparateanon','n'),('session_db','y'),('session_lifetime','0'),('site_busy_msg','You and the others are wanting too much... slow down!'),('site_closed','n'),('site_closed_msg','We are cleaning the bunnies out of our corners... grab some coffee and try later!'),('useGroupHome','n'),('use_load_threshold','n'),('case_patched','y'),('error_reporting_level','0'),('helpurl','http://doc.tikiwiki.org/tiki-index.php?page='),('siteTitle','Christine\'s World'),('style','neat.css'),('fgal_match_regex',''),('contact_anon','n'),('feature_help','n'),('feature_tabs','n'),('gal_use_dir','/home/keobject/twikiwiki_upload/gallery01/'),('feature_ticketlib','n'),('feature_ticketlib2','y'),('home_gallery','2');
/*!40000 ALTER TABLE `tiki_preferences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_private_messages`
--

DROP TABLE IF EXISTS `tiki_private_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_private_messages` (
  `messageId` int(8) NOT NULL auto_increment,
  `toNickname` varchar(200) NOT NULL default '',
  `data` varchar(255) default NULL,
  `poster` varchar(200) NOT NULL default 'anonymous',
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`messageId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_private_messages`
--

LOCK TABLES `tiki_private_messages` WRITE;
/*!40000 ALTER TABLE `tiki_private_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_private_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_programmed_content`
--

DROP TABLE IF EXISTS `tiki_programmed_content`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_programmed_content` (
  `pId` int(8) NOT NULL auto_increment,
  `contentId` int(8) NOT NULL default '0',
  `publishDate` int(14) NOT NULL default '0',
  `data` text,
  PRIMARY KEY  (`pId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_programmed_content`
--

LOCK TABLES `tiki_programmed_content` WRITE;
/*!40000 ALTER TABLE `tiki_programmed_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_programmed_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quicktags`
--

DROP TABLE IF EXISTS `tiki_quicktags`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quicktags` (
  `tagId` int(4) unsigned NOT NULL auto_increment,
  `taglabel` varchar(255) default NULL,
  `taginsert` varchar(255) default NULL,
  `tagicon` varchar(255) default NULL,
  PRIMARY KEY  (`tagId`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quicktags`
--

LOCK TABLES `tiki_quicktags` WRITE;
/*!40000 ALTER TABLE `tiki_quicktags` DISABLE KEYS */;
INSERT INTO `tiki_quicktags` VALUES (1,'bold','__text__','images/ed_format_bold.gif'),(2,'italic','\'\'text\'\'','images/ed_format_italic.gif'),(3,'underline','===text===','images/ed_format_underline.gif'),(4,'table','||r1c1|r1c2||r2c1|r2c2||','images/insert_table.gif'),(5,'table new','||r1c1|r1c2\nr2c1|r2c2||','images/insert_table.gif'),(6,'external link','[http://example.com|text]','images/ed_link.gif'),(7,'wiki link','((text))','images/ed_copy.gif'),(8,'heading1','!text','images/ed_custom.gif'),(9,'title bar','-=text=-','images/fullscreen_maximize.gif'),(10,'box','^text^','images/ed_about.gif'),(11,'rss feed','{rss id= }','images/ico_link.gif'),(12,'dynamic content','{content id= }','images/book.gif'),(13,'tagline','{cookie}','images/footprint.gif'),(14,'hr','---','images/ed_hr.gif'),(15,'center text','::text::','images/ed_align_center.gif'),(16,'colored text','~~#FF0000:text~~','images/fontfamily.gif'),(17,'dynamic variable','%text%','images/book.gif'),(18,'image','{img src= width= height= align= desc= link= }','images/ed_image.gif');
/*!40000 ALTER TABLE `tiki_quicktags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quiz_question_options`
--

DROP TABLE IF EXISTS `tiki_quiz_question_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_question_options` (
  `optionId` int(10) NOT NULL auto_increment,
  `questionId` int(10) default NULL,
  `optionText` text,
  `points` int(4) default NULL,
  PRIMARY KEY  (`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_question_options`
--

LOCK TABLES `tiki_quiz_question_options` WRITE;
/*!40000 ALTER TABLE `tiki_quiz_question_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_quiz_question_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quiz_questions`
--

DROP TABLE IF EXISTS `tiki_quiz_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_questions` (
  `questionId` int(10) NOT NULL auto_increment,
  `quizId` int(10) default NULL,
  `question` text,
  `position` int(4) default NULL,
  `type` char(1) default NULL,
  `maxPoints` int(4) default NULL,
  PRIMARY KEY  (`questionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_questions`
--

LOCK TABLES `tiki_quiz_questions` WRITE;
/*!40000 ALTER TABLE `tiki_quiz_questions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_quiz_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quiz_results`
--

DROP TABLE IF EXISTS `tiki_quiz_results`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_results` (
  `resultId` int(10) NOT NULL auto_increment,
  `quizId` int(10) default NULL,
  `fromPoints` int(4) default NULL,
  `toPoints` int(4) default NULL,
  `answer` text,
  PRIMARY KEY  (`resultId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_results`
--

LOCK TABLES `tiki_quiz_results` WRITE;
/*!40000 ALTER TABLE `tiki_quiz_results` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_quiz_results` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quiz_stats`
--

DROP TABLE IF EXISTS `tiki_quiz_stats`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_stats` (
  `quizId` int(10) NOT NULL default '0',
  `questionId` int(10) NOT NULL default '0',
  `optionId` int(10) NOT NULL default '0',
  `votes` int(10) default NULL,
  PRIMARY KEY  (`quizId`,`questionId`,`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_stats`
--

LOCK TABLES `tiki_quiz_stats` WRITE;
/*!40000 ALTER TABLE `tiki_quiz_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_quiz_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quiz_stats_sum`
--

DROP TABLE IF EXISTS `tiki_quiz_stats_sum`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_stats_sum` (
  `quizId` int(10) NOT NULL default '0',
  `quizName` varchar(255) default NULL,
  `timesTaken` int(10) default NULL,
  `avgpoints` decimal(5,2) default NULL,
  `avgavg` decimal(5,2) default NULL,
  `avgtime` decimal(5,2) default NULL,
  PRIMARY KEY  (`quizId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_stats_sum`
--

LOCK TABLES `tiki_quiz_stats_sum` WRITE;
/*!40000 ALTER TABLE `tiki_quiz_stats_sum` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_quiz_stats_sum` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quizzes`
--

DROP TABLE IF EXISTS `tiki_quizzes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quizzes` (
  `quizId` int(10) NOT NULL auto_increment,
  `name` varchar(255) default NULL,
  `description` text,
  `canRepeat` char(1) default NULL,
  `storeResults` char(1) default NULL,
  `questionsPerPage` int(4) default NULL,
  `timeLimited` char(1) default NULL,
  `timeLimit` int(14) default NULL,
  `created` int(14) default NULL,
  `taken` int(10) default NULL,
  PRIMARY KEY  (`quizId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quizzes`
--

LOCK TABLES `tiki_quizzes` WRITE;
/*!40000 ALTER TABLE `tiki_quizzes` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_quizzes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_received_articles`
--

DROP TABLE IF EXISTS `tiki_received_articles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_received_articles` (
  `receivedArticleId` int(14) NOT NULL auto_increment,
  `receivedFromSite` varchar(200) default NULL,
  `receivedFromUser` varchar(200) default NULL,
  `receivedDate` int(14) default NULL,
  `title` varchar(80) default NULL,
  `authorName` varchar(60) default NULL,
  `size` int(12) default NULL,
  `useImage` char(1) default NULL,
  `image_name` varchar(80) default NULL,
  `image_type` varchar(80) default NULL,
  `image_size` int(14) default NULL,
  `image_x` int(4) default NULL,
  `image_y` int(4) default NULL,
  `image_data` longblob,
  `publishDate` int(14) default NULL,
  `expireDate` int(14) default NULL,
  `created` int(14) default NULL,
  `heading` text,
  `body` longblob,
  `hash` varchar(32) default NULL,
  `author` varchar(200) default NULL,
  `type` varchar(50) default NULL,
  `rating` decimal(3,2) default NULL,
  PRIMARY KEY  (`receivedArticleId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_received_articles`
--

LOCK TABLES `tiki_received_articles` WRITE;
/*!40000 ALTER TABLE `tiki_received_articles` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_received_articles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_received_pages`
--

DROP TABLE IF EXISTS `tiki_received_pages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_received_pages` (
  `receivedPageId` int(14) NOT NULL auto_increment,
  `pageName` varchar(160) NOT NULL default '',
  `data` longblob,
  `description` varchar(200) default NULL,
  `comment` varchar(200) default NULL,
  `receivedFromSite` varchar(200) default NULL,
  `receivedFromUser` varchar(200) default NULL,
  `receivedDate` int(14) default NULL,
  PRIMARY KEY  (`receivedPageId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_received_pages`
--

LOCK TABLES `tiki_received_pages` WRITE;
/*!40000 ALTER TABLE `tiki_received_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_received_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_referer_stats`
--

DROP TABLE IF EXISTS `tiki_referer_stats`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_referer_stats` (
  `referer` varchar(50) NOT NULL default '',
  `hits` int(10) default NULL,
  `last` int(14) default NULL,
  PRIMARY KEY  (`referer`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_referer_stats`
--

LOCK TABLES `tiki_referer_stats` WRITE;
/*!40000 ALTER TABLE `tiki_referer_stats` DISABLE KEYS */;
INSERT INTO `tiki_referer_stats` VALUES ('us.f535.mail.yahoo.com',3,1111507010),('www.keobjects.com',229,1157309923),('www.google.co.th',2,1174642090),('www.google.de',1,1183737836),('www.google.com',10,1210985447),('mp3skylines.com',2,1193785084),('ehrlichisbush.com',2,1195124574),('live-pharmacy.com',1,1201171518),('www.volny.cz',4,1204496773),('www.flixster.com',1,1208626628),('medicines-group-online.com',2,1218212549),('gold-collection.biz',1,1214485286),('rulezfarm.blogspot.com',1,1214806495),('trust-debt-settlement.us',1,1217165236);
/*!40000 ALTER TABLE `tiki_referer_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_related_categories`
--

DROP TABLE IF EXISTS `tiki_related_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_related_categories` (
  `categId` int(10) NOT NULL default '0',
  `relatedTo` int(10) NOT NULL default '0',
  PRIMARY KEY  (`categId`,`relatedTo`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_related_categories`
--

LOCK TABLES `tiki_related_categories` WRITE;
/*!40000 ALTER TABLE `tiki_related_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_related_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_rss_feeds`
--

DROP TABLE IF EXISTS `tiki_rss_feeds`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_rss_feeds` (
  `name` varchar(30) NOT NULL default '',
  `rssVer` char(1) NOT NULL default '1',
  `refresh` int(8) default '300',
  `lastUpdated` int(14) default NULL,
  `cache` longblob,
  PRIMARY KEY  (`name`,`rssVer`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_rss_feeds`
--

LOCK TABLES `tiki_rss_feeds` WRITE;
/*!40000 ALTER TABLE `tiki_rss_feeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_rss_feeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_rss_modules`
--

DROP TABLE IF EXISTS `tiki_rss_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_rss_modules` (
  `rssId` int(8) NOT NULL auto_increment,
  `name` varchar(30) NOT NULL default '',
  `description` text,
  `url` varchar(255) NOT NULL default '',
  `refresh` int(8) default NULL,
  `lastUpdated` int(14) default NULL,
  `showTitle` char(1) default 'n',
  `showPubDate` char(1) default 'n',
  `content` longblob,
  PRIMARY KEY  (`rssId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_rss_modules`
--

LOCK TABLES `tiki_rss_modules` WRITE;
/*!40000 ALTER TABLE `tiki_rss_modules` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_rss_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_search_stats`
--

DROP TABLE IF EXISTS `tiki_search_stats`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_search_stats` (
  `term` varchar(50) NOT NULL default '',
  `hits` int(10) default NULL,
  PRIMARY KEY  (`term`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_search_stats`
--

LOCK TABLES `tiki_search_stats` WRITE;
/*!40000 ALTER TABLE `tiki_search_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_search_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_searchindex`
--

DROP TABLE IF EXISTS `tiki_searchindex`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_searchindex` (
  `searchword` varchar(80) NOT NULL default '',
  `location` varchar(80) NOT NULL default '',
  `page` varchar(255) NOT NULL default '',
  `count` int(11) NOT NULL default '1',
  `last_update` int(11) NOT NULL default '0',
  PRIMARY KEY  (`searchword`,`location`,`page`),
  KEY `last_update` (`last_update`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_searchindex`
--

LOCK TABLES `tiki_searchindex` WRITE;
/*!40000 ALTER TABLE `tiki_searchindex` DISABLE KEYS */;
INSERT INTO `tiki_searchindex` VALUES ('christine','wiki','HomePage',1,1228655980),('campers','wiki','HomePage',1,1228655980),('that','wiki','HomePage',1,1228655980),('works','imggal','1',1,1229002114),('that','imggal','1',1,1229002114),('laughs','wiki','HomePage',1,1228655980),('blog','wiki','HomePage',1,1228655980),('what','wiki','HomePage',1,1228655980),('wrote','wiki','HomePage',1,1228655980),('remember','wiki','HomePage',1,1228655980),('last','wiki','HomePage',1,1228655980),('somthing','wiki','HomePage',1,1228655980),('here','imggal','1',1,1229002114),('christine','blog_post','1',1,1228950206),('bubble','blog_post','1',1,1228950206),('life','blog_post','1',1,1228950206),('your','blog_post','1',1,1228950206),('with','blog_post','1',1,1228950206),('biggrin','blog_post','1',1,1228950206),('must','blog_post','1',1,1228950206),('rolleyes','blog_post','1',1,1228950206),('listen','blog_post','1',1,1228950206),('guess','blog_post','1',1,1228950206),('suggestion','blog_post','1',1,1228950206),('make','blog_post','1',1,1228950206),('copy','img','2',1,1229023440),('onelove','img','2',1,1229023440),('articles','wiki','HomePage',1,1228655980),('want','blog_post','1',1,1228950206),('around','blog_post','1',1,1228950206),('them','wiki','HomePage',1,1228655980),('come','wiki','HomePage',1,1228655980),('lurk','blog_post','1',1,1228950206),('look','blog_post','1',1,1228950206),('hehehe','blog_post','1',1,1228950206),('stories','wiki','HomePage',1,1228655980),('file','wiki','HomePage',1,1228655980),('soon','wiki','HomePage',1,1228655980),('coming','wiki','HomePage',1,1228655980),('christine','wiki','Chocolate Cake W/Cherries',1,1228834818),('thanks','wiki','Chocolate Cake W/Cherries',1,1228834818),('guide','wiki','Chocolate Cake W/Cherries',1,1228834818),('drink','wiki','Chocolate Cake W/Cherries',1,1228834818),('your','wiki','Chocolate Cake W/Cherries',2,1228834818),('steam','wiki','Chocolate Cake W/Cherries',1,1228834818),('just','wiki','Chocolate Cake W/Cherries',1,1228834818),('empty','wiki','Chocolate Cake W/Cherries',1,1228834818),('seat','wiki','Chocolate Cake W/Cherries',1,1228834818),('take','wiki','Chocolate Cake W/Cherries',2,1228834818),('something','wiki','Chocolate Cake W/Cherries',1,1228834818),('them','wiki','Chocolate Cake W/Cherries',1,1228834818),('gives','wiki','Chocolate Cake W/Cherries',1,1228834818),('stuff','wiki','Chocolate Cake W/Cherries',1,1228834818),('depo','imggal','1',1,1229002114),('home','imggal','1',1,1229002114),('2003','wiki','ChristianSitesHome',1,1229050616),('answer','wiki','ChristianSitesHome',1,1229050616),('every','wiki','ChristianSitesHome',1,1229050616),('more','wiki','HomePage',2,1228655980),('paper','wiki','HomePage',1,1228655980),('home','wiki','UserPagedkernekins',1,1228941833),('wall','wiki','HomePage',1,1228655980),('admin','article','1',1,1228941384),('waves','article','1',1,1228941384),('toward','article','1',1,1228941384),('look','article','1',1,1228941384),('longing','article','1',1,1228941384),('sigh','article','1',1,1228941384),('leave','article','1',1,1228941384),('shall','article','1',1,1228941384),('tuckered','article','1',1,1228941384),('quite','article','1',1,1228941384),('boring','article','1',1,1228941384),('from','article','1',1,1228941384),('welcome','blog_post','1',1,1228950206),('ever','article','1',1,1228941384),('where','article','1',1,1228941384),('laying','article','1',1,1228941384),('working','article','1',1,1228941384),('some','imggal','1',1,1229002114),('have','blog_post','1',1,1228950206),('admin','blog_post','1',1,1228950206),('friends','article','1',1,1228941384),('expariment','article','1',1,1228941384),('outside','article','1',1,1228941384),('looking','imggal','1',1,1229002114),('ekins','wiki','UserPagedkernekins',1,1228941833),('kern','wiki','UserPagedkernekins',1,1228941833),('servletsandjavaserverpages','wiki','UserPagedkernekins',1,1228941833),('books','wiki','UserPagedkernekins',1,1228941833),('onlinejavabooks','wiki','UserPagedkernekins',1,1228941833),('online','wiki','UserPagedkernekins',1,1228941833),('weblinks','wiki','UserPagedkernekins',1,1228941833),('everyday','wiki','UserPagedkernekins',1,1228941833),('techniques','wiki','UserPagedkernekins',1,1228941833),('tips','wiki','UserPagedkernekins',1,1228941833),('linux','wiki','UserPagedkernekins',1,1228941833),('html','wiki','UserPagedkernekins',1,1228941833),('cookbook_toc','wiki','UserPagedkernekins',1,1228941833),('cookbook','wiki','UserPagedkernekins',2,1228941833),('http','wiki','UserPagedkernekins',1,1228941833),('cygwinhome','wiki','UserPagedkernekins',1,1228941833),('update','wiki','Chocolate Cake W/Cherries',1,1228834818),('enjoy','wiki','Chocolate Cake W/Cherries',1,1228834818),('people','wiki','Chocolate Cake W/Cherries',2,1228834818),('life','article','1',1,1228941384),('trying','article','1',1,1228941384),('bills','article','1',1,1228941384),('pays','article','1',1,1228941384),('galleries','wiki','HomePage',2,1228655980),('image','wiki','HomePage',1,1228655980),('site','wiki','HomePage',1,1228655980),('places','wiki','HomePage',1,1228655980),('some','wiki','HomePage',2,1228655980),('donno','wiki','HomePage',1,1228655980),('thing','wiki','HomePage',1,1228655980),('login','wiki','HomePage',1,1228655980),('senceless','article','1',1,1228941384),('unixscripts','wiki','UserPagedkernekins',1,1228941833),('whole','wiki','HomePage',1,1228655980),('about','wiki','HomePage',1,1228655980),('forever','wiki','Chocolate Cake W/Cherries',1,1228834818),('write','wiki','Chocolate Cake W/Cherries',1,1228834818),('servletsandjavaserverpages','wiki','DkeStartingPoints',1,1228821771),('onlinejavabooks','wiki','DkeStartingPoints',1,1228821771),('nbsp','wiki','DkeStartingPoints',3,1228821771),('books','wiki','DkeStartingPoints',1,1228821771),('online','wiki','DkeStartingPoints',1,1228821771),('weblinks','wiki','DkeStartingPoints',1,1228821771),('techniques','wiki','DkeStartingPoints',1,1228821771),('everyday','wiki','DkeStartingPoints',1,1228821771),('tips','wiki','DkeStartingPoints',1,1228821771),('cookbook','wiki','DkeStartingPoints',2,1228821771),('linux','wiki','DkeStartingPoints',2,1228821771),('cygwinhome','wiki','DkeStartingPoints',1,1228821771),('plenty','wiki','HomePage',1,1228655980),('seat','wiki','HomePage',1,1228655980),('unix','wiki','UserPagedkernekins',1,1228941833),('unixcommandreference','wiki','UserPagedkernekins',1,1228941833),('work','article','1',1,1228941384),('minute','article','1',1,1228941384),('unixscripts','wiki','DkeStartingPoints',1,1228821771),('unixcommandreference','wiki','DkeStartingPoints',1,1228821771),('unix','wiki','DkeStartingPoints',1,1228821771),('point','wiki','ChristianSitesHome',1,1229050616),('focal','wiki','ChristianSitesHome',1,1229050616),('fabarez','wiki','ChristianSitesHome',1,1229050616),('mike','wiki','ChristianSitesHome',1,1229050616),('back','wiki','ChristianSitesHome',1,1229050616),('kroll','wiki','ChristianSitesHome',1,1229050616),('woodrow','wiki','ChristianSitesHome',1,1229050616),('grace','wiki','ChristianSitesHome',1,1229050616),('through','wiki','ChristianSitesHome',1,1229050616),('growing','wiki','ChristianSitesHome',1,1229050616),('jack','wiki','ChristianSitesHome',1,1229050616),('pastor','wiki','ChristianSitesHome',1,1229050616),('mcgee','wiki','ChristianSitesHome',1,1229050616),('vernon','wiki','ChristianSitesHome',1,1229050616),('floyd','wiki','ChristianSitesHome',1,1229050616),('ronnie','wiki','ChristianSitesHome',1,1229050616),('bible','wiki','ChristianSitesHome',3,1229050616),('thru','wiki','ChristianSitesHome',1,1229050616),('walk','wiki','ChristianSitesHome',1,1229050616),('edge','wiki','ChristianSitesHome',1,1229050616),('living','wiki','ChristianSitesHome',1,1229050616),('ingram','wiki','ChristianSitesHome',1,1229050616),('chip','wiki','ChristianSitesHome',1,1229050616),('show','wiki','ChristianSitesHome',1,1229050616),('logan','wiki','ChristianSitesHome',1,1229050616),('justice','wiki','ChristianSitesHome',1,1229050616),('center','wiki','ChristianSitesHome',1,1229050616),('american','wiki','ChristianSitesHome',1,1229050616),('sekulow','wiki','ChristianSitesHome',1,1229050616),('church','wiki','ChristianSitesHome',1,1229050616),('hills','wiki','ChristianSitesHome',1,1229050616),('ocean','wiki','ChristianSitesHome',1,1229050616),('connection','wiki','ChristianSitesHome',1,1229050616),('preach','wiki','ChristianSitesHome',1,1229050616),('heitzig','wiki','ChristianSitesHome',1,1229050616),('skip','wiki','ChristianSitesHome',2,1229050616),('truth','wiki','ChristianSitesHome',1,1229050616),('life','wiki','ChristianSitesHome',1,1229050616),('begg','wiki','ChristianSitesHome',1,1229050616),('alistair','wiki','ChristianSitesHome',1,1229050616),('searchlight','wiki','ChristianSitesHome',1,1229050616),('think','article','1',1,1228941384),('wallpaper','imggal','1',2,1229002114),('take','wiki','HomePage',1,1228655980),('thanks','wiki','HomePage',1,1228655980),('bubble','wiki','Chocolate Cake W/Cherries',2,1228834818),('sleeping','article','1',1,1228941384),('dogs','article','1',1,1228941384),('with','article','1',2,1228941384),('lounge','article','1',1,1228941384),('just','article','1',1,1228941384),('some','blog','1',1,1229055716),('pants','article','1',1,1228941384),('make','article','1',1,1228941384),('together','article','1',1,1228941384),('fabric','article','1',1,1228941384),('tapestryhome','wiki','DkeStartingPoints',1,1228821771),('strutshome','wiki','DkeStartingPoints',1,1228821771),('securityhome','wiki','DkeStartingPoints',1,1228821771),('enough','wiki','HomePage',1,1228655980),('have','wiki','HomePage',1,1228655980),('complaints','wiki','HomePage',1,1228655980),('note','wiki','HomePage',2,1228655980),('comments','wiki','HomePage',1,1228655980),('peices','article','1',1,1228941384),('meaningless','article','1',2,1228941384),('stitch','article','1',1,1228941384),('cross','article','1',1,1228941384),('strutshome','wiki','UserPagedkernekins',1,1228941833),('tapestryhome','wiki','UserPagedkernekins',1,1228941833),('securityhome','wiki','UserPagedkernekins',1,1228941833),('like','article','1',1,1228941384),('also','article','1',2,1228941384),('hehe','article','1',1,1228941384),('gave','article','1',1,1228941384),('knowledge','article','1',1,1228941384),('phphome','wiki','DkeStartingPoints',1,1228821771),('mavenhome','wiki','DkeStartingPoints',1,1228821771),('your','wiki','HomePage',1,1228655980),('mark','wiki','HomePage',1,1228655980),('yahoo','wiki','HomePage',1,1228655980),('copy','img','1',1,1228850805),('phphome','wiki','UserPagedkernekins',1,1228941833),('htmlhome','wiki','UserPagedkernekins',1,1228941833),('jsphome','wiki','UserPagedkernekins',1,1228941833),('where','blog','1',1,1229055716),('htmlhome','wiki','DkeStartingPoints',1,1228821771),('courson','wiki','ChristianSitesHome',1,1229050616),('radio','wiki','ChristianSitesHome',3,1229050616),('beginning','wiki','ChristianSitesHome',1,1229050616),('laurie','wiki','ChristianSitesHome',1,1229050616),('greg','wiki','ChristianSitesHome',1,1229050616),('ifyounottheone','img','1',1,1228850805),('today','wiki','ChristianSitesHome',1,1229050616),('word','wiki','ChristianSitesHome',2,1229050616),('autopsygirl99','wiki','HomePage',1,1228655980),('then','wiki','HomePage',1,1228655980),('contact','wiki','HomePage',1,1228655980),('there','wiki','HomePage',2,1228655980),('sure','wiki','HomePage',1,1228655980),('where','wiki','Chocolate Cake W/Cherries',1,1228834818),('happy','wiki','Chocolate Cake W/Cherries',1,1228834818),('thing','wiki','Chocolate Cake W/Cherries',1,1228834818),('welcome','wiki','Chocolate Cake W/Cherries',2,1228834818),('useless','article','1',1,1228941384),('mavenhome','wiki','UserPagedkernekins',1,1228941833),('financialhome','wiki','UserPagedkernekins',1,1228941833),('more','article','1',1,1228941384),('some','article','1',1,1228941384),('learning','article','1',1,1228941384),('researching','article','1',1,1228941384),('fics','article','1',2,1228941384),('around','article','1',2,1228941384),('poking','article','1',1,1228941384),('reading','article','1',2,1228941384),('music','article','1',1,1228941384),('listening','article','1',1,1228941384),('smith','wiki','ChristianSitesHome',1,1229050616),('chuck','wiki','ChristianSitesHome',1,1229050616),('writing','article','1',1,1228941384),('hobbies','article','1',1,1228941384),('pattern','article','1',1,1228941384),('seeing','article','1',1,1228941384),('chris4short','article','1',1,1228941384),('funsize','article','1',1,1228941384),('shorty','article','1',1,1228941384),('nicknames','article','1',1,1228941384),('name','article','1',1,1228941384),('myself','article','1',2,1228941384),('about','article','1',2,1228941384),('still','article','1',1,1228941384),('gathered','article','1',1,1228941384),('around','wiki','HomePage',1,1228655980),('look','wiki','HomePage',1,1228655980),('idea','wiki','HomePage',1,1228655980),('well','wiki','HomePage',1,1228655980),('writing','wiki','HomePage',1,1228655980),('broadcast','wiki','ChristianSitesHome',1,1229050616),('weekday','wiki','ChristianSitesHome',1,1229050616),('real','wiki','Chocolate Cake W/Cherries',1,1228834818),('with','wiki','Chocolate Cake W/Cherries',1,1228834818),('sware','wiki','Chocolate Cake W/Cherries',1,1228834818),('here','wiki','Chocolate Cake W/Cherries',1,1228834818),('when','wiki','Chocolate Cake W/Cherries',2,1228834818),('jsphome','wiki','DkeStartingPoints',1,1228821771),('financialhome','wiki','DkeStartingPoints',1,1228821771),('eclipsehome','wiki','DkeStartingPoints',1,1228821771),('cvsdude','wiki','DkeStartingPoints',1,1228821771),('cmssearch','wiki','DkeStartingPoints',1,1228821771),('bodensee','imggal','2',1,1229046098),('germany','imggal','2',2,1229046098),('trip','imggal','2',2,1229046098),('start','blog','1',1,1229055716),('2005','imggal','2',2,1229046098),('that','article','1',1,1228941384),('have','article','1',4,1228941384),('likely','article','1',1,1228941384),('most','article','1',1,1228941384),('christiansiteshome','wiki','DkeStartingPoints',1,1228821771),('bookshome','wiki','DkeStartingPoints',1,1228821771),('work','wiki','HomePage',1,1228655980),('between','wiki','HomePage',1,1228655980),('night','wiki','HomePage',2,1228655980),('late','wiki','HomePage',2,1228655980),('hours','wiki','HomePage',1,1228655980),('doing','wiki','HomePage',1,1228655980),('admin','blog','1',1,1229055716),('eclipsehome','wiki','UserPagedkernekins',1,1228941833),('cvsdude','wiki','UserPagedkernekins',1,1228941833),('cmssearch','wiki','UserPagedkernekins',1,1228941833),('nbsp','wiki','UserPagedkernekins',75,1228941833),('christiansiteshome','wiki','UserPagedkernekins',1,1228941833),('bookshome','wiki','UserPagedkernekins',1,1228941833),('mean','article','1',1,1228941384),('what','article','1',1,1228941384),('know','article','1',2,1228941384),('hours','article','1',1,1228941384),('network','wiki','ChristianSitesHome',2,1229050616),('satellite','wiki','ChristianSitesHome',1,1229050616),('this','article','1',2,1228941384),('that','wiki','Chocolate Cake W/Cherries',2,1228834818),('like','wiki','Chocolate Cake W/Cherries',2,1228834818),('were','wiki','Chocolate Cake W/Cherries',1,1228834818),('anthome','wiki','DkeStartingPoints',1,1228821771),('points','wiki','DkeStartingPoints',2,1228821771),('started','article','1',1,1228941384),('first','article','1',1,1228941384),('calvary','wiki','ChristianSitesHome',1,1229050616),('home','wiki','ChristianSitesHome',1,1229050616),('still','wiki','HomePage',1,1228655980),('website','wiki','HomePage',1,1228655980),('rough','wiki','HomePage',1,1228655980),('this','wiki','HomePage',3,1228655980),('sware','wiki','HomePage',1,1228655980),('when','wiki','HomePage',1,1228655980),('come','blog','1',1,1229055716),('here','wiki','HomePage',2,1228655980),('were','wiki','HomePage',1,1228655980),('anthome','wiki','UserPagedkernekins',1,1228941833),('page','wiki','UserPagedkernekins',2,1228941833),('dkestartingpoints','wiki','UserPagedkernekins',2,1228941833),('they','wiki','Chocolate Cake W/Cherries',1,1228834818),('plants','wiki','Chocolate Cake W/Cherries',1,1228834818),('dead','wiki','Chocolate Cake W/Cherries',1,1228834818),('mind','wiki','Chocolate Cake W/Cherries',1,1228834818),('open','blog','1',1,1229055716),('christian','wiki','ChristianSitesHome',1,1229050616),('plants','wiki','HomePage',1,1228655980),('sites','wiki','ChristianSitesHome',1,1229050616),('like','wiki','UserPagedkernekins',1,1228941833),('this','wiki','UserPagedkernekins',1,1228941833),('come','wiki','Chocolate Cake W/Cherries',2,1228834818),('would','wiki','UserPagedkernekins',1,1228941833),('they','wiki','HomePage',1,1228655980),('starting','wiki','DkeStartingPoints',2,1228821771),('when','article','1',1,1228941384),('dead','wiki','HomePage',1,1228655980),('mind','wiki','HomePage',1,1228655980),('christine','article','1',3,1228941384),('part','wiki','HomePage',1,1228655980),('welcome','wiki','HomePage',1,1228655980),('administrator','article','1',1,1228941384),('system','article','1',1,1228941384),('things','article','1',1,1228941384),('well','wiki','Chocolate Cake W/Cherries',1,1228834818),('found','wiki','Chocolate Cake W/Cherries',1,1228834818),('pointsi','wiki','UserPagedkernekins',1,1228941833),('starting','wiki','UserPagedkernekins',1,1228941833);
/*!40000 ALTER TABLE `tiki_searchindex` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_searchsyllable`
--

DROP TABLE IF EXISTS `tiki_searchsyllable`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_searchsyllable` (
  `syllable` varchar(80) NOT NULL default '',
  `lastUsed` int(11) NOT NULL default '0',
  `lastUpdated` int(11) NOT NULL default '0',
  PRIMARY KEY  (`syllable`),
  KEY `lastUsed` (`lastUsed`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_searchsyllable`
--

LOCK TABLES `tiki_searchsyllable` WRITE;
/*!40000 ALTER TABLE `tiki_searchsyllable` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_searchsyllable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_searchwords`
--

DROP TABLE IF EXISTS `tiki_searchwords`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_searchwords` (
  `syllable` varchar(80) NOT NULL default '',
  `searchword` varchar(80) NOT NULL default '',
  PRIMARY KEY  (`syllable`,`searchword`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_searchwords`
--

LOCK TABLES `tiki_searchwords` WRITE;
/*!40000 ALTER TABLE `tiki_searchwords` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_searchwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_semaphores`
--

DROP TABLE IF EXISTS `tiki_semaphores`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_semaphores` (
  `semName` varchar(250) NOT NULL default '',
  `user` varchar(200) default NULL,
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`semName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_semaphores`
--

LOCK TABLES `tiki_semaphores` WRITE;
/*!40000 ALTER TABLE `tiki_semaphores` DISABLE KEYS */;
INSERT INTO `tiki_semaphores` VALUES ('FunSize','anonymous',1226988928),('SandBox','anonymous',1228939769),('SourceForge','anonymous',1228084561),('TikiWiki','anonymous',1228085072),('McGee','anonymous',1228245752),('AntHome','anonymous',1226826764),('BooksHome','anonymous',1225297610),('CmsSearch','anonymous',1228803081),('CvsDude','anonymous',1225614478),('EclipseHome','anonymous',1225617669),('FinancialHome','anonymous',1225795147),('HtmlHome','anonymous',1225616072),('JspHome','anonymous',1226834378),('MavenHome','anonymous',1226835016),('PhpHome','anonymous',1225615438),('SecurityHome','anonymous',1225880460),('StrutsHome','anonymous',1225617456),('TapestryHome','anonymous',1226834635),('UnixCommandReference','anonymous',1228808505),('UnixScripts','anonymous',1228809039),('CygwinHome','anonymous',1228808756),('WebLinks','anonymous',1225615590),('http://www.intel.com?','anonymous',1206104750),('DkeStartingPoints','anonymous',1225049710),('UserPagedkernekins','anonymous',1226352505);
/*!40000 ALTER TABLE `tiki_semaphores` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_sent_newsletters`
--

DROP TABLE IF EXISTS `tiki_sent_newsletters`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_sent_newsletters` (
  `editionId` int(12) NOT NULL auto_increment,
  `nlId` int(12) NOT NULL default '0',
  `users` int(10) default NULL,
  `sent` int(14) default NULL,
  `subject` varchar(200) default NULL,
  `data` longblob,
  PRIMARY KEY  (`editionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_sent_newsletters`
--

LOCK TABLES `tiki_sent_newsletters` WRITE;
/*!40000 ALTER TABLE `tiki_sent_newsletters` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_sent_newsletters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_sessions`
--

DROP TABLE IF EXISTS `tiki_sessions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_sessions` (
  `sessionId` varchar(32) NOT NULL default '',
  `user` varchar(200) default NULL,
  `timestamp` int(14) default NULL,
  PRIMARY KEY  (`sessionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_sessions`
--

LOCK TABLES `tiki_sessions` WRITE;
/*!40000 ALTER TABLE `tiki_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_shoutbox`
--

DROP TABLE IF EXISTS `tiki_shoutbox`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_shoutbox` (
  `msgId` int(10) NOT NULL auto_increment,
  `message` varchar(255) default NULL,
  `timestamp` int(14) default NULL,
  `user` varchar(200) default NULL,
  `hash` varchar(32) default NULL,
  PRIMARY KEY  (`msgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_shoutbox`
--

LOCK TABLES `tiki_shoutbox` WRITE;
/*!40000 ALTER TABLE `tiki_shoutbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_shoutbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_structures`
--

DROP TABLE IF EXISTS `tiki_structures`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_structures` (
  `page_ref_id` int(14) NOT NULL auto_increment,
  `parent_id` int(14) default NULL,
  `page_id` int(14) NOT NULL default '0',
  `page_alias` varchar(240) NOT NULL default '',
  `pos` int(4) default NULL,
  PRIMARY KEY  (`page_ref_id`),
  KEY `pidpaid` (`page_id`,`parent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_structures`
--

LOCK TABLES `tiki_structures` WRITE;
/*!40000 ALTER TABLE `tiki_structures` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_structures` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_submissions`
--

DROP TABLE IF EXISTS `tiki_submissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_submissions` (
  `subId` int(8) NOT NULL auto_increment,
  `title` varchar(80) default NULL,
  `authorName` varchar(60) default NULL,
  `topicId` int(14) default NULL,
  `topicName` varchar(40) default NULL,
  `size` int(12) default NULL,
  `useImage` char(1) default NULL,
  `image_name` varchar(80) default NULL,
  `image_type` varchar(80) default NULL,
  `image_size` int(14) default NULL,
  `image_x` int(4) default NULL,
  `image_y` int(4) default NULL,
  `image_data` longblob,
  `publishDate` int(14) default NULL,
  `expireDate` int(14) default NULL,
  `created` int(14) default NULL,
  `heading` text,
  `body` text,
  `hash` varchar(32) default NULL,
  `author` varchar(200) default NULL,
  `reads` int(14) default NULL,
  `votes` int(8) default NULL,
  `points` int(14) default NULL,
  `type` varchar(50) default NULL,
  `rating` decimal(3,2) default NULL,
  `isfloat` char(1) default NULL,
  PRIMARY KEY  (`subId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_submissions`
--

LOCK TABLES `tiki_submissions` WRITE;
/*!40000 ALTER TABLE `tiki_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_submissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_suggested_faq_questions`
--

DROP TABLE IF EXISTS `tiki_suggested_faq_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_suggested_faq_questions` (
  `sfqId` int(10) NOT NULL auto_increment,
  `faqId` int(10) NOT NULL default '0',
  `question` text,
  `answer` text,
  `created` int(14) default NULL,
  `user` varchar(200) default NULL,
  PRIMARY KEY  (`sfqId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_suggested_faq_questions`
--

LOCK TABLES `tiki_suggested_faq_questions` WRITE;
/*!40000 ALTER TABLE `tiki_suggested_faq_questions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_suggested_faq_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_survey_question_options`
--

DROP TABLE IF EXISTS `tiki_survey_question_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_survey_question_options` (
  `optionId` int(12) NOT NULL auto_increment,
  `questionId` int(12) NOT NULL default '0',
  `qoption` text,
  `votes` int(10) default NULL,
  PRIMARY KEY  (`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_survey_question_options`
--

LOCK TABLES `tiki_survey_question_options` WRITE;
/*!40000 ALTER TABLE `tiki_survey_question_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_survey_question_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_survey_questions`
--

DROP TABLE IF EXISTS `tiki_survey_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_survey_questions` (
  `questionId` int(12) NOT NULL auto_increment,
  `surveyId` int(12) NOT NULL default '0',
  `question` text,
  `options` text,
  `type` char(1) default NULL,
  `position` int(5) default NULL,
  `votes` int(10) default NULL,
  `value` int(10) default NULL,
  `average` decimal(4,2) default NULL,
  PRIMARY KEY  (`questionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_survey_questions`
--

LOCK TABLES `tiki_survey_questions` WRITE;
/*!40000 ALTER TABLE `tiki_survey_questions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_survey_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_surveys`
--

DROP TABLE IF EXISTS `tiki_surveys`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_surveys` (
  `surveyId` int(12) NOT NULL auto_increment,
  `name` varchar(200) default NULL,
  `description` text,
  `taken` int(10) default NULL,
  `lastTaken` int(14) default NULL,
  `created` int(14) default NULL,
  `status` char(1) default NULL,
  PRIMARY KEY  (`surveyId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_surveys`
--

LOCK TABLES `tiki_surveys` WRITE;
/*!40000 ALTER TABLE `tiki_surveys` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_surveys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_tags`
--

DROP TABLE IF EXISTS `tiki_tags`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tags` (
  `tagName` varchar(80) NOT NULL default '',
  `pageName` varchar(160) NOT NULL default '',
  `hits` int(8) default NULL,
  `description` varchar(200) default NULL,
  `data` longblob,
  `lastModif` int(14) default NULL,
  `comment` varchar(200) default NULL,
  `version` int(8) NOT NULL default '0',
  `user` varchar(200) default NULL,
  `ip` varchar(15) default NULL,
  `flag` char(1) default NULL,
  PRIMARY KEY  (`tagName`,`pageName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tags`
--

LOCK TABLES `tiki_tags` WRITE;
/*!40000 ALTER TABLE `tiki_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_theme_control_categs`
--

DROP TABLE IF EXISTS `tiki_theme_control_categs`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_theme_control_categs` (
  `categId` int(12) NOT NULL default '0',
  `theme` varchar(250) NOT NULL default '',
  PRIMARY KEY  (`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_theme_control_categs`
--

LOCK TABLES `tiki_theme_control_categs` WRITE;
/*!40000 ALTER TABLE `tiki_theme_control_categs` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_theme_control_categs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_theme_control_objects`
--

DROP TABLE IF EXISTS `tiki_theme_control_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_theme_control_objects` (
  `objId` varchar(250) NOT NULL default '',
  `type` varchar(250) NOT NULL default '',
  `name` varchar(250) NOT NULL default '',
  `theme` varchar(250) NOT NULL default '',
  PRIMARY KEY  (`objId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_theme_control_objects`
--

LOCK TABLES `tiki_theme_control_objects` WRITE;
/*!40000 ALTER TABLE `tiki_theme_control_objects` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_theme_control_objects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_theme_control_sections`
--

DROP TABLE IF EXISTS `tiki_theme_control_sections`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_theme_control_sections` (
  `section` varchar(250) NOT NULL default '',
  `theme` varchar(250) NOT NULL default '',
  PRIMARY KEY  (`section`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_theme_control_sections`
--

LOCK TABLES `tiki_theme_control_sections` WRITE;
/*!40000 ALTER TABLE `tiki_theme_control_sections` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_theme_control_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_topics`
--

DROP TABLE IF EXISTS `tiki_topics`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_topics` (
  `topicId` int(14) NOT NULL auto_increment,
  `name` varchar(40) default NULL,
  `image_name` varchar(80) default NULL,
  `image_type` varchar(80) default NULL,
  `image_size` int(14) default NULL,
  `image_data` longblob,
  `active` char(1) default NULL,
  `created` int(14) default NULL,
  PRIMARY KEY  (`topicId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_topics`
--

LOCK TABLES `tiki_topics` WRITE;
/*!40000 ALTER TABLE `tiki_topics` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_topics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_tracker_fields`
--

DROP TABLE IF EXISTS `tiki_tracker_fields`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_fields` (
  `fieldId` int(12) NOT NULL auto_increment,
  `trackerId` int(12) NOT NULL default '0',
  `name` varchar(80) default NULL,
  `options` text,
  `type` char(1) default NULL,
  `isMain` char(1) default NULL,
  `isTblVisible` char(1) default NULL,
  PRIMARY KEY  (`fieldId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_fields`
--

LOCK TABLES `tiki_tracker_fields` WRITE;
/*!40000 ALTER TABLE `tiki_tracker_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_tracker_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_tracker_item_attachments`
--

DROP TABLE IF EXISTS `tiki_tracker_item_attachments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_item_attachments` (
  `attId` int(12) NOT NULL auto_increment,
  `itemId` varchar(40) NOT NULL default '',
  `filename` varchar(80) default NULL,
  `filetype` varchar(80) default NULL,
  `filesize` int(14) default NULL,
  `user` varchar(200) default NULL,
  `data` longblob,
  `path` varchar(255) default NULL,
  `downloads` int(10) default NULL,
  `created` int(14) default NULL,
  `comment` varchar(250) default NULL,
  PRIMARY KEY  (`attId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_item_attachments`
--

LOCK TABLES `tiki_tracker_item_attachments` WRITE;
/*!40000 ALTER TABLE `tiki_tracker_item_attachments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_tracker_item_attachments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_tracker_item_comments`
--

DROP TABLE IF EXISTS `tiki_tracker_item_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_item_comments` (
  `commentId` int(12) NOT NULL auto_increment,
  `itemId` int(12) NOT NULL default '0',
  `user` varchar(200) default NULL,
  `data` text,
  `title` varchar(200) default NULL,
  `posted` int(14) default NULL,
  PRIMARY KEY  (`commentId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_item_comments`
--

LOCK TABLES `tiki_tracker_item_comments` WRITE;
/*!40000 ALTER TABLE `tiki_tracker_item_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_tracker_item_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_tracker_item_fields`
--

DROP TABLE IF EXISTS `tiki_tracker_item_fields`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_item_fields` (
  `itemId` int(12) NOT NULL default '0',
  `fieldId` int(12) NOT NULL default '0',
  `value` text,
  PRIMARY KEY  (`itemId`,`fieldId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_item_fields`
--

LOCK TABLES `tiki_tracker_item_fields` WRITE;
/*!40000 ALTER TABLE `tiki_tracker_item_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_tracker_item_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_tracker_items`
--

DROP TABLE IF EXISTS `tiki_tracker_items`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_items` (
  `itemId` int(12) NOT NULL auto_increment,
  `trackerId` int(12) NOT NULL default '0',
  `created` int(14) default NULL,
  `status` char(1) default NULL,
  `lastModif` int(14) default NULL,
  PRIMARY KEY  (`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_items`
--

LOCK TABLES `tiki_tracker_items` WRITE;
/*!40000 ALTER TABLE `tiki_tracker_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_tracker_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_trackers`
--

DROP TABLE IF EXISTS `tiki_trackers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_trackers` (
  `trackerId` int(12) NOT NULL auto_increment,
  `name` varchar(80) default NULL,
  `description` text,
  `created` int(14) default NULL,
  `lastModif` int(14) default NULL,
  `showCreated` char(1) default NULL,
  `showStatus` char(1) default NULL,
  `showLastModif` char(1) default NULL,
  `useComments` char(1) default NULL,
  `useAttachments` char(1) default NULL,
  `items` int(10) default NULL,
  PRIMARY KEY  (`trackerId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_trackers`
--

LOCK TABLES `tiki_trackers` WRITE;
/*!40000 ALTER TABLE `tiki_trackers` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_trackers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_untranslated`
--

DROP TABLE IF EXISTS `tiki_untranslated`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_untranslated` (
  `id` int(14) NOT NULL auto_increment,
  `source` tinyblob NOT NULL,
  `lang` char(2) NOT NULL default '',
  PRIMARY KEY  (`source`(255),`lang`),
  UNIQUE KEY `id` (`id`),
  KEY `id_2` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_untranslated`
--

LOCK TABLES `tiki_untranslated` WRITE;
/*!40000 ALTER TABLE `tiki_untranslated` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_untranslated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_answers`
--

DROP TABLE IF EXISTS `tiki_user_answers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_answers` (
  `userResultId` int(10) NOT NULL default '0',
  `quizId` int(10) NOT NULL default '0',
  `questionId` int(10) NOT NULL default '0',
  `optionId` int(10) NOT NULL default '0',
  PRIMARY KEY  (`userResultId`,`quizId`,`questionId`,`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_answers`
--

LOCK TABLES `tiki_user_answers` WRITE;
/*!40000 ALTER TABLE `tiki_user_answers` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_answers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_assigned_modules`
--

DROP TABLE IF EXISTS `tiki_user_assigned_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_assigned_modules` (
  `name` varchar(200) NOT NULL default '',
  `position` char(1) default NULL,
  `ord` int(4) default NULL,
  `type` char(1) default NULL,
  `user` varchar(200) NOT NULL default '',
  PRIMARY KEY  (`name`,`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_assigned_modules`
--

LOCK TABLES `tiki_user_assigned_modules` WRITE;
/*!40000 ALTER TABLE `tiki_user_assigned_modules` DISABLE KEYS */;
INSERT INTO `tiki_user_assigned_modules` VALUES ('login_box','l',1,'P','admin'),('application_menu','l',1,'P','admin'),('login_box','l',2,'P','dkernekins'),('application_menu','l',1,'P','dkernekins');
/*!40000 ALTER TABLE `tiki_user_assigned_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_bookmarks_folders`
--

DROP TABLE IF EXISTS `tiki_user_bookmarks_folders`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_bookmarks_folders` (
  `folderId` int(12) NOT NULL auto_increment,
  `parentId` int(12) default NULL,
  `user` varchar(200) NOT NULL default '',
  `name` varchar(30) default NULL,
  PRIMARY KEY  (`user`,`folderId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_bookmarks_folders`
--

LOCK TABLES `tiki_user_bookmarks_folders` WRITE;
/*!40000 ALTER TABLE `tiki_user_bookmarks_folders` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_bookmarks_folders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_bookmarks_urls`
--

DROP TABLE IF EXISTS `tiki_user_bookmarks_urls`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_bookmarks_urls` (
  `urlId` int(12) NOT NULL auto_increment,
  `name` varchar(30) default NULL,
  `url` varchar(250) default NULL,
  `data` longblob,
  `lastUpdated` int(14) default NULL,
  `folderId` int(12) NOT NULL default '0',
  `user` varchar(200) NOT NULL default '',
  PRIMARY KEY  (`urlId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_bookmarks_urls`
--

LOCK TABLES `tiki_user_bookmarks_urls` WRITE;
/*!40000 ALTER TABLE `tiki_user_bookmarks_urls` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_bookmarks_urls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_mail_accounts`
--

DROP TABLE IF EXISTS `tiki_user_mail_accounts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_mail_accounts` (
  `accountId` int(12) NOT NULL auto_increment,
  `user` varchar(200) NOT NULL default '',
  `account` varchar(50) NOT NULL default '',
  `pop` varchar(255) default NULL,
  `current` char(1) default NULL,
  `port` int(4) default NULL,
  `username` varchar(100) default NULL,
  `pass` varchar(100) default NULL,
  `msgs` int(4) default NULL,
  `smtp` varchar(255) default NULL,
  `useAuth` char(1) default NULL,
  `smtpPort` int(4) default NULL,
  PRIMARY KEY  (`accountId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_mail_accounts`
--

LOCK TABLES `tiki_user_mail_accounts` WRITE;
/*!40000 ALTER TABLE `tiki_user_mail_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_mail_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_menus`
--

DROP TABLE IF EXISTS `tiki_user_menus`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_menus` (
  `user` varchar(200) NOT NULL default '',
  `menuId` int(12) NOT NULL auto_increment,
  `url` varchar(250) default NULL,
  `name` varchar(40) default NULL,
  `position` int(4) default NULL,
  `mode` char(1) default NULL,
  PRIMARY KEY  (`menuId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_menus`
--

LOCK TABLES `tiki_user_menus` WRITE;
/*!40000 ALTER TABLE `tiki_user_menus` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_modules`
--

DROP TABLE IF EXISTS `tiki_user_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_modules` (
  `name` varchar(200) NOT NULL default '',
  `title` varchar(40) default NULL,
  `data` longblob,
  PRIMARY KEY  (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_modules`
--

LOCK TABLES `tiki_user_modules` WRITE;
/*!40000 ALTER TABLE `tiki_user_modules` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_notes`
--

DROP TABLE IF EXISTS `tiki_user_notes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_notes` (
  `user` varchar(200) NOT NULL default '',
  `noteId` int(12) NOT NULL auto_increment,
  `created` int(14) default NULL,
  `name` varchar(255) default NULL,
  `lastModif` int(14) default NULL,
  `data` text,
  `size` int(14) default NULL,
  `parse_mode` varchar(20) default NULL,
  PRIMARY KEY  (`noteId`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_notes`
--

LOCK TABLES `tiki_user_notes` WRITE;
/*!40000 ALTER TABLE `tiki_user_notes` DISABLE KEYS */;
INSERT INTO `tiki_user_notes` VALUES ('dkernekins',1,1111853255,'HomePage',1111853255,'Welcome to my part of the web!! Don\'t mind the few dead plants - they were here when I got here, I sware!!  (:redface:)\r\n\r\nAs you can see this is a *rough* website... I\'m still doing this in the wee hours or late late at night... between work and writing... well you get the idea. (:biggrin:)\r\n\r\nUmm look around. I\'m sure there is a way to contact me... if not, then use autopsygirl99@yahoo.com to mark your comments (note, not complaints - I have enough of my own, thanks!!)\r\n\r\nSo take a seat, there are plenty, don\'t ask me about the whole login thing, donno yet. Ah, some places on this site: Image Galleries - has some of my wall paper, more coming soon; File Galleries - has my stories - note a few of them... more to come; articles, umm somthing  did last night don\'t remember what i wrote; blog... ya it\'s one for laughs...\r\n\r\n(:confused:) That\'s all campers! \r\n\r\nChristine',880,NULL);
/*!40000 ALTER TABLE `tiki_user_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_postings`
--

DROP TABLE IF EXISTS `tiki_user_postings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_postings` (
  `user` varchar(200) NOT NULL default '',
  `posts` int(12) default NULL,
  `last` int(14) default NULL,
  `first` int(14) default NULL,
  `level` int(8) default NULL,
  PRIMARY KEY  (`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_postings`
--

LOCK TABLES `tiki_user_postings` WRITE;
/*!40000 ALTER TABLE `tiki_user_postings` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_postings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_preferences`
--

DROP TABLE IF EXISTS `tiki_user_preferences`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_preferences` (
  `user` varchar(200) NOT NULL default '',
  `prefName` varchar(40) NOT NULL default '',
  `value` varchar(250) default NULL,
  PRIMARY KEY  (`user`,`prefName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_preferences`
--

LOCK TABLES `tiki_user_preferences` WRITE;
/*!40000 ALTER TABLE `tiki_user_preferences` DISABLE KEYS */;
INSERT INTO `tiki_user_preferences` VALUES ('admin','realName','System Administrator'),('admin','ticket','cb9190498cb9e19e39ebfb2f0d826928'),('dkernekins','theme','purplemetal.css'),('dkernekins','realName',''),('dkernekins','userbreadCrumb','4'),('dkernekins','language','en'),('dkernekins','display_timezone','Local'),('dkernekins','country','United_States'),('dkernekins','user_information','public'),('dkernekins','user_dbl','y'),('dkernekins','email is public','x'),('dkernekins','mytiki_pages','y'),('dkernekins','mytiki_blogs','n'),('dkernekins','mytiki_gals','y'),('dkernekins','mytiki_msgs','y'),('dkernekins','mytiki_tasks','y'),('dkernekins','mytiki_items','y'),('dkernekins','homePage','http://christine.keobjects.com/tiki-index.php?page=DkeStartingPoints'),('dkernekins','tasks_maxRecords','2'),('dkernekins','tasks_useDates','y');
/*!40000 ALTER TABLE `tiki_user_preferences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_quizzes`
--

DROP TABLE IF EXISTS `tiki_user_quizzes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_quizzes` (
  `user` varchar(100) default NULL,
  `quizId` int(10) default NULL,
  `timestamp` int(14) default NULL,
  `timeTaken` int(14) default NULL,
  `points` int(12) default NULL,
  `maxPoints` int(12) default NULL,
  `resultId` int(10) default NULL,
  `userResultId` int(10) NOT NULL auto_increment,
  PRIMARY KEY  (`userResultId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_quizzes`
--

LOCK TABLES `tiki_user_quizzes` WRITE;
/*!40000 ALTER TABLE `tiki_user_quizzes` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_quizzes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_taken_quizzes`
--

DROP TABLE IF EXISTS `tiki_user_taken_quizzes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_taken_quizzes` (
  `user` varchar(200) NOT NULL default '',
  `quizId` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`user`,`quizId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_taken_quizzes`
--

LOCK TABLES `tiki_user_taken_quizzes` WRITE;
/*!40000 ALTER TABLE `tiki_user_taken_quizzes` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_taken_quizzes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_tasks`
--

DROP TABLE IF EXISTS `tiki_user_tasks`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_tasks` (
  `user` varchar(200) default NULL,
  `taskId` int(14) NOT NULL auto_increment,
  `title` varchar(250) default NULL,
  `description` text,
  `date` int(14) default NULL,
  `status` char(1) default NULL,
  `priority` int(2) default NULL,
  `completed` int(14) default NULL,
  `percentage` int(4) default NULL,
  PRIMARY KEY  (`taskId`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_tasks`
--

LOCK TABLES `tiki_user_tasks` WRITE;
/*!40000 ALTER TABLE `tiki_user_tasks` DISABLE KEYS */;
INSERT INTO `tiki_user_tasks` VALUES ('dkernekins',1,'2005 Taxes','',1111298400,'o',3,0,0),('dkernekins',2,'WorkLaptop@home','get set up on 2wire home network\r\n\r\n1) installed software ipswitcher to keep multiple configs\r\n2) install sbc software\r\n3) unable to connect to work from home\r\n4) need to test ifr ipswitcher works ',1111212000,'o',3,0,50),('dkernekins',3,'Haircut','',1111298400,'o',3,0,0),('dkernekins',4,'Cancel Netzero','It is time to cancel netzero',1111298400,'o',3,0,0),('dkernekins',5,'USANext','United Senior Associaton',1111384800,'o',4,0,0),('dkernekins',6,'Mtg Broker','Hewit, Al (972) 381-6720\r\nal@yourdreamloan',1111384800,'o',3,0,0),('dkernekins',7,'MiniC Topic Probe','Probe Ministries - Ray Boland\r\n',1111384800,'o',4,0,0);
/*!40000 ALTER TABLE `tiki_user_tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_votings`
--

DROP TABLE IF EXISTS `tiki_user_votings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_votings` (
  `user` varchar(200) NOT NULL default '',
  `id` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`user`,`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_votings`
--

LOCK TABLES `tiki_user_votings` WRITE;
/*!40000 ALTER TABLE `tiki_user_votings` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_votings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_watches`
--

DROP TABLE IF EXISTS `tiki_user_watches`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_watches` (
  `user` varchar(200) NOT NULL default '',
  `event` varchar(40) NOT NULL default '',
  `object` varchar(200) NOT NULL default '',
  `hash` varchar(32) default NULL,
  `title` varchar(250) default NULL,
  `type` varchar(200) default NULL,
  `url` varchar(250) default NULL,
  `email` varchar(200) default NULL,
  PRIMARY KEY  (`user`,`event`,`object`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_watches`
--

LOCK TABLES `tiki_user_watches` WRITE;
/*!40000 ALTER TABLE `tiki_user_watches` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_user_watches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_userfiles`
--

DROP TABLE IF EXISTS `tiki_userfiles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_userfiles` (
  `user` varchar(200) NOT NULL default '',
  `fileId` int(12) NOT NULL auto_increment,
  `name` varchar(200) default NULL,
  `filename` varchar(200) default NULL,
  `filetype` varchar(200) default NULL,
  `filesize` varchar(200) default NULL,
  `data` longblob,
  `hits` int(8) default NULL,
  `isFile` char(1) default NULL,
  `path` varchar(255) default NULL,
  `created` int(14) default NULL,
  PRIMARY KEY  (`fileId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_userfiles`
--

LOCK TABLES `tiki_userfiles` WRITE;
/*!40000 ALTER TABLE `tiki_userfiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_userfiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_userpoints`
--

DROP TABLE IF EXISTS `tiki_userpoints`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_userpoints` (
  `user` varchar(200) default NULL,
  `points` decimal(8,2) default NULL,
  `voted` int(8) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_userpoints`
--

LOCK TABLES `tiki_userpoints` WRITE;
/*!40000 ALTER TABLE `tiki_userpoints` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_userpoints` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_users`
--

DROP TABLE IF EXISTS `tiki_users`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_users` (
  `user` varchar(200) NOT NULL default '',
  `password` varchar(40) default NULL,
  `email` varchar(200) default NULL,
  `lastLogin` int(14) default NULL,
  PRIMARY KEY  (`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_users`
--

LOCK TABLES `tiki_users` WRITE;
/*!40000 ALTER TABLE `tiki_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_webmail_contacts`
--

DROP TABLE IF EXISTS `tiki_webmail_contacts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_webmail_contacts` (
  `contactId` int(12) NOT NULL auto_increment,
  `firstName` varchar(80) default NULL,
  `lastName` varchar(80) default NULL,
  `email` varchar(250) default NULL,
  `nickname` varchar(200) default NULL,
  `user` varchar(200) NOT NULL default '',
  PRIMARY KEY  (`contactId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_webmail_contacts`
--

LOCK TABLES `tiki_webmail_contacts` WRITE;
/*!40000 ALTER TABLE `tiki_webmail_contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_webmail_contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_webmail_messages`
--

DROP TABLE IF EXISTS `tiki_webmail_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_webmail_messages` (
  `accountId` int(12) NOT NULL default '0',
  `mailId` varchar(255) NOT NULL default '',
  `user` varchar(200) NOT NULL default '',
  `isRead` char(1) default NULL,
  `isReplied` char(1) default NULL,
  `isFlagged` char(1) default NULL,
  PRIMARY KEY  (`accountId`,`mailId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_webmail_messages`
--

LOCK TABLES `tiki_webmail_messages` WRITE;
/*!40000 ALTER TABLE `tiki_webmail_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_webmail_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_wiki_attachments`
--

DROP TABLE IF EXISTS `tiki_wiki_attachments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_wiki_attachments` (
  `attId` int(12) NOT NULL auto_increment,
  `page` varchar(200) NOT NULL default '',
  `filename` varchar(80) default NULL,
  `filetype` varchar(80) default NULL,
  `filesize` int(14) default NULL,
  `user` varchar(200) default NULL,
  `data` longblob,
  `path` varchar(255) default NULL,
  `downloads` int(10) default NULL,
  `created` int(14) default NULL,
  `comment` varchar(250) default NULL,
  PRIMARY KEY  (`attId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_wiki_attachments`
--

LOCK TABLES `tiki_wiki_attachments` WRITE;
/*!40000 ALTER TABLE `tiki_wiki_attachments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_wiki_attachments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_zones`
--

DROP TABLE IF EXISTS `tiki_zones`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_zones` (
  `zone` varchar(40) NOT NULL default '',
  PRIMARY KEY  (`zone`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_zones`
--

LOCK TABLES `tiki_zones` WRITE;
/*!40000 ALTER TABLE `tiki_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `tiki_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_grouppermissions`
--

DROP TABLE IF EXISTS `users_grouppermissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_grouppermissions` (
  `groupName` varchar(30) NOT NULL default '',
  `permName` varchar(30) NOT NULL default '',
  `value` char(1) default '',
  PRIMARY KEY  (`groupName`,`permName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_grouppermissions`
--

LOCK TABLES `users_grouppermissions` WRITE;
/*!40000 ALTER TABLE `users_grouppermissions` DISABLE KEYS */;
INSERT INTO `users_grouppermissions` VALUES ('Admins','tiki_p_access_closed_site',''),('Admins','tiki_p_admin',''),('Admins','tiki_p_admin_banners',''),('Admins','tiki_p_admin_banning',''),('Admins','tiki_p_admin_calendar',''),('Admins','tiki_p_admin_charts',''),('Admins','tiki_p_admin_integrator',''),('Admins','tiki_p_admin_mailin',''),('Admins','tiki_p_admin_workflow',''),('Admins','tiki_p_broadcast',''),('Admins','tiki_p_broadcast_all',''),('Admins','tiki_p_edit_templates',''),('Admins','tiki_p_live_support_admin',''),('Admins','tiki_p_map_create',''),('Admins','tiki_p_map_delete',''),('Anonymous','tiki_p_comment_tracker_items',''),('Anonymous','tiki_p_download_files',''),('Anonymous','tiki_p_edit_drawings',''),('Anonymous','tiki_p_forum_read',''),('Anonymous','tiki_p_live_support',''),('Anonymous','tiki_p_map_view',''),('Anonymous','tiki_p_play_games',''),('Anonymous','tiki_p_post_shoutbox',''),('Anonymous','tiki_p_read_article',''),('Anonymous','tiki_p_read_blog',''),('Anonymous','tiki_p_read_comments',''),('Anonymous','tiki_p_submit_article',''),('Anonymous','tiki_p_submit_link',''),('Anonymous','tiki_p_subscribe_newsletters',''),('Anonymous','tiki_p_suggest_chart_item',''),('Anonymous','tiki_p_suggest_faq',''),('Anonymous','tiki_p_take_quiz',''),('Anonymous','tiki_p_take_survey',''),('Anonymous','tiki_p_topic_read',''),('Anonymous','tiki_p_view',''),('Anonymous','tiki_p_view_calendar',''),('Anonymous','tiki_p_view_chart',''),('Anonymous','tiki_p_view_directory',''),('Anonymous','tiki_p_view_faqs',''),('Anonymous','tiki_p_view_file_gallery',''),('Anonymous','tiki_p_view_html_pages',''),('Anonymous','tiki_p_view_image_gallery',''),('Anonymous','tiki_p_view_integrator',''),('Anonymous','tiki_p_view_quiz_stats',''),('Anonymous','tiki_p_view_shoutbox',''),('Anonymous','tiki_p_view_stats',''),('Anonymous','tiki_p_view_survey_stats',''),('Anonymous','tiki_p_view_trackers',''),('Anonymous','tiki_p_vote_chart',''),('Anonymous','tiki_p_vote_poll',''),('Editors','tiki_p_abort_instance',''),('Editors','tiki_p_admin_categories',''),('Editors','tiki_p_admin_chat',''),('Editors','tiki_p_admin_cms',''),('Editors','tiki_p_admin_directory',''),('Editors','tiki_p_admin_directory_cats',''),('Editors','tiki_p_admin_directory_sites',''),('Editors','tiki_p_admin_drawings',''),('Editors','tiki_p_admin_dynamic',''),('Editors','tiki_p_admin_faqs',''),('Editors','tiki_p_admin_file_galleries',''),('Editors','tiki_p_admin_forum',''),('Editors','tiki_p_admin_galleries',''),('Editors','tiki_p_admin_games',''),('Editors','tiki_p_admin_newsletters',''),('Editors','tiki_p_admin_quizzes',''),('Editors','tiki_p_admin_received_articles',''),('Editors','tiki_p_admin_received_pages',''),('Editors','tiki_p_admin_shoutbox',''),('Editors','tiki_p_admin_surveys',''),('Editors','tiki_p_admin_trackers',''),('Editors','tiki_p_admin_wiki',''),('Editors','tiki_p_approve_submission',''),('Editors','tiki_p_autoapprove_submission',''),('Editors','tiki_p_autosubmit_link',''),('Editors','tiki_p_autoval_chart_suggestio',''),('Editors','tiki_p_batch_upload_files',''),('Editors','tiki_p_batch_upload_images',''),('Editors','tiki_p_blog_admin',''),('Editors','tiki_p_create_blogs',''),('Editors','tiki_p_create_file_galleries',''),('Editors','tiki_p_create_galleries',''),('Editors','tiki_p_edit_article',''),('Editors','tiki_p_edit_comments',''),('Editors','tiki_p_edit_content_templates',''),('Editors','tiki_p_edit_cookies',''),('Editors','tiki_p_edit_copyrights',''),('Editors','tiki_p_edit_dynvar',''),('Editors','tiki_p_edit_html_pages',''),('Editors','tiki_p_edit_languages',''),('Editors','tiki_p_edit_structures',''),('Editors','tiki_p_edit_submission',''),('Editors','tiki_p_eph_admin',''),('Editors','tiki_p_forum_autoapp',''),('Editors','tiki_p_lock',''),('Editors','tiki_p_map_edit',''),('Editors','tiki_p_remove',''),('Editors','tiki_p_remove_article',''),('Editors','tiki_p_remove_comments',''),('Editors','tiki_p_remove_submission',''),('Editors','tiki_p_rename',''),('Editors','tiki_p_rollback',''),('Editors','tiki_p_send_articles',''),('Editors','tiki_p_subscribe_email',''),('Editors','tiki_p_use_HTML',''),('Editors','tiki_p_validate_links',''),('Editors','tiki_p_view_referer_stats',''),('Editors','tiki_p_view_user_results',''),('Editors','tiki_p_wiki_admin_attachments',''),('Registered','tiki_p_add_events',''),('Registered','tiki_p_attach_trackers',''),('Registered','tiki_p_blog_post',''),('Registered','tiki_p_cache_bookmarks',''),('Registered','tiki_p_change_events',''),('Registered','tiki_p_chat',''),('Registered','tiki_p_configure_modules',''),('Registered','tiki_p_create_bookmarks',''),('Registered','tiki_p_create_css',''),('Registered','tiki_p_create_tracker_items',''),('Registered','tiki_p_edit',''),('Registered','tiki_p_exception_instance',''),('Registered','tiki_p_forum_attach',''),('Registered','tiki_p_forum_post',''),('Registered','tiki_p_forum_post_topic',''),('Registered','tiki_p_forum_vote',''),('Registered','tiki_p_forums_report',''),('Registered','tiki_p_messages',''),('Registered','tiki_p_minical',''),('Registered','tiki_p_minor',''),('Registered','tiki_p_modify_tracker_items',''),('Registered','tiki_p_newsreader',''),('Registered','tiki_p_notepad',''),('Registered','tiki_p_post_comments',''),('Registered','tiki_p_send_instance',''),('Registered','tiki_p_send_pages',''),('Registered','tiki_p_sendme_articles',''),('Registered','tiki_p_sendme_pages',''),('Registered','tiki_p_tasks',''),('Registered','tiki_p_upload_files',''),('Registered','tiki_p_upload_images',''),('Registered','tiki_p_upload_picture',''),('Registered','tiki_p_use_content_templates',''),('Registered','tiki_p_use_webmail',''),('Registered','tiki_p_use_workflow',''),('Registered','tiki_p_userfiles',''),('Registered','tiki_p_usermenu',''),('Registered','tiki_p_view_categories',''),('Registered','tiki_p_view_eph',''),('Registered','tiki_p_vote_comments',''),('Registered','tiki_p_wiki_attach_files',''),('Registered','tiki_p_wiki_view_attachments','');
/*!40000 ALTER TABLE `users_grouppermissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_groups`
--

DROP TABLE IF EXISTS `users_groups`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_groups` (
  `groupName` varchar(30) NOT NULL default '',
  `groupDesc` varchar(255) default NULL,
  `groupHome` varchar(255) default NULL,
  PRIMARY KEY  (`groupName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_groups`
--

LOCK TABLES `users_groups` WRITE;
/*!40000 ALTER TABLE `users_groups` DISABLE KEYS */;
INSERT INTO `users_groups` VALUES ('Anonymous','Public users not logged',NULL),('Registered','Users logged into the system',NULL),('Admins','Administrator and accounts managers.',''),('Editors','Trusted writers and features managers.','');
/*!40000 ALTER TABLE `users_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_objectpermissions`
--

DROP TABLE IF EXISTS `users_objectpermissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_objectpermissions` (
  `groupName` varchar(30) NOT NULL default '',
  `permName` varchar(30) NOT NULL default '',
  `objectType` varchar(20) NOT NULL default '',
  `objectId` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`objectId`,`groupName`,`permName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_objectpermissions`
--

LOCK TABLES `users_objectpermissions` WRITE;
/*!40000 ALTER TABLE `users_objectpermissions` DISABLE KEYS */;
INSERT INTO `users_objectpermissions` VALUES ('Admins','tiki_p_upload_images','image gallery','29db1cff60ecb22c7285d51542f70186'),('Admins','tiki_p_batch_upload_images','image gallery','29db1cff60ecb22c7285d51542f70186');
/*!40000 ALTER TABLE `users_objectpermissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_permissions`
--

DROP TABLE IF EXISTS `users_permissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_permissions` (
  `permName` varchar(30) NOT NULL default '',
  `permDesc` varchar(250) default NULL,
  `level` varchar(80) default NULL,
  `type` varchar(20) default NULL,
  PRIMARY KEY  (`permName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_permissions`
--

LOCK TABLES `users_permissions` WRITE;
/*!40000 ALTER TABLE `users_permissions` DISABLE KEYS */;
INSERT INTO `users_permissions` VALUES ('tiki_p_admin_galleries','Can admin Image Galleries','editors','image galleries'),('tiki_p_admin_file_galleries','Can admin file galleries','editors','file galleries'),('tiki_p_create_file_galleries','Can create file galleries','editors','file galleries'),('tiki_p_upload_files','Can upload files','registered','file galleries'),('tiki_p_download_files','Can download files','basic','file galleries'),('tiki_p_post_comments','Can post new comments','registered','comments'),('tiki_p_read_comments','Can read comments','basic','comments'),('tiki_p_remove_comments','Can delete comments','editors','comments'),('tiki_p_vote_comments','Can vote comments','registered','comments'),('tiki_p_admin','Administrator, can manage users groups and permissions, Hotwords and all the weblog features','admin','tiki'),('tiki_p_edit','Can edit pages','registered','wiki'),('tiki_p_view','Can view page/pages','basic','wiki'),('tiki_p_remove','Can remove','editors','wiki'),('tiki_p_rollback','Can rollback pages','editors','wiki'),('tiki_p_create_galleries','Can create image galleries','editors','image galleries'),('tiki_p_upload_images','Can upload images','registered','image galleries'),('tiki_p_use_HTML','Can use HTML in pages','editors','tiki'),('tiki_p_create_blogs','Can create a blog','editors','blogs'),('tiki_p_blog_post','Can post to a blog','registered','blogs'),('tiki_p_blog_admin','Can admin blogs','editors','blogs'),('tiki_p_edit_article','Can edit articles','editors','cms'),('tiki_p_remove_article','Can remove articles','editors','cms'),('tiki_p_read_article','Can read articles','basic','cms'),('tiki_p_submit_article','Can submit articles','basic','cms'),('tiki_p_edit_submission','Can edit submissions','editors','cms'),('tiki_p_remove_submission','Can remove submissions','editors','cms'),('tiki_p_approve_submission','Can approve submissions','editors','cms'),('tiki_p_edit_templates','Can edit site templates','admin','tiki'),('tiki_p_admin_dynamic','Can admin the dynamic content system','editors','tiki'),('tiki_p_admin_banners','Administrator, can admin banners','admin','tiki'),('tiki_p_admin_wiki','Can admin the wiki','editors','wiki'),('tiki_p_admin_cms','Can admin the cms','editors','cms'),('tiki_p_admin_categories','Can admin categories','editors','tiki'),('tiki_p_send_pages','Can send pages to other sites','registered','comm'),('tiki_p_sendme_pages','Can send pages to this site','registered','comm'),('tiki_p_admin_received_pages','Can admin received pages','editors','comm'),('tiki_p_admin_forum','Can admin forums','editors','forums'),('tiki_p_forum_post','Can post in forums','registered','forums'),('tiki_p_forum_post_topic','Can start threads in forums','registered','forums'),('tiki_p_forum_read','Can read forums','basic','forums'),('tiki_p_forum_vote','Can vote comments in forums','registered','forums'),('tiki_p_read_blog','Can read blogs','basic','blogs'),('tiki_p_view_image_gallery','Can view image galleries','basic','image galleries'),('tiki_p_view_file_gallery','Can view file galleries','basic','file galleries'),('tiki_p_edit_comments','Can edit all comments','editors','comments'),('tiki_p_vote_poll','Can vote polls','basic','tiki'),('tiki_p_admin_chat','Administrator, can create channels remove channels etc','editors','chat'),('tiki_p_chat','Can use the chat system','registered','chat'),('tiki_p_topic_read','Can read a topic (Applies only to individual topic perms)','basic','topics'),('tiki_p_play_games','Can play games','basic','games'),('tiki_p_admin_games','Can admin games','editors','games'),('tiki_p_edit_cookies','Can admin cookies','editors','tiki'),('tiki_p_view_stats','Can view site stats','basic','tiki'),('tiki_p_create_bookmarks','Can create user bookmarksche user bookmarks','registered','user'),('tiki_p_configure_modules','Can configure modules','registered','user'),('tiki_p_cache_bookmarks','Can cache user bookmarks','admin','user'),('tiki_p_admin_faqs','Can admin faqs','editors','faqs'),('tiki_p_view_faqs','Can view faqs','basic','faqs'),('tiki_p_send_articles','Can send articles to other sites','editors','comm'),('tiki_p_sendme_articles','Can send articles to this site','registered','comm'),('tiki_p_admin_received_articles','Can admin received articles','editors','comm'),('tiki_p_view_referer_stats','Can view referer stats','editors','tiki'),('tiki_p_wiki_attach_files','Can attach files to wiki pages','registered','wiki'),('tiki_p_wiki_admin_attachments','Can admin attachments to wiki pages','editors','wiki'),('tiki_p_wiki_view_attachments','Can view wiki attachments and download','registered','wiki'),('tiki_p_batch_upload_images','Can upload zip files with images','editors','image galleries'),('tiki_p_admin_drawings','Can admin drawings','editors','drawings'),('tiki_p_edit_drawings','Can edit drawings','basic','drawings'),('tiki_p_view_html_pages','Can view HTML pages','basic','html pages'),('tiki_p_edit_html_pages','Can edit HTML pages','editors','html pages'),('tiki_p_view_shoutbox','Can view shoutbox','basic','shoutbox'),('tiki_p_admin_shoutbox','Can admin shoutbox (Edit/remove msgs)','editors','shoutbox'),('tiki_p_post_shoutbox','Can post messages in shoutbox','basic','shoutbox'),('tiki_p_suggest_faq','Can suggest faq questions','basic','faqs'),('tiki_p_edit_content_templates','Can edit content templates','editors','content templates'),('tiki_p_use_content_templates','Can use content templates','registered','content templates'),('tiki_p_admin_quizzes','Can admin quizzes','editors','quizzes'),('tiki_p_take_quiz','Can take quizzes','basic','quizzes'),('tiki_p_view_quiz_stats','Can view quiz stats','basic','quizzes'),('tiki_p_view_user_results','Can view user quiz results','editors','quizzes'),('tiki_p_admin_newsletters','Can admin newsletters','editors','newsletters'),('tiki_p_subscribe_newsletters','Can subscribe to newsletters','basic','newsletters'),('tiki_p_subscribe_email','Can subscribe any email to newsletters','editors','newsletters'),('tiki_p_use_webmail','Can use webmail','registered','webmail'),('tiki_p_admin_surveys','Can admin surveys','editors','surveys'),('tiki_p_take_survey','Can take surveys','basic','surveys'),('tiki_p_view_survey_stats','Can view survey stats','basic','surveys'),('tiki_p_modify_tracker_items','Can change tracker items','registered','trackers'),('tiki_p_comment_tracker_items','Can insert comments for tracker items','basic','trackers'),('tiki_p_create_tracker_items','Can create new items for trackers','registered','trackers'),('tiki_p_admin_trackers','Can admin trackers','editors','trackers'),('tiki_p_view_trackers','Can view trackers','basic','trackers'),('tiki_p_attach_trackers','Can attach files to tracker items','registered','trackers'),('tiki_p_upload_picture','Can upload pictures to wiki pages','registered','wiki'),('tiki_p_batch_upload_files','Can upload zip files with files','editors','file galleries'),('tiki_p_minor','Can save as minor edit','registered','wiki'),('tiki_p_rename','Can rename pages','editors','wiki'),('tiki_p_lock','Can lock pages','editors','wiki'),('tiki_p_usermenu','Can create items in personal menu','registered','user'),('tiki_p_minical','Can use the mini event calendar','registered','user'),('tiki_p_eph_admin','Can admin ephemerides','editors','tiki'),('tiki_p_view_eph','Can view ephemerides','registered','tiki'),('tiki_p_userfiles','Can upload personal files','registered','user'),('tiki_p_tasks','Can use tasks','registered','user'),('tiki_p_notepad','Can use the notepad','registered','user'),('tiki_p_newsreader','Can use the newsreader','registered','user'),('tiki_p_messages','Can use the messaging system','registered','messu'),('tiki_p_broadcast','Can broadcast messages to groups','admin','messu'),('tiki_p_broadcast_all','Can broadcast messages to all user','admin','messu'),('tiki_p_admin_mailin','Can admin mail-in accounts','admin','tiki'),('tiki_p_edit_structures','Can create and edit structures','editors','wiki'),('tiki_p_admin_directory','Can admin the directory','editors','directory'),('tiki_p_view_directory','Can use the directory','basic','directory'),('tiki_p_admin_directory_cats','Can admin directory categories','editors','directory'),('tiki_p_admin_directory_sites','Can admin directory sites','editors','directory'),('tiki_p_submit_link','Can submit sites to the directory','basic','directory'),('tiki_p_autosubmit_link','Submited links are valid','editors','directory'),('tiki_p_validate_links','Can validate submited links','editors','directory'),('tiki_p_edit_languages','Can edit translations and create new languages','editors','tiki'),('tiki_p_autoapprove_submission','Submited articles automatically approved','editors','cms'),('tiki_p_forums_report','Can report msgs to moderator','registered','forums'),('tiki_p_admin_banning','Can ban users or ips','admin','tiki'),('tiki_p_forum_attach','Can attach to forum posts','registered','forums'),('tiki_p_live_support_admin','Admin live support system','admin','support'),('tiki_p_live_support','Can use live support system','basic','support'),('tiki_p_forum_autoapp','Auto approve forum posts','editors','forums'),('tiki_p_admin_charts','Can admin charts','admin','charts'),('tiki_p_view_chart','Can view charts','basic','charts'),('tiki_p_vote_chart','Can vote','basic','charts'),('tiki_p_suggest_chart_item','Can suggest items','basic','charts'),('tiki_p_autoval_chart_suggestio','Autovalidate suggestions','editors','charts'),('tiki_p_edit_copyrights','Can edit copyright notices','editors','wiki'),('tiki_p_admin_workflow','Can admin workflow processes','admin','workflow'),('tiki_p_abort_instance','Can abort a process instance','editors','workflow'),('tiki_p_use_workflow','Can execute workflow activities','registered','workflow'),('tiki_p_exception_instance','Can declare an instance as exception','registered','workflow'),('tiki_p_send_instance','Can send instances after completion','registered','workflow'),('tiki_p_view_calendar','Can browse the calendar','basic','calendar'),('tiki_p_change_events','Can change events in the calendar','registered','calendar'),('tiki_p_add_events','Can add events in the calendar','registered','calendar'),('tiki_p_admin_calendar','Can create/admin calendars','admin','calendar'),('tiki_p_create_css','Can create new css suffixed with -user','registered','tiki'),('tiki_p_map_edit','Can edit mapfiles','editors','maps'),('tiki_p_map_create','Can create new mapfile','admin','maps'),('tiki_p_map_delete','Can delete mapfiles','admin','maps'),('tiki_p_map_view','Can view mapfiles','basic','maps'),('tiki_p_access_closed_site','Can access site when closed','admin','tiki'),('tiki_p_view_categories','Can browse categories','registered','tiki'),('tiki_p_edit_dynvar','Can edit dynamic variables','editors','wiki'),('tiki_p_admin_integrator','Can admin integrator repositories and rules','admin','tiki'),('tiki_p_view_integrator','Can view integrated repositories','basic','tiki');
/*!40000 ALTER TABLE `users_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_usergroups`
--

DROP TABLE IF EXISTS `users_usergroups`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_usergroups` (
  `userId` int(8) NOT NULL default '0',
  `groupName` varchar(30) NOT NULL default '',
  PRIMARY KEY  (`userId`,`groupName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_usergroups`
--

LOCK TABLES `users_usergroups` WRITE;
/*!40000 ALTER TABLE `users_usergroups` DISABLE KEYS */;
INSERT INTO `users_usergroups` VALUES (2,'Registered'),(3,'Registered');
/*!40000 ALTER TABLE `users_usergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_users`
--

DROP TABLE IF EXISTS `users_users`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_users` (
  `userId` int(8) NOT NULL auto_increment,
  `email` varchar(200) default NULL,
  `login` varchar(40) NOT NULL default '',
  `password` varchar(30) default '',
  `provpass` varchar(30) default NULL,
  `default_group` varchar(255) default NULL,
  `lastLogin` int(14) default NULL,
  `currentLogin` int(14) default NULL,
  `registrationDate` int(14) default NULL,
  `challenge` varchar(32) default NULL,
  `pass_due` int(14) default NULL,
  `hash` varchar(32) default NULL,
  `created` int(14) default NULL,
  `avatarName` varchar(80) default NULL,
  `avatarSize` int(14) default NULL,
  `avatarFileType` varchar(250) default NULL,
  `avatarData` longblob,
  `avatarLibName` varchar(200) default NULL,
  `avatarType` char(1) default NULL,
  PRIMARY KEY  (`userId`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_users`
--

LOCK TABLES `users_users` WRITE;
/*!40000 ALTER TABLE `users_users` DISABLE KEYS */;
INSERT INTO `users_users` VALUES (1,'','admin','j1y5b',NULL,NULL,1119492250,1119900516,0,NULL,1145187140,'d318d3aafc02bcfbd94dc0317a993c7e',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'d.kernekins@bigfoot.com','dkernekins','','',NULL,1119900436,1144668489,1111330979,NULL,1197644579,'4565561eee88a82814234ba9aafc5cca',1111330979,NULL,NULL,NULL,NULL,NULL,NULL),(3,'sam22825@yahoo.com','jessica','','',NULL,1111507009,1111507009,1111506173,NULL,1197819773,'c75544ff3e5c8f16db776f8b4855ebc7',1111506173,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `users_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2009-04-19 23:50:19

