-- MySQL dump 10.11
--
-- Host: localhost    Database: admin_betaartist
-- ------------------------------------------------------
-- Server version	5.0.90-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 `bb_forums`
--

DROP TABLE IF EXISTS `bb_forums`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bb_forums` (
  `forum_id` int(10) NOT NULL auto_increment,
  `forum_name` varchar(150) NOT NULL default '',
  `forum_slug` varchar(255) NOT NULL default '',
  `forum_desc` text NOT NULL,
  `forum_parent` int(10) NOT NULL default '0',
  `forum_order` int(10) NOT NULL default '0',
  `topics` bigint(20) NOT NULL default '0',
  `posts` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`forum_id`),
  KEY `forum_slug` (`forum_slug`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bb_forums`
--

LOCK TABLES `bb_forums` WRITE;
/*!40000 ALTER TABLE `bb_forums` DISABLE KEYS */;
INSERT INTO `bb_forums` VALUES (1,'first forum','first-forum','',0,1,2,2),(2,'test group bbpress','test-group-bbpress','test group bbpress',1,2,3,4),(3,'next group','next-group','next groupnext groupnext groupnext groupnext group',1,3,1,1),(4,'MultiGroup','multigroup','Pencho &amp; Kircho Ltd',1,4,0,0),(5,'Star Wars Fans','star-wars-fans','A fan group dedicated to the exchange of information regarding the George Lucas\' trilogy - Star Wars',1,5,1,2),(6,'Epic Group','epic-group','Our group is dedicated to the discussion of films and other cinematic performances taking places in epic ages.',1,6,1,1),(7,'TransFANmers','transfanmers','We are a group of loyal fans of the Transformers movie.',1,7,1,1),(8,'Test Group','test-group','Test Group Desc',1,8,0,0),(9,'RealArtFanFans','realartfanfans','Personal group for specific artfans',1,9,1,1),(10,'AF Beta Launch Team','af-beta-launch-team','A group for sharing of the initial team',1,10,4,4);
/*!40000 ALTER TABLE `bb_forums` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bb_meta`
--

DROP TABLE IF EXISTS `bb_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bb_meta` (
  `meta_id` bigint(20) NOT NULL auto_increment,
  `object_type` varchar(16) NOT NULL default 'bb_option',
  `object_id` bigint(20) NOT NULL default '0',
  `meta_key` varchar(255) default NULL,
  `meta_value` longtext,
  PRIMARY KEY  (`meta_id`),
  KEY `object_type__meta_key` (`object_type`,`meta_key`),
  KEY `object_type__object_id__meta_key` (`object_type`,`object_id`,`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bb_meta`
--

LOCK TABLES `bb_meta` WRITE;
/*!40000 ALTER TABLE `bb_meta` DISABLE KEYS */;
INSERT INTO `bb_meta` VALUES (1,'bb_option',0,'bb_db_version','2078'),(2,'bb_option',0,'wp_siteurl','http://yellowpages.colorgridadmin.com/'),(3,'bb_option',0,'wp_home','http://yellowpages.colorgridadmin.com/'),(4,'bb_option',0,'bb_auth_salt','133b0de166431126b2738e0ddf863e3fcd22f2e0c62e7ad0933e935adbf58940'),(5,'bb_option',0,'bb_secure_auth_salt','e294ba85686cfa9692009e24546a48e95f8f9a0c08092d27286cb08897e7ab86'),(6,'bb_option',0,'bb_logged_in_salt','9a76ce749a3a211ed3b70f106d70ceae82748859adeae53eabeff7a8bacdc6f7'),(7,'bb_option',0,'wp_table_prefix','wp_'),(8,'bb_option',0,'wordpress_mu_primary_blog_id','1'),(9,'bb_option',0,'name','YellowPages Forums'),(10,'bb_option',0,'uri','http://yellowpages.colorgridadmin.com/bbpress/'),(11,'bb_option',0,'from_email','k.popchovski@cy-systems.com'),(12,'bb_option',0,'description','Just another bbPress community'),(13,'bb_topic',1,'voices_count','1'),(14,'bb_option',0,'_transient_bp_bbpress_random_seed','133e0df433bdccf38db4ad7241704af7'),(15,'bb_option',0,'bb_nonce_salt','ZK@#aEiDGY7J'),(16,'bb_topic',2,'voices_count','1'),(17,'bb_topic',3,'voices_count','1'),(18,'bb_topic',4,'voices_count','1'),(19,'bb_topic',5,'voices_count','1'),(20,'bb_topic',6,'voices_count','1'),(21,'bb_topic',7,'voices_count','2'),(22,'bb_topic',8,'voices_count','1'),(23,'bb_topic',9,'voices_count','1'),(24,'bb_topic',10,'voices_count','1'),(25,'bb_topic',11,'voices_count','1'),(26,'bb_topic',12,'voices_count','1'),(27,'bb_topic',13,'voices_count','1'),(28,'bb_topic',14,'voices_count','1');
/*!40000 ALTER TABLE `bb_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bb_posts`
--

DROP TABLE IF EXISTS `bb_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bb_posts` (
  `post_id` bigint(20) NOT NULL auto_increment,
  `forum_id` int(10) NOT NULL default '1',
  `topic_id` bigint(20) NOT NULL default '1',
  `poster_id` int(10) NOT NULL default '0',
  `post_text` text NOT NULL,
  `post_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `poster_ip` varchar(15) NOT NULL default '',
  `post_status` tinyint(1) NOT NULL default '0',
  `post_position` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`post_id`),
  KEY `topic_time` (`topic_id`,`post_time`),
  KEY `poster_time` (`poster_id`,`post_time`),
  KEY `post_time` (`post_time`),
  FULLTEXT KEY `post_text` (`post_text`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bb_posts`
--

LOCK TABLES `bb_posts` WRITE;
/*!40000 ALTER TABLE `bb_posts` DISABLE KEYS */;
INSERT INTO `bb_posts` VALUES (1,1,1,1,'<p>First Post!  w00t.\n</p>\n','2009-10-09 12:09:56','94.26.14.146',0,1),(2,1,2,17,'<p>test\n</p>\n','2009-10-09 12:32:23','94.26.14.146',0,1),(3,2,3,1,'test','2009-10-09 18:02:38','94.26.14.146',0,1),(4,2,4,9,'zzzzzzzzzz','2009-10-09 18:05:21','94.26.14.146',0,1),(5,2,5,1,'sdfsdfs','2009-10-09 18:14:54','94.26.14.146',0,1),(6,2,5,1,'reply','2009-10-09 18:15:24','94.26.14.146',0,2),(7,3,6,1,'1st Topic','2009-10-19 08:32:08','94.26.14.146',0,1),(8,5,7,141,'1) The sheer length\r\n\r\nA long time ago, in a Hollywood far, far away, sequels were not taken seriously. After striking gold with Jaws, George Lucas\'s friend Steven Spielberg didn\'t bother making Jaws 2 - he moved on to Close Encounters. Star Wars is the only major motion picture ever to have generated two sequels and three prequels (Star Trek IV doesn\'t count). Lucas, who swore for years that he would not add to the original trilogy, can\'t even stop now: last month he announced plans to extend Clone Wars, the television cartoon version of the saga. In space, no one can hear you screaming for less.\r\n\r\n2) The sheer size\r\n\r\nStar Wars movies can be a critical flop, as the last two instalments have shown. What they cannot be is a non-event. Revenge of the Sith may be rubbish, but it will still be big. Its success is a self-fulfilling prophecy - it has already been massively marketed, merchandised, cross-promoted and pre-publicised. The first film was a surprise hit; the rest have been sledgehammers. Over the past generation, the media\'s coverage of pop culture has swung from detachment to hype, from appraisal to cheerleading. The media have fragmented into a thousand little bits, and most of those bits want a piece of something as big as Star Wars. There are still many excellent critics, but their voices don\'t ring out in the same way. They can make a small film, like Sideways, but they can\'t break a blockbuster. There has been a kind of climate change, and the role of Esso, not the only culprit but a major one, has gone to Star Wars.\r\n\r\n3) The woodenness\r\n\r\nIn the first film, Lucas imagined, and shakily realised, a galaxy made of rock, sand, plastic and metal. Nothing was wooden - except the dialogue. The characters in the first film don\'t so much hold conversations as stand there like cavemen, lobbing chunks of monologue at each other. As Harrison Ford said to Lucas in a moment of majestic exasperation: \"You can type this shit, George, but you sure can\'t say it.\"\r\n\r\nThe first plausible exchange in the sequence comes some way into The Empire Strikes Back, when the superfluous verbiage melts in the face of the steam rising between Ford and Carrie Fisher, or perhaps Lucas\'s sheer ignorance of human relationships. At moments like this, Ford turned into an unofficial script doctor, notably when Leia tells him she loves him (as you do, seeing someone you\'ve got the hots for about to be frozen in carbonite). In the script, Han replied \"I love you too,\" which was both predictable and implausible - he\'s supposed to be a bastard, albeit one slowly disclosing a heart of gold. Ford changed it to \"I know,\" which is smug and shallow, but at least in character and free from monosodium glutamate.\r\n\r\nThe irony is that a really gifted writer was right there on set. Carrie Fisher went on to write several memoirs that showed a sharp wit, an ear for language and an eye for the absurd. Only one of these qualities can have been learnt from her time on Star Wars.\r\n\r\n4) The ramifications\r\n\r\nAs the director Paul Schrader said to the film historian Peter Biskind: \"Star Wars was the film that ate the heart and soul of Hollywood. It created the big-budget comic-book mentality.\"\r\n\r\n5) The view from there\r\n\r\nIn his memoirs, Alec Guinness describes going to church one Sunday after becoming a god-like figure to a generation of children as Obi-Wan Kenobi. He is tapped on the shoulder by a woman who has her son with her, asking for an autograph. With the dignity of a double knight, he makes them wait until after the service. The mother proudly tells him that her son has seen Star Wars many times. Guinness gives the autograph on one condition: \"That you never watch that awful film again.\"\r\n\r\n6) The chromosomes\r\n\r\nThe heroes are male, apart from Leia and Padme, who are royal and arguably token. The villains are male. The droids are transparently male. The teachers are male. The fans are nearly all male. The crew is nearly all male. The whole milieu - speed, war, guns, DIY - is male. Attack of the clones? It\'s just a bad case of the blokes.\r\n\r\n7) The meals\r\n\r\nThe meals are one of the blokiest things about the original trilogy. From the moment Luke\'s home is blown up, there aren\'t any. In space, no one can hear your tummy rumble.\r\n\r\n8) The hollow centre\r\n\r\nStar Wars was \"a conscious attempt at creating new myths,\" Lucas said. So how do his stories and characters stand up against, say, those of Homer? It would be harsh, and hard, to pit five movies against 24 books of epic poetry, but there\'s a realistic yardstick available in the shape of last year\'s attempt to do Troy the blockbuster. Troy was widely regarded as a thin and patchy version of The Iliad, but it is more involving than any of the Star Wars films. When Achilles kills Hector, you can feel it hitting the audience hard. The first wince on that scale in Star Wars comes (look away now if you haven\'t seen The Empire Strikes Back) when Darth Vader slices off Luke Skywalker\'s hand. And the hand is duly mended. If Achilles had been dreamt up by George Lucas, he could have taken his injured heel to C-3PO, who would have fixed it in no time. Star Wars has assumed a myth-like place in contemporary American culture, but it lacks the edge, the depth and the resonance of the real thing. Its most mythical moment is when Darth Vader says to Luke Skywalker, \"I am your father\" - which is borrowed from Sophocles. Bland and calculating, Star Wars is a McMyth.\r\n\r\n9) The arsenal\r\n\r\nLucas did well with the lightsabers, which are electronic epees, both retro and futuristic. But the guns are feeble. A popgun with a red light coming out of it is still a popgun.\r\n\r\n10) The thing Yoda does\r\n\r\nThe font of all wisdom, the teachers\' teacher, is Yoda, a big eared, green skinned, 900-year-old elf. A problem with the English language has he. Plonking platitudes he generally utters. Spot this in case we, an amusing quirk he has been given. Sentences he chops in half! Then back together puts! The way round wrong! \"The Force I sense in you,\" says he. \"Teach you more, I can.\" Later, himself he excels: \"Hard to see the Dark Side is.\" It was impossible to imagine a more irritating character - but Lucas managed it (see 27).\r\n\r\n11) The imperialism\r\n\r\nChichester, last Sunday: a very English town centre. At Tesco, Sainsbury\'s, Waitrose and Iceland, Darth Vader is on the Corn Flakes (\"FREE INSIDE: lightsaber maze\") and the Frosties bars (\"FREE INSIDE: sticker dispenser\"). At WH Smith, there are books, sticker albums, and three film magazines: Empire has Vader on \"the world\'s first breathing cover\", Total Film has a special supplement, and Premiere promises a \"Star Wars blowout!\". At Clintons\' cards, there are four giant posters for £3.99 each, one \"exclusive to Clintons\".\r\n\r\nAt Woolworths, there\'s one Star Wars section by the door, and another in the toy department, with lightsabers from Basic (£7.99) to Electronic (£19.99), stacks of Star Wars Lego, Darth Vader pyjamas (£9.99, possibly not the most restful bedwear for a small boy) and Revenge of the Sith Y-fronts (five for £5.99) and boxers (two for £4.99). Hearteningly, nobody is buying any of them, although the Lego looks perfectly wholesome.\r\n\r\nLucas was canny about merchandising from the start. He retained the rights where normally they would have gone to the studio, 20th Century Fox. So far, the merchandising has turned over an estimated $9bn, although Lucas protests that only \"2-3% goes back to the film-makers\". It\'s about infiltration as much as cash. All along, Lucas has wanted more than just to be at your local cinema and in the window of the video store. He wants to be part of the fabric of your day, from breakfast to bed. And we have allowed him to be.\r\n\r\n12) The marketing drivel\r\n\r\nThe biggest plug of all in the high street is at Orange, the phone company. Darth Vader looms out of the window. Inside is loads of guff. \"Enjoy exclusive access to Star Wars Episode III with Orange ... personalise your Orange phone with our hyper-galactic range of exclusive Star Wars mobile content and features.\" This isn\'t personalising your phone: it\'s commercialising your life.\r\n\r\n13) The acceptable face\r\n\r\nOne piece of this year\'s merchandising has the wit and charm that the rest lacks. It\'s Darth Tater - Mr Potato Head meets Darth Vader. At Woolies, it\'s sold out. If only Lucas could have found him a role in the films.\r\n\r\n14) The control-freakery\r\n\r\nGeorge Lucas didn\'t get where he is today without certain controlling tendencies. The latest example comes in the novelisation of the new film. The first surprise is that it\'s in hardback. The second is that the author, a sci-fi novelist named Matthew Stover, dedicates the book not to his wife, his parents or his kids, but to George Lucas. Turn back a page or two and you find the copyright line: © Lucasfilm. The dedicatee is the owner. Somehow it spoils the effect.\r\n\r\n15) The target market\r\n\r\nWhen Lucas started work on the script, in 1972, he was aiming at 10- to 12-year-olds, but by the time he finished, two-and-a-half years later, he referred to it being for eight-to-nines. So the process of writing had infantilised it, something it in turn would inflict on entire generations. The adult viewer, coming to it late, wants to go up to Lucas and yell at him like Woody yelling at Buzz in Toy Story: \"You. Are. A. Children\'s Entertainer!\"\r\n\r\n16) The collateral damage\r\n\r\nIn 1999, as The Phantom Menace loomed, a deal was done with the British publisher Dorling Kindersley to produce spin-off books with subtitles like A Visual Dictionary. Dorling Kindersley ordered 13m books. They sold 3m. Their profits turned to £25m losses, the chief executive resigned, the share price collapsed, the board admitted to a \"seriously misjudged over-investment\", and the company was taken over by Penguin. The billion-dollar turkey had managed to bring down the Platonic ideal of the children\'s publisher.\r\n\r\n17) The snobbery\r\n\r\nAt first the Force is open to all: Luke is told he just has it. Then it turns out to be hereditary. Darth Vader is increasingly addressed as \"Lord Vader\". In the prequels, the air is as thick with honorifics as it is with CGI creatures. Lucas delved deep into his imagination and came out with ... Debrett\'s in space.\r\n\r\n18) The prudishness\r\n\r\nAs Carrie Fisher trotted along the corridors of spaceships in her Snow White outfit, her breasts bounced. It was too much for the crew, who insisted that she restrain them with gaffer tape. This was 1977, the year of Studio 54 and Saturday Night Fever. Hollywood had spent the past decade breaking free from the straitjacket of American puritanism. Lucas, pottering away in his shed with his tool kit, was putting it back together.\r\n\r\n19) The leaden Tin Man\r\n\r\nLucas could have done anything he liked when he dreamt up the android C-3PO. In a classic example of how people faced with unlimited choice tend to make bad ones, he opted for a garrulous, stagey, servile prig, who may be encased in shiny metal but still manages to come over as the person he is underneath - an English actor.\r\n\r\n20) The pitch for the Sith\r\n\r\nAt the ShoWest convention in Las Vegas in March, Lucas accepted the galactic achievement award and gave cinema owners a glimpse of the new film. \"It\'s not like the first one,\" he told them. \"It\'s more emotional. I describe it as a Titanic in space. It\'s a real tearjerker, and it will be received in a way that none of us can expect.\" So the old Lucas logic is still in good order: we can expect something none of us can expect. And he just happens to liken his new baby to the most lucrative movie ever made.\r\n\r\n21) The Oscars\r\n\r\nThe original Star Wars won six - technical, but still, six - Oscars. This year The Incredibles, another children\'s blockbuster but sharper, wittier, more human and more original, won only two.\r\n\r\n22) The lost plot\r\n\r\nIn 1999, after a 16 year break, Star Wars returned with The Phantom Menace. And the first thing viewers saw was this, at the top of the scroll: \"Turmoil has engulfed the Galactic Republic. The taxation of trade routes to outlying star systems is in dispute.\" An argument about tax: it was just the kind of thing people go to the cinema to escape. As inciting incidents go, this has to be the dullest ever.\r\n\r\n23) The crawling\r\n\r\nAmong the thousands of Star Wars websites twinkling away in cyberspace is a new one: thankyougeorge.com, launched to let the fans \"thank the maker\" for his efforts. Anyone can send a message \"free of charge\", although the Thank You George! T-shirts are $12. First in line was old Luke Skywalker himself, Mark Hamill, now 54: \"I would like to thank George Lucas,\" he wrote, \"for rekindling the childhood imaginations of those of all ages, and for showing us that artistry and integrity are not mutually exclusive.\" Hmmm. The obvious riposte would be a rival site called darnyougeorge.com. The name is still available.\r\n\r\n24) The lack of humanity\r\n\r\nLucas says Revenge of the Sith will be \"more emotional\" than its predecessors. That won\'t be hard. Even Tom Shone, who mounts a case for the defence in his book, Blockbuster, conceded: \"People were always a weak point.\" Anthony Lane nailed it in a memorable New Yorker review: \"A long time ago, in a galaxy far, far away, people made movies with people in them, and some of those movies made sense. Then something happened, and the people started to vanish from the movies, along with most of the sense. For a while, the spectacle was fun to observe, but slowly the pictures tipped into insanity, or at any rate into the hypnotically bad. The joke was that the number of viewers willing to submit to such hypnosis went not down but through the roof. Historians . . . are now agreed that the change became irrevocable shortly before the end of the second millennium, with a George Lucas film entitled Star Wars: Episode 1 - The Phantom Menace.\"\r\n\r\n25) The elegant variation\r\n\r\nElegant variation, a phrase loaded with irony, is that thing sports reporters do when they\'ve just mentioned someone by name and don\'t want to do it again, so Wayne Rooney turns into \"the Manchester United striker\", \"the temperamental wonder-boy\", etc. At StarWars.com, they find themselves mentioning George Lucas rather a lot, so at second mention he is liable to become \"the man whose ideas would change film-making forever\".\r\n\r\n26) The cyber-reach\r\n\r\nLucas has never made the mistake of saying that he is bigger than Jesus, but the internet has come along to say it for him. If you Google \"The Bible\", you get 11.5m links. \"Jesus Christ\" gets 8.1m. Star Wars beats them both put together, with 25.2m. It isn\'t as big as God (72.2m), but then He\'s been around for a lot longer.\r\n\r\n27) The black sheep\r\n\r\nWith Leia and Luke, R2 and \"Threepio\", Lucas showed that he could devise characters millions of people would like. Twenty years later, with Jar Jar Binks, he came up with one that those same millions couldn\'t stand. Cloying, shrieky, barely audible, a gangling exhibitionist goat with an attention-deficit disorder, Jar Jar is a bigger bore than the tax dispute. \"But children like him,\" Lucas protested. Maybe some did, but the trick is to come up with characters for children that don\'t make adults feel sick, and even give them laughs on a level that goes over the kids\' heads. Jar Jar\'s humour is beneath the kids.\r\n\r\n28) The inflated reputation\r\n\r\nPhantom Menace isn\'t just bad, it\'s epically, laughably, staggeringly bad. But it received quite a few good reviews (\"Captivating\" - New York Post, \"An astonishing achievement in imaginative film-making\" - Roger Ebert, Chicago Sun-Times). Star Wars itself is similarly over-rated. In 1999, 162,000 British film fans voted in a poll to name the best picture of all time. The winner, with more than a third of the vote, was Star Wars. Second was Titanic. You can argue that Star Wars is very good at what it does (just), but you can\'t, with a straight face, make out that it is better than all the serious films ever made. As Lord Attenborough said when asked for comment: \"The emphasis on that somewhat bedraggled word entertainment is enormous.\"\r\n\r\n29) The fans\r\n\r\nRevenge of the Sith opens on May 19. The queue outside Grauman\'s Chinese Theatre in Hollywood began on April 2. By April 7, the queuers had been told the film won\'t be shown there. They refused to believe this and carried on queuing.\r\n\r\n30) The arrogance\r\n\r\nSome of the acting is so stagey, today\'s audience takes it as camp. In 1999, an interviewer made this point to Lucas. He didn\'t like it all. \"It\'s not deliberately camp. The film is based on a Saturday-matinee serial from the 1930s, so the acting style is very 1930s, very theatrical, very old-fashioned. People take it different ways, depending on their sophistication ... Cinema has only been around for 100 years or so - not long enough for people to really understand it.\" Up to a point, Lord Vader.\r\n\r\n31) The ramifications II: Noise\r\n\r\nMuch of Star Wars\' impact lay in its soundtrack. Lucas insisted that it should use Dolby Stereo throughout, which set a trend. Cinema sound became sharper, brighter, and much, much louder.\r\n\r\n32) The politics\r\n\r\nIt all starts as The Rebellion v the Evil Empire, the little guy taking on the big machine - although, if you listen closely, it\'s stated that the Jedi had ruled for generations, so it\'s a restoration they\'re after, not a revolution. Still, clear enough. And in the age of the cold war, Americans could comfortably be anti-imperial. Ronald Reagan took the cue, built a defence system called Star Wars, and labelled the Soviet Union \"the Evil Empire\". But then that empire fell, and the only one left was ... So the Jedi changed sides. Darth Vader became not so bad. And the politics of the galaxy turned into a UN-style soup.\r\n\r\n33) The character development\r\n\r\nWhen Han Solo swaggers into the story, he is a mercenary. Within two hours, he has become a star pupil, meekly accepting a medal from Princess Leia at an intergalactic version of a prep-school prizegiving. The mercenary has turned into a boy scout.\r\n\r\n34) The ramifications III: Blockbusting\r\n\r\nStar Wars wasn\'t the first blockbuster - that was Jaws. But it was the definitive one. Tom Shone quotes one studio head on the success of the much-derided Pearl Harbor: \"We seem to be able to sell almost anything, regardless of quality.\" Phantom Menace proved the point, becoming the first billion-dollar turkey. A third of its audience hit back by avoiding Attack of the Clones - but two-thirds didn\'t.\r\n\r\n35) The kid\r\n\r\nFor 20 years, the one thing you could say for Lucas\'s oeuvre over his friend Spielberg\'s was that he didn\'t have any of those obnoxious kids. He blew this in The Phantom Menace. Anakin Skywalker is the worst kind of precocious brat.\r\n\r\n36) The ramifications IV: The rebirth of corn\r\n\r\n\"When all was said and done,\" Peter Biskind wrote in Easy Riders, Raging Bulls (1998), \"Lucas and Spielberg returned the 1970s audience, grown sophisticated on a diet of European and New Hollywood films, to the simplicities of the pre-1960s Golden Age of movies ... They marched backward through the looking-glass.\" And life followed art. First Reagan, then George W Bush returned American politics to a set of simplicities, corny, infantile, reassuring and often fictitious.\r\n\r\n37) The dying Scotsman\r\n\r\nEwan McGregor can do many things, but playing the young Alec Guinness isn\'t one of them. Half the point of McGregor is that he isn\'t plummy and stilted like some British actors. So Lucas gets him to be ... plummy and stilted. His Guinness impression ends up closer to Ralph Fiennes - without the brilliance.\r\n\r\n38) The talent problem\r\n\r\nLucas had ambition, drive, stamina (two and a half years writing the script) and vision (he founded Pixar before selling it). But he wasn\'t good at writing, or even directing. On the set of Star Wars itself, he was reported to have two instructions for the cast and crew: \"OK, same thing, only better,\" or \"Faster, more intense\". He didn\'t direct again for 22 years. When he handed over to Irwin Kershner for The Empire Strikes Back, several things improved straightaway: the camera moved, there was texture and atmosphere. Lucas\'s career is like a controlled experiment from the makers of Trading Places: what would happen if you gave a film-maker everything except a talent for making films? The answer is: great success, but no great films.\r\n\r\n39) The repetition\r\n\r\nWhen George Lucas Sr asked his son to join him in the art-supply business, George Jr said, \"Dad, today you\'re going to do exactly what you did yesterday, and tomorrow the same. This is your life and you love it. But I only want to do something once.\" Discuss.\r\n\r\n40) The titles\r\n\r\nStar Wars is a good name for a movie - simple, concise, lapidary. But Lucas has never matched it. The Empire Strikes Back is rhythmic and conversational but obvious. Return of the Jedi is flat: it was going to be Revenge of the Jedi, until someone pointed out that the Jedi are too good to pursue anything so base as vengeance. The Phantom Menace is a dusty old cliche. Attack of the Clones is fresher but still nothing special. Revenge of the Sith inadvertently captures the exhaustion of the long-distance film-maker. It\'s as if Lucas raided the posters on his own office wall, reusing the content of the third film and the rhythm of the fifth. Still, the word Sith has possibilities. You wonder if it will turn out, in a sudden twist, to be the story of Anagram Skywalker. And Harrison Ford, if he turns up at the premiere, must surely go up to Lucas, give him a bear-hug and murmur in his ear: \"You can type this Sith, George, but you sure can\'t say it.\"\r\n','2010-04-14 00:53:36','94.26.14.146',0,1),(9,6,8,141,'Typical Hollywood. The Greek myths might be bizarre, exciting, violent and dramatic, but that didn\'t stop the creators of the highly enjoyable Clash of the Titans film making their plotline even more extravagant than the source material. And that goes for both the ancient Greek myths and the original 1981 movie.\r\n\r\nSpoiler alert: here\'s a brief plot recap. The 2010 version has Perseus, as a baby, found in a chest with his dead mother by a fisherman (Pete Postlethwaite). He grows up to witness the destruction of a mighty statue of Zeus outside Argos (which is given a coastline location; actually, it\'s inland). His adoptive father and family are killed as a sort of collateral damage incident by Hades, who rises up from the depths to take revenge on this insult to the gods. He is taken to Argos where he discovers that king Cepheus is determined to overthrow the gods themselves, who are sustained by the prayers of mortals.\r\n\r\nIn heaven, Zeus is persuaded by Voldemort, sorry, I mean Hades (Ralph Fiennes) that the mortals can be brought back in line by unleashing the Kraken, the creature which the Olympian gods created to defeat their old enemies, the Titans. Cepheus\'s queen, Cassiopeia (Polly Walker, who has previous form in this kind of thing – she was Attia in HBO\'s Rome) boasts that their daughter Andromeda is more beautiful than the gods. Hades appears to the court and tells them that Andromeda must be sacrificed to the Kraken. Perseus, having discovered he is the son of Zeus, takes on the job of defeating Hades. Adventures ensue, featuring a winged horse, three appropriately hideous witches, and the Gorgon Medusa. Perseus has a kind of spirit guide, Io (a woman condemned to eternal youth having refused the sexual advances of a god).\r\n\r\nWhat\'s so interesting about the 2010 plotline is the idea of men wishing to overthrow the gods; and, as a counter-presence, an idealistic religious fanatic in Argos who believes the gods should be appeased at all costs. This is an incredibly un-Greek idea – though, of course, it resonates with modern debates about fanaticism and atheism. Yes, Socrates was condemned to death in 399BC for failing to respect Athens\'s gods (or for introducing new gods), but the fact that the charge appears at all is suggestive, of course. We might also remember that his last words, according to Plato, were advice to his friends to sacrifice a cockerel to the god Asclepius. Even the arch-revolutionary rational thinker Socrates had conventional religion on his mind just before his death.\r\n\r\nThe perils of competing with the gods, of trying to outdo them or arrogantly comparing oneself one to them – as with Cassiopeia\'s boast in the film that Andromeda is more beautiful than Aphrodite – now that\'s very Greek. Arachne, for instance, boasted that she was a more skilful weaver than the goddess Athena. For that, she was turned into a spider. And indeed, this bit of the story is present in antique sources, though separated from the overarching idea of defeating the Olympians.\r\n\r\nIn the ancient sources, Perseus\'s quest to kill the Gorgon is a test set by his adoptive father, Polydectes, who is written out of the 2010 film. He chances upon the chained Andromeda, awaiting to be sacrificed to a sea monster. But he does snatch the Graiais\' (witches) single eye, use his mirrored shield to help him kill the Gorgon, employing her snaky head to turn the sea monster to stone. In the Greek stories, Perseus\'s helper is the goddess Athene, which obviously wouldn\'t quite work with the film\'s \"overthrow the gods\" theme.\r\n\r\nNone of this is complaint – I rather loved the film. The Greeks themselves were adept rewriters and reshapers of their own myths for dramatic purposes. That, in essence, is what all Greek tragedies do, creatively retelling stories from the past to reflect on the present. Clash of the Titans continues that honourable tradition.','2010-04-14 01:02:20','94.26.14.146',0,1),(10,7,9,154,'A youth chooses manhood. The week Sam Witwicky starts college, the Decepticons make trouble in Shanghai. A presidential envoy believes it\'s because the Autobots are around; he wants them gone. He\'s wrong: the Decepticons need access to Sam\'s mind to see some glyphs imprinted there that will lead them to a fragile object that, when inserted in an alien machine hidden in Egypt for centuries, will give them the power to blow out the sun. Sam, his girlfriend Mikaela, and Sam\'s parents are in danger. Optimus Prime and Bumblebee are Sam\'s principal protectors. If one of them goes down, what becomes of ','2010-04-14 01:09:47','94.26.14.146',0,1),(11,5,7,1,'omg ... double j\r\n','2010-06-05 18:57:56','94.26.14.146',0,2),(12,9,10,192,'The ArtLoves\' first saying is ....','2010-06-08 01:18:00','91.92.178.184',0,1),(13,10,11,176,'Not sure how we would organize editor and for what here.','2010-06-09 02:09:36','94.26.14.146',0,1),(14,10,12,176,'not quite sure...','2010-06-09 02:11:20','94.26.14.146',0,1),(15,10,13,1,'1st topic','2010-06-09 02:12:36','94.26.14.146',0,1),(16,10,14,1,'1st test post','2010-06-09 02:20:31','94.26.14.146',0,1);
/*!40000 ALTER TABLE `bb_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bb_term_relationships`
--

DROP TABLE IF EXISTS `bb_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bb_term_relationships` (
  `object_id` bigint(20) NOT NULL default '0',
  `term_taxonomy_id` bigint(20) NOT NULL default '0',
  `user_id` bigint(20) NOT NULL default '0',
  `term_order` int(11) NOT NULL default '0',
  PRIMARY KEY  (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bb_term_relationships`
--

LOCK TABLES `bb_term_relationships` WRITE;
/*!40000 ALTER TABLE `bb_term_relationships` DISABLE KEYS */;
INSERT INTO `bb_term_relationships` VALUES (1,1,1,0),(2,1,17,0),(3,2,1,0),(4,3,9,0),(5,4,1,0),(6,5,1,0),(10,6,192,0),(10,7,192,0),(10,8,192,0),(10,9,192,0),(10,10,192,0),(10,11,192,0),(11,12,176,0),(11,13,176,0),(11,14,176,0),(11,15,176,0),(11,16,176,0),(11,17,176,0),(11,18,176,0),(12,12,176,0),(12,13,176,0),(12,14,176,0),(12,15,176,0),(12,16,176,0),(12,17,176,0),(12,18,176,0);
/*!40000 ALTER TABLE `bb_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bb_term_taxonomy`
--

DROP TABLE IF EXISTS `bb_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bb_term_taxonomy` (
  `term_taxonomy_id` bigint(20) NOT NULL auto_increment,
  `term_id` bigint(20) NOT NULL default '0',
  `taxonomy` varchar(32) NOT NULL default '',
  `description` longtext NOT NULL,
  `parent` bigint(20) NOT NULL default '0',
  `count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bb_term_taxonomy`
--

LOCK TABLES `bb_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `bb_term_taxonomy` DISABLE KEYS */;
INSERT INTO `bb_term_taxonomy` VALUES (1,1,'bb_topic_tag','',0,2),(2,2,'bb_topic_tag','',0,1),(3,3,'bb_topic_tag','',0,1),(4,4,'bb_topic_tag','',0,1),(5,5,'bb_topic_tag','',0,1),(6,6,'bb_topic_tag','',0,1),(7,7,'bb_topic_tag','',0,1),(8,8,'bb_topic_tag','',0,1),(9,9,'bb_topic_tag','',0,1),(10,10,'bb_topic_tag','',0,1),(11,11,'bb_topic_tag','',0,1),(12,12,'bb_topic_tag','',0,2),(13,13,'bb_topic_tag','',0,2),(14,14,'bb_topic_tag','',0,2),(15,15,'bb_topic_tag','',0,2),(16,16,'bb_topic_tag','',0,2),(17,17,'bb_topic_tag','',0,2),(18,18,'bb_topic_tag','',0,2);
/*!40000 ALTER TABLE `bb_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bb_terms`
--

DROP TABLE IF EXISTS `bb_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bb_terms` (
  `term_id` bigint(20) NOT NULL auto_increment,
  `name` varchar(55) NOT NULL default '',
  `slug` varchar(200) NOT NULL default '',
  `term_group` bigint(10) NOT NULL default '0',
  PRIMARY KEY  (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bb_terms`
--

LOCK TABLES `bb_terms` WRITE;
/*!40000 ALTER TABLE `bb_terms` DISABLE KEYS */;
INSERT INTO `bb_terms` VALUES (1,'bbPress','bbpress',0),(2,'test','test',0),(3,'zzzz','zzzz',0),(4,'dfsdf','dfsdf',0),(5,'topic 1st','topic-1st',0),(6,'art','art',0),(7,'lovers','lovers',0),(8,'love to art','love-to-art',0),(9,'artist fans','artist-fans',0),(10,'fans of art','fans-of-art',0),(11,'art fans','art-fans',0),(12,'ArtistFolio','artistfolio',0),(13,'beta launch team','beta-launch-team',0),(14,'project team','project-team',0),(15,'content owners','content-owners',0),(16,'editors','editors',0),(17,'authors','authors',0),(18,'ArtistFolio team','artistfolio-team',0);
/*!40000 ALTER TABLE `bb_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bb_topics`
--

DROP TABLE IF EXISTS `bb_topics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bb_topics` (
  `topic_id` bigint(20) NOT NULL auto_increment,
  `topic_title` varchar(100) NOT NULL default '',
  `topic_slug` varchar(255) NOT NULL default '',
  `topic_poster` bigint(20) NOT NULL default '0',
  `topic_poster_name` varchar(40) NOT NULL default 'Anonymous',
  `topic_last_poster` bigint(20) NOT NULL default '0',
  `topic_last_poster_name` varchar(40) NOT NULL default '',
  `topic_start_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `topic_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `forum_id` int(10) NOT NULL default '1',
  `topic_status` tinyint(1) NOT NULL default '0',
  `topic_open` tinyint(1) NOT NULL default '1',
  `topic_last_post_id` bigint(20) NOT NULL default '1',
  `topic_sticky` tinyint(1) NOT NULL default '0',
  `topic_posts` bigint(20) NOT NULL default '0',
  `tag_count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`topic_id`),
  KEY `topic_slug` (`topic_slug`),
  KEY `forum_time` (`forum_id`,`topic_time`),
  KEY `user_start_time` (`topic_poster`,`topic_start_time`),
  KEY `stickies` (`topic_status`,`topic_sticky`,`topic_time`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bb_topics`
--

LOCK TABLES `bb_topics` WRITE;
/*!40000 ALTER TABLE `bb_topics` DISABLE KEYS */;
INSERT INTO `bb_topics` VALUES (1,'Your first topic','your-first-topic',1,'admin',1,'admin','2009-10-09 12:09:56','2009-10-09 12:09:56',1,0,1,1,0,1,1),(2,'test','test',17,'bbpress',17,'bbpress','2009-10-09 12:32:23','2009-10-09 12:32:23',1,0,1,2,0,1,2),(3,'test','test-1',1,'admin',1,'admin','2009-10-09 18:02:38','2009-10-09 18:02:38',2,0,1,3,0,1,1),(4,'Zzzzz','zzzzz',9,'firm1',9,'firm1','2009-10-09 18:05:21','2009-10-09 18:05:21',2,0,1,4,0,1,1),(5,'sfdf','sfdf',1,'admin',1,'admin','2009-10-09 18:14:54','2009-10-09 18:15:24',2,0,1,6,0,2,1),(6,'1st Topic','1st-topic',1,'admin',1,'admin','2009-10-19 08:32:08','2009-10-19 08:32:08',3,0,1,7,0,1,1),(7,'Space invaders','space-invaders',141,'nameoforganizationnnn',1,'admin','2010-04-14 00:53:36','2010-06-05 18:57:56',5,0,1,11,0,2,0),(8,'Clash of the Titans and the classics','clash-of-the-titans-and-the-classics',141,'nameoforganizationnnn',141,'nameoforganizationnnn','2010-04-14 01:02:20','2010-04-14 01:02:20',6,0,1,9,0,1,0),(9,'Transformers: Revenge of the Fallen','transformers-revenge-of-the-fallen',154,'magazineartist',154,'magazineartist','2010-04-14 01:09:47','2010-04-14 01:09:47',7,0,1,10,0,1,0),(10,'The ArtLoves\' first saying','the-artloves-first-saying',192,'realartfan',192,'realartfan','2010-06-08 01:18:00','2010-06-08 01:18:00',9,0,1,12,0,1,6),(11,'what we are supposed to do here?','what-we-are-supposed-to-do-here',176,'ccile-palusinski',176,'ccile-palusinski','2010-06-09 02:09:36','2010-06-09 02:09:36',10,0,1,13,0,1,7),(12,'What we are supposed to do here?','what-we-are-supposed-to-do-here-1',176,'ccile-palusinski',176,'ccile-palusinski','2010-06-09 02:11:20','2010-06-09 02:11:20',10,0,1,14,0,1,7),(13,'1st topic','1st-topic-1',1,'admin',1,'admin','2010-06-09 02:12:36','2010-06-09 02:12:36',10,0,1,15,0,1,0),(14,'1st test post','1st-test-post',1,'admin',1,'admin','2010-06-09 02:20:31','2010-06-09 02:20:31',10,0,1,16,0,1,0);
/*!40000 ALTER TABLE `bb_topics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oryx_debug`
--

DROP TABLE IF EXISTS `oryx_debug`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oryx_debug` (
  `id` int(10) NOT NULL auto_increment,
  `message` text NOT NULL,
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oryx_debug`
--

LOCK TABLES `oryx_debug` WRITE;
/*!40000 ALTER TABLE `oryx_debug` DISABLE KEYS */;
INSERT INTO `oryx_debug` VALUES (1,'------------','2010-03-23 08:55:19'),(2,'Installation started 23/03/2010 10:55:19','2010-03-23 08:55:19'),(3,'Created oryx_debug','2010-03-23 08:55:19'),(4,'Created oryx_options','2010-03-23 08:55:19'),(5,'Inserted default values to oryx_options','2010-03-23 08:55:19'),(6,'Created oryx_joblist','2010-03-23 08:55:19'),(7,'Created oryx_tags','2010-03-23 08:55:19'),(8,'Created oryx_relationships','2010-03-23 08:55:19'),(9,'Installation completed','2010-03-23 08:55:19'),(10,'------------','2010-03-23 08:55:19'),(11,'------------','2010-03-23 12:09:20'),(12,'Installation started 23/03/2010 14:09:20','2010-03-23 12:09:20'),(13,'Created oryx_debug','2010-03-23 12:09:20'),(14,'Created oryx_options','2010-03-23 12:09:20'),(15,'Inserted default values to oryx_options','2010-03-23 12:09:20'),(16,'Created oryx_joblist','2010-03-23 12:09:20'),(17,'Created oryx_tags','2010-03-23 12:09:20'),(18,'Created oryx_relationships','2010-03-23 12:09:20'),(19,'Installation completed','2010-03-23 12:09:20'),(20,'------------','2010-03-23 12:09:20');
/*!40000 ALTER TABLE `oryx_debug` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oryx_joblist`
--

DROP TABLE IF EXISTS `oryx_joblist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oryx_joblist` (
  `id` int(10) NOT NULL auto_increment,
  `blog_id` bigint(20) NOT NULL,
  `post_id` bigint(20) NOT NULL,
  `web_service` tinyint(1) NOT NULL default '0',
  `relationship` tinyint(1) NOT NULL default '0',
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oryx_joblist`
--

LOCK TABLES `oryx_joblist` WRITE;
/*!40000 ALTER TABLE `oryx_joblist` DISABLE KEYS */;
INSERT INTO `oryx_joblist` VALUES (1,37,181,0,0,'2010-03-23 09:33:03'),(2,37,167,0,0,'2010-03-23 10:08:50'),(3,37,193,0,0,'2010-03-23 10:16:44'),(4,37,194,0,0,'2010-03-23 10:23:39'),(5,37,195,0,0,'2010-03-23 11:32:12'),(6,36,164,0,0,'2010-03-23 12:24:48'),(7,36,153,0,0,'2010-03-23 12:27:53'),(8,36,232,0,0,'2010-03-23 13:02:45'),(9,36,184,0,0,'2010-03-23 13:02:50'),(10,36,184,0,0,'2010-03-23 13:04:23'),(11,36,245,0,0,'2010-03-24 14:16:31'),(12,36,245,0,0,'2010-03-24 14:18:31'),(13,37,197,0,0,'2010-04-01 08:48:41'),(14,37,199,0,0,'2010-04-01 09:18:33'),(15,37,200,0,0,'2010-04-08 12:29:00'),(16,37,202,0,0,'2010-04-08 13:15:53'),(17,37,205,0,0,'2010-04-13 22:03:43'),(18,37,205,0,0,'2010-04-13 22:03:58'),(19,37,203,0,0,'2010-04-13 22:12:24'),(20,36,155,0,0,'2010-04-14 09:49:34'),(21,37,203,0,0,'2010-05-11 14:48:26'),(22,36,250,0,0,'2010-06-02 13:11:46'),(23,37,203,0,0,'2010-06-03 17:03:52'),(24,36,232,0,0,'2010-06-03 17:38:57');
/*!40000 ALTER TABLE `oryx_joblist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oryx_options`
--

DROP TABLE IF EXISTS `oryx_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oryx_options` (
  `id` int(1) NOT NULL auto_increment,
  `key` varchar(32) NOT NULL,
  `value` text,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oryx_options`
--

LOCK TABLES `oryx_options` WRITE;
/*!40000 ALTER TABLE `oryx_options` DISABLE KEYS */;
INSERT INTO `oryx_options` VALUES (1,'oc-api-key',''),(2,'execute','daily'),(3,'last-run','-'),(4,'uninstall-tables','-'),(5,'tag-relevance','0'),(6,'post-relevance','0'),(7,'use-oc','0'),(8,'num-to-show','5'),(9,'use-yahoo','0'),(10,'yahoo-api-key',''),(11,'oc-api-key',''),(12,'execute','daily'),(13,'last-run','-'),(14,'uninstall-tables','-'),(15,'tag-relevance','0'),(16,'post-relevance','0'),(17,'use-oc','0'),(18,'num-to-show','5'),(19,'use-yahoo','0'),(20,'yahoo-api-key','');
/*!40000 ALTER TABLE `oryx_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oryx_relationships`
--

DROP TABLE IF EXISTS `oryx_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oryx_relationships` (
  `id` int(20) NOT NULL auto_increment,
  `active_blog` int(20) NOT NULL,
  `active_post` int(20) NOT NULL,
  `passive_blog` int(20) NOT NULL,
  `passive_post` int(20) NOT NULL,
  `relevance` int(3) NOT NULL default '50',
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oryx_relationships`
--

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

--
-- Table structure for table `oryx_tags`
--

DROP TABLE IF EXISTS `oryx_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oryx_tags` (
  `id` int(10) NOT NULL auto_increment,
  `tag` text NOT NULL,
  `blog_id` bigint(20) NOT NULL,
  `post_id` bigint(20) NOT NULL,
  `source` varchar(20) NOT NULL,
  `relevance` int(3) NOT NULL default '50',
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oryx_tags`
--

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

--
-- Table structure for table `wp_10_comments`
--

DROP TABLE IF EXISTS `wp_10_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL auto_increment,
  `comment_post_ID` bigint(20) unsigned NOT NULL default '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL default '',
  `comment_author_url` varchar(200) NOT NULL default '',
  `comment_author_IP` varchar(100) NOT NULL default '',
  `comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL default '0',
  `comment_approved` varchar(20) NOT NULL default '1',
  `comment_agent` varchar(255) NOT NULL default '',
  `comment_type` varchar(20) NOT NULL default '',
  `comment_parent` bigint(20) unsigned NOT NULL default '0',
  `user_id` bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_comments`
--

LOCK TABLES `wp_10_comments` WRITE;
/*!40000 ALTER TABLE `wp_10_comments` DISABLE KEYS */;
INSERT INTO `wp_10_comments` VALUES (1,1,'Mr WordPress','','http://yellowpages.colorgridadmin.com/','127.0.0.1','2009-10-22 12:57:09','2009-10-22 09:57:09','Hi, this is a comment.<br />To delete a comment, just log in, and view the posts\' comments, there you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_10_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_gdpt_posts_views`
--

DROP TABLE IF EXISTS `wp_10_gdpt_posts_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_gdpt_posts_views` (
  `post_id` bigint(20) unsigned NOT NULL default '0',
  `day` varchar(10) default '',
  `usr_views` int(11) unsigned NOT NULL default '0',
  `vst_views` int(11) unsigned NOT NULL default '0',
  UNIQUE KEY `post_day` (`post_id`,`day`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_gdpt_posts_views`
--

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

--
-- Table structure for table `wp_10_gdpt_users_tracking`
--

DROP TABLE IF EXISTS `wp_10_gdpt_users_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_gdpt_users_tracking` (
  `user_id` bigint(20) unsigned NOT NULL default '0',
  `post_id` bigint(20) unsigned NOT NULL default '0',
  `day` varchar(10) default '',
  `views` int(11) unsigned NOT NULL default '0',
  UNIQUE KEY `user_post_day` (`user_id`,`post_id`,`day`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_gdpt_users_tracking`
--

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

--
-- Table structure for table `wp_10_icl_cms_nav_cache`
--

DROP TABLE IF EXISTS `wp_10_icl_cms_nav_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_cms_nav_cache` (
  `id` bigint(20) NOT NULL auto_increment,
  `cache_key` varchar(128) NOT NULL,
  `type` varchar(128) NOT NULL,
  `data` text NOT NULL,
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_cms_nav_cache`
--

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

--
-- Table structure for table `wp_10_icl_flags`
--

DROP TABLE IF EXISTS `wp_10_icl_flags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_flags` (
  `id` int(11) NOT NULL auto_increment,
  `lang_code` varchar(10) NOT NULL,
  `flag` varchar(32) NOT NULL,
  `from_template` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `lang_code` (`lang_code`)
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_flags`
--

LOCK TABLES `wp_10_icl_flags` WRITE;
/*!40000 ALTER TABLE `wp_10_icl_flags` DISABLE KEYS */;
INSERT INTO `wp_10_icl_flags` VALUES (1,'ar','ar.png',0),(2,'bg','bg.png',0),(3,'bs','bs.png',0),(4,'ca','ca.png',0),(5,'cs','cs.png',0),(6,'cy','cy.png',0),(7,'da','da.png',0),(8,'de','de.png',0),(9,'el','el.png',0),(10,'en','en.png',0),(11,'eo','nil.png',0),(12,'es','es.png',0),(13,'et','et.png',0),(14,'eu','eu.png',0),(15,'fa','fa.png',0),(16,'fi','fi.png',0),(17,'fr','fr.png',0),(18,'ga','ga.png',0),(19,'he','he.png',0),(20,'hi','hi.png',0),(21,'hr','hr.png',0),(22,'hu','hu.png',0),(23,'hy','hy.png',0),(24,'id','id.png',0),(25,'is','is.png',0),(26,'it','it.png',0),(27,'ja','ja.png',0),(28,'ko','ko.png',0),(29,'ku','nil.png',0),(30,'la','la.png',0),(31,'lt','lt.png',0),(32,'lv','lv.png',0),(33,'mk','mk.png',0),(34,'mn','mn.png',0),(35,'mo','mo.png',0),(36,'mt','mt.png',0),(37,'nb','nb.png',0),(38,'ne','ne.png',0),(39,'nl','nl.png',0),(40,'pa','pa.png',0),(41,'pl','pl.png',0),(42,'pt-br','pt-br.png',0),(43,'pt-pt','pt-pt.png',0),(44,'qu','nil.png',0),(45,'ro','ro.png',0),(46,'ru','ru.png',0),(47,'sl','sl.png',0),(48,'sla','nil.png',0),(49,'so','so.png',0),(50,'sq','sq.png',0),(51,'sr','sr.png',0),(52,'sv','sv.png',0),(53,'ta','ta.png',0),(54,'th','th.png',0),(55,'tr','tr.png',0),(56,'uk','uk.png',0),(57,'ur','ur.png',0),(58,'uz','uz.png',0),(59,'vi','vi.png',0),(60,'yi','yi.png',0),(61,'zh-hans','zh-hans.png',0),(62,'zh-hant','zh-hant.png',0),(63,'zu','nil.png',0);
/*!40000 ALTER TABLE `wp_10_icl_flags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_icl_languages`
--

DROP TABLE IF EXISTS `wp_10_icl_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_languages` (
  `id` int(11) NOT NULL auto_increment,
  `code` varchar(7) NOT NULL,
  `english_name` varchar(128) NOT NULL,
  `major` tinyint(4) NOT NULL default '0',
  `active` tinyint(4) NOT NULL,
  `default_locale` varchar(8) default NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `code` (`code`),
  UNIQUE KEY `english_name` (`english_name`)
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_languages`
--

LOCK TABLES `wp_10_icl_languages` WRITE;
/*!40000 ALTER TABLE `wp_10_icl_languages` DISABLE KEYS */;
INSERT INTO `wp_10_icl_languages` VALUES (1,'en','English',1,0,'en_US'),(2,'es','Spanish',1,0,'es_ES'),(3,'de','German',1,0,'de_DE'),(4,'fr','French',1,0,'fr_FR'),(5,'ar','Arabic',0,0,'ar'),(6,'bs','Bosnian',0,0,''),(7,'bg','Bulgarian',0,0,'bg_BG'),(8,'ca','Catalan',0,0,'ca'),(9,'cs','Czech',0,0,'cs_CZ'),(10,'sla','Slavic',0,0,''),(11,'cy','Welsh',0,0,'cy'),(12,'da','Danish',1,0,'da_DK'),(13,'el','Greek',0,0,'el'),(14,'eo','Esperanto',0,0,'eo'),(15,'et','Estonian',0,0,'et'),(16,'eu','Basque',0,0,'eu'),(17,'fa','Persian',0,0,'fa_IR'),(18,'fi','Finnish',0,0,'fi_FI'),(19,'ga','Irish',0,0,''),(20,'he','Hebrew',0,0,'he_IL'),(21,'hi','Hindi',0,0,''),(22,'hr','Croatian',0,0,'hr'),(23,'hu','Hungarian',0,0,'hu_HU'),(24,'hy','Armenian',0,0,''),(25,'id','Indonesian',0,0,'id_ID'),(26,'is','Icelandic',0,0,'is_IS'),(27,'it','Italian',1,0,'it'),(28,'ja','Japanese',1,0,'ja'),(29,'ko','Korean',0,0,'ko_KR'),(30,'ku','Kurdish',0,0,'ku'),(31,'la','Latin',0,0,''),(32,'lv','Latvian',0,0,'lv'),(33,'lt','Lithuanian',0,0,'lt'),(34,'mk','Macedonian',0,0,'mk_MK'),(35,'mt','Maltese',0,0,''),(36,'mo','Moldavian',0,0,''),(37,'mn','Mongolian',0,0,''),(38,'ne','Nepali',0,0,''),(39,'nl','Dutch',1,0,'nl_NL'),(40,'nb','Norwegian Bokmål',0,0,'nb_NO'),(41,'pa','Punjabi',0,0,''),(42,'pl','Polish',0,0,'pl_PL'),(43,'pt-pt','Portuguese, Portugal',0,0,'pt_PT'),(44,'pt-br','Portuguese, Brazil',0,0,'pt_BR'),(45,'qu','Quechua',0,0,''),(46,'ro','Romanian',0,0,'ro_RO'),(47,'ru','Russian',1,0,'ru_RU'),(48,'sl','Slovenian',0,0,'sl_SI'),(49,'so','Somali',0,0,''),(50,'sq','Albanian',0,0,''),(51,'sr','Serbian',0,0,'sr_RS'),(52,'sv','Swedish',0,0,'sv_SE'),(53,'ta','Tamil',0,0,''),(54,'th','Thai',0,0,'th'),(55,'tr','Turkish',0,0,'tr'),(56,'uk','Ukrainian',0,0,'uk_UA'),(57,'ur','Urdu',0,0,''),(58,'uz','Uzbek',0,0,'uz_UZ'),(59,'vi','Vietnamese',0,0,'vi'),(60,'yi','Yiddish',0,0,''),(61,'zh-hans','Chinese (Simplified)',1,0,'zh_HK'),(62,'zu','Zulu',0,0,''),(63,'zh-hant','Chinese (Traditional)',1,0,'zh_CN');
/*!40000 ALTER TABLE `wp_10_icl_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_icl_languages_translations`
--

DROP TABLE IF EXISTS `wp_10_icl_languages_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_languages_translations` (
  `id` int(11) NOT NULL auto_increment,
  `language_code` varchar(7) NOT NULL,
  `display_language_code` varchar(7) NOT NULL,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `language_code` (`language_code`,`display_language_code`)
) ENGINE=MyISAM AUTO_INCREMENT=3970 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_languages_translations`
--

LOCK TABLES `wp_10_icl_languages_translations` WRITE;
/*!40000 ALTER TABLE `wp_10_icl_languages_translations` DISABLE KEYS */;
INSERT INTO `wp_10_icl_languages_translations` VALUES (1,'en','en','English'),(2,'en','es','Inglés'),(3,'en','de','Englisch'),(4,'en','fr','Anglais'),(5,'en','ar','الإنجليزية'),(6,'en','bs','English'),(7,'en','bg','English'),(8,'en','ca','English'),(9,'en','cs','English'),(10,'en','sla','Angličtina'),(11,'en','cy','English'),(12,'en','da','English'),(13,'en','el','Αγγλικα'),(14,'en','eo','English'),(15,'en','et','English'),(16,'en','eu','English'),(17,'en','fa','English'),(18,'en','fi','englanti'),(19,'en','ga','English'),(20,'en','he','אנגלית'),(21,'en','hi','English'),(22,'en','hr','English'),(23,'en','hu','angol'),(24,'en','hy','English'),(25,'en','id','English'),(26,'en','is','English'),(27,'en','it','Inglese'),(28,'en','ja','英語'),(29,'en','ko','영어'),(30,'en','ku','English'),(31,'en','la','English'),(32,'en','lv','English'),(33,'en','lt','English'),(34,'en','mk','English'),(35,'en','mt','English'),(36,'en','mo','English'),(37,'en','mn','English'),(38,'en','ne','English'),(39,'en','nl','Engels'),(40,'en','nb','English'),(41,'en','pa','English'),(42,'en','pl','angielski'),(43,'en','pt-pt','Inglês'),(44,'en','pt-br','Inglês'),(45,'en','qu','English'),(46,'en','ro','Engleză'),(47,'en','ru','Английский'),(48,'en','sl','English'),(49,'en','so','English'),(50,'en','sq','English'),(51,'en','sr','English'),(52,'en','sv','Engelska'),(53,'en','ta','English'),(54,'en','th','อังกฤษ'),(55,'en','tr','İngilizce'),(56,'en','uk','English'),(57,'en','ur','English'),(58,'en','uz','English'),(59,'en','vi','English'),(60,'en','yi','English'),(61,'en','zh-hans','英语'),(62,'en','zu','English'),(63,'en','zh-hant','英語'),(64,'es','en','Spanish'),(65,'es','es','Español'),(66,'es','de','Spanisch'),(67,'es','fr','Espagnol'),(68,'es','ar','الأسبانية'),(69,'es','bs','Spanish'),(70,'es','bg','Spanish'),(71,'es','ca','Spanish'),(72,'es','cs','Spanish'),(73,'es','sla','Španielčina'),(74,'es','cy','Spanish'),(75,'es','da','Spanish'),(76,'es','el','Ισπανικα'),(77,'es','eo','Spanish'),(78,'es','et','Spanish'),(79,'es','eu','Spanish'),(80,'es','fa','Spanish'),(81,'es','fi','espanja'),(82,'es','ga','Spanish'),(83,'es','he','ספרדית'),(84,'es','hi','Spanish'),(85,'es','hr','Spanish'),(86,'es','hu','spanyol'),(87,'es','hy','Spanish'),(88,'es','id','Spanish'),(89,'es','is','Spanish'),(90,'es','it','Spagnolo'),(91,'es','ja','スペイン語'),(92,'es','ko','스페인어'),(93,'es','ku','Spanish'),(94,'es','la','Spanish'),(95,'es','lv','Spanish'),(96,'es','lt','Spanish'),(97,'es','mk','Spanish'),(98,'es','mt','Spanish'),(99,'es','mo','Spanish'),(100,'es','mn','Spanish'),(101,'es','ne','Spanish'),(102,'es','nl','Spaans'),(103,'es','nb','Spanish'),(104,'es','pa','Spanish'),(105,'es','pl','hiszpański'),(106,'es','pt-pt','Espanhol'),(107,'es','pt-br','Espanhol'),(108,'es','qu','Spanish'),(109,'es','ro','Spaniolă'),(110,'es','ru','Испанский'),(111,'es','sl','Spanish'),(112,'es','so','Spanish'),(113,'es','sq','Spanish'),(114,'es','sr','Spanish'),(115,'es','sv','Spanska'),(116,'es','ta','Spanish'),(117,'es','th','สเปน'),(118,'es','tr','İspanyolca'),(119,'es','uk','Spanish'),(120,'es','ur','Spanish'),(121,'es','uz','Spanish'),(122,'es','vi','Spanish'),(123,'es','yi','Spanish'),(124,'es','zh-hans','西班牙语'),(125,'es','zu','Spanish'),(126,'es','zh-hant','西班牙語'),(127,'de','en','German'),(128,'de','es','Alemán'),(129,'de','de','Deutsch'),(130,'de','fr','Allemand'),(131,'de','ar','الألمانية'),(132,'de','bs','German'),(133,'de','bg','German'),(134,'de','ca','German'),(135,'de','cs','German'),(136,'de','sla','Nemčina'),(137,'de','cy','German'),(138,'de','da','German'),(139,'de','el','Γερμανικα'),(140,'de','eo','German'),(141,'de','et','German'),(142,'de','eu','German'),(143,'de','fa','German'),(144,'de','fi','saksa'),(145,'de','ga','German'),(146,'de','he','גרמנית'),(147,'de','hi','German'),(148,'de','hr','German'),(149,'de','hu','német'),(150,'de','hy','German'),(151,'de','id','German'),(152,'de','is','German'),(153,'de','it','Tedesco'),(154,'de','ja','ドイツ語'),(155,'de','ko','독어'),(156,'de','ku','German'),(157,'de','la','German'),(158,'de','lv','German'),(159,'de','lt','German'),(160,'de','mk','German'),(161,'de','mt','German'),(162,'de','mo','German'),(163,'de','mn','German'),(164,'de','ne','German'),(165,'de','nl','Duits'),(166,'de','nb','German'),(167,'de','pa','German'),(168,'de','pl','niemiecki'),(169,'de','pt-pt','Alemão'),(170,'de','pt-br','Alemão'),(171,'de','qu','German'),(172,'de','ro','Germană'),(173,'de','ru','Немецкий'),(174,'de','sl','German'),(175,'de','so','German'),(176,'de','sq','German'),(177,'de','sr','German'),(178,'de','sv','Tyska'),(179,'de','ta','German'),(180,'de','th','เยอรมัน'),(181,'de','tr','Almanca'),(182,'de','uk','German'),(183,'de','ur','German'),(184,'de','uz','German'),(185,'de','vi','German'),(186,'de','yi','German'),(187,'de','zh-hans','德语'),(188,'de','zu','German'),(189,'de','zh-hant','德語'),(190,'fr','en','French'),(191,'fr','es','Francés'),(192,'fr','de','Französisch'),(193,'fr','fr','Français'),(194,'fr','ar','الفرنسية'),(195,'fr','bs','French'),(196,'fr','bg','French'),(197,'fr','ca','French'),(198,'fr','cs','French'),(199,'fr','sla','Francúzština'),(200,'fr','cy','French'),(201,'fr','da','French'),(202,'fr','el','Γαλλικα'),(203,'fr','eo','French'),(204,'fr','et','French'),(205,'fr','eu','French'),(206,'fr','fa','French'),(207,'fr','fi','ranska'),(208,'fr','ga','French'),(209,'fr','he','צרפתית'),(210,'fr','hi','French'),(211,'fr','hr','French'),(212,'fr','hu','francia'),(213,'fr','hy','French'),(214,'fr','id','French'),(215,'fr','is','French'),(216,'fr','it','Francese'),(217,'fr','ja','フランス語'),(218,'fr','ko','불어'),(219,'fr','ku','French'),(220,'fr','la','French'),(221,'fr','lv','French'),(222,'fr','lt','French'),(223,'fr','mk','French'),(224,'fr','mt','French'),(225,'fr','mo','French'),(226,'fr','mn','French'),(227,'fr','ne','French'),(228,'fr','nl','Frans'),(229,'fr','nb','French'),(230,'fr','pa','French'),(231,'fr','pl','francuski'),(232,'fr','pt-pt','Francês'),(233,'fr','pt-br','Francês'),(234,'fr','qu','French'),(235,'fr','ro','Franceză'),(236,'fr','ru','Французский'),(237,'fr','sl','French'),(238,'fr','so','French'),(239,'fr','sq','French'),(240,'fr','sr','French'),(241,'fr','sv','Franska'),(242,'fr','ta','French'),(243,'fr','th','ฝรั่งเศส'),(244,'fr','tr','Fransızca'),(245,'fr','uk','French'),(246,'fr','ur','French'),(247,'fr','uz','French'),(248,'fr','vi','French'),(249,'fr','yi','French'),(250,'fr','zh-hans','法语'),(251,'fr','zu','French'),(252,'fr','zh-hant','法語'),(253,'ar','en','Arabic'),(254,'ar','es','Árabe'),(255,'ar','de','Arabisch'),(256,'ar','fr','Arabe'),(257,'ar','ar','العربية'),(258,'ar','bs','Arabic'),(259,'ar','bg','Arabic'),(260,'ar','ca','Arabic'),(261,'ar','cs','Arabic'),(262,'ar','sla','Arabčina'),(263,'ar','cy','Arabic'),(264,'ar','da','Arabic'),(265,'ar','el','Αραβικα'),(266,'ar','eo','Arabic'),(267,'ar','et','Arabic'),(268,'ar','eu','Arabic'),(269,'ar','fa','Arabic'),(270,'ar','fi','arabia'),(271,'ar','ga','Arabic'),(272,'ar','he','ערבית'),(273,'ar','hi','Arabic'),(274,'ar','hr','Arabic'),(275,'ar','hu','arab'),(276,'ar','hy','Arabic'),(277,'ar','id','Arabic'),(278,'ar','is','Arabic'),(279,'ar','it','Arabo'),(280,'ar','ja','アラビア語'),(281,'ar','ko','아랍어'),(282,'ar','ku','Arabic'),(283,'ar','la','Arabic'),(284,'ar','lv','Arabic'),(285,'ar','lt','Arabic'),(286,'ar','mk','Arabic'),(287,'ar','mt','Arabic'),(288,'ar','mo','Arabic'),(289,'ar','mn','Arabic'),(290,'ar','ne','Arabic'),(291,'ar','nl','Arabisch'),(292,'ar','nb','Arabic'),(293,'ar','pa','Arabic'),(294,'ar','pl','arabski'),(295,'ar','pt-pt','Árabe'),(296,'ar','pt-br','Árabe'),(297,'ar','qu','Arabic'),(298,'ar','ro','Arabică'),(299,'ar','ru','Арабский'),(300,'ar','sl','Arabic'),(301,'ar','so','Arabic'),(302,'ar','sq','Arabic'),(303,'ar','sr','Arabic'),(304,'ar','sv','Arabiska'),(305,'ar','ta','Arabic'),(306,'ar','th','อารบิก'),(307,'ar','tr','Arapça'),(308,'ar','uk','Arabic'),(309,'ar','ur','Arabic'),(310,'ar','uz','Arabic'),(311,'ar','vi','Arabic'),(312,'ar','yi','Arabic'),(313,'ar','zh-hans','阿拉伯语'),(314,'ar','zu','Arabic'),(315,'ar','zh-hant','阿拉伯語'),(316,'bs','en','Bosnian'),(317,'bs','es','Bosnio'),(318,'bs','de','Bosnisch'),(319,'bs','fr','Bosnien'),(320,'bs','ar','البوسنية'),(321,'bs','bs','Bosnian'),(322,'bs','bg','Bosnian'),(323,'bs','ca','Bosnian'),(324,'bs','cs','Bosnian'),(325,'bs','sla','Bosniačtina'),(326,'bs','cy','Bosnian'),(327,'bs','da','Bosnian'),(328,'bs','el','Βοσνιακα'),(329,'bs','eo','Bosnian'),(330,'bs','et','Bosnian'),(331,'bs','eu','Bosnian'),(332,'bs','fa','Bosnian'),(333,'bs','fi','bosnia'),(334,'bs','ga','Bosnian'),(335,'bs','he','Bosnian'),(336,'bs','hi','Bosnian'),(337,'bs','hr','Bosnian'),(338,'bs','hu','bosnyák'),(339,'bs','hy','Bosnian'),(340,'bs','id','Bosnian'),(341,'bs','is','Bosnian'),(342,'bs','it','Bosniaco'),(343,'bs','ja','ボスニア語'),(344,'bs','ko','보즈니아어'),(345,'bs','ku','Bosnian'),(346,'bs','la','Bosnian'),(347,'bs','lv','Bosnian'),(348,'bs','lt','Bosnian'),(349,'bs','mk','Bosnian'),(350,'bs','mt','Bosnian'),(351,'bs','mo','Bosnian'),(352,'bs','mn','Bosnian'),(353,'bs','ne','Bosnian'),(354,'bs','nl','Bosnisch'),(355,'bs','nb','Bosnian'),(356,'bs','pa','Bosnian'),(357,'bs','pl','bośniacki'),(358,'bs','pt-pt','Bósnio'),(359,'bs','pt-br','Bósnio'),(360,'bs','qu','Bosnian'),(361,'bs','ro','Bosniacă'),(362,'bs','ru','Боснийский'),(363,'bs','sl','Bosnian'),(364,'bs','so','Bosnian'),(365,'bs','sq','Bosnian'),(366,'bs','sr','Bosnian'),(367,'bs','sv','Bosniska'),(368,'bs','ta','Bosnian'),(369,'bs','th','บอสเนียน'),(370,'bs','tr','Boşnakça'),(371,'bs','uk','Bosnian'),(372,'bs','ur','Bosnian'),(373,'bs','uz','Bosnian'),(374,'bs','vi','Bosnian'),(375,'bs','yi','Bosnian'),(376,'bs','zh-hans','波斯尼亚语'),(377,'bs','zu','Bosnian'),(378,'bs','zh-hant','波士尼亞語'),(379,'bg','en','Bulgarian'),(380,'bg','es','Búlgaro'),(381,'bg','de','Bulgarisch'),(382,'bg','fr','Bulgare'),(383,'bg','ar','البلغارية'),(384,'bg','bs','Bulgarian'),(385,'bg','bg','Bulgarian'),(386,'bg','ca','Bulgarian'),(387,'bg','cs','Bulgarian'),(388,'bg','sla','Bulharčina'),(389,'bg','cy','Bulgarian'),(390,'bg','da','Bulgarian'),(391,'bg','el','Βουλγαρικα'),(392,'bg','eo','Bulgarian'),(393,'bg','et','Bulgarian'),(394,'bg','eu','Bulgarian'),(395,'bg','fa','Bulgarian'),(396,'bg','fi','bulgaria'),(397,'bg','ga','Bulgarian'),(398,'bg','he','Bulgarian'),(399,'bg','hi','Bulgarian'),(400,'bg','hr','Bulgarian'),(401,'bg','hu','bolgár'),(402,'bg','hy','Bulgarian'),(403,'bg','id','Bulgarian'),(404,'bg','is','Bulgarian'),(405,'bg','it','Bulgaro'),(406,'bg','ja','ブルガリア語'),(407,'bg','ko','불가리아어'),(408,'bg','ku','Bulgarian'),(409,'bg','la','Bulgarian'),(410,'bg','lv','Bulgarian'),(411,'bg','lt','Bulgarian'),(412,'bg','mk','Bulgarian'),(413,'bg','mt','Bulgarian'),(414,'bg','mo','Bulgarian'),(415,'bg','mn','Bulgarian'),(416,'bg','ne','Bulgarian'),(417,'bg','nl','Bulgaars'),(418,'bg','nb','Bulgarian'),(419,'bg','pa','Bulgarian'),(420,'bg','pl','bułgarski'),(421,'bg','pt-pt','Búlgaro'),(422,'bg','pt-br','Búlgaro'),(423,'bg','qu','Bulgarian'),(424,'bg','ro','Bulgară'),(425,'bg','ru','Болгарский'),(426,'bg','sl','Bulgarian'),(427,'bg','so','Bulgarian'),(428,'bg','sq','Bulgarian'),(429,'bg','sr','Bulgarian'),(430,'bg','sv','Bulgariska'),(431,'bg','ta','Bulgarian'),(432,'bg','th','บัลแกเรียน'),(433,'bg','tr','Bulgarca'),(434,'bg','uk','Bulgarian'),(435,'bg','ur','Bulgarian'),(436,'bg','uz','Bulgarian'),(437,'bg','vi','Bulgarian'),(438,'bg','yi','Bulgarian'),(439,'bg','zh-hans','保加利亚语'),(440,'bg','zu','Bulgarian'),(441,'bg','zh-hant','保加利亞語'),(442,'ca','en','Catalan'),(443,'ca','es','Catalán'),(444,'ca','de','Katalanisch'),(445,'ca','fr','Catalan'),(446,'ca','ar','الكاتالوينية'),(447,'ca','bs','Catalan'),(448,'ca','bg','Catalan'),(449,'ca','ca','Català'),(450,'ca','cs','Catalan'),(451,'ca','sla','Katalánčina'),(452,'ca','cy','Catalan'),(453,'ca','da','Catalan'),(454,'ca','el','Καταλανικα'),(455,'ca','eo','Catalan'),(456,'ca','et','Catalan'),(457,'ca','eu','Catalan'),(458,'ca','fa','Catalan'),(459,'ca','fi','katalaani'),(460,'ca','ga','Catalan'),(461,'ca','he','Catalan'),(462,'ca','hi','Catalan'),(463,'ca','hr','Catalan'),(464,'ca','hu','katalán'),(465,'ca','hy','Catalan'),(466,'ca','id','Catalan'),(467,'ca','is','Catalan'),(468,'ca','it','Catalano'),(469,'ca','ja','カタルーニャ語'),(470,'ca','ko','카탈로니아어'),(471,'ca','ku','Catalan'),(472,'ca','la','Catalan'),(473,'ca','lv','Catalan'),(474,'ca','lt','Catalan'),(475,'ca','mk','Catalan'),(476,'ca','mt','Catalan'),(477,'ca','mo','Catalan'),(478,'ca','mn','Catalan'),(479,'ca','ne','Catalan'),(480,'ca','nl','Catalaans'),(481,'ca','nb','Catalan'),(482,'ca','pa','Catalan'),(483,'ca','pl','kataloński'),(484,'ca','pt-pt','Catalão'),(485,'ca','pt-br','Catalão'),(486,'ca','qu','Catalan'),(487,'ca','ro','Catalană'),(488,'ca','ru','Каталанский'),(489,'ca','sl','Catalan'),(490,'ca','so','Catalan'),(491,'ca','sq','Catalan'),(492,'ca','sr','Catalan'),(493,'ca','sv','Katalanska'),(494,'ca','ta','Catalan'),(495,'ca','th','คะตะลาน'),(496,'ca','tr','Katalan dili'),(497,'ca','uk','Catalan'),(498,'ca','ur','Catalan'),(499,'ca','uz','Catalan'),(500,'ca','vi','Catalan'),(501,'ca','yi','Catalan'),(502,'ca','zh-hans','加泰罗尼亚语'),(503,'ca','zu','Catalan'),(504,'ca','zh-hant','加泰羅尼亞語'),(505,'cs','en','Czech'),(506,'cs','es','Checo'),(507,'cs','de','Tschechisch'),(508,'cs','fr','Tchèque'),(509,'cs','ar','التشيكية'),(510,'cs','bs','Czech'),(511,'cs','bg','Czech'),(512,'cs','ca','Czech'),(513,'cs','cs','Čeština'),(514,'cs','sla','Čeština'),(515,'cs','cy','Czech'),(516,'cs','da','Czech'),(517,'cs','el','Τσεχικη'),(518,'cs','eo','Czech'),(519,'cs','et','Czech'),(520,'cs','eu','Czech'),(521,'cs','fa','Czech'),(522,'cs','fi','tsekki'),(523,'cs','ga','Czech'),(524,'cs','he','Czech'),(525,'cs','hi','Czech'),(526,'cs','hr','Czech'),(527,'cs','hu','cseh'),(528,'cs','hy','Czech'),(529,'cs','id','Czech'),(530,'cs','is','Czech'),(531,'cs','it','Ceco'),(532,'cs','ja','チェコ語'),(533,'cs','ko','체코슬로바키아어'),(534,'cs','ku','Czech'),(535,'cs','la','Czech'),(536,'cs','lv','Czech'),(537,'cs','lt','Czech'),(538,'cs','mk','Czech'),(539,'cs','mt','Czech'),(540,'cs','mo','Czech'),(541,'cs','mn','Czech'),(542,'cs','ne','Czech'),(543,'cs','nl','Tsjechisch'),(544,'cs','nb','Czech'),(545,'cs','pa','Czech'),(546,'cs','pl','czeski'),(547,'cs','pt-pt','Checa'),(548,'cs','pt-br','Checa'),(549,'cs','qu','Czech'),(550,'cs','ro','Cehă'),(551,'cs','ru','Чешский'),(552,'cs','sl','Czech'),(553,'cs','so','Czech'),(554,'cs','sq','Czech'),(555,'cs','sr','Czech'),(556,'cs','sv','Tjeckiska'),(557,'cs','ta','Czech'),(558,'cs','th','เช็ก'),(559,'cs','tr','Çekçe'),(560,'cs','uk','Czech'),(561,'cs','ur','Czech'),(562,'cs','uz','Czech'),(563,'cs','vi','Czech'),(564,'cs','yi','Czech'),(565,'cs','zh-hans','捷克语'),(566,'cs','zu','Czech'),(567,'cs','zh-hant','捷克語'),(568,'sla','en','Slavic'),(569,'sla','es','Eslavo'),(570,'sla','de','Slawisch'),(571,'sla','fr','Slave'),(572,'sla','ar','السلافية'),(573,'sla','bs','Slavic'),(574,'sla','bg','Slavic'),(575,'sla','ca','Slavic'),(576,'sla','cs','Slavic'),(577,'sla','sla','Slávčina'),(578,'sla','cy','Slavic'),(579,'sla','da','Slavic'),(580,'sla','el','Σλαβικη'),(581,'sla','eo','Slavic'),(582,'sla','et','Slavic'),(583,'sla','eu','Slavic'),(584,'sla','fa','Slavic'),(585,'sla','fi','slaavi'),(586,'sla','ga','Slavic'),(587,'sla','he','Slavic'),(588,'sla','hi','Slavic'),(589,'sla','hr','Slavic'),(590,'sla','hu','szláv'),(591,'sla','hy','Slavic'),(592,'sla','id','Slavic'),(593,'sla','is','Slavic'),(594,'sla','it','Slavo'),(595,'sla','ja','スラヴ語派'),(596,'sla','ko','슬라브어'),(597,'sla','ku','Slavic'),(598,'sla','la','Slavic'),(599,'sla','lv','Slavic'),(600,'sla','lt','Slavic'),(601,'sla','mk','Slavic'),(602,'sla','mt','Slavic'),(603,'sla','mo','Slavic'),(604,'sla','mn','Slavic'),(605,'sla','ne','Slavic'),(606,'sla','nl','Slavisch'),(607,'sla','nb','Slavic'),(608,'sla','pa','Slavic'),(609,'sla','pl','słowiański'),(610,'sla','pt-pt','Eslava'),(611,'sla','pt-br','Eslava'),(612,'sla','qu','Slavic'),(613,'sla','ro','Slavă'),(614,'sla','ru','Славянский'),(615,'sla','sl','Slavic'),(616,'sla','so','Slavic'),(617,'sla','sq','Slavic'),(618,'sla','sr','Slavic'),(619,'sla','sv','Slavisk'),(620,'sla','ta','Slavic'),(621,'sla','th','สลาวิก'),(622,'sla','tr','Slav dili'),(623,'sla','uk','Slavic'),(624,'sla','ur','Slavic'),(625,'sla','uz','Slavic'),(626,'sla','vi','Slavic'),(627,'sla','yi','Slavic'),(628,'sla','zh-hans','斯拉夫语'),(629,'sla','zu','Slavic'),(630,'sla','zh-hant','斯拉夫語'),(631,'cy','en','Welsh'),(632,'cy','es','Galés'),(633,'cy','de','Walisisch'),(634,'cy','fr','Gallois'),(635,'cy','ar','الولزية'),(636,'cy','bs','Welsh'),(637,'cy','bg','Welsh'),(638,'cy','ca','Welsh'),(639,'cy','cs','Welsh'),(640,'cy','sla','Welština'),(641,'cy','cy','Cymraeg'),(642,'cy','da','Welsh'),(643,'cy','el','Welsh'),(644,'cy','eo','Welsh'),(645,'cy','et','Welsh'),(646,'cy','eu','Welsh'),(647,'cy','fa','Welsh'),(648,'cy','fi','kymri'),(649,'cy','ga','Welsh'),(650,'cy','he','Welsh'),(651,'cy','hi','Welsh'),(652,'cy','hr','Welsh'),(653,'cy','hu','vels'),(654,'cy','hy','Welsh'),(655,'cy','id','Welsh'),(656,'cy','is','Welsh'),(657,'cy','it','Gallese'),(658,'cy','ja','ウェールズ語'),(659,'cy','ko','웨일즈어'),(660,'cy','ku','Welsh'),(661,'cy','la','Welsh'),(662,'cy','lv','Welsh'),(663,'cy','lt','Welsh'),(664,'cy','mk','Welsh'),(665,'cy','mt','Welsh'),(666,'cy','mo','Welsh'),(667,'cy','mn','Welsh'),(668,'cy','ne','Welsh'),(669,'cy','nl','Welsh'),(670,'cy','nb','Welsh'),(671,'cy','pa','Welsh'),(672,'cy','pl','walijski'),(673,'cy','pt-pt','Welsh'),(674,'cy','pt-br','Welsh'),(675,'cy','qu','Welsh'),(676,'cy','ro','Galeză'),(677,'cy','ru','Валлийский'),(678,'cy','sl','Welsh'),(679,'cy','so','Welsh'),(680,'cy','sq','Welsh'),(681,'cy','sr','Welsh'),(682,'cy','sv','Walesiska'),(683,'cy','ta','Welsh'),(684,'cy','th','เวลช์'),(685,'cy','tr','Galce'),(686,'cy','uk','Welsh'),(687,'cy','ur','Welsh'),(688,'cy','uz','Welsh'),(689,'cy','vi','Welsh'),(690,'cy','yi','Welsh'),(691,'cy','zh-hans','威尔士语'),(692,'cy','zu','Welsh'),(693,'cy','zh-hant','威爾士語'),(694,'da','en','Danish'),(695,'da','es','Danés'),(696,'da','de','Dänisch'),(697,'da','fr','Danois'),(698,'da','ar','الدانماركية'),(699,'da','bs','Danish'),(700,'da','bg','Danish'),(701,'da','ca','Danish'),(702,'da','cs','Danish'),(703,'da','sla','Dánčina'),(704,'da','cy','Danish'),(705,'da','da','Dansk'),(706,'da','el','Δανεζικα'),(707,'da','eo','Danish'),(708,'da','et','Danish'),(709,'da','eu','Danish'),(710,'da','fa','Danish'),(711,'da','fi','tanska'),(712,'da','ga','Danish'),(713,'da','he','דנית'),(714,'da','hi','Danish'),(715,'da','hr','Danish'),(716,'da','hu','dán'),(717,'da','hy','Danish'),(718,'da','id','Danish'),(719,'da','is','Danish'),(720,'da','it','Danese'),(721,'da','ja','デンマーク語'),(722,'da','ko','덴마크어'),(723,'da','ku','Danish'),(724,'da','la','Danish'),(725,'da','lv','Danish'),(726,'da','lt','Danish'),(727,'da','mk','Danish'),(728,'da','mt','Danish'),(729,'da','mo','Danish'),(730,'da','mn','Danish'),(731,'da','ne','Danish'),(732,'da','nl','Deens'),(733,'da','nb','Danish'),(734,'da','pa','Danish'),(735,'da','pl','duński'),(736,'da','pt-pt','Dinamarquês'),(737,'da','pt-br','Dinamarquês'),(738,'da','qu','Danish'),(739,'da','ro','Daneză'),(740,'da','ru','Датский'),(741,'da','sl','Danish'),(742,'da','so','Danish'),(743,'da','sq','Danish'),(744,'da','sr','Danish'),(745,'da','sv','Danska'),(746,'da','ta','Danish'),(747,'da','th','เดนมาร์ก'),(748,'da','tr','Danca'),(749,'da','uk','Danish'),(750,'da','ur','Danish'),(751,'da','uz','Danish'),(752,'da','vi','Danish'),(753,'da','yi','Danish'),(754,'da','zh-hans','丹麦语'),(755,'da','zu','Danish'),(756,'da','zh-hant','丹麥語'),(757,'el','en','Greek'),(758,'el','es','Griego'),(759,'el','de','Griechisch'),(760,'el','fr','Grec moderne'),(761,'el','ar','اليونانية'),(762,'el','bs','Greek'),(763,'el','bg','Greek'),(764,'el','ca','Greek'),(765,'el','cs','Greek'),(766,'el','sla','Gréčtina'),(767,'el','cy','Greek'),(768,'el','da','Greek'),(769,'el','el','Ελληνικα'),(770,'el','eo','Greek'),(771,'el','et','Greek'),(772,'el','eu','Greek'),(773,'el','fa','Greek'),(774,'el','fi','kreikka'),(775,'el','ga','Greek'),(776,'el','he','יוונית'),(777,'el','hi','Greek'),(778,'el','hr','Greek'),(779,'el','hu','görög'),(780,'el','hy','Greek'),(781,'el','id','Greek'),(782,'el','is','Greek'),(783,'el','it','Greco'),(784,'el','ja','ギリシア語'),(785,'el','ko','그리스어'),(786,'el','ku','Greek'),(787,'el','la','Greek'),(788,'el','lv','Greek'),(789,'el','lt','Greek'),(790,'el','mk','Greek'),(791,'el','mt','Greek'),(792,'el','mo','Greek'),(793,'el','mn','Greek'),(794,'el','ne','Greek'),(795,'el','nl','Grieks'),(796,'el','nb','Greek'),(797,'el','pa','Greek'),(798,'el','pl','grecki'),(799,'el','pt-pt','Grego'),(800,'el','pt-br','Grego'),(801,'el','qu','Greek'),(802,'el','ro','Greacă'),(803,'el','ru','Греческий'),(804,'el','sl','Greek'),(805,'el','so','Greek'),(806,'el','sq','Greek'),(807,'el','sr','Greek'),(808,'el','sv','Grekiska'),(809,'el','ta','Greek'),(810,'el','th','กรีก'),(811,'el','tr','Yunanca'),(812,'el','uk','Greek'),(813,'el','ur','Greek'),(814,'el','uz','Greek'),(815,'el','vi','Greek'),(816,'el','yi','Greek'),(817,'el','zh-hans','希腊语'),(818,'el','zu','Greek'),(819,'el','zh-hant','希臘語'),(820,'eo','en','Esperanto'),(821,'eo','es','Esperanto'),(822,'eo','de','Esperanto'),(823,'eo','fr','Espéranto'),(824,'eo','ar','الاسبرانتو '),(825,'eo','bs','Esperanto'),(826,'eo','bg','Esperanto'),(827,'eo','ca','Esperanto'),(828,'eo','cs','Esperanto'),(829,'eo','sla','Esperanto'),(830,'eo','cy','Esperanto'),(831,'eo','da','Esperanto'),(832,'eo','el','Εσπεραντο'),(833,'eo','eo','Esperanto'),(834,'eo','et','Esperanto'),(835,'eo','eu','Esperanto'),(836,'eo','fa','Esperanto'),(837,'eo','fi','esperanto'),(838,'eo','ga','Esperanto'),(839,'eo','he','Esperanto'),(840,'eo','hi','Esperanto'),(841,'eo','hr','Esperanto'),(842,'eo','hu','eszperantó'),(843,'eo','hy','Esperanto'),(844,'eo','id','Esperanto'),(845,'eo','is','Esperanto'),(846,'eo','it','Esperanto'),(847,'eo','ja','エスペラント語'),(848,'eo','ko','에스페란토어'),(849,'eo','ku','Esperanto'),(850,'eo','la','Esperanto'),(851,'eo','lv','Esperanto'),(852,'eo','lt','Esperanto'),(853,'eo','mk','Esperanto'),(854,'eo','mt','Esperanto'),(855,'eo','mo','Esperanto'),(856,'eo','mn','Esperanto'),(857,'eo','ne','Esperanto'),(858,'eo','nl','Esperanto'),(859,'eo','nb','Esperanto'),(860,'eo','pa','Esperanto'),(861,'eo','pl','esperanto'),(862,'eo','pt-pt','Esperanto'),(863,'eo','pt-br','Esperanto'),(864,'eo','qu','Esperanto'),(865,'eo','ro','Esperanto'),(866,'eo','ru','Эсперанто'),(867,'eo','sl','Esperanto'),(868,'eo','so','Esperanto'),(869,'eo','sq','Esperanto'),(870,'eo','sr','Esperanto'),(871,'eo','sv','Esperanto'),(872,'eo','ta','Esperanto'),(873,'eo','th','เอสเปอรันโต'),(874,'eo','tr','Esperanto'),(875,'eo','uk','Esperanto'),(876,'eo','ur','Esperanto'),(877,'eo','uz','Esperanto'),(878,'eo','vi','Esperanto'),(879,'eo','yi','Esperanto'),(880,'eo','zh-hans','世界语'),(881,'eo','zu','Esperanto'),(882,'eo','zh-hant','世界語'),(883,'et','en','Estonian'),(884,'et','es','Estonio'),(885,'et','de','Estnisch'),(886,'et','fr','Estonien'),(887,'et','ar','الأستونية'),(888,'et','bs','Estonian'),(889,'et','bg','Estonian'),(890,'et','ca','Estonian'),(891,'et','cs','Estonian'),(892,'et','sla','Estónčina'),(893,'et','cy','Estonian'),(894,'et','da','Estonian'),(895,'et','el','Εσθονικα'),(896,'et','eo','Estonian'),(897,'et','et','Eesti'),(898,'et','eu','Estonian'),(899,'et','fa','Estonian'),(900,'et','fi','eesti'),(901,'et','ga','Estonian'),(902,'et','he','Estonian'),(903,'et','hi','Estonian'),(904,'et','hr','Estonian'),(905,'et','hu','észt'),(906,'et','hy','Estonian'),(907,'et','id','Estonian'),(908,'et','is','Estonian'),(909,'et','it','Estone'),(910,'et','ja','エストニア語'),(911,'et','ko','에스토니아어'),(912,'et','ku','Estonian'),(913,'et','la','Estonian'),(914,'et','lv','Estonian'),(915,'et','lt','Estonian'),(916,'et','mk','Estonian'),(917,'et','mt','Estonian'),(918,'et','mo','Estonian'),(919,'et','mn','Estonian'),(920,'et','ne','Estonian'),(921,'et','nl','Ests'),(922,'et','nb','Estonian'),(923,'et','pa','Estonian'),(924,'et','pl','estoński'),(925,'et','pt-pt','Estoniano'),(926,'et','pt-br','Estoniano'),(927,'et','qu','Estonian'),(928,'et','ro','Estoniană'),(929,'et','ru','Эстонский'),(930,'et','sl','Estonian'),(931,'et','so','Estonian'),(932,'et','sq','Estonian'),(933,'et','sr','Estonian'),(934,'et','sv','Estniska'),(935,'et','ta','Estonian'),(936,'et','th','เอสโตเนียน'),(937,'et','tr','Estonya dili'),(938,'et','uk','Estonian'),(939,'et','ur','Estonian'),(940,'et','uz','Estonian'),(941,'et','vi','Estonian'),(942,'et','yi','Estonian'),(943,'et','zh-hans','爱沙尼亚语'),(944,'et','zu','Estonian'),(945,'et','zh-hant','愛沙尼亞語'),(946,'eu','en','Basque'),(947,'eu','es','Vasco'),(948,'eu','de','Baskisch'),(949,'eu','fr','Basque'),(950,'eu','ar','لغة الباسك'),(951,'eu','bs','Basque'),(952,'eu','bg','Basque'),(953,'eu','ca','Basque'),(954,'eu','cs','Basque'),(955,'eu','sla','Baskičtina'),(956,'eu','cy','Basque'),(957,'eu','da','Basque'),(958,'eu','el','Βασκικα'),(959,'eu','eo','Basque'),(960,'eu','et','Basque'),(961,'eu','eu','Basque'),(962,'eu','fa','Basque'),(963,'eu','fi','baski'),(964,'eu','ga','Basque'),(965,'eu','he','Basque'),(966,'eu','hi','Basque'),(967,'eu','hr','Basque'),(968,'eu','hu','baszk'),(969,'eu','hy','Basque'),(970,'eu','id','Basque'),(971,'eu','is','Basque'),(972,'eu','it','Basco'),(973,'eu','ja','バスク語'),(974,'eu','ko','바스크어'),(975,'eu','ku','Basque'),(976,'eu','la','Basque'),(977,'eu','lv','Basque'),(978,'eu','lt','Basque'),(979,'eu','mk','Basque'),(980,'eu','mt','Basque'),(981,'eu','mo','Basque'),(982,'eu','mn','Basque'),(983,'eu','ne','Basque'),(984,'eu','nl','Baskisch'),(985,'eu','nb','Basque'),(986,'eu','pa','Basque'),(987,'eu','pl','baskijski'),(988,'eu','pt-pt','Basco'),(989,'eu','pt-br','Basco'),(990,'eu','qu','Basque'),(991,'eu','ro','Bască'),(992,'eu','ru','Баскский'),(993,'eu','sl','Basque'),(994,'eu','so','Basque'),(995,'eu','sq','Basque'),(996,'eu','sr','Basque'),(997,'eu','sv','Baskiska'),(998,'eu','ta','Basque'),(999,'eu','th','บาสค์'),(1000,'eu','tr','Bask dili'),(1001,'eu','uk','Basque'),(1002,'eu','ur','Basque'),(1003,'eu','uz','Basque'),(1004,'eu','vi','Basque'),(1005,'eu','yi','Basque'),(1006,'eu','zh-hans','巴斯克语'),(1007,'eu','zu','Basque'),(1008,'eu','zh-hant','巴斯克語'),(1009,'fa','en','Persian'),(1010,'fa','es','Persa'),(1011,'fa','de','Persisch'),(1012,'fa','fr','Perse'),(1013,'fa','ar','الفارسية'),(1014,'fa','bs','Persian'),(1015,'fa','bg','Persian'),(1016,'fa','ca','Persian'),(1017,'fa','cs','Persian'),(1018,'fa','sla','Perzština'),(1019,'fa','cy','Persian'),(1020,'fa','da','Persian'),(1021,'fa','el','Περσικος'),(1022,'fa','eo','Persian'),(1023,'fa','et','Persian'),(1024,'fa','eu','Persian'),(1025,'fa','fa','پارسی'),(1026,'fa','fi','persia'),(1027,'fa','ga','Persian'),(1028,'fa','he','פרסית'),(1029,'fa','hi','Persian'),(1030,'fa','hr','Persian'),(1031,'fa','hu','perzsa'),(1032,'fa','hy','Persian'),(1033,'fa','id','Persian'),(1034,'fa','is','Persian'),(1035,'fa','it','Persiano'),(1036,'fa','ja','ペルシア語'),(1037,'fa','ko','페르시아어'),(1038,'fa','ku','Persian'),(1039,'fa','la','Persian'),(1040,'fa','lv','Persian'),(1041,'fa','lt','Persian'),(1042,'fa','mk','Persian'),(1043,'fa','mt','Persian'),(1044,'fa','mo','Persian'),(1045,'fa','mn','Persian'),(1046,'fa','ne','Persian'),(1047,'fa','nl','Perzisch'),(1048,'fa','nb','Persian'),(1049,'fa','pa','Persian'),(1050,'fa','pl','perski'),(1051,'fa','pt-pt','Persa'),(1052,'fa','pt-br','Persa'),(1053,'fa','qu','Persian'),(1054,'fa','ro','Persană'),(1055,'fa','ru','Персидский'),(1056,'fa','sl','Persian'),(1057,'fa','so','Persian'),(1058,'fa','sq','Persian'),(1059,'fa','sr','Persian'),(1060,'fa','sv','Persiska'),(1061,'fa','ta','Persian'),(1062,'fa','th','เปอร์เซียน'),(1063,'fa','tr','Farsça'),(1064,'fa','uk','Persian'),(1065,'fa','ur','Persian'),(1066,'fa','uz','Persian'),(1067,'fa','vi','Persian'),(1068,'fa','yi','Persian'),(1069,'fa','zh-hans','波斯语'),(1070,'fa','zu','Persian'),(1071,'fa','zh-hant','波斯語'),(1072,'fi','en','Finnish'),(1073,'fi','es','Finlandés'),(1074,'fi','de','Finnisch'),(1075,'fi','fr','Finnois'),(1076,'fi','ar','الفنلندية'),(1077,'fi','bs','Finnish'),(1078,'fi','bg','Finnish'),(1079,'fi','ca','Finnish'),(1080,'fi','cs','Finnish'),(1081,'fi','sla','Fínština'),(1082,'fi','cy','Finnish'),(1083,'fi','da','Finnish'),(1084,'fi','el','Φινλανδικη'),(1085,'fi','eo','Finnish'),(1086,'fi','et','Finnish'),(1087,'fi','eu','Finnish'),(1088,'fi','fa','Finnish'),(1089,'fi','fi','suomi'),(1090,'fi','ga','Finnish'),(1091,'fi','he','פינית'),(1092,'fi','hi','Finnish'),(1093,'fi','hr','Finnish'),(1094,'fi','hu','finn'),(1095,'fi','hy','Finnish'),(1096,'fi','id','Finnish'),(1097,'fi','is','Finnish'),(1098,'fi','it','Finlandese'),(1099,'fi','ja','フィンランド語'),(1100,'fi','ko','핀란드어'),(1101,'fi','ku','Finnish'),(1102,'fi','la','Finnish'),(1103,'fi','lv','Finnish'),(1104,'fi','lt','Finnish'),(1105,'fi','mk','Finnish'),(1106,'fi','mt','Finnish'),(1107,'fi','mo','Finnish'),(1108,'fi','mn','Finnish'),(1109,'fi','ne','Finnish'),(1110,'fi','nl','Fins'),(1111,'fi','nb','Finnish'),(1112,'fi','pa','Finnish'),(1113,'fi','pl','fiński'),(1114,'fi','pt-pt','Finlandês'),(1115,'fi','pt-br','Finlandês'),(1116,'fi','qu','Finnish'),(1117,'fi','ro','Finlandeză'),(1118,'fi','ru','Финский'),(1119,'fi','sl','Finnish'),(1120,'fi','so','Finnish'),(1121,'fi','sq','Finnish'),(1122,'fi','sr','Finnish'),(1123,'fi','sv','Finska'),(1124,'fi','ta','Finnish'),(1125,'fi','th','ฟินนิช'),(1126,'fi','tr','Fince'),(1127,'fi','uk','Finnish'),(1128,'fi','ur','Finnish'),(1129,'fi','uz','Finnish'),(1130,'fi','vi','Finnish'),(1131,'fi','yi','Finnish'),(1132,'fi','zh-hans','芬兰语'),(1133,'fi','zu','Finnish'),(1134,'fi','zh-hant','芬蘭語'),(1135,'ga','en','Irish'),(1136,'ga','es','Irlandés'),(1137,'ga','de','Irisch'),(1138,'ga','fr','Irlandais'),(1139,'ga','ar','الأيرلندية'),(1140,'ga','bs','Irish'),(1141,'ga','bg','Irish'),(1142,'ga','ca','Irish'),(1143,'ga','cs','Irish'),(1144,'ga','sla','Írština'),(1145,'ga','cy','Irish'),(1146,'ga','da','Irish'),(1147,'ga','el','Ιρλανδικα'),(1148,'ga','eo','Irish'),(1149,'ga','et','Irish'),(1150,'ga','eu','Irish'),(1151,'ga','fa','Irish'),(1152,'ga','fi','iiri'),(1153,'ga','ga','Gaeilge'),(1154,'ga','he','אירית'),(1155,'ga','hi','Irish'),(1156,'ga','hr','Irish'),(1157,'ga','hu','ír'),(1158,'ga','hy','Irish'),(1159,'ga','id','Irish'),(1160,'ga','is','Irish'),(1161,'ga','it','Irlandese'),(1162,'ga','ja','アイルランド語'),(1163,'ga','ko','아일랜드어'),(1164,'ga','ku','Irish'),(1165,'ga','la','Irish'),(1166,'ga','lv','Irish'),(1167,'ga','lt','Irish'),(1168,'ga','mk','Irish'),(1169,'ga','mt','Irish'),(1170,'ga','mo','Irish'),(1171,'ga','mn','Irish'),(1172,'ga','ne','Irish'),(1173,'ga','nl','Iers'),(1174,'ga','nb','Irish'),(1175,'ga','pa','Irish'),(1176,'ga','pl','irlandzki'),(1177,'ga','pt-pt','Irlandês'),(1178,'ga','pt-br','Irlandês'),(1179,'ga','qu','Irish'),(1180,'ga','ro','Irlandeză'),(1181,'ga','ru','Ирландский'),(1182,'ga','sl','Irish'),(1183,'ga','so','Irish'),(1184,'ga','sq','Irish'),(1185,'ga','sr','Irish'),(1186,'ga','sv','Irländska'),(1187,'ga','ta','Irish'),(1188,'ga','th','ไอริช'),(1189,'ga','tr','İrlanda dili'),(1190,'ga','uk','Irish'),(1191,'ga','ur','Irish'),(1192,'ga','uz','Irish'),(1193,'ga','vi','Irish'),(1194,'ga','yi','Irish'),(1195,'ga','zh-hans','爱尔兰语'),(1196,'ga','zu','Irish'),(1197,'ga','zh-hant','愛爾蘭語'),(1198,'he','en','Hebrew'),(1199,'he','es','Hebreo'),(1200,'he','de','Hebräisch'),(1201,'he','fr','Hébreu'),(1202,'he','ar','العبرية'),(1203,'he','bs','Hebrew'),(1204,'he','bg','Hebrew'),(1205,'he','ca','Hebrew'),(1206,'he','cs','Hebrew'),(1207,'he','sla','Hebrejčina'),(1208,'he','cy','Hebrew'),(1209,'he','da','Hebrew'),(1210,'he','el','Εβραικα'),(1211,'he','eo','Hebrew'),(1212,'he','et','Hebrew'),(1213,'he','eu','Hebrew'),(1214,'he','fa','Hebrew'),(1215,'he','fi','heprea'),(1216,'he','ga','Hebrew'),(1217,'he','he','עברית'),(1218,'he','hi','Hebrew'),(1219,'he','hr','Hebrew'),(1220,'he','hu','héber'),(1221,'he','hy','Hebrew'),(1222,'he','id','Hebrew'),(1223,'he','is','Hebrew'),(1224,'he','it','Ebraico'),(1225,'he','ja','ヘブライ語'),(1226,'he','ko','히브리어'),(1227,'he','ku','Hebrew'),(1228,'he','la','Hebrew'),(1229,'he','lv','Hebrew'),(1230,'he','lt','Hebrew'),(1231,'he','mk','Hebrew'),(1232,'he','mt','Hebrew'),(1233,'he','mo','Hebrew'),(1234,'he','mn','Hebrew'),(1235,'he','ne','Hebrew'),(1236,'he','nl','Hebreeuws'),(1237,'he','nb','Hebrew'),(1238,'he','pa','Hebrew'),(1239,'he','pl','hebrajski'),(1240,'he','pt-pt','Hebraico'),(1241,'he','pt-br','Hebraico'),(1242,'he','qu','Hebrew'),(1243,'he','ro','Ebraică'),(1244,'he','ru','Иврит'),(1245,'he','sl','Hebrew'),(1246,'he','so','Hebrew'),(1247,'he','sq','Hebrew'),(1248,'he','sr','Hebrew'),(1249,'he','sv','Hebreiska'),(1250,'he','ta','Hebrew'),(1251,'he','th','ฮิบรู'),(1252,'he','tr','İbranice'),(1253,'he','uk','Hebrew'),(1254,'he','ur','Hebrew'),(1255,'he','uz','Hebrew'),(1256,'he','vi','Hebrew'),(1257,'he','yi','Hebrew'),(1258,'he','zh-hans','希伯来语'),(1259,'he','zu','Hebrew'),(1260,'he','zh-hant','希伯來語'),(1261,'hi','en','Hindi'),(1262,'hi','es','Hindi'),(1263,'hi','de','Hindi'),(1264,'hi','fr','Hindi'),(1265,'hi','ar','الهندية'),(1266,'hi','bs','Hindi'),(1267,'hi','bg','Hindi'),(1268,'hi','ca','Hindi'),(1269,'hi','cs','Hindi'),(1270,'hi','sla','Hindčina'),(1271,'hi','cy','Hindi'),(1272,'hi','da','Hindi'),(1273,'hi','el','Ινδικα'),(1274,'hi','eo','Hindi'),(1275,'hi','et','Hindi'),(1276,'hi','eu','Hindi'),(1277,'hi','fa','Hindi'),(1278,'hi','fi','hindi'),(1279,'hi','ga','Hindi'),(1280,'hi','he','הודית'),(1281,'hi','hi','हिन्दी'),(1282,'hi','hr','Hindi'),(1283,'hi','hu','hindi'),(1284,'hi','hy','Hindi'),(1285,'hi','id','Hindi'),(1286,'hi','is','Hindi'),(1287,'hi','it','Hindi'),(1288,'hi','ja','ヒンディー語'),(1289,'hi','ko','힌두어'),(1290,'hi','ku','Hindi'),(1291,'hi','la','Hindi'),(1292,'hi','lv','Hindi'),(1293,'hi','lt','Hindi'),(1294,'hi','mk','Hindi'),(1295,'hi','mt','Hindi'),(1296,'hi','mo','Hindi'),(1297,'hi','mn','Hindi'),(1298,'hi','ne','Hindi'),(1299,'hi','nl','Hindi'),(1300,'hi','nb','Hindi'),(1301,'hi','pa','Hindi'),(1302,'hi','pl','hindi'),(1303,'hi','pt-pt','Hindi'),(1304,'hi','pt-br','Hindi'),(1305,'hi','qu','Hindi'),(1306,'hi','ro','Hindi'),(1307,'hi','ru','Хинди'),(1308,'hi','sl','Hindi'),(1309,'hi','so','Hindi'),(1310,'hi','sq','Hindi'),(1311,'hi','sr','Hindi'),(1312,'hi','sv','Hindi'),(1313,'hi','ta','Hindi'),(1314,'hi','th','ฮินดิ'),(1315,'hi','tr','Hintçe'),(1316,'hi','uk','Hindi'),(1317,'hi','ur','Hindi'),(1318,'hi','uz','Hindi'),(1319,'hi','vi','Hindi'),(1320,'hi','yi','Hindi'),(1321,'hi','zh-hans','印地语'),(1322,'hi','zu','Hindi'),(1323,'hi','zh-hant','印地語'),(1324,'hr','en','Croatian'),(1325,'hr','es','Croata'),(1326,'hr','de','Kroatisch'),(1327,'hr','fr','Croate'),(1328,'hr','ar','الكرواتية'),(1329,'hr','bs','Croatian'),(1330,'hr','bg','Croatian'),(1331,'hr','ca','Croatian'),(1332,'hr','cs','Croatian'),(1333,'hr','sla','Chorvátština'),(1334,'hr','cy','Croatian'),(1335,'hr','da','Croatian'),(1336,'hr','el','Κροατικα'),(1337,'hr','eo','Croatian'),(1338,'hr','et','Croatian'),(1339,'hr','eu','Croatian'),(1340,'hr','fa','Croatian'),(1341,'hr','fi','kroatia'),(1342,'hr','ga','Croatian'),(1343,'hr','he','קרוטאית'),(1344,'hr','hi','Croatian'),(1345,'hr','hr','Hrvatska'),(1346,'hr','hu','horvát'),(1347,'hr','hy','Croatian'),(1348,'hr','id','Croatian'),(1349,'hr','is','Croatian'),(1350,'hr','it','Croato'),(1351,'hr','ja','クロアチア語'),(1352,'hr','ko','크로아시아어'),(1353,'hr','ku','Croatian'),(1354,'hr','la','Croatian'),(1355,'hr','lv','Croatian'),(1356,'hr','lt','Croatian'),(1357,'hr','mk','Croatian'),(1358,'hr','mt','Croatian'),(1359,'hr','mo','Croatian'),(1360,'hr','mn','Croatian'),(1361,'hr','ne','Croatian'),(1362,'hr','nl','Kroatisch'),(1363,'hr','nb','Croatian'),(1364,'hr','pa','Croatian'),(1365,'hr','pl','chorwacki'),(1366,'hr','pt-pt','Croata'),(1367,'hr','pt-br','Croata'),(1368,'hr','qu','Croatian'),(1369,'hr','ro','Croată'),(1370,'hr','ru','Хорватский'),(1371,'hr','sl','Croatian'),(1372,'hr','so','Croatian'),(1373,'hr','sq','Croatian'),(1374,'hr','sr','Croatian'),(1375,'hr','sv','Kroatiska'),(1376,'hr','ta','Croatian'),(1377,'hr','th','โครเอเชีย'),(1378,'hr','tr','Hırvatça'),(1379,'hr','uk','Croatian'),(1380,'hr','ur','Croatian'),(1381,'hr','uz','Croatian'),(1382,'hr','vi','Croatian'),(1383,'hr','yi','Croatian'),(1384,'hr','zh-hans','克罗地亚语'),(1385,'hr','zu','Croatian'),(1386,'hr','zh-hant','克羅地亞語'),(1387,'hu','en','Hungarian'),(1388,'hu','es','Húngaro'),(1389,'hu','de','Ungarisch'),(1390,'hu','fr','Hongrois'),(1391,'hu','ar','الهنغارية'),(1392,'hu','bs','Hungarian'),(1393,'hu','bg','Hungarian'),(1394,'hu','ca','Hungarian'),(1395,'hu','cs','Hungarian'),(1396,'hu','sla','Maďarčina'),(1397,'hu','cy','Hungarian'),(1398,'hu','da','Hungarian'),(1399,'hu','el','Ουγγρικα'),(1400,'hu','eo','Hungarian'),(1401,'hu','et','Hungarian'),(1402,'hu','eu','Hungarian'),(1403,'hu','fa','Hungarian'),(1404,'hu','fi','unkari'),(1405,'hu','ga','Hungarian'),(1406,'hu','he','הונגרית'),(1407,'hu','hi','Hungarian'),(1408,'hu','hr','Hungarian'),(1409,'hu','hu','magyar'),(1410,'hu','hy','Hungarian'),(1411,'hu','id','Hungarian'),(1412,'hu','is','Hungarian'),(1413,'hu','it','Ungherese'),(1414,'hu','ja','ハンガリー語'),(1415,'hu','ko','헝가리어'),(1416,'hu','ku','Hungarian'),(1417,'hu','la','Hungarian'),(1418,'hu','lv','Hungarian'),(1419,'hu','lt','Hungarian'),(1420,'hu','mk','Hungarian'),(1421,'hu','mt','Hungarian'),(1422,'hu','mo','Hungarian'),(1423,'hu','mn','Hungarian'),(1424,'hu','ne','Hungarian'),(1425,'hu','nl','Hongaars'),(1426,'hu','nb','Hungarian'),(1427,'hu','pa','Hungarian'),(1428,'hu','pl','węgierski'),(1429,'hu','pt-pt','Húngaro'),(1430,'hu','pt-br','Húngaro'),(1431,'hu','qu','Hungarian'),(1432,'hu','ro','Ungară'),(1433,'hu','ru','Венгерский'),(1434,'hu','sl','Hungarian'),(1435,'hu','so','Hungarian'),(1436,'hu','sq','Hungarian'),(1437,'hu','sr','Hungarian'),(1438,'hu','sv','Ungerska'),(1439,'hu','ta','Hungarian'),(1440,'hu','th','ฮังการี'),(1441,'hu','tr','Macarca'),(1442,'hu','uk','Hungarian'),(1443,'hu','ur','Hungarian'),(1444,'hu','uz','Hungarian'),(1445,'hu','vi','Hungarian'),(1446,'hu','yi','Hungarian'),(1447,'hu','zh-hans','匈牙利语'),(1448,'hu','zu','Hungarian'),(1449,'hu','zh-hant','匈牙利語'),(1450,'hy','en','Armenian'),(1451,'hy','es','Armenio'),(1452,'hy','de','Armenisch'),(1453,'hy','fr','Arménien'),(1454,'hy','ar','الأرمينية'),(1455,'hy','bs','Armenian'),(1456,'hy','bg','Armenian'),(1457,'hy','ca','Armenian'),(1458,'hy','cs','Armenian'),(1459,'hy','sla','Arménčina'),(1460,'hy','cy','Armenian'),(1461,'hy','da','Armenian'),(1462,'hy','el','Αρμενικα'),(1463,'hy','eo','Armenian'),(1464,'hy','et','Armenian'),(1465,'hy','eu','Armenian'),(1466,'hy','fa','Armenian'),(1467,'hy','fi','armenia'),(1468,'hy','ga','Armenian'),(1469,'hy','he','Armenian'),(1470,'hy','hi','Armenian'),(1471,'hy','hr','Armenian'),(1472,'hy','hu','örmény'),(1473,'hy','hy','Armenian'),(1474,'hy','id','Armenian'),(1475,'hy','is','Armenian'),(1476,'hy','it','Armeno'),(1477,'hy','ja','アルメニア語'),(1478,'hy','ko','아르메니아어'),(1479,'hy','ku','Armenian'),(1480,'hy','la','Armenian'),(1481,'hy','lv','Armenian'),(1482,'hy','lt','Armenian'),(1483,'hy','mk','Armenian'),(1484,'hy','mt','Armenian'),(1485,'hy','mo','Armenian'),(1486,'hy','mn','Armenian'),(1487,'hy','ne','Armenian'),(1488,'hy','nl','Armeens'),(1489,'hy','nb','Armenian'),(1490,'hy','pa','Armenian'),(1491,'hy','pl','ormiański'),(1492,'hy','pt-pt','Arménio'),(1493,'hy','pt-br','Arménio'),(1494,'hy','qu','Armenian'),(1495,'hy','ro','Armeană'),(1496,'hy','ru','Армянский'),(1497,'hy','sl','Armenian'),(1498,'hy','so','Armenian'),(1499,'hy','sq','Armenian'),(1500,'hy','sr','Armenian'),(1501,'hy','sv','Armeniska'),(1502,'hy','ta','Armenian'),(1503,'hy','th','อาร์เมเนีย'),(1504,'hy','tr','Ermenice'),(1505,'hy','uk','Armenian'),(1506,'hy','ur','Armenian'),(1507,'hy','uz','Armenian'),(1508,'hy','vi','Armenian'),(1509,'hy','yi','Armenian'),(1510,'hy','zh-hans','亚美尼亚语'),(1511,'hy','zu','Armenian'),(1512,'hy','zh-hant','亞美尼亞語'),(1513,'id','en','Indonesian'),(1514,'id','es','Indonesio'),(1515,'id','de','Indonesisch'),(1516,'id','fr','Indonésien'),(1517,'id','ar','الأندونيسية'),(1518,'id','bs','Indonesian'),(1519,'id','bg','Indonesian'),(1520,'id','ca','Indonesian'),(1521,'id','cs','Indonesian'),(1522,'id','sla','Indonézčina'),(1523,'id','cy','Indonesian'),(1524,'id','da','Indonesian'),(1525,'id','el','Ινδονησιακα'),(1526,'id','eo','Indonesian'),(1527,'id','et','Indonesian'),(1528,'id','eu','Indonesian'),(1529,'id','fa','Indonesian'),(1530,'id','fi','indonesia'),(1531,'id','ga','Indonesian'),(1532,'id','he','Indonesian'),(1533,'id','hi','Indonesian'),(1534,'id','hr','Indonesian'),(1535,'id','hu','indonéz'),(1536,'id','hy','Indonesian'),(1537,'id','id','Indonesia'),(1538,'id','is','Indonesian'),(1539,'id','it','Indonesiano'),(1540,'id','ja','インドネシア語'),(1541,'id','ko','인도네시아어'),(1542,'id','ku','Indonesian'),(1543,'id','la','Indonesian'),(1544,'id','lv','Indonesian'),(1545,'id','lt','Indonesian'),(1546,'id','mk','Indonesian'),(1547,'id','mt','Indonesian'),(1548,'id','mo','Indonesian'),(1549,'id','mn','Indonesian'),(1550,'id','ne','Indonesian'),(1551,'id','nl','Indonesisch'),(1552,'id','nb','Indonesian'),(1553,'id','pa','Indonesian'),(1554,'id','pl','indonezyjski'),(1555,'id','pt-pt','Indonésio'),(1556,'id','pt-br','Indonésio'),(1557,'id','qu','Indonesian'),(1558,'id','ro','Indoneziană'),(1559,'id','ru','Индонезийский'),(1560,'id','sl','Indonesian'),(1561,'id','so','Indonesian'),(1562,'id','sq','Indonesian'),(1563,'id','sr','Indonesian'),(1564,'id','sv','Indonesiska'),(1565,'id','ta','Indonesian'),(1566,'id','th','อินโดนีเซีย'),(1567,'id','tr','Endonezya dili'),(1568,'id','uk','Indonesian'),(1569,'id','ur','Indonesian'),(1570,'id','uz','Indonesian'),(1571,'id','vi','Indonesian'),(1572,'id','yi','Indonesian'),(1573,'id','zh-hans','印度尼西亚语'),(1574,'id','zu','Indonesian'),(1575,'id','zh-hant','印尼語'),(1576,'is','en','Icelandic'),(1577,'is','es','Islandés'),(1578,'is','de','Isländisch'),(1579,'is','fr','Islandais'),(1580,'is','ar','الأيسلاندية'),(1581,'is','bs','Icelandic'),(1582,'is','bg','Icelandic'),(1583,'is','ca','Icelandic'),(1584,'is','cs','Icelandic'),(1585,'is','sla','Islančina'),(1586,'is','cy','Icelandic'),(1587,'is','da','Icelandic'),(1588,'is','el','Ισλανδικα'),(1589,'is','eo','Icelandic'),(1590,'is','et','Icelandic'),(1591,'is','eu','Icelandic'),(1592,'is','fa','Icelandic'),(1593,'is','fi','islanti'),(1594,'is','ga','Icelandic'),(1595,'is','he','Icelandic'),(1596,'is','hi','Icelandic'),(1597,'is','hr','Icelandic'),(1598,'is','hu','izlandi'),(1599,'is','hy','Icelandic'),(1600,'is','id','Icelandic'),(1601,'is','is','Íslenska'),(1602,'is','it','Islandese'),(1603,'is','ja','アイスランド語'),(1604,'is','ko','아이슬랜드어'),(1605,'is','ku','Icelandic'),(1606,'is','la','Icelandic'),(1607,'is','lv','Icelandic'),(1608,'is','lt','Icelandic'),(1609,'is','mk','Icelandic'),(1610,'is','mt','Icelandic'),(1611,'is','mo','Icelandic'),(1612,'is','mn','Icelandic'),(1613,'is','ne','Icelandic'),(1614,'is','nl','Ijslands'),(1615,'is','nb','Icelandic'),(1616,'is','pa','Icelandic'),(1617,'is','pl','islandzki'),(1618,'is','pt-pt','Islandês'),(1619,'is','pt-br','Islandês'),(1620,'is','qu','Icelandic'),(1621,'is','ro','Islandeză'),(1622,'is','ru','Исландский'),(1623,'is','sl','Icelandic'),(1624,'is','so','Icelandic'),(1625,'is','sq','Icelandic'),(1626,'is','sr','Icelandic'),(1627,'is','sv','Isländska'),(1628,'is','ta','Icelandic'),(1629,'is','th','ไอซ์แลนด์'),(1630,'is','tr','İzlandaca'),(1631,'is','uk','Icelandic'),(1632,'is','ur','Icelandic'),(1633,'is','uz','Icelandic'),(1634,'is','vi','Icelandic'),(1635,'is','yi','Icelandic'),(1636,'is','zh-hans','冰岛语'),(1637,'is','zu','Icelandic'),(1638,'is','zh-hant','冰島語'),(1639,'it','en','Italian'),(1640,'it','es','Italiano'),(1641,'it','de','Italienisch'),(1642,'it','fr','Italien'),(1643,'it','ar','الإيطالية'),(1644,'it','bs','Italian'),(1645,'it','bg','Italian'),(1646,'it','ca','Italian'),(1647,'it','cs','Italian'),(1648,'it','sla','Taliančina'),(1649,'it','cy','Italian'),(1650,'it','da','Italian'),(1651,'it','el','Ιταλικα'),(1652,'it','eo','Italian'),(1653,'it','et','Italian'),(1654,'it','eu','Italian'),(1655,'it','fa','Italian'),(1656,'it','fi','italia'),(1657,'it','ga','Italian'),(1658,'it','he','איטלקית'),(1659,'it','hi','Italian'),(1660,'it','hr','Italian'),(1661,'it','hu','olasz'),(1662,'it','hy','Italian'),(1663,'it','id','Italian'),(1664,'it','is','Italian'),(1665,'it','it','Italiano'),(1666,'it','ja','イタリア語'),(1667,'it','ko','이태리어'),(1668,'it','ku','Italian'),(1669,'it','la','Italian'),(1670,'it','lv','Italian'),(1671,'it','lt','Italian'),(1672,'it','mk','Italian'),(1673,'it','mt','Italian'),(1674,'it','mo','Italian'),(1675,'it','mn','Italian'),(1676,'it','ne','Italian'),(1677,'it','nl','Italiaans'),(1678,'it','nb','Italian'),(1679,'it','pa','Italian'),(1680,'it','pl','włoski'),(1681,'it','pt-pt','Italiano'),(1682,'it','pt-br','Italiano'),(1683,'it','qu','Italian'),(1684,'it','ro','Italiană'),(1685,'it','ru','Итальянский'),(1686,'it','sl','Italian'),(1687,'it','so','Italian'),(1688,'it','sq','Italian'),(1689,'it','sr','Italian'),(1690,'it','sv','Italienska'),(1691,'it','ta','Italian'),(1692,'it','th','อิตาลี'),(1693,'it','tr','İtalyanca'),(1694,'it','uk','Italian'),(1695,'it','ur','Italian'),(1696,'it','uz','Italian'),(1697,'it','vi','Italian'),(1698,'it','yi','Italian'),(1699,'it','zh-hans','意大利语'),(1700,'it','zu','Italian'),(1701,'it','zh-hant','義大利語'),(1702,'ja','en','Japanese'),(1703,'ja','es','Japonés'),(1704,'ja','de','Japanisch'),(1705,'ja','fr','Japonais'),(1706,'ja','ar','اليابانية'),(1707,'ja','bs','Japanese'),(1708,'ja','bg','Japanese'),(1709,'ja','ca','Japanese'),(1710,'ja','cs','Japanese'),(1711,'ja','sla','Japonština'),(1712,'ja','cy','Japanese'),(1713,'ja','da','Japanese'),(1714,'ja','el','Ιαπωνικα'),(1715,'ja','eo','Japanese'),(1716,'ja','et','Japanese'),(1717,'ja','eu','Japanese'),(1718,'ja','fa','Japanese'),(1719,'ja','fi','japani'),(1720,'ja','ga','Japanese'),(1721,'ja','he','יפנית'),(1722,'ja','hi','Japanese'),(1723,'ja','hr','Japanese'),(1724,'ja','hu','japán'),(1725,'ja','hy','Japanese'),(1726,'ja','id','Japanese'),(1727,'ja','is','Japanese'),(1728,'ja','it','Giapponese'),(1729,'ja','ja','日本語'),(1730,'ja','ko','일어'),(1731,'ja','ku','Japanese'),(1732,'ja','la','Japanese'),(1733,'ja','lv','Japanese'),(1734,'ja','lt','Japanese'),(1735,'ja','mk','Japanese'),(1736,'ja','mt','Japanese'),(1737,'ja','mo','Japanese'),(1738,'ja','mn','Japanese'),(1739,'ja','ne','Japanese'),(1740,'ja','nl','Japans'),(1741,'ja','nb','Japanese'),(1742,'ja','pa','Japanese'),(1743,'ja','pl','japoński'),(1744,'ja','pt-pt','Japonês'),(1745,'ja','pt-br','Japonês'),(1746,'ja','qu','Japanese'),(1747,'ja','ro','Japoneză'),(1748,'ja','ru','Японский'),(1749,'ja','sl','Japanese'),(1750,'ja','so','Japanese'),(1751,'ja','sq','Japanese'),(1752,'ja','sr','Japanese'),(1753,'ja','sv','Japanska'),(1754,'ja','ta','Japanese'),(1755,'ja','th','ญี่ปุ่น'),(1756,'ja','tr','Japonca'),(1757,'ja','uk','Japanese'),(1758,'ja','ur','Japanese'),(1759,'ja','uz','Japanese'),(1760,'ja','vi','Japanese'),(1761,'ja','yi','Japanese'),(1762,'ja','zh-hans','日语'),(1763,'ja','zu','Japanese'),(1764,'ja','zh-hant','日語'),(1765,'ko','en','Korean'),(1766,'ko','es','Coreano'),(1767,'ko','de','Koreanisch'),(1768,'ko','fr','Coréen'),(1769,'ko','ar','الكورية'),(1770,'ko','bs','Korean'),(1771,'ko','bg','Korean'),(1772,'ko','ca','Korean'),(1773,'ko','cs','Korean'),(1774,'ko','sla','Kórejčina'),(1775,'ko','cy','Korean'),(1776,'ko','da','Korean'),(1777,'ko','el','Κορεατικα'),(1778,'ko','eo','Korean'),(1779,'ko','et','Korean'),(1780,'ko','eu','Korean'),(1781,'ko','fa','Korean'),(1782,'ko','fi','korea'),(1783,'ko','ga','Korean'),(1784,'ko','he','קוראנית'),(1785,'ko','hi','Korean'),(1786,'ko','hr','Korean'),(1787,'ko','hu','koreai'),(1788,'ko','hy','Korean'),(1789,'ko','id','Korean'),(1790,'ko','is','Korean'),(1791,'ko','it','Coreano'),(1792,'ko','ja','韓国語'),(1793,'ko','ko','한국어'),(1794,'ko','ku','Korean'),(1795,'ko','la','Korean'),(1796,'ko','lv','Korean'),(1797,'ko','lt','Korean'),(1798,'ko','mk','Korean'),(1799,'ko','mt','Korean'),(1800,'ko','mo','Korean'),(1801,'ko','mn','Korean'),(1802,'ko','ne','Korean'),(1803,'ko','nl','Koreaans'),(1804,'ko','nb','Korean'),(1805,'ko','pa','Korean'),(1806,'ko','pl','koreański'),(1807,'ko','pt-pt','Korean'),(1808,'ko','pt-br','Korean'),(1809,'ko','qu','Korean'),(1810,'ko','ro','Coreană'),(1811,'ko','ru','Корейский'),(1812,'ko','sl','Korean'),(1813,'ko','so','Korean'),(1814,'ko','sq','Korean'),(1815,'ko','sr','Korean'),(1816,'ko','sv','Koreanska'),(1817,'ko','ta','Korean'),(1818,'ko','th','เกาหลี'),(1819,'ko','tr','Kore dili'),(1820,'ko','uk','Korean'),(1821,'ko','ur','Korean'),(1822,'ko','uz','Korean'),(1823,'ko','vi','Korean'),(1824,'ko','yi','Korean'),(1825,'ko','zh-hans','韩语'),(1826,'ko','zu','Korean'),(1827,'ko','zh-hant','韓語'),(1828,'ku','en','Kurdish'),(1829,'ku','es','Kurdo'),(1830,'ku','de','Kurdisch'),(1831,'ku','fr','Kurde'),(1832,'ku','ar','الكردية'),(1833,'ku','bs','Kurdish'),(1834,'ku','bg','Kurdish'),(1835,'ku','ca','Kurdish'),(1836,'ku','cs','Kurdish'),(1837,'ku','sla','Kurdština'),(1838,'ku','cy','Kurdish'),(1839,'ku','da','Kurdish'),(1840,'ku','el','Κουρδικα'),(1841,'ku','eo','Kurdish'),(1842,'ku','et','Kurdish'),(1843,'ku','eu','Kurdish'),(1844,'ku','fa','Kurdish'),(1845,'ku','fi','kurdi'),(1846,'ku','ga','Kurdish'),(1847,'ku','he','Kurdish'),(1848,'ku','hi','Kurdish'),(1849,'ku','hr','Kurdish'),(1850,'ku','hu','kurd'),(1851,'ku','hy','Kurdish'),(1852,'ku','id','Kurdish'),(1853,'ku','is','Kurdish'),(1854,'ku','it','Curdo'),(1855,'ku','ja','クルド語'),(1856,'ku','ko','쿠르드어'),(1857,'ku','ku','Kurdish'),(1858,'ku','la','Kurdish'),(1859,'ku','lv','Kurdish'),(1860,'ku','lt','Kurdish'),(1861,'ku','mk','Kurdish'),(1862,'ku','mt','Kurdish'),(1863,'ku','mo','Kurdish'),(1864,'ku','mn','Kurdish'),(1865,'ku','ne','Kurdish'),(1866,'ku','nl','Koerdish'),(1867,'ku','nb','Kurdish'),(1868,'ku','pa','Kurdish'),(1869,'ku','pl','kurdyjski'),(1870,'ku','pt-pt','Curdo'),(1871,'ku','pt-br','Curdo'),(1872,'ku','qu','Kurdish'),(1873,'ku','ro','Kurdă'),(1874,'ku','ru','Курдский'),(1875,'ku','sl','Kurdish'),(1876,'ku','so','Kurdish'),(1877,'ku','sq','Kurdish'),(1878,'ku','sr','Kurdish'),(1879,'ku','sv','Kurdiska'),(1880,'ku','ta','Kurdish'),(1881,'ku','th','เคอร์ดิช'),(1882,'ku','tr','Kürtçe'),(1883,'ku','uk','Kurdish'),(1884,'ku','ur','Kurdish'),(1885,'ku','uz','Kurdish'),(1886,'ku','vi','Kurdish'),(1887,'ku','yi','Kurdish'),(1888,'ku','zh-hans','库尔德语'),(1889,'ku','zu','Kurdish'),(1890,'ku','zh-hant','庫爾德語'),(1891,'la','en','Latin'),(1892,'la','es','Latín'),(1893,'la','de','Latein'),(1894,'la','fr','Latin'),(1895,'la','ar','اللاتينية'),(1896,'la','bs','Latin'),(1897,'la','bg','Latin'),(1898,'la','ca','Latin'),(1899,'la','cs','Latin'),(1900,'la','sla','Latinčina'),(1901,'la','cy','Latin'),(1902,'la','da','Latin'),(1903,'la','el','Λατινικη'),(1904,'la','eo','Latin'),(1905,'la','et','Latin'),(1906,'la','eu','Latin'),(1907,'la','fa','Latin'),(1908,'la','fi','latina'),(1909,'la','ga','Latin'),(1910,'la','he','לטינית'),(1911,'la','hi','Latin'),(1912,'la','hr','Latin'),(1913,'la','hu','latin'),(1914,'la','hy','Latin'),(1915,'la','id','Latin'),(1916,'la','is','Latin'),(1917,'la','it','Latino'),(1918,'la','ja','ラテン語'),(1919,'la','ko','라틴어'),(1920,'la','ku','Latin'),(1921,'la','la','Latin'),(1922,'la','lv','Latin'),(1923,'la','lt','Latin'),(1924,'la','mk','Latin'),(1925,'la','mt','Latin'),(1926,'la','mo','Latin'),(1927,'la','mn','Latin'),(1928,'la','ne','Latin'),(1929,'la','nl','Latijn'),(1930,'la','nb','Latin'),(1931,'la','pa','Latin'),(1932,'la','pl','łaciński'),(1933,'la','pt-pt','Latina'),(1934,'la','pt-br','Latina'),(1935,'la','qu','Latin'),(1936,'la','ro','Latină'),(1937,'la','ru','Латинский'),(1938,'la','sl','Latin'),(1939,'la','so','Latin'),(1940,'la','sq','Latin'),(1941,'la','sr','Latin'),(1942,'la','sv','Latin'),(1943,'la','ta','Latin'),(1944,'la','th','ละติน'),(1945,'la','tr','Latince'),(1946,'la','uk','Latin'),(1947,'la','ur','Latin'),(1948,'la','uz','Latin'),(1949,'la','vi','Latin'),(1950,'la','yi','Latin'),(1951,'la','zh-hans','拉丁语'),(1952,'la','zu','Latin'),(1953,'la','zh-hant','拉丁語'),(1954,'lv','en','Latvian'),(1955,'lv','es','Letón'),(1956,'lv','de','Lettisch'),(1957,'lv','fr','Letton'),(1958,'lv','ar','اللاتفية'),(1959,'lv','bs','Latvian'),(1960,'lv','bg','Latvian'),(1961,'lv','ca','Latvian'),(1962,'lv','cs','Latvian'),(1963,'lv','sla','Lotyština'),(1964,'lv','cy','Latvian'),(1965,'lv','da','Latvian'),(1966,'lv','el','Λετονικα'),(1967,'lv','eo','Latvian'),(1968,'lv','et','Latvian'),(1969,'lv','eu','Latvian'),(1970,'lv','fa','Latvian'),(1971,'lv','fi','latvia'),(1972,'lv','ga','Latvian'),(1973,'lv','he','Latvian'),(1974,'lv','hi','Latvian'),(1975,'lv','hr','Latvian'),(1976,'lv','hu','lett'),(1977,'lv','hy','Latvian'),(1978,'lv','id','Latvian'),(1979,'lv','is','Latvian'),(1980,'lv','it','Lettone'),(1981,'lv','ja','ラトビア語'),(1982,'lv','ko','라트비아어'),(1983,'lv','ku','Latvian'),(1984,'lv','la','Latvian'),(1985,'lv','lv','Latvian'),(1986,'lv','lt','Latvian'),(1987,'lv','mk','Latvian'),(1988,'lv','mt','Latvian'),(1989,'lv','mo','Latvian'),(1990,'lv','mn','Latvian'),(1991,'lv','ne','Latvian'),(1992,'lv','nl','Lets'),(1993,'lv','nb','Latvian'),(1994,'lv','pa','Latvian'),(1995,'lv','pl','łotewski'),(1996,'lv','pt-pt','Letão'),(1997,'lv','pt-br','Letão'),(1998,'lv','qu','Latvian'),(1999,'lv','ro','Letoniană'),(2000,'lv','ru','Латвийский'),(2001,'lv','sl','Latvian'),(2002,'lv','so','Latvian'),(2003,'lv','sq','Latvian'),(2004,'lv','sr','Latvian'),(2005,'lv','sv','Lettiska'),(2006,'lv','ta','Latvian'),(2007,'lv','th','ลัตเวีย'),(2008,'lv','tr','Letonca'),(2009,'lv','uk','Latvian'),(2010,'lv','ur','Latvian'),(2011,'lv','uz','Latvian'),(2012,'lv','vi','Latvian'),(2013,'lv','yi','Latvian'),(2014,'lv','zh-hans','拉脱维亚语'),(2015,'lv','zu','Latvian'),(2016,'lv','zh-hant','拉脫維亞語'),(2017,'lt','en','Lithuanian'),(2018,'lt','es','Lituano'),(2019,'lt','de','Litauisch'),(2020,'lt','fr','Lituanien'),(2021,'lt','ar','اللتوانية'),(2022,'lt','bs','Lithuanian'),(2023,'lt','bg','Lithuanian'),(2024,'lt','ca','Lithuanian'),(2025,'lt','cs','Lithuanian'),(2026,'lt','sla','Litovčina'),(2027,'lt','cy','Lithuanian'),(2028,'lt','da','Lithuanian'),(2029,'lt','el','Λιθουανικα'),(2030,'lt','eo','Lithuanian'),(2031,'lt','et','Lithuanian'),(2032,'lt','eu','Lithuanian'),(2033,'lt','fa','Lithuanian'),(2034,'lt','fi','liettua'),(2035,'lt','ga','Lithuanian'),(2036,'lt','he','Lithuanian'),(2037,'lt','hi','Lithuanian'),(2038,'lt','hr','Lithuanian'),(2039,'lt','hu','litván'),(2040,'lt','hy','Lithuanian'),(2041,'lt','id','Lithuanian'),(2042,'lt','is','Lithuanian'),(2043,'lt','it','Lituano'),(2044,'lt','ja','リトアニア語'),(2045,'lt','ko','리투아니아어'),(2046,'lt','ku','Lithuanian'),(2047,'lt','la','Lithuanian'),(2048,'lt','lv','Lithuanian'),(2049,'lt','lt','Lithuanian'),(2050,'lt','mk','Lithuanian'),(2051,'lt','mt','Lithuanian'),(2052,'lt','mo','Lithuanian'),(2053,'lt','mn','Lithuanian'),(2054,'lt','ne','Lithuanian'),(2055,'lt','nl','Litouws'),(2056,'lt','nb','Lithuanian'),(2057,'lt','pa','Lithuanian'),(2058,'lt','pl','litewski'),(2059,'lt','pt-pt','Lituano'),(2060,'lt','pt-br','Lituano'),(2061,'lt','qu','Lithuanian'),(2062,'lt','ro','Lituaniană'),(2063,'lt','ru','Литовский'),(2064,'lt','sl','Lithuanian'),(2065,'lt','so','Lithuanian'),(2066,'lt','sq','Lithuanian'),(2067,'lt','sr','Lithuanian'),(2068,'lt','sv','Litauiska'),(2069,'lt','ta','Lithuanian'),(2070,'lt','th','ลิธัวเนีย'),(2071,'lt','tr','Litvanyaca'),(2072,'lt','uk','Lithuanian'),(2073,'lt','ur','Lithuanian'),(2074,'lt','uz','Lithuanian'),(2075,'lt','vi','Lithuanian'),(2076,'lt','yi','Lithuanian'),(2077,'lt','zh-hans','立陶宛语'),(2078,'lt','zu','Lithuanian'),(2079,'lt','zh-hant','立陶宛語'),(2080,'mk','en','Macedonian'),(2081,'mk','es','Macedonio'),(2082,'mk','de','Mazedonisch'),(2083,'mk','fr','Macédonien'),(2084,'mk','ar','المقدونية'),(2085,'mk','bs','Macedonian'),(2086,'mk','bg','Macedonian'),(2087,'mk','ca','Macedonian'),(2088,'mk','cs','Macedonian'),(2089,'mk','sla','Macedónština'),(2090,'mk','cy','Macedonian'),(2091,'mk','da','Macedonian'),(2092,'mk','el','Μακεδονικο'),(2093,'mk','eo','Macedonian'),(2094,'mk','et','Macedonian'),(2095,'mk','eu','Macedonian'),(2096,'mk','fa','Macedonian'),(2097,'mk','fi','makedonia'),(2098,'mk','ga','Macedonian'),(2099,'mk','he','Macedonian'),(2100,'mk','hi','Macedonian'),(2101,'mk','hr','Macedonian'),(2102,'mk','hu','macedón'),(2103,'mk','hy','Macedonian'),(2104,'mk','id','Macedonian'),(2105,'mk','is','Macedonian'),(2106,'mk','it','Macedone'),(2107,'mk','ja','マケドニア語'),(2108,'mk','ko','마케도니아어'),(2109,'mk','ku','Macedonian'),(2110,'mk','la','Macedonian'),(2111,'mk','lv','Macedonian'),(2112,'mk','lt','Macedonian'),(2113,'mk','mk','Macedonian'),(2114,'mk','mt','Macedonian'),(2115,'mk','mo','Macedonian'),(2116,'mk','mn','Macedonian'),(2117,'mk','ne','Macedonian'),(2118,'mk','nl','Macedonisch'),(2119,'mk','nb','Macedonian'),(2120,'mk','pa','Macedonian'),(2121,'mk','pl','macedoński'),(2122,'mk','pt-pt','Macedônio'),(2123,'mk','pt-br','Macedônio'),(2124,'mk','qu','Macedonian'),(2125,'mk','ro','Macedoniană'),(2126,'mk','ru','Македонский'),(2127,'mk','sl','Macedonian'),(2128,'mk','so','Macedonian'),(2129,'mk','sq','Macedonian'),(2130,'mk','sr','Macedonian'),(2131,'mk','sv','Makedonska'),(2132,'mk','ta','Macedonian'),(2133,'mk','th','มาซิโดเนีย'),(2134,'mk','tr','Makedonyaca'),(2135,'mk','uk','Macedonian'),(2136,'mk','ur','Macedonian'),(2137,'mk','uz','Macedonian'),(2138,'mk','vi','Macedonian'),(2139,'mk','yi','Macedonian'),(2140,'mk','zh-hans','马其顿语'),(2141,'mk','zu','Macedonian'),(2142,'mk','zh-hant','馬其頓語'),(2143,'mt','en','Maltese'),(2144,'mt','es','Maltés'),(2145,'mt','de','Maltesisch'),(2146,'mt','fr','Maltais'),(2147,'mt','ar','المالطية'),(2148,'mt','bs','Maltese'),(2149,'mt','bg','Maltese'),(2150,'mt','ca','Maltese'),(2151,'mt','cs','Maltese'),(2152,'mt','sla','Maltézština'),(2153,'mt','cy','Maltese'),(2154,'mt','da','Maltese'),(2155,'mt','el','Μαλτεζικα'),(2156,'mt','eo','Maltese'),(2157,'mt','et','Maltese'),(2158,'mt','eu','Maltese'),(2159,'mt','fa','Maltese'),(2160,'mt','fi','malta'),(2161,'mt','ga','Maltese'),(2162,'mt','he','Maltese'),(2163,'mt','hi','Maltese'),(2164,'mt','hr','Maltese'),(2165,'mt','hu','máltai'),(2166,'mt','hy','Maltese'),(2167,'mt','id','Maltese'),(2168,'mt','is','Maltese'),(2169,'mt','it','Maltese'),(2170,'mt','ja','マルタ語'),(2171,'mt','ko','몰타어'),(2172,'mt','ku','Maltese'),(2173,'mt','la','Maltese'),(2174,'mt','lv','Maltese'),(2175,'mt','lt','Maltese'),(2176,'mt','mk','Maltese'),(2177,'mt','mt','Maltese'),(2178,'mt','mo','Maltese'),(2179,'mt','mn','Maltese'),(2180,'mt','ne','Maltese'),(2181,'mt','nl','Maltees'),(2182,'mt','nb','Maltese'),(2183,'mt','pa','Maltese'),(2184,'mt','pl','maltański'),(2185,'mt','pt-pt','Maltês'),(2186,'mt','pt-br','Maltês'),(2187,'mt','qu','Maltese'),(2188,'mt','ro','Malteză'),(2189,'mt','ru','Мальтийский'),(2190,'mt','sl','Maltese'),(2191,'mt','so','Maltese'),(2192,'mt','sq','Maltese'),(2193,'mt','sr','Maltese'),(2194,'mt','sv','Maltesiska'),(2195,'mt','ta','Maltese'),(2196,'mt','th','มอลทีส'),(2197,'mt','tr','Malta dili'),(2198,'mt','uk','Maltese'),(2199,'mt','ur','Maltese'),(2200,'mt','uz','Maltese'),(2201,'mt','vi','Maltese'),(2202,'mt','yi','Maltese'),(2203,'mt','zh-hans','马耳他语'),(2204,'mt','zu','Maltese'),(2205,'mt','zh-hant','馬爾他語'),(2206,'mo','en','Moldavian'),(2207,'mo','es','Moldavo'),(2208,'mo','de','Moldavisch'),(2209,'mo','fr','Moldave'),(2210,'mo','ar','المولدوفية'),(2211,'mo','bs','Moldavian'),(2212,'mo','bg','Moldavian'),(2213,'mo','ca','Moldavian'),(2214,'mo','cs','Moldavian'),(2215,'mo','sla','Moldavčina'),(2216,'mo','cy','Moldavian'),(2217,'mo','da','Moldavian'),(2218,'mo','el','Μολδαβικα'),(2219,'mo','eo','Moldavian'),(2220,'mo','et','Moldavian'),(2221,'mo','eu','Moldavian'),(2222,'mo','fa','Moldavian'),(2223,'mo','fi','moldavia'),(2224,'mo','ga','Moldavian'),(2225,'mo','he','Moldavian'),(2226,'mo','hi','Moldavian'),(2227,'mo','hr','Moldavian'),(2228,'mo','hu','moldovai'),(2229,'mo','hy','Moldavian'),(2230,'mo','id','Moldavian'),(2231,'mo','is','Moldavian'),(2232,'mo','it','Moldavo'),(2233,'mo','ja','モルダビア語'),(2234,'mo','ko','몰다비아어'),(2235,'mo','ku','Moldavian'),(2236,'mo','la','Moldavian'),(2237,'mo','lv','Moldavian'),(2238,'mo','lt','Moldavian'),(2239,'mo','mk','Moldavian'),(2240,'mo','mt','Moldavian'),(2241,'mo','mo','Moldavian'),(2242,'mo','mn','Moldavian'),(2243,'mo','ne','Moldavian'),(2244,'mo','nl','Moldavisch'),(2245,'mo','nb','Moldavian'),(2246,'mo','pa','Moldavian'),(2247,'mo','pl','mołdawski'),(2248,'mo','pt-pt','Moldavo'),(2249,'mo','pt-br','Moldavo'),(2250,'mo','qu','Moldavian'),(2251,'mo','ro','Moldoveană'),(2252,'mo','ru','Молдавский'),(2253,'mo','sl','Moldavian'),(2254,'mo','so','Moldavian'),(2255,'mo','sq','Moldavian'),(2256,'mo','sr','Moldavian'),(2257,'mo','sv','Moldaviska'),(2258,'mo','ta','Moldavian'),(2259,'mo','th','มอลดาเวียน'),(2260,'mo','tr','Moldovyaca'),(2261,'mo','uk','Moldavian'),(2262,'mo','ur','Moldavian'),(2263,'mo','uz','Moldavian'),(2264,'mo','vi','Moldavian'),(2265,'mo','yi','Moldavian'),(2266,'mo','zh-hans','摩尔达维亚语'),(2267,'mo','zu','Moldavian'),(2268,'mo','zh-hant','摩爾達維亞語'),(2269,'mn','en','Mongolian'),(2270,'mn','es','Mongol'),(2271,'mn','de','Mongolisch'),(2272,'mn','fr','Mongol'),(2273,'mn','ar','المنغولية'),(2274,'mn','bs','Mongolian'),(2275,'mn','bg','Mongolian'),(2276,'mn','ca','Mongolian'),(2277,'mn','cs','Mongolian'),(2278,'mn','sla','Mongolština'),(2279,'mn','cy','Mongolian'),(2280,'mn','da','Mongolian'),(2281,'mn','el','Μογγολικα'),(2282,'mn','eo','Mongolian'),(2283,'mn','et','Mongolian'),(2284,'mn','eu','Mongolian'),(2285,'mn','fa','Mongolian'),(2286,'mn','fi','mongoli'),(2287,'mn','ga','Mongolian'),(2288,'mn','he','Mongolian'),(2289,'mn','hi','Mongolian'),(2290,'mn','hr','Mongolian'),(2291,'mn','hu','mongol'),(2292,'mn','hy','Mongolian'),(2293,'mn','id','Mongolian'),(2294,'mn','is','Mongolian'),(2295,'mn','it','Mongolo'),(2296,'mn','ja','モンゴル語'),(2297,'mn','ko','몽골어'),(2298,'mn','ku','Mongolian'),(2299,'mn','la','Mongolian'),(2300,'mn','lv','Mongolian'),(2301,'mn','lt','Mongolian'),(2302,'mn','mk','Mongolian'),(2303,'mn','mt','Mongolian'),(2304,'mn','mo','Mongolian'),(2305,'mn','mn','Mongolian'),(2306,'mn','ne','Mongolian'),(2307,'mn','nl','Mongools'),(2308,'mn','nb','Mongolian'),(2309,'mn','pa','Mongolian'),(2310,'mn','pl','mongolski'),(2311,'mn','pt-pt','Mongolian'),(2312,'mn','pt-br','Mongolian'),(2313,'mn','qu','Mongolian'),(2314,'mn','ro','Mongoleză'),(2315,'mn','ru','Монгольский'),(2316,'mn','sl','Mongolian'),(2317,'mn','so','Mongolian'),(2318,'mn','sq','Mongolian'),(2319,'mn','sr','Mongolian'),(2320,'mn','sv','Mongoliska'),(2321,'mn','ta','Mongolian'),(2322,'mn','th','มองโกเลีย'),(2323,'mn','tr','Mongolca'),(2324,'mn','uk','Mongolian'),(2325,'mn','ur','Mongolian'),(2326,'mn','uz','Mongolian'),(2327,'mn','vi','Mongolian'),(2328,'mn','yi','Mongolian'),(2329,'mn','zh-hans','蒙古语'),(2330,'mn','zu','Mongolian'),(2331,'mn','zh-hant','蒙古語'),(2332,'ne','en','Nepali'),(2333,'ne','es','Nepalí'),(2334,'ne','de','Nepali'),(2335,'ne','fr','Népalais'),(2336,'ne','ar','النيبالية'),(2337,'ne','bs','Nepali'),(2338,'ne','bg','Nepali'),(2339,'ne','ca','Nepali'),(2340,'ne','cs','Nepali'),(2341,'ne','sla','Nepálčina'),(2342,'ne','cy','Nepali'),(2343,'ne','da','Nepali'),(2344,'ne','el','Νεπαλι'),(2345,'ne','eo','Nepali'),(2346,'ne','et','Nepali'),(2347,'ne','eu','Nepali'),(2348,'ne','fa','Nepali'),(2349,'ne','fi','nepali'),(2350,'ne','ga','Nepali'),(2351,'ne','he','Nepali'),(2352,'ne','hi','Nepali'),(2353,'ne','hr','Nepali'),(2354,'ne','hu','nepáli'),(2355,'ne','hy','Nepali'),(2356,'ne','id','Nepali'),(2357,'ne','is','Nepali'),(2358,'ne','it','Nepalese'),(2359,'ne','ja','ネパール語'),(2360,'ne','ko','네팔어'),(2361,'ne','ku','Nepali'),(2362,'ne','la','Nepali'),(2363,'ne','lv','Nepali'),(2364,'ne','lt','Nepali'),(2365,'ne','mk','Nepali'),(2366,'ne','mt','Nepali'),(2367,'ne','mo','Nepali'),(2368,'ne','mn','Nepali'),(2369,'ne','ne','Nepali'),(2370,'ne','nl','Nepalees'),(2371,'ne','nb','Nepali'),(2372,'ne','pa','Nepali'),(2373,'ne','pl','nepalski'),(2374,'ne','pt-pt','Nepali'),(2375,'ne','pt-br','Nepali'),(2376,'ne','qu','Nepali'),(2377,'ne','ro','Nepaleză'),(2378,'ne','ru','Непальский'),(2379,'ne','sl','Nepali'),(2380,'ne','so','Nepali'),(2381,'ne','sq','Nepali'),(2382,'ne','sr','Nepali'),(2383,'ne','sv','Nepalesiska'),(2384,'ne','ta','Nepali'),(2385,'ne','th','เนปาล'),(2386,'ne','tr','Nepal dili'),(2387,'ne','uk','Nepali'),(2388,'ne','ur','Nepali'),(2389,'ne','uz','Nepali'),(2390,'ne','vi','Nepali'),(2391,'ne','yi','Nepali'),(2392,'ne','zh-hans','尼泊尔语'),(2393,'ne','zu','Nepali'),(2394,'ne','zh-hant','尼泊爾語'),(2395,'nl','en','Dutch'),(2396,'nl','es','Holandés'),(2397,'nl','de','Holländisch'),(2398,'nl','fr','Néerlandais'),(2399,'nl','ar','الهولندية'),(2400,'nl','bs','Dutch'),(2401,'nl','bg','Dutch'),(2402,'nl','ca','Dutch'),(2403,'nl','cs','Dutch'),(2404,'nl','sla','Holandčina'),(2405,'nl','cy','Dutch'),(2406,'nl','da','Dutch'),(2407,'nl','el','Ολλανδικα'),(2408,'nl','eo','Dutch'),(2409,'nl','et','Dutch'),(2410,'nl','eu','Dutch'),(2411,'nl','fa','Dutch'),(2412,'nl','fi','hollanti'),(2413,'nl','ga','Dutch'),(2414,'nl','he','הולנדית'),(2415,'nl','hi','Dutch'),(2416,'nl','hr','Dutch'),(2417,'nl','hu','holland'),(2418,'nl','hy','Dutch'),(2419,'nl','id','Dutch'),(2420,'nl','is','Dutch'),(2421,'nl','it','Neerlandese'),(2422,'nl','ja','オランダ語'),(2423,'nl','ko','화란어'),(2424,'nl','ku','Dutch'),(2425,'nl','la','Dutch'),(2426,'nl','lv','Dutch'),(2427,'nl','lt','Dutch'),(2428,'nl','mk','Dutch'),(2429,'nl','mt','Dutch'),(2430,'nl','mo','Dutch'),(2431,'nl','mn','Dutch'),(2432,'nl','ne','Dutch'),(2433,'nl','nl','Nederlands'),(2434,'nl','nb','Dutch'),(2435,'nl','pa','Dutch'),(2436,'nl','pl','holenderski'),(2437,'nl','pt-pt','Holandês'),(2438,'nl','pt-br','Holandês'),(2439,'nl','qu','Dutch'),(2440,'nl','ro','Olaneză'),(2441,'nl','ru','Голландский'),(2442,'nl','sl','Dutch'),(2443,'nl','so','Dutch'),(2444,'nl','sq','Dutch'),(2445,'nl','sr','Dutch'),(2446,'nl','sv','Nederländska'),(2447,'nl','ta','Dutch'),(2448,'nl','th','ดัตช์'),(2449,'nl','tr','Hollandaca'),(2450,'nl','uk','Dutch'),(2451,'nl','ur','Dutch'),(2452,'nl','uz','Dutch'),(2453,'nl','vi','Dutch'),(2454,'nl','yi','Dutch'),(2455,'nl','zh-hans','荷兰语'),(2456,'nl','zu','Dutch'),(2457,'nl','zh-hant','荷蘭語'),(2458,'nb','en','Norwegian Bokmål'),(2459,'nb','es','Bokmål'),(2460,'nb','de','Norwegisch (Buchsprache)'),(2461,'nb','fr','Norvégien Bokmål'),(2462,'nb','ar','البوكمالية النرويجية'),(2463,'nb','bs','Norwegian Bokmål'),(2464,'nb','bg','Norwegian Bokmål'),(2465,'nb','ca','Norwegian Bokmål'),(2466,'nb','cs','Norwegian Bokmål'),(2467,'nb','sla','Nórsky jazyk Bokmål'),(2468,'nb','cy','Norwegian Bokmål'),(2469,'nb','da','Norwegian Bokmål'),(2470,'nb','el','Νορβηγικα'),(2471,'nb','eo','Norwegian Bokmål'),(2472,'nb','et','Norwegian Bokmål'),(2473,'nb','eu','Norwegian Bokmål'),(2474,'nb','fa','Norwegian Bokmål'),(2475,'nb','fi','kirjanorja'),(2476,'nb','ga','Norwegian Bokmål'),(2477,'nb','he','נורווגית'),(2478,'nb','hi','Norwegian Bokmål'),(2479,'nb','hr','Norwegian Bokmål'),(2480,'nb','hu','norvég bokmål'),(2481,'nb','hy','Norwegian Bokmål'),(2482,'nb','id','Norwegian Bokmål'),(2483,'nb','is','Norwegian Bokmål'),(2484,'nb','it','Norvegese Bokmål'),(2485,'nb','ja','ノルウェー・ブークモール'),(2486,'nb','ko','노르웨이 보크말어'),(2487,'nb','ku','Norwegian Bokmål'),(2488,'nb','la','Norwegian Bokmål'),(2489,'nb','lv','Norwegian Bokmål'),(2490,'nb','lt','Norwegian Bokmål'),(2491,'nb','mk','Norwegian Bokmål'),(2492,'nb','mt','Norwegian Bokmål'),(2493,'nb','mo','Norwegian Bokmål'),(2494,'nb','mn','Norwegian Bokmål'),(2495,'nb','ne','Norwegian Bokmål'),(2496,'nb','nl','Noors Bokmål'),(2497,'nb','nb','Norwegian Bokmål'),(2498,'nb','pa','Norwegian Bokmål'),(2499,'nb','pl','norweski bokmål'),(2500,'nb','pt-pt','Norueguês'),(2501,'nb','pt-br','Norueguês'),(2502,'nb','qu','Norwegian Bokmål'),(2503,'nb','ro','Bokmål (norvegiană)'),(2504,'nb','ru','Норвежский букмол'),(2505,'nb','sl','Norwegian Bokmål'),(2506,'nb','so','Norwegian Bokmål'),(2507,'nb','sq','Norwegian Bokmål'),(2508,'nb','sr','Norwegian Bokmål'),(2509,'nb','sv','Norskt Bokmål'),(2510,'nb','ta','Norwegian Bokmål'),(2511,'nb','th','นอร์วิเจียนบอกมาล'),(2512,'nb','tr','Bokmal Norveç dili'),(2513,'nb','uk','Norwegian Bokmål'),(2514,'nb','ur','Norwegian Bokmål'),(2515,'nb','uz','Norwegian Bokmål'),(2516,'nb','vi','Norwegian Bokmål'),(2517,'nb','yi','Norwegian Bokmål'),(2518,'nb','zh-hans','挪威布克莫尔语'),(2519,'nb','zu','Norwegian Bokmål'),(2520,'nb','zh-hant','挪威布克莫爾語'),(2521,'pa','en','Punjabi'),(2522,'pa','es','Panyabí '),(2523,'pa','de','Pandschabi'),(2524,'pa','fr','Panjabi'),(2525,'pa','ar','البنجابية'),(2526,'pa','bs','Punjabi'),(2527,'pa','bg','Punjabi'),(2528,'pa','ca','Punjabi'),(2529,'pa','cs','Punjabi'),(2530,'pa','sla','Pandžábčina'),(2531,'pa','cy','Punjabi'),(2532,'pa','da','Punjabi'),(2533,'pa','el','Panjabi'),(2534,'pa','eo','Punjabi'),(2535,'pa','et','Punjabi'),(2536,'pa','eu','Punjabi'),(2537,'pa','fa','Punjabi'),(2538,'pa','fi','pandzabi'),(2539,'pa','ga','Punjabi'),(2540,'pa','he','Punjabi'),(2541,'pa','hi','Punjabi'),(2542,'pa','hr','Punjabi'),(2543,'pa','hu','pandzsábi'),(2544,'pa','hy','Punjabi'),(2545,'pa','id','Punjabi'),(2546,'pa','is','Punjabi'),(2547,'pa','it','Panjabi'),(2548,'pa','ja','パンジャーブ語'),(2549,'pa','ko','펀자브어'),(2550,'pa','ku','Punjabi'),(2551,'pa','la','Punjabi'),(2552,'pa','lv','Punjabi'),(2553,'pa','lt','Punjabi'),(2554,'pa','mk','Punjabi'),(2555,'pa','mt','Punjabi'),(2556,'pa','mo','Punjabi'),(2557,'pa','mn','Punjabi'),(2558,'pa','ne','Punjabi'),(2559,'pa','nl','Punjabi'),(2560,'pa','nb','Punjabi'),(2561,'pa','pa','Punjabi'),(2562,'pa','pl','pendżabi'),(2563,'pa','pt-pt','Panjabi'),(2564,'pa','pt-br','Panjabi'),(2565,'pa','qu','Punjabi'),(2566,'pa','ro','Punjabi'),(2567,'pa','ru','Панджаби'),(2568,'pa','sl','Punjabi'),(2569,'pa','so','Punjabi'),(2570,'pa','sq','Punjabi'),(2571,'pa','sr','Punjabi'),(2572,'pa','sv','Punjabi'),(2573,'pa','ta','Punjabi'),(2574,'pa','th','ปัญจาบ'),(2575,'pa','tr','Pencapça'),(2576,'pa','uk','Punjabi'),(2577,'pa','ur','Punjabi'),(2578,'pa','uz','Punjabi'),(2579,'pa','vi','Punjabi'),(2580,'pa','yi','Punjabi'),(2581,'pa','zh-hans','旁遮普语'),(2582,'pa','zu','Punjabi'),(2583,'pa','zh-hant','旁遮普語'),(2584,'pl','en','Polish'),(2585,'pl','es','Polaco'),(2586,'pl','de','Polnisch'),(2587,'pl','fr','Polonais'),(2588,'pl','ar','البولندية'),(2589,'pl','bs','Polish'),(2590,'pl','bg','Polish'),(2591,'pl','ca','Polish'),(2592,'pl','cs','Polish'),(2593,'pl','sla','Polština'),(2594,'pl','cy','Polish'),(2595,'pl','da','Polish'),(2596,'pl','el','Πολωνικα'),(2597,'pl','eo','Polish'),(2598,'pl','et','Polish'),(2599,'pl','eu','Polish'),(2600,'pl','fa','Polish'),(2601,'pl','fi','puola'),(2602,'pl','ga','Polish'),(2603,'pl','he','פולנית'),(2604,'pl','hi','Polish'),(2605,'pl','hr','Polish'),(2606,'pl','hu','lengyel'),(2607,'pl','hy','Polish'),(2608,'pl','id','Polish'),(2609,'pl','is','Polish'),(2610,'pl','it','Polacco'),(2611,'pl','ja','ポーランド語'),(2612,'pl','ko','폴란드어'),(2613,'pl','ku','Polish'),(2614,'pl','la','Polish'),(2615,'pl','lv','Polish'),(2616,'pl','lt','Polish'),(2617,'pl','mk','Polish'),(2618,'pl','mt','Polish'),(2619,'pl','mo','Polish'),(2620,'pl','mn','Polish'),(2621,'pl','ne','Polish'),(2622,'pl','nl','Pools'),(2623,'pl','nb','Polish'),(2624,'pl','pa','Polish'),(2625,'pl','pl','polski'),(2626,'pl','pt-pt','Polonês'),(2627,'pl','pt-br','Polonês'),(2628,'pl','qu','Polish'),(2629,'pl','ro','Poloneză'),(2630,'pl','ru','Польский'),(2631,'pl','sl','Polish'),(2632,'pl','so','Polish'),(2633,'pl','sq','Polish'),(2634,'pl','sr','Polish'),(2635,'pl','sv','Polska'),(2636,'pl','ta','Polish'),(2637,'pl','th','โปแลนด์'),(2638,'pl','tr','Polonyaca'),(2639,'pl','uk','Polish'),(2640,'pl','ur','Polish'),(2641,'pl','uz','Polish'),(2642,'pl','vi','Polish'),(2643,'pl','yi','Polish'),(2644,'pl','zh-hans','波兰语'),(2645,'pl','zu','Polish'),(2646,'pl','zh-hant','波蘭語'),(2647,'pt-pt','en','Portuguese (Portugal)'),(2648,'pt-pt','es','Portugués, Portugal'),(2649,'pt-pt','de','Portugiesisch, Portugal'),(2650,'pt-pt','fr','Portugais - du Portugal'),(2651,'pt-pt','ar','البرتغالية ، البرتغال'),(2652,'pt-pt','bs','Portuguese, Portugal'),(2653,'pt-pt','bg','Portuguese, Portugal'),(2654,'pt-pt','ca','Portuguese, Portugal'),(2655,'pt-pt','cs','Portuguese, Portugal'),(2656,'pt-pt','sla','Portugalština'),(2657,'pt-pt','cy','Portuguese, Portugal'),(2658,'pt-pt','da','Portuguese, Portugal'),(2659,'pt-pt','el','Πορτογαλικα'),(2660,'pt-pt','eo','Portuguese, Portugal'),(2661,'pt-pt','et','Portuguese, Portugal'),(2662,'pt-pt','eu','Portuguese, Portugal'),(2663,'pt-pt','fa','Portuguese, Portugal'),(2664,'pt-pt','fi','portugali'),(2665,'pt-pt','ga','Portuguese, Portugal'),(2666,'pt-pt','he','פורטוגזית'),(2667,'pt-pt','hi','Portuguese, Portugal'),(2668,'pt-pt','hr','Portuguese, Portugal'),(2669,'pt-pt','hu','portugál'),(2670,'pt-pt','hy','Portuguese, Portugal'),(2671,'pt-pt','id','Portuguese, Portugal'),(2672,'pt-pt','is','Portuguese, Portugal'),(2673,'pt-pt','it','Portoghese, Portogallo'),(2674,'pt-pt','ja','ポルトガル語'),(2675,'pt-pt','ko','포르투갈 포르투갈어'),(2676,'pt-pt','ku','Portuguese, Portugal'),(2677,'pt-pt','la','Portuguese, Portugal'),(2678,'pt-pt','lv','Portuguese, Portugal'),(2679,'pt-pt','lt','Portuguese, Portugal'),(2680,'pt-pt','mk','Portuguese, Portugal'),(2681,'pt-pt','mt','Portuguese, Portugal'),(2682,'pt-pt','mo','Portuguese, Portugal'),(2683,'pt-pt','mn','Portuguese, Portugal'),(2684,'pt-pt','ne','Portuguese, Portugal'),(2685,'pt-pt','nl','Portugees, Portugal'),(2686,'pt-pt','nb','Portuguese, Portugal'),(2687,'pt-pt','pa','Portuguese, Portugal'),(2688,'pt-pt','pl','portugalski, Portugalia'),(2689,'pt-pt','pt-pt','Português'),(2690,'pt-pt','pt-br','Português'),(2691,'pt-pt','qu','Portuguese, Portugal'),(2692,'pt-pt','ro','Portugheză (Portugalia)'),(2693,'pt-pt','ru','Португальский, Португалия'),(2694,'pt-pt','sl','Portuguese, Portugal'),(2695,'pt-pt','so','Portuguese, Portugal'),(2696,'pt-pt','sq','Portuguese, Portugal'),(2697,'pt-pt','sr','Portuguese, Portugal'),(2698,'pt-pt','sv','Portugisiska, Portugal'),(2699,'pt-pt','ta','Portuguese, Portugal'),(2700,'pt-pt','th','โปรตุเกส'),(2701,'pt-pt','tr','Portekizce, Portekiz'),(2702,'pt-pt','uk','Portuguese, Portugal'),(2703,'pt-pt','ur','Portuguese, Portugal'),(2704,'pt-pt','uz','Portuguese, Portugal'),(2705,'pt-pt','vi','Portuguese, Portugal'),(2706,'pt-pt','yi','Portuguese, Portugal'),(2707,'pt-pt','zh-hans','葡萄牙语（葡萄牙）'),(2708,'pt-pt','zu','Portuguese, Portugal'),(2709,'pt-pt','zh-hant','葡萄牙語（葡萄牙）'),(2710,'pt-br','en','Portuguese (Brazil)'),(2711,'pt-br','es','Portugués, Brasil'),(2712,'pt-br','de','Portugiesisch, Brasilien'),(2713,'pt-br','fr','Portugais - du Brésil'),(2714,'pt-br','ar','البرتغالية ،البرازيل'),(2715,'pt-br','bs','Portuguese, Brazil'),(2716,'pt-br','bg','Portuguese, Brazil'),(2717,'pt-br','ca','Portuguese, Brazil'),(2718,'pt-br','cs','Portuguese, Brazil'),(2719,'pt-br','sla','Brazílska Portugalština'),(2720,'pt-br','cy','Portuguese, Brazil'),(2721,'pt-br','da','Portuguese, Brazil'),(2722,'pt-br','el','Πορτογαλικα'),(2723,'pt-br','eo','Portuguese, Brazil'),(2724,'pt-br','et','Portuguese, Brazil'),(2725,'pt-br','eu','Portuguese, Brazil'),(2726,'pt-br','fa','Portuguese, Brazil'),(2727,'pt-br','fi','Brasilian portugali'),(2728,'pt-br','ga','Portuguese, Brazil'),(2729,'pt-br','he','פורטוגזית'),(2730,'pt-br','hi','Portuguese, Brazil'),(2731,'pt-br','hr','Portuguese, Brazil'),(2732,'pt-br','hu','brazil'),(2733,'pt-br','hy','Portuguese, Brazil'),(2734,'pt-br','id','Portuguese, Brazil'),(2735,'pt-br','is','Portuguese, Brazil'),(2736,'pt-br','it','Portoghese, Brasile'),(2737,'pt-br','ja','ポルトガル語（ブラジル）'),(2738,'pt-br','ko','브라질 포르투갈어'),(2739,'pt-br','ku','Portuguese, Brazil'),(2740,'pt-br','la','Portuguese, Brazil'),(2741,'pt-br','lv','Portuguese, Brazil'),(2742,'pt-br','lt','Portuguese, Brazil'),(2743,'pt-br','mk','Portuguese, Brazil'),(2744,'pt-br','mt','Portuguese, Brazil'),(2745,'pt-br','mo','Portuguese, Brazil'),(2746,'pt-br','mn','Portuguese, Brazil'),(2747,'pt-br','ne','Portuguese, Brazil'),(2748,'pt-br','nl','Portugees, Brazilië'),(2749,'pt-br','nb','Portuguese, Brazil'),(2750,'pt-br','pa','Portuguese, Brazil'),(2751,'pt-br','pl','portugalski, Brazylia'),(2752,'pt-br','pt-pt','Português'),(2753,'pt-br','pt-br','Português'),(2754,'pt-br','qu','Portuguese, Brazil'),(2755,'pt-br','ro','Portugheză (Brazilia)'),(2756,'pt-br','ru','Португальский, Бразилия'),(2757,'pt-br','sl','Portuguese, Brazil'),(2758,'pt-br','so','Portuguese, Brazil'),(2759,'pt-br','sq','Portuguese, Brazil'),(2760,'pt-br','sr','Portuguese, Brazil'),(2761,'pt-br','sv','Portugisiska, Brasilien'),(2762,'pt-br','ta','Portuguese, Brazil'),(2763,'pt-br','th','โปรตุเกสบราซิล'),(2764,'pt-br','tr','Portekizce, Brezilya'),(2765,'pt-br','uk','Portuguese, Brazil'),(2766,'pt-br','ur','Portuguese, Brazil'),(2767,'pt-br','uz','Portuguese, Brazil'),(2768,'pt-br','vi','Portuguese, Brazil'),(2769,'pt-br','yi','Portuguese, Brazil'),(2770,'pt-br','zh-hans','葡萄牙语（巴西）'),(2771,'pt-br','zu','Portuguese, Brazil'),(2772,'pt-br','zh-hant','葡萄牙語（巴西）'),(2773,'qu','en','Quechua'),(2774,'qu','es','Quechua'),(2775,'qu','de','Quechua'),(2776,'qu','fr','Quechua'),(2777,'qu','ar','الكويتشوا'),(2778,'qu','bs','Quechua'),(2779,'qu','bg','Quechua'),(2780,'qu','ca','Quechua'),(2781,'qu','cs','Quechua'),(2782,'qu','sla','Jazyk Quechua'),(2783,'qu','cy','Quechua'),(2784,'qu','da','Quechua'),(2785,'qu','el','Κετσουα'),(2786,'qu','eo','Quechua'),(2787,'qu','et','Quechua'),(2788,'qu','eu','Quechua'),(2789,'qu','fa','Quechua'),(2790,'qu','fi','ketsua'),(2791,'qu','ga','Quechua'),(2792,'qu','he','Quechua'),(2793,'qu','hi','Quechua'),(2794,'qu','hr','Quechua'),(2795,'qu','hu','quechua'),(2796,'qu','hy','Quechua'),(2797,'qu','id','Quechua'),(2798,'qu','is','Quechua'),(2799,'qu','it','Quechua'),(2800,'qu','ja','ケチュア語'),(2801,'qu','ko','케추아어'),(2802,'qu','ku','Quechua'),(2803,'qu','la','Quechua'),(2804,'qu','lv','Quechua'),(2805,'qu','lt','Quechua'),(2806,'qu','mk','Quechua'),(2807,'qu','mt','Quechua'),(2808,'qu','mo','Quechua'),(2809,'qu','mn','Quechua'),(2810,'qu','ne','Quechua'),(2811,'qu','nl','Quechua'),(2812,'qu','nb','Quechua'),(2813,'qu','pa','Quechua'),(2814,'qu','pl','keczua'),(2815,'qu','pt-pt','Quechua'),(2816,'qu','pt-br','Quechua'),(2817,'qu','qu','Quechua'),(2818,'qu','ro','Quechuană'),(2819,'qu','ru','Кечуа'),(2820,'qu','sl','Quechua'),(2821,'qu','so','Quechua'),(2822,'qu','sq','Quechua'),(2823,'qu','sr','Quechua'),(2824,'qu','sv','Quechua'),(2825,'qu','ta','Quechua'),(2826,'qu','th','คิวชัว'),(2827,'qu','tr','Quechua dili'),(2828,'qu','uk','Quechua'),(2829,'qu','ur','Quechua'),(2830,'qu','uz','Quechua'),(2831,'qu','vi','Quechua'),(2832,'qu','yi','Quechua'),(2833,'qu','zh-hans','盖丘亚语'),(2834,'qu','zu','Quechua'),(2835,'qu','zh-hant','蓋丘亞語'),(2836,'ro','en','Romanian'),(2837,'ro','es','Rumano'),(2838,'ro','de','Rumänisch'),(2839,'ro','fr','Roumain'),(2840,'ro','ar','الرومانية'),(2841,'ro','bs','Romanian'),(2842,'ro','bg','Romanian'),(2843,'ro','ca','Romanian'),(2844,'ro','cs','Romanian'),(2845,'ro','sla','Rumunčina'),(2846,'ro','cy','Romanian'),(2847,'ro','da','Romanian'),(2848,'ro','el','Ρουμανικα'),(2849,'ro','eo','Romanian'),(2850,'ro','et','Romanian'),(2851,'ro','eu','Romanian'),(2852,'ro','fa','Romanian'),(2853,'ro','fi','romania'),(2854,'ro','ga','Romanian'),(2855,'ro','he','רומנית'),(2856,'ro','hi','Romanian'),(2857,'ro','hr','Romanian'),(2858,'ro','hu','román'),(2859,'ro','hy','Romanian'),(2860,'ro','id','Romanian'),(2861,'ro','is','Romanian'),(2862,'ro','it','Rumeno'),(2863,'ro','ja','ルーマニア語'),(2864,'ro','ko','로마니아어'),(2865,'ro','ku','Romanian'),(2866,'ro','la','Romanian'),(2867,'ro','lv','Romanian'),(2868,'ro','lt','Romanian'),(2869,'ro','mk','Romanian'),(2870,'ro','mt','Romanian'),(2871,'ro','mo','Romanian'),(2872,'ro','mn','Romanian'),(2873,'ro','ne','Romanian'),(2874,'ro','nl','Roemeens'),(2875,'ro','nb','Romanian'),(2876,'ro','pa','Romanian'),(2877,'ro','pl','rumuński'),(2878,'ro','pt-pt','Romeno'),(2879,'ro','pt-br','Romeno'),(2880,'ro','qu','Romanian'),(2881,'ro','ro','Română'),(2882,'ro','ru','Румынский'),(2883,'ro','sl','Romanian'),(2884,'ro','so','Romanian'),(2885,'ro','sq','Romanian'),(2886,'ro','sr','Romanian'),(2887,'ro','sv','Rumänska'),(2888,'ro','ta','Romanian'),(2889,'ro','th','โรมาเนีย'),(2890,'ro','tr','Rumence'),(2891,'ro','uk','Romanian'),(2892,'ro','ur','Romanian'),(2893,'ro','uz','Romanian'),(2894,'ro','vi','Romanian'),(2895,'ro','yi','Romanian'),(2896,'ro','zh-hans','罗马尼亚语'),(2897,'ro','zu','Romanian'),(2898,'ro','zh-hant','羅馬尼亞語'),(2899,'ru','en','Russian'),(2900,'ru','es','Ruso'),(2901,'ru','de','Russisch'),(2902,'ru','fr','Russe'),(2903,'ru','ar','الروسية'),(2904,'ru','bs','Russian'),(2905,'ru','bg','Russian'),(2906,'ru','ca','Russian'),(2907,'ru','cs','Russian'),(2908,'ru','sla','Ruština'),(2909,'ru','cy','Russian'),(2910,'ru','da','Russian'),(2911,'ru','el','Ρωσικα'),(2912,'ru','eo','Russian'),(2913,'ru','et','Russian'),(2914,'ru','eu','Russian'),(2915,'ru','fa','Russian'),(2916,'ru','fi','venäjä'),(2917,'ru','ga','Russian'),(2918,'ru','he','רוסית'),(2919,'ru','hi','Russian'),(2920,'ru','hr','Russian'),(2921,'ru','hu','orosz'),(2922,'ru','hy','Russian'),(2923,'ru','id','Russian'),(2924,'ru','is','Russian'),(2925,'ru','it','Russo'),(2926,'ru','ja','ロシア語'),(2927,'ru','ko','러시아어'),(2928,'ru','ku','Russian'),(2929,'ru','la','Russian'),(2930,'ru','lv','Russian'),(2931,'ru','lt','Russian'),(2932,'ru','mk','Russian'),(2933,'ru','mt','Russian'),(2934,'ru','mo','Russian'),(2935,'ru','mn','Russian'),(2936,'ru','ne','Russian'),(2937,'ru','nl','Russisch'),(2938,'ru','nb','Russian'),(2939,'ru','pa','Russian'),(2940,'ru','pl','rosyjski'),(2941,'ru','pt-pt','Russo'),(2942,'ru','pt-br','Russo'),(2943,'ru','qu','Russian'),(2944,'ru','ro','Rusă'),(2945,'ru','ru','Русский'),(2946,'ru','sl','Russian'),(2947,'ru','so','Russian'),(2948,'ru','sq','Russian'),(2949,'ru','sr','Russian'),(2950,'ru','sv','Ryska'),(2951,'ru','ta','Russian'),(2952,'ru','th','รัสเซีย'),(2953,'ru','tr','Rusça'),(2954,'ru','uk','Russian'),(2955,'ru','ur','Russian'),(2956,'ru','uz','Russian'),(2957,'ru','vi','Russian'),(2958,'ru','yi','Russian'),(2959,'ru','zh-hans','俄语'),(2960,'ru','zu','Russian'),(2961,'ru','zh-hant','俄語'),(2962,'sl','en','Slovenian'),(2963,'sl','es','Esloveno'),(2964,'sl','de','Slowenisch'),(2965,'sl','fr','Slovène'),(2966,'sl','ar','السلوفانية'),(2967,'sl','bs','Slovenian'),(2968,'sl','bg','Slovenian'),(2969,'sl','ca','Slovenian'),(2970,'sl','cs','Slovenian'),(2971,'sl','sla','Slovinčina'),(2972,'sl','cy','Slovenian'),(2973,'sl','da','Slovenian'),(2974,'sl','el','Σλοβενικα'),(2975,'sl','eo','Slovenian'),(2976,'sl','et','Slovenian'),(2977,'sl','eu','Slovenian'),(2978,'sl','fa','Slovenian'),(2979,'sl','fi','sloveeni'),(2980,'sl','ga','Slovenian'),(2981,'sl','he','Slovenian'),(2982,'sl','hi','Slovenian'),(2983,'sl','hr','Slovenian'),(2984,'sl','hu','szlovén'),(2985,'sl','hy','Slovenian'),(2986,'sl','id','Slovenian'),(2987,'sl','is','Slovenian'),(2988,'sl','it','Sloveno'),(2989,'sl','ja','スロベニア語'),(2990,'sl','ko','슬로베니아어'),(2991,'sl','ku','Slovenian'),(2992,'sl','la','Slovenian'),(2993,'sl','lv','Slovenian'),(2994,'sl','lt','Slovenian'),(2995,'sl','mk','Slovenian'),(2996,'sl','mt','Slovenian'),(2997,'sl','mo','Slovenian'),(2998,'sl','mn','Slovenian'),(2999,'sl','ne','Slovenian'),(3000,'sl','nl','Sloveens'),(3001,'sl','nb','Slovenian'),(3002,'sl','pa','Slovenian'),(3003,'sl','pl','słoweński'),(3004,'sl','pt-pt','Esloveno'),(3005,'sl','pt-br','Esloveno'),(3006,'sl','qu','Slovenian'),(3007,'sl','ro','Slovenă'),(3008,'sl','ru','Словенский'),(3009,'sl','sl','Slovenian'),(3010,'sl','so','Slovenian'),(3011,'sl','sq','Slovenian'),(3012,'sl','sr','Slovenian'),(3013,'sl','sv','Slovenska'),(3014,'sl','ta','Slovenian'),(3015,'sl','th','สโลวีเนียน'),(3016,'sl','tr','Sloven dili'),(3017,'sl','uk','Slovenian'),(3018,'sl','ur','Slovenian'),(3019,'sl','uz','Slovenian'),(3020,'sl','vi','Slovenian'),(3021,'sl','yi','Slovenian'),(3022,'sl','zh-hans','斯洛文尼亚语'),(3023,'sl','zu','Slovenian'),(3024,'sl','zh-hant','斯洛文尼亞語'),(3025,'so','en','Somali'),(3026,'so','es','Somalí'),(3027,'so','de','Somali'),(3028,'so','fr','Somali'),(3029,'so','ar','الصومالية'),(3030,'so','bs','Somali'),(3031,'so','bg','Somali'),(3032,'so','ca','Somali'),(3033,'so','cs','Somali'),(3034,'so','sla','Somálčina'),(3035,'so','cy','Somali'),(3036,'so','da','Somali'),(3037,'so','el','Somali'),(3038,'so','eo','Somali'),(3039,'so','et','Somali'),(3040,'so','eu','Somali'),(3041,'so','fa','Somali'),(3042,'so','fi','somali'),(3043,'so','ga','Somali'),(3044,'so','he','Somali'),(3045,'so','hi','Somali'),(3046,'so','hr','Somali'),(3047,'so','hu','szomáli'),(3048,'so','hy','Somali'),(3049,'so','id','Somali'),(3050,'so','is','Somali'),(3051,'so','it','Somalo'),(3052,'so','ja','ソマリ語'),(3053,'so','ko','소말리아어'),(3054,'so','ku','Somali'),(3055,'so','la','Somali'),(3056,'so','lv','Somali'),(3057,'so','lt','Somali'),(3058,'so','mk','Somali'),(3059,'so','mt','Somali'),(3060,'so','mo','Somali'),(3061,'so','mn','Somali'),(3062,'so','ne','Somali'),(3063,'so','nl','Somalisch'),(3064,'so','nb','Somali'),(3065,'so','pa','Somali'),(3066,'so','pl','somalijski'),(3067,'so','pt-pt','Somali'),(3068,'so','pt-br','Somali'),(3069,'so','qu','Somali'),(3070,'so','ro','Somaleză'),(3071,'so','ru','Сомалийский'),(3072,'so','sl','Somali'),(3073,'so','so','Somali'),(3074,'so','sq','Somali'),(3075,'so','sr','Somali'),(3076,'so','sv','Somaliska'),(3077,'so','ta','Somali'),(3078,'so','th','โซมาลี'),(3079,'so','tr','Somalice'),(3080,'so','uk','Somali'),(3081,'so','ur','Somali'),(3082,'so','uz','Somali'),(3083,'so','vi','Somali'),(3084,'so','yi','Somali'),(3085,'so','zh-hans','索马里语'),(3086,'so','zu','Somali'),(3087,'so','zh-hant','索馬里語'),(3088,'sq','en','Albanian'),(3089,'sq','es','Albanés'),(3090,'sq','de','Albanisch'),(3091,'sq','fr','Albanais'),(3092,'sq','ar','الألبانية'),(3093,'sq','bs','Albanian'),(3094,'sq','bg','Albanian'),(3095,'sq','ca','Albanian'),(3096,'sq','cs','Albanian'),(3097,'sq','sla','Albánčina'),(3098,'sq','cy','Albanian'),(3099,'sq','da','Albanian'),(3100,'sq','el','Αλβανικα'),(3101,'sq','eo','Albanian'),(3102,'sq','et','Albanian'),(3103,'sq','eu','Albanian'),(3104,'sq','fa','Albanian'),(3105,'sq','fi','albania'),(3106,'sq','ga','Albanian'),(3107,'sq','he','Albanian'),(3108,'sq','hi','Albanian'),(3109,'sq','hr','Albanian'),(3110,'sq','hu','albán'),(3111,'sq','hy','Albanian'),(3112,'sq','id','Albanian'),(3113,'sq','is','Albanian'),(3114,'sq','it','Albanese'),(3115,'sq','ja','アルバニア語'),(3116,'sq','ko','알바니아어'),(3117,'sq','ku','Albanian'),(3118,'sq','la','Albanian'),(3119,'sq','lv','Albanian'),(3120,'sq','lt','Albanian'),(3121,'sq','mk','Albanian'),(3122,'sq','mt','Albanian'),(3123,'sq','mo','Albanian'),(3124,'sq','mn','Albanian'),(3125,'sq','ne','Albanian'),(3126,'sq','nl','Albaans'),(3127,'sq','nb','Albanian'),(3128,'sq','pa','Albanian'),(3129,'sq','pl','albański'),(3130,'sq','pt-pt','Albanês'),(3131,'sq','pt-br','Albanês'),(3132,'sq','qu','Albanian'),(3133,'sq','ro','Albaneză'),(3134,'sq','ru','Албанский'),(3135,'sq','sl','Albanian'),(3136,'sq','so','Albanian'),(3137,'sq','sq','Albanian'),(3138,'sq','sr','Albanian'),(3139,'sq','sv','Albanska'),(3140,'sq','ta','Albanian'),(3141,'sq','th','อัลเบเนีย'),(3142,'sq','tr','Arnavutça'),(3143,'sq','uk','Albanian'),(3144,'sq','ur','Albanian'),(3145,'sq','uz','Albanian'),(3146,'sq','vi','Albanian'),(3147,'sq','yi','Albanian'),(3148,'sq','zh-hans','阿尔巴尼亚语'),(3149,'sq','zu','Albanian'),(3150,'sq','zh-hant','阿爾巴尼亞語'),(3151,'sr','en','Serbian'),(3152,'sr','es','Serbio'),(3153,'sr','de','Serbisch'),(3154,'sr','fr','Serbe'),(3155,'sr','ar','الصربية'),(3156,'sr','bs','Serbian'),(3157,'sr','bg','Serbian'),(3158,'sr','ca','Serbian'),(3159,'sr','cs','Serbian'),(3160,'sr','sla','Srbština'),(3161,'sr','cy','Serbian'),(3162,'sr','da','Serbian'),(3163,'sr','el','Σερβικα'),(3164,'sr','eo','Serbian'),(3165,'sr','et','Serbian'),(3166,'sr','eu','Serbian'),(3167,'sr','fa','Serbian'),(3168,'sr','fi','serbia'),(3169,'sr','ga','Serbian'),(3170,'sr','he','Serbian'),(3171,'sr','hi','Serbian'),(3172,'sr','hr','Serbian'),(3173,'sr','hu','szerb'),(3174,'sr','hy','Serbian'),(3175,'sr','id','Serbian'),(3176,'sr','is','Serbian'),(3177,'sr','it','Serbo'),(3178,'sr','ja','セルビア語'),(3179,'sr','ko','세르비아어'),(3180,'sr','ku','Serbian'),(3181,'sr','la','Serbian'),(3182,'sr','lv','Serbian'),(3183,'sr','lt','Serbian'),(3184,'sr','mk','Serbian'),(3185,'sr','mt','Serbian'),(3186,'sr','mo','Serbian'),(3187,'sr','mn','Serbian'),(3188,'sr','ne','Serbian'),(3189,'sr','nl','Servisch'),(3190,'sr','nb','Serbian'),(3191,'sr','pa','Serbian'),(3192,'sr','pl','serbski'),(3193,'sr','pt-pt','Sérvio'),(3194,'sr','pt-br','Sérvio'),(3195,'sr','qu','Serbian'),(3196,'sr','ro','Sârbă'),(3197,'sr','ru','Сербский'),(3198,'sr','sl','Serbian'),(3199,'sr','so','Serbian'),(3200,'sr','sq','Serbian'),(3201,'sr','sr','Serbian'),(3202,'sr','sv','Serbiska'),(3203,'sr','ta','Serbian'),(3204,'sr','th','เซอร์เบีย'),(3205,'sr','tr','Sırpça'),(3206,'sr','uk','Serbian'),(3207,'sr','ur','Serbian'),(3208,'sr','uz','Serbian'),(3209,'sr','vi','Serbian'),(3210,'sr','yi','Serbian'),(3211,'sr','zh-hans','赛尔维亚语'),(3212,'sr','zu','Serbian'),(3213,'sr','zh-hant','賽爾維亞語'),(3214,'sv','en','Swedish'),(3215,'sv','es','Sueco'),(3216,'sv','de','Schwedisch'),(3217,'sv','fr','Suédois'),(3218,'sv','ar','السويدية'),(3219,'sv','bs','Swedish'),(3220,'sv','bg','Swedish'),(3221,'sv','ca','Swedish'),(3222,'sv','cs','Swedish'),(3223,'sv','sla','Švédština'),(3224,'sv','cy','Swedish'),(3225,'sv','da','Swedish'),(3226,'sv','el','Σουηδικη'),(3227,'sv','eo','Swedish'),(3228,'sv','et','Swedish'),(3229,'sv','eu','Swedish'),(3230,'sv','fa','Swedish'),(3231,'sv','fi','ruotsi'),(3232,'sv','ga','Swedish'),(3233,'sv','he','שוודית'),(3234,'sv','hi','Swedish'),(3235,'sv','hr','Swedish'),(3236,'sv','hu','svéd'),(3237,'sv','hy','Swedish'),(3238,'sv','id','Swedish'),(3239,'sv','is','Swedish'),(3240,'sv','it','Svedese'),(3241,'sv','ja','スウェーデン語'),(3242,'sv','ko','스웨덴어'),(3243,'sv','ku','Swedish'),(3244,'sv','la','Swedish'),(3245,'sv','lv','Swedish'),(3246,'sv','lt','Swedish'),(3247,'sv','mk','Swedish'),(3248,'sv','mt','Swedish'),(3249,'sv','mo','Swedish'),(3250,'sv','mn','Swedish'),(3251,'sv','ne','Swedish'),(3252,'sv','nl','Zweeds'),(3253,'sv','nb','Swedish'),(3254,'sv','pa','Swedish'),(3255,'sv','pl','szwedzki'),(3256,'sv','pt-pt','Sueco'),(3257,'sv','pt-br','Sueco'),(3258,'sv','qu','Swedish'),(3259,'sv','ro','Suedeză'),(3260,'sv','ru','Шведский'),(3261,'sv','sl','Swedish'),(3262,'sv','so','Swedish'),(3263,'sv','sq','Swedish'),(3264,'sv','sr','Swedish'),(3265,'sv','sv','Svenska'),(3266,'sv','ta','Swedish'),(3267,'sv','th','สวีเดน'),(3268,'sv','tr','İsveççe'),(3269,'sv','uk','Swedish'),(3270,'sv','ur','Swedish'),(3271,'sv','uz','Swedish'),(3272,'sv','vi','Swedish'),(3273,'sv','yi','Swedish'),(3274,'sv','zh-hans','瑞典语'),(3275,'sv','zu','Swedish'),(3276,'sv','zh-hant','瑞典語'),(3277,'ta','en','Tamil'),(3278,'ta','es','Tamil'),(3279,'ta','de','Tamil'),(3280,'ta','fr','Tamoul'),(3281,'ta','ar','التاميلية'),(3282,'ta','bs','Tamil'),(3283,'ta','bg','Tamil'),(3284,'ta','ca','Tamil'),(3285,'ta','cs','Tamil'),(3286,'ta','sla','Tamilčina'),(3287,'ta','cy','Tamil'),(3288,'ta','da','Tamil'),(3289,'ta','el','Ταμιλ'),(3290,'ta','eo','Tamil'),(3291,'ta','et','Tamil'),(3292,'ta','eu','Tamil'),(3293,'ta','fa','Tamil'),(3294,'ta','fi','tamili'),(3295,'ta','ga','Tamil'),(3296,'ta','he','Tamil'),(3297,'ta','hi','Tamil'),(3298,'ta','hr','Tamil'),(3299,'ta','hu','tamil'),(3300,'ta','hy','Tamil'),(3301,'ta','id','Tamil'),(3302,'ta','is','Tamil'),(3303,'ta','it','Tamil'),(3304,'ta','ja','タミル語'),(3305,'ta','ko','타밀어'),(3306,'ta','ku','Tamil'),(3307,'ta','la','Tamil'),(3308,'ta','lv','Tamil'),(3309,'ta','lt','Tamil'),(3310,'ta','mk','Tamil'),(3311,'ta','mt','Tamil'),(3312,'ta','mo','Tamil'),(3313,'ta','mn','Tamil'),(3314,'ta','ne','Tamil'),(3315,'ta','nl','Tamil'),(3316,'ta','nb','Tamil'),(3317,'ta','pa','Tamil'),(3318,'ta','pl','tamilski'),(3319,'ta','pt-pt','Tamil'),(3320,'ta','pt-br','Tamil'),(3321,'ta','qu','Tamil'),(3322,'ta','ro','Tamilă'),(3323,'ta','ru','Тамильский'),(3324,'ta','sl','Tamil'),(3325,'ta','so','Tamil'),(3326,'ta','sq','Tamil'),(3327,'ta','sr','Tamil'),(3328,'ta','sv','Tamil'),(3329,'ta','ta','Tamil'),(3330,'ta','th','ทมิฬ'),(3331,'ta','tr','Tamil dili'),(3332,'ta','uk','Tamil'),(3333,'ta','ur','Tamil'),(3334,'ta','uz','Tamil'),(3335,'ta','vi','Tamil'),(3336,'ta','yi','Tamil'),(3337,'ta','zh-hans','泰米尔语'),(3338,'ta','zu','Tamil'),(3339,'ta','zh-hant','泰米爾語'),(3340,'th','en','Thai'),(3341,'th','es','Tailandés'),(3342,'th','de','Thai'),(3343,'th','fr','Thaï'),(3344,'th','ar','التايلندية'),(3345,'th','bs','Thai'),(3346,'th','bg','Thai'),(3347,'th','ca','Thai'),(3348,'th','cs','Thai'),(3349,'th','sla','Thajština'),(3350,'th','cy','Thai'),(3351,'th','da','Thai'),(3352,'th','el','Thai'),(3353,'th','eo','Thai'),(3354,'th','et','Thai'),(3355,'th','eu','Thai'),(3356,'th','fa','Thai'),(3357,'th','fi','thai'),(3358,'th','ga','Thai'),(3359,'th','he','Thai'),(3360,'th','hi','Thai'),(3361,'th','hr','Thai'),(3362,'th','hu','tájföldi'),(3363,'th','hy','Thai'),(3364,'th','id','Thai'),(3365,'th','is','Thai'),(3366,'th','it','Thai'),(3367,'th','ja','タイ語'),(3368,'th','ko','태국어'),(3369,'th','ku','Thai'),(3370,'th','la','Thai'),(3371,'th','lv','Thai'),(3372,'th','lt','Thai'),(3373,'th','mk','Thai'),(3374,'th','mt','Thai'),(3375,'th','mo','Thai'),(3376,'th','mn','Thai'),(3377,'th','ne','Thai'),(3378,'th','nl','Thai'),(3379,'th','nb','Thai'),(3380,'th','pa','Thai'),(3381,'th','pl','tajski'),(3382,'th','pt-pt','Tailandês'),(3383,'th','pt-br','Tailandês'),(3384,'th','qu','Thai'),(3385,'th','ro','Tailandeză'),(3386,'th','ru','Тайский'),(3387,'th','sl','Thai'),(3388,'th','so','Thai'),(3389,'th','sq','Thai'),(3390,'th','sr','Thai'),(3391,'th','sv','Thailändska'),(3392,'th','ta','Thai'),(3393,'th','th','ไทย'),(3394,'th','tr','Tayca'),(3395,'th','uk','Thai'),(3396,'th','ur','Thai'),(3397,'th','uz','Thai'),(3398,'th','vi','Thai'),(3399,'th','yi','Thai'),(3400,'th','zh-hans','泰语'),(3401,'th','zu','Thai'),(3402,'th','zh-hant','泰語'),(3403,'tr','en','Turkish'),(3404,'tr','es','Turco'),(3405,'tr','de','Türkisch'),(3406,'tr','fr','Turc'),(3407,'tr','ar','التركية'),(3408,'tr','bs','Turkish'),(3409,'tr','bg','Turkish'),(3410,'tr','ca','Turkish'),(3411,'tr','cs','Turkish'),(3412,'tr','sla','Turečtina'),(3413,'tr','cy','Turkish'),(3414,'tr','da','Turkish'),(3415,'tr','el','Τουρκικα'),(3416,'tr','eo','Turkish'),(3417,'tr','et','Turkish'),(3418,'tr','eu','Turkish'),(3419,'tr','fa','Turkish'),(3420,'tr','fi','turkki'),(3421,'tr','ga','Turkish'),(3422,'tr','he','תורכית'),(3423,'tr','hi','Turkish'),(3424,'tr','hr','Turkish'),(3425,'tr','hu','török'),(3426,'tr','hy','Turkish'),(3427,'tr','id','Turkish'),(3428,'tr','is','Turkish'),(3429,'tr','it','Turco'),(3430,'tr','ja','トルコ語'),(3431,'tr','ko','터어키어'),(3432,'tr','ku','Turkish'),(3433,'tr','la','Turkish'),(3434,'tr','lv','Turkish'),(3435,'tr','lt','Turkish'),(3436,'tr','mk','Turkish'),(3437,'tr','mt','Turkish'),(3438,'tr','mo','Turkish'),(3439,'tr','mn','Turkish'),(3440,'tr','ne','Turkish'),(3441,'tr','nl','Turks'),(3442,'tr','nb','Turkish'),(3443,'tr','pa','Turkish'),(3444,'tr','pl','turecki'),(3445,'tr','pt-pt','Turco'),(3446,'tr','pt-br','Turco'),(3447,'tr','qu','Turkish'),(3448,'tr','ro','Turcă'),(3449,'tr','ru','Турецкий'),(3450,'tr','sl','Turkish'),(3451,'tr','so','Turkish'),(3452,'tr','sq','Turkish'),(3453,'tr','sr','Turkish'),(3454,'tr','sv','Turkiska'),(3455,'tr','ta','Turkish'),(3456,'tr','th','ตุรกี'),(3457,'tr','tr','Türkçe'),(3458,'tr','uk','Turkish'),(3459,'tr','ur','Turkish'),(3460,'tr','uz','Turkish'),(3461,'tr','vi','Turkish'),(3462,'tr','yi','Turkish'),(3463,'tr','zh-hans','土耳其语'),(3464,'tr','zu','Turkish'),(3465,'tr','zh-hant','土耳其語'),(3466,'uk','en','Ukrainian'),(3467,'uk','es','Ucraniano'),(3468,'uk','de','Ukrainisch'),(3469,'uk','fr','Ukrainien'),(3470,'uk','ar','الأوكرانية'),(3471,'uk','bs','Ukrainian'),(3472,'uk','bg','Ukrainian'),(3473,'uk','ca','Ukrainian'),(3474,'uk','cs','Ukrainian'),(3475,'uk','sla','Ukrajinčina'),(3476,'uk','cy','Ukrainian'),(3477,'uk','da','Ukrainian'),(3478,'uk','el','Ουκρανικα'),(3479,'uk','eo','Ukrainian'),(3480,'uk','et','Ukrainian'),(3481,'uk','eu','Ukrainian'),(3482,'uk','fa','Ukrainian'),(3483,'uk','fi','ukraina'),(3484,'uk','ga','Ukrainian'),(3485,'uk','he','Ukrainian'),(3486,'uk','hi','Ukrainian'),(3487,'uk','hr','Ukrainian'),(3488,'uk','hu','ukrán'),(3489,'uk','hy','Ukrainian'),(3490,'uk','id','Ukrainian'),(3491,'uk','is','Ukrainian'),(3492,'uk','it','Ucraino'),(3493,'uk','ja','ウクライナ語'),(3494,'uk','ko','우크라이나어'),(3495,'uk','ku','Ukrainian'),(3496,'uk','la','Ukrainian'),(3497,'uk','lv','Ukrainian'),(3498,'uk','lt','Ukrainian'),(3499,'uk','mk','Ukrainian'),(3500,'uk','mt','Ukrainian'),(3501,'uk','mo','Ukrainian'),(3502,'uk','mn','Ukrainian'),(3503,'uk','ne','Ukrainian'),(3504,'uk','nl','Oekraïens'),(3505,'uk','nb','Ukrainian'),(3506,'uk','pa','Ukrainian'),(3507,'uk','pl','ukraiński'),(3508,'uk','pt-pt','Ucraniano'),(3509,'uk','pt-br','Ucraniano'),(3510,'uk','qu','Ukrainian'),(3511,'uk','ro','Ucrainiană'),(3512,'uk','ru','Украинский'),(3513,'uk','sl','Ukrainian'),(3514,'uk','so','Ukrainian'),(3515,'uk','sq','Ukrainian'),(3516,'uk','sr','Ukrainian'),(3517,'uk','sv','Ukrainska'),(3518,'uk','ta','Ukrainian'),(3519,'uk','th','ยูเครน'),(3520,'uk','tr','Ukraynaca'),(3521,'uk','uk','Ukrainian'),(3522,'uk','ur','Ukrainian'),(3523,'uk','uz','Ukrainian'),(3524,'uk','vi','Ukrainian'),(3525,'uk','yi','Ukrainian'),(3526,'uk','zh-hans','乌克兰语'),(3527,'uk','zu','Ukrainian'),(3528,'uk','zh-hant','烏克蘭語'),(3529,'ur','en','Urdu'),(3530,'ur','es','Urdu'),(3531,'ur','de','Urdu'),(3532,'ur','fr','Ourdu'),(3533,'ur','ar','الأردية'),(3534,'ur','bs','Urdu'),(3535,'ur','bg','Urdu'),(3536,'ur','ca','Urdu'),(3537,'ur','cs','Urdu'),(3538,'ur','sla','Urdština'),(3539,'ur','cy','Urdu'),(3540,'ur','da','Urdu'),(3541,'ur','el','Ουρντου'),(3542,'ur','eo','Urdu'),(3543,'ur','et','Urdu'),(3544,'ur','eu','Urdu'),(3545,'ur','fa','Urdu'),(3546,'ur','fi','urdu'),(3547,'ur','ga','Urdu'),(3548,'ur','he','Urdu'),(3549,'ur','hi','Urdu'),(3550,'ur','hr','Urdu'),(3551,'ur','hu','urdu'),(3552,'ur','hy','Urdu'),(3553,'ur','id','Urdu'),(3554,'ur','is','Urdu'),(3555,'ur','it','Urdu'),(3556,'ur','ja','ウルドゥー語'),(3557,'ur','ko','우르두어'),(3558,'ur','ku','Urdu'),(3559,'ur','la','Urdu'),(3560,'ur','lv','Urdu'),(3561,'ur','lt','Urdu'),(3562,'ur','mk','Urdu'),(3563,'ur','mt','Urdu'),(3564,'ur','mo','Urdu'),(3565,'ur','mn','Urdu'),(3566,'ur','ne','Urdu'),(3567,'ur','nl','Urdu'),(3568,'ur','nb','Urdu'),(3569,'ur','pa','Urdu'),(3570,'ur','pl','urdu'),(3571,'ur','pt-pt','Urdu'),(3572,'ur','pt-br','Urdu'),(3573,'ur','qu','Urdu'),(3574,'ur','ro','Urdu'),(3575,'ur','ru','Урду'),(3576,'ur','sl','Urdu'),(3577,'ur','so','Urdu'),(3578,'ur','sq','Urdu'),(3579,'ur','sr','Urdu'),(3580,'ur','sv','Urdu'),(3581,'ur','ta','Urdu'),(3582,'ur','th','อุรดู'),(3583,'ur','tr','Urduca'),(3584,'ur','uk','Urdu'),(3585,'ur','ur','Urdu'),(3586,'ur','uz','Urdu'),(3587,'ur','vi','Urdu'),(3588,'ur','yi','Urdu'),(3589,'ur','zh-hans','乌尔都语'),(3590,'ur','zu','Urdu'),(3591,'ur','zh-hant','烏爾都語'),(3592,'uz','en','Uzbek'),(3593,'uz','es','Uzbeko'),(3594,'uz','de','Usbekisch'),(3595,'uz','fr','Ouzbek'),(3596,'uz','ar','الاوزباكية'),(3597,'uz','bs','Uzbek'),(3598,'uz','bg','Uzbek'),(3599,'uz','ca','Uzbek'),(3600,'uz','cs','Uzbek'),(3601,'uz','sla','Uzbekčina'),(3602,'uz','cy','Uzbek'),(3603,'uz','da','Uzbek'),(3604,'uz','el','Ουζμπεκικα'),(3605,'uz','eo','Uzbek'),(3606,'uz','et','Uzbek'),(3607,'uz','eu','Uzbek'),(3608,'uz','fa','Uzbek'),(3609,'uz','fi','uzbekki'),(3610,'uz','ga','Uzbek'),(3611,'uz','he','Uzbek'),(3612,'uz','hi','Uzbek'),(3613,'uz','hr','Uzbek'),(3614,'uz','hu','üzbég'),(3615,'uz','hy','Uzbek'),(3616,'uz','id','Uzbek'),(3617,'uz','is','Uzbek'),(3618,'uz','it','Uzbeco'),(3619,'uz','ja','ウズベク語'),(3620,'uz','ko','우즈베크어'),(3621,'uz','ku','Uzbek'),(3622,'uz','la','Uzbek'),(3623,'uz','lv','Uzbek'),(3624,'uz','lt','Uzbek'),(3625,'uz','mk','Uzbek'),(3626,'uz','mt','Uzbek'),(3627,'uz','mo','Uzbek'),(3628,'uz','mn','Uzbek'),(3629,'uz','ne','Uzbek'),(3630,'uz','nl','Oezbeeks'),(3631,'uz','nb','Uzbek'),(3632,'uz','pa','Uzbek'),(3633,'uz','pl','uzbecki'),(3634,'uz','pt-pt','Uzbeque'),(3635,'uz','pt-br','Uzbeque'),(3636,'uz','qu','Uzbek'),(3637,'uz','ro','Uzbecă'),(3638,'uz','ru','Узбекский'),(3639,'uz','sl','Uzbek'),(3640,'uz','so','Uzbek'),(3641,'uz','sq','Uzbek'),(3642,'uz','sr','Uzbek'),(3643,'uz','sv','Uzbekiska'),(3644,'uz','ta','Uzbek'),(3645,'uz','th','อุซเบก'),(3646,'uz','tr','Özbekçe'),(3647,'uz','uk','Uzbek'),(3648,'uz','ur','Uzbek'),(3649,'uz','uz','Uzbek'),(3650,'uz','vi','Uzbek'),(3651,'uz','yi','Uzbek'),(3652,'uz','zh-hans','乌兹别克语'),(3653,'uz','zu','Uzbek'),(3654,'uz','zh-hant','烏茲別克語'),(3655,'vi','en','Vietnamese'),(3656,'vi','es','Vietnamita '),(3657,'vi','de','Vietnamesisch'),(3658,'vi','fr','Vietnamien'),(3659,'vi','ar','الفيتنامية'),(3660,'vi','bs','Vietnamese'),(3661,'vi','bg','Vietnamese'),(3662,'vi','ca','Vietnamese'),(3663,'vi','cs','Vietnamese'),(3664,'vi','sla','Vietnamčina'),(3665,'vi','cy','Vietnamese'),(3666,'vi','da','Vietnamese'),(3667,'vi','el','Βιετναμεζικα'),(3668,'vi','eo','Vietnamese'),(3669,'vi','et','Vietnamese'),(3670,'vi','eu','Vietnamese'),(3671,'vi','fa','Vietnamese'),(3672,'vi','fi','vietnam'),(3673,'vi','ga','Vietnamese'),(3674,'vi','he','Vietnamese'),(3675,'vi','hi','Vietnamese'),(3676,'vi','hr','Vietnamese'),(3677,'vi','hu','vietnámi'),(3678,'vi','hy','Vietnamese'),(3679,'vi','id','Vietnamese'),(3680,'vi','is','Vietnamese'),(3681,'vi','it','Vietnamita'),(3682,'vi','ja','ベトナム語'),(3683,'vi','ko','베트남어'),(3684,'vi','ku','Vietnamese'),(3685,'vi','la','Vietnamese'),(3686,'vi','lv','Vietnamese'),(3687,'vi','lt','Vietnamese'),(3688,'vi','mk','Vietnamese'),(3689,'vi','mt','Vietnamese'),(3690,'vi','mo','Vietnamese'),(3691,'vi','mn','Vietnamese'),(3692,'vi','ne','Vietnamese'),(3693,'vi','nl','Vietnamees'),(3694,'vi','nb','Vietnamese'),(3695,'vi','pa','Vietnamese'),(3696,'vi','pl','wietnamski'),(3697,'vi','pt-pt','Vietnamita'),(3698,'vi','pt-br','Vietnamita'),(3699,'vi','qu','Vietnamese'),(3700,'vi','ro','Vietnameză'),(3701,'vi','ru','Вьетнамский'),(3702,'vi','sl','Vietnamese'),(3703,'vi','so','Vietnamese'),(3704,'vi','sq','Vietnamese'),(3705,'vi','sr','Vietnamese'),(3706,'vi','sv','Vietnamesiska'),(3707,'vi','ta','Vietnamese'),(3708,'vi','th','เวียดนาม'),(3709,'vi','tr','Vietnamca'),(3710,'vi','uk','Vietnamese'),(3711,'vi','ur','Vietnamese'),(3712,'vi','uz','Vietnamese'),(3713,'vi','vi','Vietnamese'),(3714,'vi','yi','Vietnamese'),(3715,'vi','zh-hans','越南语'),(3716,'vi','zu','Vietnamese'),(3717,'vi','zh-hant','越南語'),(3718,'yi','en','Yiddish'),(3719,'yi','es','Yidis'),(3720,'yi','de','Jiddisch'),(3721,'yi','fr','Yiddish'),(3722,'yi','ar','اليديشية'),(3723,'yi','bs','Yiddish'),(3724,'yi','bg','Yiddish'),(3725,'yi','ca','Yiddish'),(3726,'yi','cs','Yiddish'),(3727,'yi','sla','Jidiš'),(3728,'yi','cy','Yiddish'),(3729,'yi','da','Yiddish'),(3730,'yi','el','Γιντις'),(3731,'yi','eo','Yiddish'),(3732,'yi','et','Yiddish'),(3733,'yi','eu','Yiddish'),(3734,'yi','fa','Yiddish'),(3735,'yi','fi','jiddi'),(3736,'yi','ga','Yiddish'),(3737,'yi','he','יידיש'),(3738,'yi','hi','Yiddish'),(3739,'yi','hr','Yiddish'),(3740,'yi','hu','jiddis'),(3741,'yi','hy','Yiddish'),(3742,'yi','id','Yiddish'),(3743,'yi','is','Yiddish'),(3744,'yi','it','Yiddish'),(3745,'yi','ja','イディッシュ語'),(3746,'yi','ko','이디시어'),(3747,'yi','ku','Yiddish'),(3748,'yi','la','Yiddish'),(3749,'yi','lv','Yiddish'),(3750,'yi','lt','Yiddish'),(3751,'yi','mk','Yiddish'),(3752,'yi','mt','Yiddish'),(3753,'yi','mo','Yiddish'),(3754,'yi','mn','Yiddish'),(3755,'yi','ne','Yiddish'),(3756,'yi','nl','Jiddisch'),(3757,'yi','nb','Yiddish'),(3758,'yi','pa','Yiddish'),(3759,'yi','pl','jidysz'),(3760,'yi','pt-pt','Yiddish'),(3761,'yi','pt-br','Yiddish'),(3762,'yi','qu','Yiddish'),(3763,'yi','ro','Idiş'),(3764,'yi','ru','Идиш'),(3765,'yi','sl','Yiddish'),(3766,'yi','so','Yiddish'),(3767,'yi','sq','Yiddish'),(3768,'yi','sr','Yiddish'),(3769,'yi','sv','Jiddisch'),(3770,'yi','ta','Yiddish'),(3771,'yi','th','ยิชดิช'),(3772,'yi','tr','Eski İbranice'),(3773,'yi','uk','Yiddish'),(3774,'yi','ur','Yiddish'),(3775,'yi','uz','Yiddish'),(3776,'yi','vi','Yiddish'),(3777,'yi','yi','Yiddish'),(3778,'yi','zh-hans','依地语'),(3779,'yi','zu','Yiddish'),(3780,'yi','zh-hant','依地語'),(3781,'zh-hans','en','Chinese (Simplified)'),(3782,'zh-hans','es','Chino simplificado'),(3783,'zh-hans','de','Vereinfachtes Chinesisch'),(3784,'zh-hans','fr','Chinois simplifié'),(3785,'zh-hans','ar','الصينية المبسطة'),(3786,'zh-hans','bs','Chinese (Simplified)'),(3787,'zh-hans','bg','Chinese (Simplified)'),(3788,'zh-hans','ca','Chinese (Simplified)'),(3789,'zh-hans','cs','Chinese (Simplified)'),(3790,'zh-hans','sla','Zjednodušená Čínština'),(3791,'zh-hans','cy','Chinese (Simplified)'),(3792,'zh-hans','da','Chinese (Simplified)'),(3793,'zh-hans','el','Κινεζικα'),(3794,'zh-hans','eo','Chinese (Simplified)'),(3795,'zh-hans','et','Chinese (Simplified)'),(3796,'zh-hans','eu','Chinese (Simplified)'),(3797,'zh-hans','fa','Chinese (Simplified)'),(3798,'zh-hans','fi','kiina'),(3799,'zh-hans','ga','Chinese (Simplified)'),(3800,'zh-hans','he','סינית'),(3801,'zh-hans','hi','Chinese (Simplified)'),(3802,'zh-hans','hr','Chinese (Simplified)'),(3803,'zh-hans','hu','egyszerűsített kínai'),(3804,'zh-hans','hy','Chinese (Simplified)'),(3805,'zh-hans','id','Chinese (Simplified)'),(3806,'zh-hans','is','Chinese (Simplified)'),(3807,'zh-hans','it','Cinese semplificato'),(3808,'zh-hans','ja','簡体中国語'),(3809,'zh-hans','ko','중국어 간체'),(3810,'zh-hans','ku','Chinese (Simplified)'),(3811,'zh-hans','la','Chinese (Simplified)'),(3812,'zh-hans','lv','Chinese (Simplified)'),(3813,'zh-hans','lt','Chinese (Simplified)'),(3814,'zh-hans','mk','Chinese (Simplified)'),(3815,'zh-hans','mt','Chinese (Simplified)'),(3816,'zh-hans','mo','Chinese (Simplified)'),(3817,'zh-hans','mn','Chinese (Simplified)'),(3818,'zh-hans','ne','Chinese (Simplified)'),(3819,'zh-hans','nl','Vereenvoudigd Chinees'),(3820,'zh-hans','nb','Chinese (Simplified)'),(3821,'zh-hans','pa','Chinese (Simplified)'),(3822,'zh-hans','pl','chiński uproszczony'),(3823,'zh-hans','pt-pt','Chinês'),(3824,'zh-hans','pt-br','Chinês'),(3825,'zh-hans','qu','Chinese (Simplified)'),(3826,'zh-hans','ro','Chineza simplificată'),(3827,'zh-hans','ru','Упрощенный китайский'),(3828,'zh-hans','sl','Chinese (Simplified)'),(3829,'zh-hans','so','Chinese (Simplified)'),(3830,'zh-hans','sq','Chinese (Simplified)'),(3831,'zh-hans','sr','Chinese (Simplified)'),(3832,'zh-hans','sv','Förenklad kinesiska'),(3833,'zh-hans','ta','Chinese (Simplified)'),(3834,'zh-hans','th','จีนประยุกต์'),(3835,'zh-hans','tr','Modern Çince'),(3836,'zh-hans','uk','Chinese (Simplified)'),(3837,'zh-hans','ur','Chinese (Simplified)'),(3838,'zh-hans','uz','Chinese (Simplified)'),(3839,'zh-hans','vi','Chinese (Simplified)'),(3840,'zh-hans','yi','Chinese (Simplified)'),(3841,'zh-hans','zh-hans','简体中文'),(3842,'zh-hans','zu','Chinese (Simplified)'),(3843,'zh-hans','zh-hant','簡體中文'),(3844,'zu','en','Zulu'),(3845,'zu','es','Zulú'),(3846,'zu','de','Zulu'),(3847,'zu','fr','Zoulou'),(3848,'zu','ar','الزولو'),(3849,'zu','bs','Zulu'),(3850,'zu','bg','Zulu'),(3851,'zu','ca','Zulu'),(3852,'zu','cs','Zulu'),(3853,'zu','sla','Jazyk Zulu'),(3854,'zu','cy','Zulu'),(3855,'zu','da','Zulu'),(3856,'zu','el','Ζουλου'),(3857,'zu','eo','Zulu'),(3858,'zu','et','Zulu'),(3859,'zu','eu','Zulu'),(3860,'zu','fa','Zulu'),(3861,'zu','fi','zulu'),(3862,'zu','ga','Zulu'),(3863,'zu','he','Zulu'),(3864,'zu','hi','Zulu'),(3865,'zu','hr','Zulu'),(3866,'zu','hu','zulu'),(3867,'zu','hy','Zulu'),(3868,'zu','id','Zulu'),(3869,'zu','is','Zulu'),(3870,'zu','it','Zulu'),(3871,'zu','ja','ズールー語'),(3872,'zu','ko','줄루어'),(3873,'zu','ku','Zulu'),(3874,'zu','la','Zulu'),(3875,'zu','lv','Zulu'),(3876,'zu','lt','Zulu'),(3877,'zu','mk','Zulu'),(3878,'zu','mt','Zulu'),(3879,'zu','mo','Zulu'),(3880,'zu','mn','Zulu'),(3881,'zu','ne','Zulu'),(3882,'zu','nl','Zulu'),(3883,'zu','nb','Zulu'),(3884,'zu','pa','Zulu'),(3885,'zu','pl','zuluski'),(3886,'zu','pt-pt','Zulu'),(3887,'zu','pt-br','Zulu'),(3888,'zu','qu','Zulu'),(3889,'zu','ro','Zulu'),(3890,'zu','ru','Зулу'),(3891,'zu','sl','Zulu'),(3892,'zu','so','Zulu'),(3893,'zu','sq','Zulu'),(3894,'zu','sr','Zulu'),(3895,'zu','sv','Zulu'),(3896,'zu','ta','Zulu'),(3897,'zu','th','ซูลู'),(3898,'zu','tr','Zulu dili'),(3899,'zu','uk','Zulu'),(3900,'zu','ur','Zulu'),(3901,'zu','uz','Zulu'),(3902,'zu','vi','Zulu'),(3903,'zu','yi','Zulu'),(3904,'zu','zh-hans','祖鲁语'),(3905,'zu','zu','Zulu'),(3906,'zu','zh-hant','祖魯語'),(3907,'zh-hant','en','Chinese (Traditional)'),(3908,'zh-hant','es','Chino tradicional'),(3909,'zh-hant','de','Traditionelles Chinesisch'),(3910,'zh-hant','fr','Chinois traditionnel'),(3911,'zh-hant','ar','الصينية التقليدية'),(3912,'zh-hant','bs','Chinese (Traditional)'),(3913,'zh-hant','bg','Chinese (Traditional)'),(3914,'zh-hant','ca','Chinese (Traditional)'),(3915,'zh-hant','cs','Chinese (Traditional)'),(3916,'zh-hant','sla','Tradičná Čínština'),(3917,'zh-hant','cy','Chinese (Traditional)'),(3918,'zh-hant','da','Chinese (Traditional)'),(3919,'zh-hant','el','Κινεζικα'),(3920,'zh-hant','eo','Chinese (Traditional)'),(3921,'zh-hant','et','Chinese (Traditional)'),(3922,'zh-hant','eu','Chinese (Traditional)'),(3923,'zh-hant','fa','Chinese (Traditional)'),(3924,'zh-hant','fi','perinteinen kiina'),(3925,'zh-hant','ga','Chinese (Traditional)'),(3926,'zh-hant','he','סינית מסורתית'),(3927,'zh-hant','hi','Chinese (Traditional)'),(3928,'zh-hant','hr','Chinese (Traditional)'),(3929,'zh-hant','hu','hagyományos kínai'),(3930,'zh-hant','hy','Chinese (Traditional)'),(3931,'zh-hant','id','Chinese (Traditional)'),(3932,'zh-hant','is','Chinese (Traditional)'),(3933,'zh-hant','it','Cinese tradizionale'),(3934,'zh-hant','ja','繁体中国語'),(3935,'zh-hant','ko','중국어 번체'),(3936,'zh-hant','ku','Chinese (Traditional)'),(3937,'zh-hant','la','Chinese (Traditional)'),(3938,'zh-hant','lv','Chinese (Traditional)'),(3939,'zh-hant','lt','Chinese (Traditional)'),(3940,'zh-hant','mk','Chinese (Traditional)'),(3941,'zh-hant','mt','Chinese (Traditional)'),(3942,'zh-hant','mo','Chinese (Traditional)'),(3943,'zh-hant','mn','Chinese (Traditional)'),(3944,'zh-hant','ne','Chinese (Traditional)'),(3945,'zh-hant','nl','Traditioneel Chinees'),(3946,'zh-hant','nb','Chinese (Traditional)'),(3947,'zh-hant','pa','Chinese (Traditional)'),(3948,'zh-hant','pl','chiński tradycyjny'),(3949,'zh-hant','pt-pt','Chinês'),(3950,'zh-hant','pt-br','Chinês'),(3951,'zh-hant','qu','Chinese (Traditional)'),(3952,'zh-hant','ro','Chineza tradiţională'),(3953,'zh-hant','ru','Традиционный китайский'),(3954,'zh-hant','sl','Chinese (Traditional)'),(3955,'zh-hant','so','Chinese (Traditional)'),(3956,'zh-hant','sq','Chinese (Traditional)'),(3957,'zh-hant','sr','Chinese (Traditional)'),(3958,'zh-hant','sv','Traditionell kinesiska'),(3959,'zh-hant','ta','Chinese (Traditional)'),(3960,'zh-hant','th','จีนดั้งเดิม'),(3961,'zh-hant','tr','Klasik Çince'),(3962,'zh-hant','uk','Chinese (Traditional)'),(3963,'zh-hant','ur','Chinese (Traditional)'),(3964,'zh-hant','uz','Chinese (Traditional)'),(3965,'zh-hant','vi','Chinese (Traditional)'),(3966,'zh-hant','yi','Chinese (Traditional)'),(3967,'zh-hant','zh-hans','繁体中文'),(3968,'zh-hant','zu','Chinese (Traditional)'),(3969,'zh-hant','zh-hant','繁體中文');
/*!40000 ALTER TABLE `wp_10_icl_languages_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_icl_locale_map`
--

DROP TABLE IF EXISTS `wp_10_icl_locale_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_locale_map` (
  `code` varchar(8) NOT NULL,
  `locale` varchar(8) NOT NULL,
  UNIQUE KEY `code` (`code`,`locale`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_locale_map`
--

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

--
-- Table structure for table `wp_10_icl_message_status`
--

DROP TABLE IF EXISTS `wp_10_icl_message_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_message_status` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `rid` bigint(20) unsigned NOT NULL,
  `object_id` bigint(20) unsigned NOT NULL,
  `from_language` varchar(10) NOT NULL,
  `to_language` varchar(10) NOT NULL,
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
  `md5` varchar(32) NOT NULL,
  `object_type` varchar(64) NOT NULL,
  `status` smallint(6) NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `rid` (`rid`),
  KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_message_status`
--

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

--
-- Table structure for table `wp_10_icl_plugins_texts`
--

DROP TABLE IF EXISTS `wp_10_icl_plugins_texts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_plugins_texts` (
  `id` bigint(20) NOT NULL auto_increment,
  `plugin_name` varchar(128) NOT NULL,
  `attribute_type` varchar(64) NOT NULL,
  `attribute_name` varchar(128) NOT NULL,
  `description` text NOT NULL,
  `translate` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `plugin_name` (`plugin_name`,`attribute_type`,`attribute_name`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_plugins_texts`
--

LOCK TABLES `wp_10_icl_plugins_texts` WRITE;
/*!40000 ALTER TABLE `wp_10_icl_plugins_texts` DISABLE KEYS */;
INSERT INTO `wp_10_icl_plugins_texts` VALUES (1,'sitepress-multilingual-cms/sitepress.php','custom_field','_top_nav_excluded','Exclude page from top navigation',0),(2,'sitepress-multilingual-cms/sitepress.php','custom_field','_cms_nav_minihome','Sets page as a mini home in CMS Navigation',0),(3,'sitepress-multilingual-cms/sitepress.php','custom_field','_cms_nav_section','Defines the section the page belong to',1),(4,'all-in-one-seo-pack/all_in_one_seo_pack.php','custom_field','title','Custom title for post/page',1),(5,'all-in-one-seo-pack/all_in_one_seo_pack.php','custom_field','description','Custom description for post/page',1),(6,'all-in-one-seo-pack/all_in_one_seo_pack.php','custom_field','keywords','Custom keywords for post/page',1);
/*!40000 ALTER TABLE `wp_10_icl_plugins_texts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_icl_string_status`
--

DROP TABLE IF EXISTS `wp_10_icl_string_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_string_status` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `rid` bigint(20) NOT NULL,
  `string_translation_id` bigint(20) NOT NULL,
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
  `md5` varchar(32) NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `string_translation_id` (`string_translation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_string_status`
--

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

--
-- Table structure for table `wp_10_icl_string_translations`
--

DROP TABLE IF EXISTS `wp_10_icl_string_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_string_translations` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `string_id` bigint(20) unsigned NOT NULL,
  `language` varchar(10) NOT NULL,
  `status` tinyint(4) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `string_language` (`string_id`,`language`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_string_translations`
--

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

--
-- Table structure for table `wp_10_icl_strings`
--

DROP TABLE IF EXISTS `wp_10_icl_strings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_strings` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `language` varchar(10) NOT NULL,
  `context` varchar(160) NOT NULL,
  `name` varchar(160) NOT NULL,
  `value` text NOT NULL,
  `status` tinyint(4) NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `context_name` (`context`,`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_strings`
--

LOCK TABLES `wp_10_icl_strings` WRITE;
/*!40000 ALTER TABLE `wp_10_icl_strings` DISABLE KEYS */;
INSERT INTO `wp_10_icl_strings` VALUES (1,'','WP','Blog Title','Video',0),(2,'','WP','Tagline','Just another Yellowpages.colorgridadmin.com Blogs weblog',0);
/*!40000 ALTER TABLE `wp_10_icl_strings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_icl_translations`
--

DROP TABLE IF EXISTS `wp_10_icl_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_icl_translations` (
  `translation_id` bigint(20) NOT NULL auto_increment,
  `element_type` varchar(32) NOT NULL default 'post',
  `element_id` bigint(20) NOT NULL,
  `trid` bigint(20) NOT NULL,
  `language_code` varchar(7) NOT NULL,
  `source_language_code` varchar(7) default NULL,
  PRIMARY KEY  (`translation_id`),
  UNIQUE KEY `el_type_id` (`element_type`,`element_id`),
  UNIQUE KEY `trid_lang` (`trid`,`language_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_icl_translations`
--

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

--
-- Table structure for table `wp_10_links`
--

DROP TABLE IF EXISTS `wp_10_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_links` (
  `link_id` bigint(20) unsigned NOT NULL auto_increment,
  `link_url` varchar(255) NOT NULL default '',
  `link_name` varchar(255) NOT NULL default '',
  `link_image` varchar(255) NOT NULL default '',
  `link_target` varchar(25) NOT NULL default '',
  `link_description` varchar(255) NOT NULL default '',
  `link_visible` varchar(20) NOT NULL default 'Y',
  `link_owner` bigint(20) unsigned NOT NULL default '1',
  `link_rating` int(11) NOT NULL default '0',
  `link_updated` datetime NOT NULL default '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL default '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_links`
--

LOCK TABLES `wp_10_links` WRITE;
/*!40000 ALTER TABLE `wp_10_links` DISABLE KEYS */;
INSERT INTO `wp_10_links` VALUES (1,'http://wordpress.com/','WordPress.com','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.com/feed/'),(2,'http://wordpress.org/','WordPress.org','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/development/feed/');
/*!40000 ALTER TABLE `wp_10_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_options`
--

DROP TABLE IF EXISTS `wp_10_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_options` (
  `option_id` bigint(20) unsigned NOT NULL auto_increment,
  `blog_id` int(11) NOT NULL default '0',
  `option_name` varchar(64) NOT NULL default '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL default 'yes',
  PRIMARY KEY  (`option_id`,`blog_id`,`option_name`),
  KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=192 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_options`
--

LOCK TABLES `wp_10_options` WRITE;
/*!40000 ALTER TABLE `wp_10_options` DISABLE KEYS */;
INSERT INTO `wp_10_options` VALUES (1,0,'_transient_random_seed','00eee7e3136a9adc7ffce3320618c44b','yes'),(2,0,'siteurl','http://video.artistfolio.colorgridadmin.com/','yes'),(3,0,'blogname','Video','yes'),(4,0,'blogdescription','Just another Artistfolio.colorgridadmin.com Blogs weblog','yes'),(5,0,'users_can_register','0','yes'),(6,0,'admin_email','k.popchovski@cy-systems.com','yes'),(7,0,'start_of_week','1','yes'),(8,0,'use_balanceTags','0','yes'),(9,0,'use_smilies','1','yes'),(10,0,'require_name_email','1','yes'),(11,0,'comments_notify','1','yes'),(12,0,'posts_per_rss','10','yes'),(13,0,'rss_excerpt_length','50','yes'),(14,0,'rss_use_excerpt','0','yes'),(15,0,'mailserver_url','mail.example.com','yes'),(16,0,'mailserver_login','login@example.com','yes'),(17,0,'mailserver_pass','password','yes'),(18,0,'mailserver_port','110','yes'),(19,0,'default_category','1','yes'),(20,0,'default_comment_status','open','yes'),(21,0,'default_ping_status','open','yes'),(22,0,'default_pingback_flag','1','yes'),(23,0,'default_post_edit_rows','10','yes'),(24,0,'posts_per_page','10','yes'),(25,0,'date_format','F j, Y','yes'),(26,0,'time_format','g:i a','yes'),(27,0,'links_updated_date_format','F j, Y g:i a','yes'),(28,0,'links_recently_updated_prepend','<em>','yes'),(29,0,'links_recently_updated_append','</em>','yes'),(30,0,'links_recently_updated_time','120','yes'),(31,0,'comment_moderation','0','yes'),(32,0,'moderation_notify','1','yes'),(33,0,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(34,0,'gzipcompression','0','yes'),(35,0,'hack_file','0','yes'),(36,0,'blog_charset','UTF-8','yes'),(37,0,'moderation_keys','','no'),(38,0,'active_plugins','a:6:{i:0;s:24:\"cy-custom-types/Main.php\";i:1;s:55:\"simple-add-pages-or-posts/simple_add_pages_or_posts.php\";i:2;s:29:\"welcome-pack/welcome-pack.php\";i:3;s:43:\"wordpressmu-favicon/wordpressmu-favicon.php\";i:4;s:47:\"wpmu-simple-dashboard/cets_simple_dashboard.php\";i:5;s:47:\"wpmu-simple-dashboard/cets_simple_dashboard.php\";}','yes'),(39,0,'home','http://video.artistfolio.colorgridadmin.com/','yes'),(40,0,'category_base','','yes'),(41,0,'ping_sites','http://rpc.pingomatic.com/','yes'),(42,0,'advanced_edit','0','yes'),(43,0,'comment_max_links','2','yes'),(44,0,'gmt_offset','3','yes'),(45,0,'default_email_category','1','yes'),(46,0,'recently_edited','','no'),(47,0,'use_linksupdate','0','yes'),(48,0,'template','default','yes'),(49,0,'stylesheet','default','yes'),(50,0,'comment_whitelist','1','yes'),(51,0,'blacklist_keys','','no'),(52,0,'comment_registration','0','yes'),(53,0,'rss_language','en','yes'),(54,0,'html_type','text/html','yes'),(55,0,'use_trackback','0','yes'),(56,0,'default_role','subscriber','yes'),(57,0,'db_version','11548','yes'),(58,0,'uploads_use_yearmonth_folders','1','yes'),(59,0,'upload_path','wp-content/blogs.dir/10/files','yes'),(96,0,'post_count','1','yes'),(60,0,'secret','*r4XPTJ0TXjo!nyBz8imFL9nUFMl1ACMACdQLqAsK1l0dbWhi%C)8jJtuJmnDxci','yes'),(61,0,'blog_public','1','yes'),(62,0,'default_link_category','2','yes'),(63,0,'show_on_front','posts','yes'),(64,0,'tag_base','','yes'),(65,0,'show_avatars','1','yes'),(66,0,'avatar_rating','G','yes'),(67,0,'upload_url_path','','yes'),(68,0,'thumbnail_size_w','150','yes'),(69,0,'thumbnail_size_h','150','yes'),(70,0,'thumbnail_crop','1','yes'),(71,0,'medium_size_w','300','yes'),(72,0,'medium_size_h','300','yes'),(73,0,'avatar_default','mystery','yes'),(74,0,'enable_app','0','yes'),(75,0,'enable_xmlrpc','0','yes'),(76,0,'large_size_w','1024','yes'),(77,0,'large_size_h','1024','yes'),(78,0,'image_default_link_type','file','yes'),(79,0,'image_default_size','','yes'),(80,0,'image_default_align','','yes'),(81,0,'close_comments_for_old_posts','0','yes'),(82,0,'close_comments_days_old','14','yes'),(83,0,'thread_comments','0','yes'),(84,0,'thread_comments_depth','5','yes'),(85,0,'page_comments','1','yes'),(86,0,'comments_per_page','50','yes'),(87,0,'default_comments_page','newest','yes'),(88,0,'comment_order','asc','yes'),(89,0,'sticky_posts','a:0:{}','yes'),(90,0,'widget_categories','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(91,0,'widget_text','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(92,0,'widget_rss','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(93,0,'timezone_string','','yes'),(94,0,'wp_10_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:48:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:14:\"edit_dashboard\";b:1;s:12:\"manage_roles\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:33:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,0,'fileupload_url','http://video.artistfolio.colorgridadmin.com/files','yes'),(97,0,'_transient_rewrite_rules','a:71:{s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:14:\".*wp-atom.php$\";s:19:\"index.php?feed=atom\";s:13:\".*wp-rdf.php$\";s:18:\"index.php?feed=rdf\";s:13:\".*wp-rss.php$\";s:18:\"index.php?feed=rss\";s:14:\".*wp-rss2.php$\";s:19:\"index.php?feed=rss2\";s:14:\".*wp-feed.php$\";s:19:\"index.php?feed=feed\";s:22:\".*wp-commentsrss2.php$\";s:34:\"index.php?feed=rss2&withcomments=1\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:29:\"comments/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:42:\"tag/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:37:\"tag/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:30:\"tag/(.+?)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:12:\"tag/(.+?)/?$\";s:25:\"index.php?tag=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:25:\".+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\".+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\".+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(98,0,'WPLANG','','yes'),(99,0,'cron','a:3:{i:1258632315;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1265824370;a:1:{s:24:\"bp_links_cron_popularity\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"15_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}s:7:\"version\";i:2;}','yes'),(100,0,'_transient_doing_cron','1266655692','yes'),(112,0,'nonce_salt','JsyLTYD&7#pUPg%JUvGbjt8704Tm!S8M6V6RQLgYC9JHMo*A3hY!DP4ozKK&UYKY','yes'),(113,0,'geo_mashup_temp_kml_url','','yes'),(114,0,'widget_pages','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(115,0,'widget_calendar','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(116,0,'widget_archives','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(117,0,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(118,0,'widget_meta','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(119,0,'widget_search','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(120,0,'widget_recent-posts','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(121,0,'widget_recent-comments','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(122,0,'widget_tag_cloud','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(123,0,'widget_bp_core_welcome_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(124,0,'widget_bp_core_members_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(125,0,'widget_bp_core_whos_online_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(126,0,'widget_bp_core_recently_active_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(127,0,'widget_bp_activity_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(128,0,'widget_bp_blogs_recent_posts_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(129,0,'widget_bp_groups_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(130,0,'wp-native-dashboard','O:8:\"stdClass\":6:{s:7:\"version\";s:3:\"1.0\";s:9:\"installed\";b:1;s:21:\"enable_login_selector\";b:0;s:24:\"enable_profile_extension\";b:0;s:24:\"enable_language_switcher\";b:0;s:21:\"cleanup_on_deactivate\";b:0;}','yes'),(131,0,'recently_activated','a:5:{s:49:\"buddypress-widget-pack/buddypress-widget-pack.php\";i:1266482139;s:28:\"subscribe2/counterwidget.php\";i:1266482136;s:25:\"subscribe2/subscribe2.php\";i:1266482135;s:29:\"role-manager/role-manager.php\";i:1266482133;s:33:\"duplicate-post/duplicate-post.php\";i:1266482131;}','yes'),(190,0,'ws_menu_editor','a:0:{}','yes'),(132,0,'deactivated_sitewide_plugins','a:16:{i:0;b:0;s:55:\"iredlof-ajax-login-plugin/iredlof-ajax-login-plugin.php\";s:32:\"e026ca2d04441d99b634e2fdcd7dd8d9\";s:40:\"sitepress-multilingual-cms/sitepress.php\";s:32:\"b2e1bc817fe5b63a09ff085746c694dd\";s:43:\"wp-native-dashboard/wp-native-dashboard.php\";s:32:\"ef7e7f6c7c24c5e5b14c13fb715659c8\";s:44:\"favorites-menu-manager/favorites-manager.php\";s:32:\"c26b5c346970a6585a9180e1fe4bd184\";s:24:\"cy-custom-types/Main.php\";s:32:\"282d0e7d85e3607a8bf53d661c1a5aeb\";s:45:\"branded-login-screen/branded-login-screen.php\";s:32:\"fd444a77b53e861f01ab9223c24733f6\";s:25:\"adminimize/adminimize.php\";s:32:\"9f0d7f274fb87d53bec97b61a6451fc7\";s:68:\"post-page-association-plugin/wp-plugin-associate-posts-and-pages.php\";s:32:\"dccc08ee4d39a49d69812b9079bf8ca7\";s:53:\"codestyling-localization/codestyling-localization.php\";s:32:\"348181091cfeacd08c486c25a3800412\";s:53:\"admin-management-xtended/admin-management-xtended.php\";s:32:\"8257ee456ceb3545f4719ed4d825c0d1\";s:37:\"buddypress-links/buddypress-links.php\";s:32:\"cb1699277ba8798a5c29cb7631f1978f\";s:27:\"editor-tabs/editor-tabs.php\";s:32:\"9432c2ae9f498e6ee7bc0e81bbff1f30\";s:47:\"buddypress-quickpress/buddypress-quickpress.php\";s:32:\"7b88bc83e20323d3237add9dc54b2c45\";s:33:\"gd-press-tools/gd-press-tools.php\";s:32:\"980f7b6b3423d184dbf08c3b0c534d24\";s:31:\"946613807_mp-plugin-manager.php\";s:32:\"842b0e08ebafef7ed94191e89e2ce069\";}','yes'),(133,0,'dashboard_widget_options','a:3:{s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:43:\"http://video.artistfolio.colorgridadmin.com\";s:4:\"link\";s:125:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&partner=wordpress&q=link:http://video.artistfolio.colorgridadmin.com/\";s:3:\"url\";s:158:\"http://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=20&output=rss&partner=wordpress&q=link:http://video.artistfolio.colorgridadmin.com/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:33:\"http://wordpress.org/development/\";s:3:\"url\";s:38:\"http://wordpress.org/development/feed/\";s:5:\"title\";s:26:\"WordPress Development Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:4:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;}}','yes'),(186,0,'_transient_timeout_rss_9cde584c025b01e9e00b04c741a44e53','1266485708','no'),(187,0,'_transient_rss_9cde584c025b01e9e00b04c741a44e53','O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:2:{i:0;a:3:{s:5:\"title\";s:42:\"Plugin Homepage - CodeStyling Localization\";s:4:\"link\";s:91:\"http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en\";s:8:\"category\";s:6:\"_blank\";}i:1;a:3:{s:5:\"title\";s:15:\"Version History\";s:4:\"link\";s:102:\"http://www.code-styling.de/online-help/plugins.php?type=help&topic=codestyling-localization.history.en\";s:8:\"category\";s:8:\"thickbox\";}}s:7:\"channel\";a:6:{s:5:\"title\";s:30:\"CodeStyling Online Help System\";s:4:\"link\";s:26:\"http://www.code-styling.de\";s:11:\"description\";s:75:\"This RSS Feed contains the CodeStyling Online Help System Table of Contents\";s:7:\"pubdate\";s:31:\"Sat, 04 Dec 2008 08:45:25 +0000\";s:8:\"language\";s:2:\"en\";s:7:\"tagline\";s:75:\"This RSS Feed contains the CodeStyling Online Help System Table of Contents\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}','no'),(136,0,'current_theme','WordPress Default','yes'),(137,0,'widget_customtypewidgetlists','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(138,0,'widget_customtypewidgetlocations','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(139,0,'widget_customtypewidgetcategories','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(175,0,'_transient_feed_b23335a45417875e460d37e19072074a','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"link:http://video.artistfolio.colorgridadmin.com/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&ie=ISO-8859-1&num=20&q=link:http://video.artistfolio.colorgridadmin.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Your search - <b>link:http://video.artistfolio.colorgridadmin.com/</b> - did not match any documents.   \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:4:\"date\";s:29:\"Wed, 10 Feb 2010 17:52:53 GMT\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:29:\"Fri, 01 Jan 1990 00:00:00 GMT\";s:13:\"cache-control\";s:25:\"no-cache, must-revalidate\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"set-cookie\";s:138:\"PREF=ID=11f2e45ba23df145:TM=1265824373:LM=1265824373:S=AAYuNP0VdQibbeuF; expires=Fri, 10-Feb-2012 17:52:53 GMT; path=/; domain=.google.com\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:4:\"bsfe\";s:16:\"x-xss-protection\";s:1:\"0\";}s:5:\"build\";i:20081219;}','no'),(176,0,'_transient_feed_mod_b23335a45417875e460d37e19072074a','1265824373','no'),(143,0,'_transient_timeout_feed_mod_b23335a45417875e460d37e19072074a','1263870291','no'),(174,0,'_transient_timeout_feed_b23335a45417875e460d37e19072074a','1265867573','no'),(147,0,'_transient_timeout_plugin_slugs','1266569347','no'),(148,0,'_transient_plugin_slugs','a:145:{i:0;s:21:\"reply-to/at-reply.php\";i:1;s:32:\"achievements/dp-achievements.php\";i:2;s:25:\"add-to-any/add-to-any.php\";i:3;s:25:\"adminimize/adminimize.php\";i:4;s:53:\"admin-management-xtended/admin-management-xtended.php\";i:5;s:43:\"advertising-manager/advertising-manager.php\";i:6;s:28:\"ajax-comment-page/plugin.php\";i:7;s:45:\"ajax-comment-posting/ajax-comment-posting.php\";i:8;s:19:\"anyfont/anyfont.php\";i:9;s:31:\"article-templates/templates.php\";i:10;s:33:\"author-avatars/author-avatars.php\";i:11;s:57:\"extended-categories-widget/widget_extended_categories.php\";i:12;s:37:\"bbpress-latest-discussion/BBpress.php\";i:13;s:77:\"wpmu-blog-name-restrictions-override/cets_blog_name_restrictions_override.php\";i:14;s:47:\"bns-featured-category/bns-featured-category.php\";i:15;s:51:\"bp-registration-options/bp-registration-options.php\";i:16;s:27:\"bpcontents/bpc-contents.php\";i:17;s:29:\"bp-favorites/bp-favorites.php\";i:18;s:29:\"bp-groupblog/bp-groupblog.php\";i:19;s:36:\"buddypress-group-documents/index.php\";i:20;s:49:\"bp-mpo-activity-filter/bp-mpo-activity-filter.php\";i:21;s:41:\"bp-paginated-posts/bp-paginated-posts.php\";i:22;s:12:\"bp-album.php\";i:23;s:49:\"bp-redirect-to-profile/bp-redirect-to-profile.php\";i:24;s:45:\"branded-login-screen/branded-login-screen.php\";i:25;s:43:\"breadcrumb-navxt/breadcrumb_navxt_admin.php\";i:26;s:29:\"bp-fbconnect/bp-fbconnect.php\";i:27;s:38:\"rt-bp-kaltura-plugin/rt-bp-kaltura.php\";i:28;s:48:\"buddypress-backwards-compatibility/bp-loader.php\";i:29;s:49:\"buddypress-classifieds/buddypress-classifieds.php\";i:30;s:64:\"buddypress-classifieds/bp-classifieds-roles-and-capabilities.php\";i:31;s:37:\"buddypress-links/buddypress-links.php\";i:32;s:12:\"bp-authz.php\";i:33;s:47:\"buddypress-quickpress/buddypress-quickpress.php\";i:34;s:49:\"buddypress-widget-pack/buddypress-widget-pack.php\";i:35;s:38:\"category-page-icons/menu-compouser.php\";i:36;s:49:\"wpmu-default-user-role/cets_default_user_role.php\";i:37;s:47:\"wpmu-simple-dashboard/cets_simple_dashboard.php\";i:38;s:49:\"cimy-user-extra-fields/cimy_user_extra_fields.php\";i:39;s:53:\"codestyling-localization/codestyling-localization.php\";i:40;s:36:\"collapsing-categories/collapscat.php\";i:41;s:25:\"colorboxes/colorboxes.php\";i:42;s:23:\"cp_paypal/cp_paypal.php\";i:43;s:11:\"crm/crm.php\";i:44;s:25:\"cubepoints/cubepoints.php\";i:45;s:32:\"custom-field-taxonomies/main.php\";i:46;s:47:\"custom-field-template/custom-field-template.php\";i:47;s:47:\"wpmu-featured-blog-tag-cloud/cets_tag_cloud.php\";i:48;s:24:\"cy-custom-types/Main.php\";i:49;s:33:\"daily-top-10-posts/dailytop10.php\";i:50;s:39:\"db-cache-reloaded/db-cache-reloaded.php\";i:51;s:32:\"disqus-comment-system/disqus.php\";i:52;s:26:\"dm-albums/wp-dm-albums.php\";i:53;s:29:\"donation-can/donation_can.php\";i:54;s:33:\"duplicate-post/duplicate-post.php\";i:55;s:41:\"easy-popular-posts/easy-popular-posts.php\";i:56;s:27:\"editor-tabs/editor-tabs.php\";i:57;s:51:\"efficient-related-posts/efficient-related-posts.php\";i:58;s:57:\"es-custom-fields-interface/es-custom-fields-interface.php\";i:59;s:73:\"eventbrite-for-the-events-calendar/eventbrite-for-the-events-calendar.php\";i:60;s:48:\"external-group-blogs/bp-groups-externalblogs.php\";i:61;s:44:\"favorites-menu-manager/favorites-manager.php\";i:62;s:48:\"wpmu-featured-blog-widget/cets_featured_blog.php\";i:63;s:30:\"fluency-admin/wp-fluency-2.php\";i:64;s:29:\"font-resizer/font-resizer.php\";i:65;s:32:\"frontpage-manager/fp-manager.php\";i:66;s:33:\"gd-press-tools/gd-press-tools.php\";i:67;s:39:\"gd-simple-widgets/gd-simple-widgets.php\";i:68;s:33:\"gd-star-rating/gd-star-rating.php\";i:69;s:43:\"gd-taxonomies-tools/gd-taxonomies-tools.php\";i:70;s:29:\"generalstats/generalstats.php\";i:71;s:89:\"geocoder-wordpress-plugin-google-maps-geolocator-workshop/geolocator-wordpress-plugin.php\";i:72;s:25:\"geo-mashup/geo-mashup.php\";i:73;s:21:\"gigpress/gigpress.php\";i:74;s:41:\"gravatarlocalcache/GravatarLocalCache.php\";i:75;s:29:\"gravityforms/gravityforms.php\";i:76;s:38:\"buddypress-group-wiki/bp-groupwiki.php\";i:77;s:33:\"if-file-exists/if-file-exists.php\";i:78;s:21:\"insights/insights.php\";i:79;s:42:\"invitefriends-plug-in/bp-invitefriends.php\";i:80;s:33:\"jr-compression/jr-compression.php\";i:81;s:29:\"jr-translate/jr-translate.php\";i:82;s:40:\"kau-boys-autocompleter/autocompleter.php\";i:83;s:41:\"keyword-statistics/keyword-statistics.php\";i:84;s:24:\"lightbox-2/lightbox2.php\";i:85;s:35:\"login-with-ajax/login-with-ajax.php\";i:86;s:37:\"maintenance-mode/maintenance-mode.php\";i:87;s:51:\"map-categories-to-pages/map-categories-to-pages.php\";i:88;s:47:\"mappress-google-maps-for-wordpress/mappress.php\";i:89;s:35:\"mass-page-maker/mass-page-maker.php\";i:90;s:25:\"media-tags/media_tags.php\";i:91;s:37:\"most-popular-tags/mostpopulartags.php\";i:92;s:29:\"multipost-mu/multipost-mu.php\";i:93;s:37:\"my-category-order/mycategoryorder.php\";i:94;s:29:\"my-link-order/mylinkorder.php\";i:95;s:29:\"organize-series/orgSeries.php\";i:96;s:40:\"organize-series/series_issue_manager.php\";i:97;s:45:\"ozh-admin-drop-down-menu/wp_ozh_adminmenu.php\";i:98;s:50:\"ozh-better-plugin-page/wp_ozh_betterpluginpage.php\";i:99;s:29:\"pagerestrict/pagerestrict.php\";i:100;s:39:\"platinum-seo-pack/platinum_seo_pack.php\";i:101;s:68:\"post-page-association-plugin/wp-plugin-associate-posts-and-pages.php\";i:102;s:55:\"posts-of-current-category/posts-of-current-category.php\";i:103;s:39:\"rb-internal-links/rb-internal-links.php\";i:104;s:43:\"related-posts-by-category/related_posts.php\";i:105;s:29:\"role-manager/role-manager.php\";i:106;s:43:\"new-user-emails/sb_welcome_email_editor.php\";i:107;s:21:\"scissors/scissors.php\";i:108;s:33:\"section-widget/section-widget.php\";i:109;s:51:\"smart-archives-reloaded/smart-archives-reloaded.php\";i:110;s:21:\"sociable/sociable.php\";i:111;s:25:\"subscribe2/subscribe2.php\";i:112;s:28:\"subscribe2/counterwidget.php\";i:113;s:33:\"tabbed-widgets/tabbed-widgets.php\";i:114;s:30:\"testimonials-manager/index.php\";i:115;s:43:\"the-events-calendar/the-events-calendar.php\";i:116;s:39:\"wpmu-plugin-stats/cets_plugin_stats.php\";i:117;s:33:\"uploads-folder/uploads-folder.php\";i:118;s:25:\"user-photo/user-photo.php\";i:119;s:59:\"where-did-they-go-from-here/where-did-they-go-from-here.php\";i:120;s:31:\"wibiya_for_wordpress/wibiya.php\";i:121;s:23:\"wishlist-member/wpm.php\";i:122;s:43:\"wordpressmu-favicon/wordpressmu-favicon.php\";i:123;s:43:\"wordpress-admin-bar/wordpress-admin-bar.php\";i:124;s:61:\"wordpress-admin-bar-improved/wordpress-admin-bar-improved.php\";i:125;s:49:\"wordpress-file-monitor/wordpress-file-monitor.php\";i:126;s:49:\"wordpress-live-preview/wordpress-live-preview.php\";i:127;s:51:\"wordpress-popular-posts/wordpress-popular-posts.php\";i:128;s:25:\"wp-cumulus/wp-cumulus.php\";i:129;s:21:\"wp-devel/wp-devel.php\";i:130;s:21:\"wp-email/wp-email.php\";i:131;s:27:\"wp-pagenavi/wp-pagenavi.php\";i:132;s:21:\"wp-polls/wp-polls.php\";i:133;s:47:\"wp-popular-posts-tool/wp-popular-posts-tool.php\";i:134;s:21:\"wp-print/wp-print.php\";i:135;s:15:\"wp125/wp125.php\";i:136;s:61:\"wp-cart-for-digital-products/wp_cart_for_digital_products.php\";i:137;s:23:\"wp-minify/wp-minify.php\";i:138;s:40:\"sitepress-multilingual-cms/sitepress.php\";i:139;s:31:\"946613807_mp-plugin-manager.php\";i:140;s:43:\"wp-native-dashboard/wp-native-dashboard.php\";i:141;s:34:\"wp-e-commerce/wp-shopping-cart.php\";i:142;s:27:\"wp-super-cache/wp-cache.php\";i:143;s:30:\"yet-another-photoblog/Yapb.php\";i:144;s:35:\"yql-auto-tagger/yql_auto_tagger.php\";}','no'),(151,0,'gd-press-tools-status','a:0:{}','yes'),(152,0,'gd-press-tools-robots','a:2:{s:5:\"login\";a:3:{s:6:\"active\";i:1;s:7:\"noindex\";i:1;s:8:\"nofollow\";i:1;}s:5:\"admin\";a:3:{s:6:\"active\";i:1;s:7:\"noindex\";i:1;s:8:\"nofollow\";i:1;}}','yes'),(153,0,'gd-press-tools-avatars','a:0:{}','yes'),(154,0,'gd-press-tools','a:79:{s:7:\"version\";s:5:\"2.3.7\";s:4:\"date\";s:11:\"2010.01.19.\";s:6:\"status\";s:6:\"Stable\";s:10:\"product_id\";s:14:\"gd-press-tools\";s:8:\"revision\";i:0;s:5:\"build\";i:2370;s:7:\"edition\";s:4:\"lite\";s:12:\"footer_stats\";i:1;s:19:\"update_report_usage\";i:1;s:20:\"enable_db_autorepair\";i:1;s:15:\"meta_wp_noindex\";i:0;s:20:\"meta_language_active\";i:0;s:20:\"meta_language_values\";s:2:\"en\";s:9:\"debug_sql\";i:0;s:12:\"tagger_abort\";i:0;s:15:\"html_desc_terms\";i:1;s:15:\"html_desc_users\";i:1;s:15:\"html_desc_links\";i:0;s:15:\"html_note_links\";i:0;s:20:\"debug_queries_global\";i:0;s:19:\"debug_queries_admin\";i:0;s:25:\"debug_queries_admin_level\";i:10;s:18:\"debug_queries_blog\";i:0;s:24:\"debug_queries_blog_level\";i:10;s:15:\"shorturl_active\";i:0;s:15:\"shorturl_prefix\";s:2:\"gd\";s:16:\"database_upgrade\";s:31:\"Wed, 10 Feb 2010 19:52:44 +0200\";s:22:\"disable_flash_uploader\";i:0;s:23:\"counter_total_revisions\";i:0;s:22:\"counter_total_overhead\";i:0;s:18:\"auth_require_login\";i:0;s:18:\"remove_login_error\";i:0;s:17:\"remove_wp_version\";i:0;s:10:\"remove_rds\";i:0;s:10:\"remove_wlw\";i:0;s:20:\"posts_views_tracking\";i:1;s:26:\"posts_views_tracking_posts\";i:1;s:26:\"posts_views_tracking_pages\";i:1;s:26:\"posts_views_tracking_users\";i:1;s:29:\"posts_views_tracking_visitors\";i:1;s:27:\"posts_views_tracking_ignore\";s:0:\"\";s:14:\"users_tracking\";i:1;s:20:\"users_tracking_posts\";i:1;s:20:\"users_tracking_pages\";i:1;s:21:\"users_tracking_ignore\";s:0:\"\";s:22:\"dashboard_handler_info\";i:1;s:26:\"dashboard_handler_tracking\";i:1;s:23:\"dashboard_handler_tools\";i:0;s:19:\"integrate_dashboard\";i:1;s:25:\"integrate_dashboard_level\";i:10;s:16:\"integrate_cat_id\";i:1;s:16:\"integrate_tag_id\";i:1;s:17:\"integrate_user_id\";i:1;s:23:\"integrate_user_comments\";i:1;s:22:\"integrate_user_display\";i:1;s:22:\"integrate_post_options\";i:1;s:17:\"integrate_post_id\";i:1;s:21:\"integrate_post_sticky\";i:0;s:23:\"integrate_post_per_page\";i:15;s:18:\"integrate_media_id\";i:1;s:18:\"integrate_links_id\";i:1;s:20:\"integrate_post_views\";i:1;s:25:\"integrate_postedit_widget\";i:1;s:17:\"disable_auto_save\";i:0;s:17:\"revisions_to_save\";i:-1;s:16:\"php_memory_limit\";s:3:\"64M\";s:24:\"php_memory_limit_enabled\";i:0;s:11:\"rss_disable\";i:0;s:17:\"rss_header_enable\";i:0;s:19:\"rss_header_contents\";s:0:\"\";s:17:\"rss_footer_enable\";i:0;s:19:\"rss_footer_contents\";s:0:\"\";s:16:\"rss_delay_active\";i:0;s:14:\"rss_delay_time\";i:5;s:22:\"tool_revisions_removed\";s:1:\"/\";s:20:\"updates_disable_core\";i:0;s:22:\"updates_disable_themes\";i:0;s:23:\"updates_disable_plugins\";i:0;s:12:\"memory_limit\";s:3:\"64M\";}','yes'),(155,0,'ame_show_orderoptions','1','yes'),(156,0,'ame_toggle_showinvisposts','1','yes'),(157,0,'ame_version','2.1.1','yes'),(158,0,'ame_imgset','set1','yes'),(159,0,'duplicate_post_view_user_level','2','yes'),(160,0,'duplicate_post_create_user_level','5','yes'),(161,0,'duplicate_post_admin_user_level','8','yes'),(162,0,'duplicate_post_version','1.0','yes'),(163,0,'IWG_RoleMan_CapList','a:36:{i:0;s:16:\"activate_plugins\";i:1;s:12:\"create_users\";i:2;s:19:\"delete_others_pages\";i:3;s:19:\"delete_others_posts\";i:4;s:12:\"delete_pages\";i:5;s:12:\"delete_posts\";i:6;s:20:\"delete_private_pages\";i:7;s:20:\"delete_private_posts\";i:8;s:22:\"delete_published_pages\";i:9;s:22:\"delete_published_posts\";i:10;s:12:\"delete_users\";i:11;s:14:\"edit_dashboard\";i:12;s:10:\"edit_files\";i:13;s:17:\"edit_others_pages\";i:14;s:17:\"edit_others_posts\";i:15;s:10:\"edit_pages\";i:16;s:12:\"edit_plugins\";i:17;s:10:\"edit_posts\";i:18;s:18:\"edit_private_pages\";i:19;s:18:\"edit_private_posts\";i:20;s:20:\"edit_published_pages\";i:21;s:20:\"edit_published_posts\";i:22;s:11:\"edit_themes\";i:23;s:10:\"edit_users\";i:24;s:6:\"import\";i:36;s:17:\"manage_categories\";i:37;s:12:\"manage_links\";i:38;s:14:\"manage_options\";i:39;s:17:\"moderate_comments\";i:40;s:13:\"publish_pages\";i:41;s:13:\"publish_posts\";i:42;s:4:\"read\";i:43;s:18:\"read_private_pages\";i:44;s:18:\"read_private_posts\";i:45;s:13:\"switch_themes\";i:46;s:12:\"upload_files\";}','yes'),(164,0,'IWG_RoleManager','a:2:{s:6:\"status\";s:10:\"not active\";s:7:\"version\";i:131587;}','yes'),(173,0,'icl_sitepress_version','1.5.0','yes'),(166,0,'icl_sitepress_settings','a:20:{s:19:\"hide_upgrade_notice\";s:5:\"1.5.0\";s:10:\"basic_menu\";i:1;s:21:\"interview_translators\";i:1;s:34:\"existing_content_language_verified\";i:0;s:25:\"language_negotiation_type\";i:3;s:14:\"icl_lso_header\";i:0;s:18:\"icl_lso_link_empty\";i:0;s:13:\"icl_lso_flags\";i:0;s:19:\"icl_lso_native_lang\";i:1;s:20:\"icl_lso_display_lang\";i:1;s:18:\"sync_page_ordering\";i:1;s:26:\"translated_document_status\";i:1;s:25:\"translation_pickup_method\";i:0;s:15:\"notify_complete\";i:1;s:17:\"remote_management\";i:0;s:11:\"alert_delay\";i:0;s:7:\"modules\";a:2:{s:14:\"absolute-links\";a:1:{s:7:\"enabled\";i:0;}s:14:\"cms-navigation\";a:2:{s:7:\"enabled\";i:0;s:21:\"breadcrumbs_separator\";s:9:\" &raquo; \";}}s:18:\"ajx_health_checked\";i:0;s:22:\"admin_default_language\";s:9:\"_default_\";s:2:\"st\";a:2:{s:2:\"sw\";a:4:{s:10:\"blog_title\";i:1;s:7:\"tagline\";i:1;s:13:\"widget_titles\";i:1;s:12:\"text_widgets\";i:1;}s:16:\"strings_per_page\";i:10;}}','yes'),(167,0,'uninstall_plugins','a:2:{i:0;b:0;s:25:\"adminimize/adminimize.php\";s:24:\"_mw_adminimize_deinstall\";}','yes'),(168,0,'mw_adminimize','a:27:{s:47:\"mw_adminimize_disabled_menu_administrator_items\";a:0:{}s:50:\"mw_adminimize_disabled_submenu_administrator_items\";a:0:{}s:56:\"mw_adminimize_disabled_global_option_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_post_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_page_administrator_items\";a:0:{}s:40:\"mw_adminimize_disabled_menu_editor_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_editor_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_editor_items\";a:0:{}s:40:\"mw_adminimize_disabled_menu_author_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_author_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_author_items\";a:0:{}s:45:\"mw_adminimize_disabled_menu_contributor_items\";a:0:{}s:48:\"mw_adminimize_disabled_submenu_contributor_items\";a:0:{}s:54:\"mw_adminimize_disabled_global_option_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_post_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_page_contributor_items\";a:0:{}s:44:\"mw_adminimize_disabled_menu_subscriber_items\";a:0:{}s:47:\"mw_adminimize_disabled_submenu_subscriber_items\";a:0:{}s:53:\"mw_adminimize_disabled_global_option_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_post_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_page_subscriber_items\";a:0:{}s:26:\"mw_adminimize_default_menu\";a:17:{i:0;a:7:{i:0;s:9:\"Dashboard\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";i:3;s:0:\"\";i:4;s:23:\"menu-top menu-top-first\";i:5;s:14:\"menu-dashboard\";i:6;s:3:\"div\";}i:1;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:2;a:7:{i:0;s:10:\"Site Admin\";i:1;s:2:\"10\";i:2;s:14:\"wpmu-admin.php\";i:3;s:0:\"\";i:4;s:23:\"menu-top menu-top-first\";i:5;s:9:\"menu-site\";i:6;s:3:\"div\";}i:3;a:7:{i:0;s:10:\"BuddyPress\";i:1;i:10;i:2;s:19:\"bp-general-settings\";i:3;s:10:\"BuddyPress\";i:4;s:56:\"menu-top toplevel_page_bp-general-settings menu-top-last\";i:5;s:33:\"toplevel_page_bp-general-settings\";i:6;s:18:\"images/generic.png\";}i:4;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator1\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:5;a:7:{i:0;s:5:\"Posts\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";i:3;s:0:\"\";i:4;s:37:\"open-if-no-js menu-top menu-top-first\";i:5;s:10:\"menu-posts\";i:6;s:3:\"div\";}i:10;a:7:{i:0;s:5:\"Media\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";i:3;s:0:\"\";i:4;s:8:\"menu-top\";i:5;s:10:\"menu-media\";i:6;s:3:\"div\";}i:15;a:7:{i:0;s:5:\"Links\";i:1;s:12:\"manage_links\";i:2;s:16:\"link-manager.php\";i:3;s:0:\"\";i:4;s:8:\"menu-top\";i:5;s:10:\"menu-links\";i:6;s:3:\"div\";}i:20;a:7:{i:0;s:5:\"Pages\";i:1;s:10:\"edit_pages\";i:2;s:14:\"edit-pages.php\";i:3;s:0:\"\";i:4;s:8:\"menu-top\";i:5;s:10:\"menu-pages\";i:6;s:3:\"div\";}i:25;a:7:{i:0;s:92:\"Comments <span id=\'awaiting-mod\' class=\'count-0\'><span class=\'pending-count\'>0</span></span>\";i:1;s:10:\"edit_posts\";i:2;s:17:\"edit-comments.php\";i:3;s:0:\"\";i:4;s:22:\"menu-top menu-top-last\";i:5;s:13:\"menu-comments\";i:6;s:3:\"div\";}i:59;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator2\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:60;a:7:{i:0;s:10:\"Appearance\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";i:3;s:0:\"\";i:4;s:23:\"menu-top menu-top-first\";i:5;s:15:\"menu-appearance\";i:6;s:3:\"div\";}i:65;a:7:{i:0;s:87:\"Plugins <span class=\'update-plugins count-0\'><span class=\'plugin-count\'>0</span></span>\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";i:3;s:0:\"\";i:4;s:8:\"menu-top\";i:5;s:12:\"menu-plugins\";i:6;s:3:\"div\";}i:70;a:7:{i:0;s:5:\"Users\";i:1;s:10:\"edit_users\";i:2;s:9:\"users.php\";i:3;s:0:\"\";i:4;s:8:\"menu-top\";i:5;s:10:\"menu-users\";i:6;s:3:\"div\";}i:75;a:7:{i:0;s:5:\"Tools\";i:1;s:4:\"read\";i:2;s:9:\"tools.php\";i:3;s:0:\"\";i:4;s:8:\"menu-top\";i:5;s:10:\"menu-tools\";i:6;s:3:\"div\";}i:80;a:7:{i:0;s:8:\"Settings\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";i:3;s:0:\"\";i:4;s:22:\"menu-top menu-top-last\";i:5;s:13:\"menu-settings\";i:6;s:3:\"div\";}i:99;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:14:\"separator-last\";i:3;s:0:\"\";i:4;s:22:\"wp-menu-separator-last\";}}s:29:\"mw_adminimize_default_submenu\";a:13:{s:8:\"edit.php\";a:5:{i:5;a:3:{i:0;s:4:\"Edit\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:10:\"edit_posts\";i:2;s:12:\"post-new.php\";}i:15;a:3:{i:0;s:9:\"Post Tags\";i:1;s:17:\"manage_categories\";i:2;s:31:\"edit-tags.php?taxonomy=post_tag\";}i:16;a:3:{i:0;s:15:\"Activities Tags\";i:1;s:17:\"manage_categories\";i:2;s:38:\"edit-tags.php?taxonomy=activities_tags\";}i:50;a:3:{i:0;s:10:\"Categories\";i:1;s:17:\"manage_categories\";i:2;s:14:\"categories.php\";}}s:10:\"upload.php\";a:2:{i:5;a:3:{i:0;s:7:\"Library\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:12:\"upload_files\";i:2;s:13:\"media-new.php\";}}s:16:\"link-manager.php\";a:3:{i:5;a:3:{i:0;s:4:\"Edit\";i:1;s:12:\"manage_links\";i:2;s:16:\"link-manager.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:12:\"manage_links\";i:2;s:12:\"link-add.php\";}i:15;a:3:{i:0;s:15:\"Link Categories\";i:1;s:17:\"manage_categories\";i:2;s:24:\"edit-link-categories.php\";}}s:14:\"edit-pages.php\";a:2:{i:5;a:3:{i:0;s:4:\"Edit\";i:1;s:10:\"edit_pages\";i:2;s:14:\"edit-pages.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:10:\"edit_pages\";i:2;s:12:\"page-new.php\";}}s:10:\"themes.php\";a:4:{i:5;a:3:{i:0;s:6:\"Themes\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";}i:7;a:3:{i:0;s:7:\"Widgets\";i:1;s:13:\"switch_themes\";i:2;s:11:\"widgets.php\";}i:15;a:3:{i:0;s:14:\"Add New Themes\";i:1;s:14:\"install_themes\";i:2;s:17:\"theme-install.php\";}i:16;a:4:{i:0;s:13:\"Custom Header\";i:1;s:11:\"edit_themes\";i:2;s:13:\"functions.php\";i:3;s:13:\"Custom Header\";}}s:11:\"plugins.php\";a:2:{i:5;a:3:{i:0;s:9:\"Installed\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:15:\"install_plugins\";i:2;s:18:\"plugin-install.php\";}}s:9:\"users.php\";a:3:{i:5;a:3:{i:0;s:19:\"Authors &amp; Users\";i:1;s:10:\"edit_users\";i:2;s:9:\"users.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:12:\"create_users\";i:2;s:12:\"user-new.php\";}i:15;a:3:{i:0;s:12:\"Your Profile\";i:1;s:4:\"read\";i:2;s:11:\"profile.php\";}}s:9:\"tools.php\";a:3:{i:5;a:3:{i:0;s:5:\"Tools\";i:1;s:4:\"read\";i:2;s:9:\"tools.php\";}i:10;a:3:{i:0;s:6:\"Import\";i:1;s:6:\"import\";i:2;s:10:\"import.php\";}i:15;a:3:{i:0;s:6:\"Export\";i:1;s:6:\"import\";i:2;s:10:\"export.php\";}}s:19:\"options-general.php\";a:8:{i:10;a:3:{i:0;s:7:\"General\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";}i:15;a:3:{i:0;s:7:\"Writing\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-writing.php\";}i:20;a:3:{i:0;s:7:\"Reading\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-reading.php\";}i:25;a:3:{i:0;s:10:\"Discussion\";i:1;s:14:\"manage_options\";i:2;s:22:\"options-discussion.php\";}i:30;a:3:{i:0;s:5:\"Media\";i:1;s:14:\"manage_options\";i:2;s:17:\"options-media.php\";}i:35;a:3:{i:0;s:7:\"Privacy\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-privacy.php\";}i:40;a:3:{i:0;s:10:\"Permalinks\";i:1;s:14:\"manage_options\";i:2;s:21:\"options-permalink.php\";}i:46;a:4:{i:0;s:11:\"Delete Blog\";i:1;s:14:\"manage_options\";i:2;s:11:\"delete-blog\";i:3;s:11:\"Delete Blog\";}}s:14:\"wpmu-admin.php\";a:8:{i:1;a:3:{i:0;s:5:\"Admin\";i:1;s:2:\"10\";i:2;s:14:\"wpmu-admin.php\";}i:5;a:3:{i:0;s:5:\"Blogs\";i:1;s:2:\"10\";i:2;s:14:\"wpmu-blogs.php\";}i:10;a:3:{i:0;s:5:\"Users\";i:1;s:2:\"10\";i:2;s:14:\"wpmu-users.php\";}i:20;a:3:{i:0;s:6:\"Themes\";i:1;s:2:\"10\";i:2;s:15:\"wpmu-themes.php\";}i:25;a:3:{i:0;s:7:\"Options\";i:1;s:2:\"10\";i:2;s:16:\"wpmu-options.php\";}i:30;a:3:{i:0;s:7:\"Upgrade\";i:1;s:2:\"10\";i:2;s:21:\"wpmu-upgrade-site.php\";}i:31;a:4:{i:0;s:6:\"Groups\";i:1;i:1;i:2;s:21:\"groups_admin_settings\";i:3;s:6:\"Groups\";}i:32;a:4:{i:0;s:18:\"Groupblog Settings\";i:1;i:1;i:2;s:28:\"bp_groupblog_management_page\";i:3;s:18:\"Groupblog Settings\";}}s:19:\"bp-general-settings\";a:4:{i:0;a:4:{i:0;s:16:\"General Settings\";i:1;s:14:\"manage_options\";i:2;s:19:\"bp-general-settings\";i:3;s:16:\"General Settings\";}i:1;a:4:{i:0;s:15:\"Component Setup\";i:1;s:14:\"manage_options\";i:2;s:18:\"bp-component-setup\";i:3;s:15:\"Component Setup\";}i:2;a:4:{i:0;s:12:\"Forums Setup\";i:1;s:14:\"manage_options\";i:2;s:15:\"bb-forums-setup\";i:3;s:12:\"Forums Setup\";}i:3;a:4:{i:0;s:19:\"Profile Field Setup\";i:1;s:14:\"manage-options\";i:2;s:16:\"bp-profile-setup\";i:3;s:19:\"Profile Field Setup\";}}s:11:\"bp-core.php\";a:1:{i:0;a:4:{i:0;s:11:\"Album Admin\";i:1;i:1;i:2;s:27:\"bp-album/bp-album-admin.php\";i:3;s:11:\"Album Admin\";}}s:9:\"index.php\";a:2:{i:0;a:7:{i:0;s:9:\"Dashboard\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";i:3;s:0:\"\";i:4;s:8:\"menu-top\";i:5;s:14:\"menu-dashboard\";i:6;s:3:\"div\";}i:1;a:4:{i:0;s:8:\"My Blogs\";i:1;s:4:\"read\";i:2;s:7:\"myblogs\";i:3;s:8:\"My Blogs\";}}}}','yes'),(171,0,'widget_bp_links_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(172,0,'subscribe2_options','a:29:{s:7:\"autosub\";s:2:\"no\";s:15:\"newreg_override\";s:2:\"no\";s:8:\"wpregdef\";s:2:\"no\";s:10:\"autoformat\";s:4:\"text\";s:12:\"show_autosub\";s:3:\"yes\";s:11:\"autosub_def\";s:3:\"yes\";s:8:\"bcclimit\";i:0;s:10:\"cron_order\";s:3:\"asc\";s:11:\"admin_email\";s:4:\"subs\";s:6:\"s2page\";i:0;s:10:\"stylesheet\";s:3:\"yes\";s:5:\"pages\";s:2:\"no\";s:8:\"password\";s:2:\"no\";s:7:\"private\";s:2:\"no\";s:10:\"email_freq\";s:5:\"never\";s:7:\"exclude\";s:0:\"\";s:6:\"sender\";s:6:\"author\";s:12:\"reg_override\";s:1:\"1\";s:9:\"show_meta\";s:1:\"0\";s:11:\"show_button\";s:1:\"1\";s:6:\"widget\";s:1:\"0\";s:7:\"entries\";i:25;s:6:\"barred\";s:0:\"\";s:8:\"mailtext\";s:203:\"BLOGNAME has posted a new item, \'TITLE\'\n\nPOST\n\nYou may view the latest post at\nPERMALINK\n\nYou received this e-mail because you asked to be notified when new updates are posted.\nBest regards,\nMYNAME\nEMAIL\";s:20:\"notification_subject\";s:16:\"[BLOGNAME] TITLE\";s:13:\"confirm_email\";s:221:\"BLOGNAME has received a request to ACTION for this email address. To complete your request please click on the link below:\n\nLINK\n\nIf you did not request this, please feel free to disregard this notice!\n\nThank you,\nMYNAME.\";s:15:\"confirm_subject\";s:38:\"[BLOGNAME] Please confirm your request\";s:12:\"remind_email\";s:340:\"This email address was subscribed for notifications at BLOGNAME (BLOGLINK) but the subscription remains incomplete.\n\nIf you wish to complete your subscription please click on the link below:\n\nLINK\n\nIf you do not wish to complete your subscription please ignore this email and your address will be removed from our database.\n\nRegards,\nMYNAME\";s:14:\"remind_subject\";s:32:\"[BLOGNAME] Subscription Reminder\";}','yes'),(178,0,'_transient_timeout_feed_43ac0f67b7951f962ad93e3383b442d6','1265868096','no'),(177,0,'_icl_cache','a:1:{s:25:\"language_name_cache_class\";a:3:{s:21:\"in_language__default_\";N;s:15:\"languages_Array\";a:0:{}s:26:\"language_details__default_\";N;}}','yes'),(179,0,'_transient_feed_43ac0f67b7951f962ad93e3383b442d6','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"link:http://video.artistfolio.colorgridadmin.com/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&ie=ISO-8859-1&num=20&q=link:http://video.artistfolio.colorgridadmin.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Your search - <b>link:http://video.artistfolio.colorgridadmin.com/</b> - did not match any documents.   \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:4:\"date\";s:29:\"Wed, 10 Feb 2010 18:01:36 GMT\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:29:\"Fri, 01 Jan 1990 00:00:00 GMT\";s:13:\"cache-control\";s:25:\"no-cache, must-revalidate\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"set-cookie\";s:138:\"PREF=ID=37601ab2e5e2e5a8:TM=1265824896:LM=1265824896:S=Zluyr-oonBhZ4ZVr; expires=Fri, 10-Feb-2012 18:01:36 GMT; path=/; domain=.google.com\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:4:\"bsfe\";s:16:\"x-xss-protection\";s:1:\"0\";}s:5:\"build\";i:20081219;}','no'),(180,0,'_transient_timeout_feed_mod_43ac0f67b7951f962ad93e3383b442d6','1265868096','no'),(181,0,'_transient_feed_mod_43ac0f67b7951f962ad93e3383b442d6','1265824896','no');
/*!40000 ALTER TABLE `wp_10_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_postmeta`
--

DROP TABLE IF EXISTS `wp_10_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL auto_increment,
  `post_id` bigint(20) unsigned NOT NULL default '0',
  `meta_key` varchar(255) default NULL,
  `meta_value` longtext,
  PRIMARY KEY  (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_postmeta`
--

LOCK TABLES `wp_10_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_10_postmeta` DISABLE KEYS */;
INSERT INTO `wp_10_postmeta` VALUES (1,3,'_wp_attached_file','2009/10/clock1.avi'),(2,3,'_wp_attachment_metadata','a:0:{}'),(5,5,'_wp_attached_file','2009/10/clock3.avi'),(6,5,'_wp_attachment_metadata','a:0:{}'),(14,9,'_wp_attachment_metadata','a:0:{}'),(13,9,'_wp_attached_file','2009/12/Demo_HD480@1000Kb.mp4'),(11,8,'_wp_attached_file','2009/12/clock.avi'),(12,8,'_wp_attachment_metadata','a:0:{}'),(15,10,'_wp_attached_file','2009/12/spun-sample-dcn.avi'),(16,10,'_wp_attachment_metadata','a:0:{}'),(17,11,'_wp_attached_file','2009/12/Demo_HD480@1000Kb1.mp4'),(18,11,'_wp_attachment_metadata','a:0:{}'),(19,12,'_wp_attached_file','2010/02/Demo_HD480@1000Kb.mp4'),(20,12,'_wp_attachment_metadata','a:0:{}'),(32,18,'_wp_attached_file','2010/02/Demo_HD480@1000Kb1.mp4'),(33,18,'_wp_attachment_metadata','a:0:{}'),(34,18,'video_data','a:5:{s:6:\"height\";s:3:\"480\";s:5:\"width\";s:3:\"852\";s:4:\"rate\";s:13:\"29.9700298309\";s:5:\"count\";s:4:\"2850\";s:5:\"image\";s:61:\"/files/converted/mp4/2010/02/Demo_HD480@1000Kb1.mp4/frame.jpg\";}'),(35,19,'_wp_attached_file','2010/02/video.flv'),(36,19,'_wp_attachment_metadata','a:0:{}'),(37,19,'video_data','a:5:{s:6:\"height\";s:3:\"480\";s:5:\"width\";s:3:\"852\";s:4:\"rate\";s:13:\"29.9166660309\";s:5:\"count\";s:3:\"467\";s:5:\"image\";s:48:\"/files/converted/flv/2010/02/video.flv/frame.jpg\";}'),(38,20,'_wp_attached_file','2010/03/16757425.mp4'),(39,20,'_wp_attachment_metadata','a:0:{}'),(40,20,'video_data','a:5:{s:6:\"height\";s:3:\"360\";s:5:\"width\";s:3:\"640\";s:4:\"rate\";s:2:\"25\";s:5:\"count\";s:4:\"2126\";s:5:\"image\";s:51:\"/files/converted/mp4/2010/03/16757425.mp4/frame.jpg\";}'),(41,21,'_wp_attached_file','2010/03/17412715.mp4'),(42,21,'_wp_attachment_metadata','a:0:{}'),(43,21,'video_data','a:5:{s:6:\"height\";s:3:\"360\";s:5:\"width\";s:3:\"640\";s:4:\"rate\";s:2:\"25\";s:5:\"count\";s:4:\"2126\";s:5:\"image\";s:51:\"/files/converted/mp4/2010/03/17412715.mp4/frame.jpg\";}'),(44,22,'_wp_attached_file','2010/03/8391216.flv'),(45,22,'_wp_attachment_metadata','a:0:{}'),(46,22,'video_data','a:5:{s:6:\"height\";s:3:\"284\";s:5:\"width\";s:3:\"504\";s:4:\"rate\";s:2:\"25\";s:5:\"count\";s:4:\"1475\";s:5:\"image\";s:50:\"/files/converted/flv/2010/03/8391216.flv/frame.jpg\";}'),(47,23,'_wp_attached_file','2010/04/10085638.mp4'),(48,23,'_wp_attachment_metadata','a:0:{}'),(49,23,'video_data','a:5:{s:6:\"height\";s:3:\"352\";s:5:\"width\";s:3:\"640\";s:4:\"rate\";s:13:\"29.9700298309\";s:5:\"count\";s:4:\"6520\";s:5:\"image\";s:51:\"/files/converted/mp4/2010/04/10085638.mp4/frame.jpg\";}'),(50,24,'_wp_attached_file','2010/04/18384463.mp4'),(51,24,'_wp_attachment_metadata','a:0:{}'),(52,24,'video_data','a:5:{s:6:\"height\";s:3:\"448\";s:5:\"width\";s:3:\"600\";s:4:\"rate\";s:2:\"25\";s:5:\"count\";s:4:\"1501\";s:5:\"image\";s:51:\"/files/converted/mp4/2010/04/18384463.mp4/frame.jpg\";}');
/*!40000 ALTER TABLE `wp_10_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_posts`
--

DROP TABLE IF EXISTS `wp_10_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_posts` (
  `ID` bigint(20) unsigned NOT NULL auto_increment,
  `post_author` bigint(20) unsigned NOT NULL default '0',
  `post_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL default 'publish',
  `comment_status` varchar(20) NOT NULL default 'open',
  `ping_status` varchar(20) NOT NULL default 'open',
  `post_password` varchar(20) NOT NULL default '',
  `post_name` varchar(200) NOT NULL default '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_content_filtered` text NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL default '0',
  `guid` varchar(255) NOT NULL default '',
  `menu_order` int(11) NOT NULL default '0',
  `post_type` varchar(20) NOT NULL default 'post',
  `post_mime_type` varchar(100) NOT NULL default '',
  `comment_count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_posts`
--

LOCK TABLES `wp_10_posts` WRITE;
/*!40000 ALTER TABLE `wp_10_posts` DISABLE KEYS */;
INSERT INTO `wp_10_posts` VALUES (1,1,'2009-10-22 12:57:09','2009-10-22 09:57:09','Welcome to <a href=\"http://yellowpages.colorgridadmin.com/\">Yellowpages.colorgridadmin.com Blogs</a>. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2009-10-22 12:57:09','2009-10-22 09:57:09','',0,'',0,'post','',1),(2,1,'2009-10-22 12:57:09','2009-10-22 09:57:09','This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.','About','','publish','open','open','','about','','','2009-10-22 12:57:09','2009-10-22 09:57:09','',0,'',0,'page','',0),(3,9,'2009-10-23 15:47:58','2009-10-23 12:47:58','','clock-2','','inherit','open','open','','clock','','','2009-10-23 15:47:58','2009-10-23 12:47:58','',0,'http://yellowpages.colorgridadmin.com/files/2009/10/clock1.avi',0,'attachment','video/avi',0),(5,9,'2009-10-27 11:56:30','2009-10-27 08:56:30','','clock3','','inherit','open','open','','clock-3','','','2009-10-27 11:56:30','2009-10-27 08:56:30','',0,'http://yellowpages.colorgridadmin.com/files/2009/10/clock3.avi',0,'attachment','video/avi',0),(9,54,'2010-01-05 19:32:13','2010-01-05 16:32:13','','Demo_HD480@1000Kb','','inherit','open','open','','demo_hd4801000kb','','','2010-01-05 19:32:13','2010-01-05 16:32:13','',0,'http://video.yellowpages.colorgridadmin.com/files/2009/12/Demo_HD480@1000Kb.mp4',0,'attachment','video/mp4',0),(8,54,'2010-01-05 16:37:24','2010-01-05 13:37:24','','clock','','inherit','open','open','','clock-5','','','2010-01-05 16:37:24','2010-01-05 13:37:24','',0,'http://video.yellowpages.colorgridadmin.com/files/2009/12/clock.avi',0,'attachment','video/avi',0),(10,1,'2010-01-07 02:06:03','2010-01-06 23:06:03','','spun-sample-dcn','','inherit','open','open','','spun-sample-dcn','','','2010-01-07 02:06:03','2010-01-06 23:06:03','',0,'http://video.yellowpages.colorgridadmin.com/files/2009/12/spun-sample-dcn.avi',0,'attachment','video/avi',0),(11,57,'2010-01-07 14:40:06','2010-01-07 11:40:06','','Demo_HD480@1000Kb','','inherit','open','open','','demo_hd4801000kb-2','','','2010-01-07 14:40:06','2010-01-07 11:40:06','',0,'http://video.yellowpages.colorgridadmin.com/files/2009/12/Demo_HD480@1000Kb1.mp4',0,'attachment','video/mp4',0),(12,1,'2010-02-19 16:34:40','2010-02-19 13:34:40','','Demo_HD480@1000Kb','','inherit','open','open','','demo_hd4801000kb-3','','','2010-02-19 16:34:40','2010-02-19 13:34:40','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/02/Demo_HD480@1000Kb.mp4',0,'attachment','video/mp4',0),(18,34,'2010-03-11 18:31:54','2010-03-11 15:31:54','','Demo_HD480@1000Kb','','inherit','open','open','','demo_hd4801000kb-4','','','2010-03-11 18:31:54','2010-03-11 15:31:54','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/02/Demo_HD480@1000Kb1.mp4',0,'attachment','video/mp4',0),(19,34,'2010-03-11 19:10:30','2010-03-11 16:10:30','','video','','inherit','open','open','','video','','','2010-03-11 19:10:30','2010-03-11 16:10:30','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/02/video.flv',0,'attachment','video/x-flv',0),(20,159,'2010-03-23 15:41:45','2010-03-23 12:41:45','','Nokta','Nokta','inherit','open','open','','16757425','','','2010-03-23 15:41:45','2010-03-23 12:41:45','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/03/16757425.mp4',0,'attachment','video/mp4',0),(21,159,'2010-03-23 15:41:51','2010-03-23 12:41:51','','110 - Geri Donme','110 - Geri Donme','inherit','open','open','','17412715','','','2010-03-23 15:41:51','2010-03-23 12:41:51','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/03/17412715.mp4',0,'attachment','video/mp4',0),(22,159,'2010-03-23 16:00:18','2010-03-23 13:00:18','','Nokta Teaser','Nokta Teaser','inherit','open','open','','8391216','','','2010-03-23 16:00:18','2010-03-23 13:00:18','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/03/8391216.flv',0,'attachment','video/x-flv',0),(23,161,'2010-04-14 14:26:18','2010-04-14 11:26:18','','Maggie and Mildred','','inherit','open','open','','10085638','','','2010-04-14 14:26:18','2010-04-14 11:26:18','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/04/10085638.mp4',0,'attachment','video/mp4',0),(24,161,'2010-04-14 14:30:23','2010-04-14 11:30:23','','Undone','','inherit','open','open','','18384463','','','2010-04-14 14:30:23','2010-04-14 11:30:23','',0,'http://video.artistfolio.colorgridadmin.com/files/2010/04/18384463.mp4',0,'attachment','video/mp4',0);
/*!40000 ALTER TABLE `wp_10_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_subscribe2`
--

DROP TABLE IF EXISTS `wp_10_subscribe2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_subscribe2` (
  `id` int(11) NOT NULL auto_increment,
  `email` varchar(64) NOT NULL default '',
  `active` tinyint(1) default '0',
  `date` date NOT NULL default '2010-02-10',
  `ip` char(64) NOT NULL default 'admin',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_subscribe2`
--

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

--
-- Table structure for table `wp_10_term_relationships`
--

DROP TABLE IF EXISTS `wp_10_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL default '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0',
  `term_order` int(11) NOT NULL default '0',
  PRIMARY KEY  (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_term_relationships`
--

LOCK TABLES `wp_10_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_10_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_10_term_relationships` VALUES (1,2,0),(2,2,0),(1,1,0),(3,1,0),(5,1,0),(9,1,0),(8,1,0),(10,1,0),(11,1,0),(12,1,0),(18,1,0),(19,1,0),(20,1,0),(21,1,0),(22,1,0),(23,1,0),(24,1,0);
/*!40000 ALTER TABLE `wp_10_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_10_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL auto_increment,
  `term_id` bigint(20) unsigned NOT NULL default '0',
  `taxonomy` varchar(32) NOT NULL default '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL default '0',
  `count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_term_taxonomy`
--

LOCK TABLES `wp_10_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_10_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_10_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'link_category','',0,2);
/*!40000 ALTER TABLE `wp_10_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_10_terms`
--

DROP TABLE IF EXISTS `wp_10_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_10_terms` (
  `term_id` bigint(20) unsigned NOT NULL auto_increment,
  `name` varchar(200) NOT NULL default '',
  `slug` varchar(200) NOT NULL default '',
  `term_group` bigint(10) NOT NULL default '0',
  PRIMARY KEY  (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_10_terms`
--

LOCK TABLES `wp_10_terms` WRITE;
/*!40000 ALTER TABLE `wp_10_terms` DISABLE KEYS */;
INSERT INTO `wp_10_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0);
/*!40000 ALTER TABLE `wp_10_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_comments`
--

DROP TABLE IF EXISTS `wp_11_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL auto_increment,
  `comment_post_ID` bigint(20) unsigned NOT NULL default '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL default '',
  `comment_author_url` varchar(200) NOT NULL default '',
  `comment_author_IP` varchar(100) NOT NULL default '',
  `comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL default '0',
  `comment_approved` varchar(20) NOT NULL default '1',
  `comment_agent` varchar(255) NOT NULL default '',
  `comment_type` varchar(20) NOT NULL default '',
  `comment_parent` bigint(20) unsigned NOT NULL default '0',
  `user_id` bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_comments`
--

LOCK TABLES `wp_11_comments` WRITE;
/*!40000 ALTER TABLE `wp_11_comments` DISABLE KEYS */;
INSERT INTO `wp_11_comments` VALUES (1,1,'Mr WordPress','','http://yellowpages.colorgridadmin.com/','127.0.0.1','2009-10-27 10:21:12','2009-10-27 08:21:12','Hi, this is a comment.<br />To delete a comment, just log in, and view the posts\' comments, there you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_11_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_links`
--

DROP TABLE IF EXISTS `wp_11_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_links` (
  `link_id` bigint(20) unsigned NOT NULL auto_increment,
  `link_url` varchar(255) NOT NULL default '',
  `link_name` varchar(255) NOT NULL default '',
  `link_image` varchar(255) NOT NULL default '',
  `link_target` varchar(25) NOT NULL default '',
  `link_description` varchar(255) NOT NULL default '',
  `link_visible` varchar(20) NOT NULL default 'Y',
  `link_owner` bigint(20) unsigned NOT NULL default '1',
  `link_rating` int(11) NOT NULL default '0',
  `link_updated` datetime NOT NULL default '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL default '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_links`
--

LOCK TABLES `wp_11_links` WRITE;
/*!40000 ALTER TABLE `wp_11_links` DISABLE KEYS */;
INSERT INTO `wp_11_links` VALUES (1,'http://wordpress.com/','WordPress.com','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.com/feed/'),(2,'http://wordpress.org/','WordPress.org','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/development/feed/');
/*!40000 ALTER TABLE `wp_11_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_options`
--

DROP TABLE IF EXISTS `wp_11_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_options` (
  `option_id` bigint(20) unsigned NOT NULL auto_increment,
  `blog_id` int(11) NOT NULL default '0',
  `option_name` varchar(64) NOT NULL default '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL default 'yes',
  PRIMARY KEY  (`option_id`,`blog_id`,`option_name`),
  KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=142 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_options`
--

LOCK TABLES `wp_11_options` WRITE;
/*!40000 ALTER TABLE `wp_11_options` DISABLE KEYS */;
INSERT INTO `wp_11_options` VALUES (1,0,'_transient_random_seed','1de1a3511082459a59ffab14b12380d7','yes'),(2,0,'siteurl','http://emails.artistfolio.colorgridadmin.com/','yes'),(3,0,'blogname','Emails','yes'),(4,0,'blogdescription','AF | Emails','yes'),(5,0,'users_can_register','0','yes'),(6,0,'admin_email','k.popchovski@cy-systems.com','yes'),(7,0,'start_of_week','1','yes'),(8,0,'use_balanceTags','0','yes'),(9,0,'use_smilies','1','yes'),(10,0,'require_name_email','1','yes'),(11,0,'comments_notify','1','yes'),(12,0,'posts_per_rss','10','yes'),(13,0,'rss_excerpt_length','50','yes'),(14,0,'rss_use_excerpt','0','yes'),(15,0,'mailserver_url','mail.example.com','yes'),(16,0,'mailserver_login','login@example.com','yes'),(17,0,'mailserver_pass','password','yes'),(18,0,'mailserver_port','110','yes'),(19,0,'default_category','1','yes'),(20,0,'default_comment_status','open','yes'),(21,0,'default_ping_status','open','yes'),(22,0,'default_pingback_flag','1','yes'),(23,0,'default_post_edit_rows','10','yes'),(24,0,'posts_per_page','10','yes'),(25,0,'date_format','F j, Y','yes'),(26,0,'time_format','g:i a','yes'),(27,0,'links_updated_date_format','F j, Y g:i a','yes'),(28,0,'links_recently_updated_prepend','<em>','yes'),(29,0,'links_recently_updated_append','</em>','yes'),(30,0,'links_recently_updated_time','120','yes'),(31,0,'comment_moderation','0','yes'),(32,0,'moderation_notify','1','yes'),(33,0,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(34,0,'gzipcompression','0','yes'),(35,0,'hack_file','0','yes'),(36,0,'blog_charset','UTF-8','yes'),(37,0,'moderation_keys','','no'),(38,0,'active_plugins','a:0:{}','yes'),(39,0,'home','http://emails.artistfolio.colorgridadmin.com/','yes'),(40,0,'category_base','','yes'),(41,0,'ping_sites','http://rpc.pingomatic.com/','yes'),(42,0,'advanced_edit','0','yes'),(43,0,'comment_max_links','2','yes'),(44,0,'gmt_offset','2','yes'),(45,0,'default_email_category','1','yes'),(46,0,'recently_edited','','no'),(47,0,'use_linksupdate','0','yes'),(48,0,'template','default','yes'),(49,0,'stylesheet','default','yes'),(50,0,'comment_whitelist','1','yes'),(51,0,'blacklist_keys','','no'),(52,0,'comment_registration','0','yes'),(53,0,'rss_language','en','yes'),(54,0,'html_type','text/html','yes'),(55,0,'use_trackback','0','yes'),(56,0,'default_role','subscriber','yes'),(57,0,'db_version','11548','yes'),(58,0,'uploads_use_yearmonth_folders','1','yes'),(59,0,'upload_path','wp-content/blogs.dir/11/files','yes'),(96,0,'post_count','68','yes'),(60,0,'secret','Kw)kqxI4&#fx(rV*T0VDS13eLaW8^j8(*I0YnVkLW*buqweVOoy)bop^hDM4JjLC','yes'),(61,0,'blog_public','1','yes'),(62,0,'default_link_category','2','yes'),(63,0,'show_on_front','posts','yes'),(64,0,'tag_base','','yes'),(65,0,'show_avatars','1','yes'),(66,0,'avatar_rating','G','yes'),(67,0,'upload_url_path','','yes'),(68,0,'thumbnail_size_w','150','yes'),(69,0,'thumbnail_size_h','150','yes'),(70,0,'thumbnail_crop','1','yes'),(71,0,'medium_size_w','300','yes'),(72,0,'medium_size_h','300','yes'),(73,0,'avatar_default','mystery','yes'),(74,0,'enable_app','0','yes'),(75,0,'enable_xmlrpc','0','yes'),(76,0,'large_size_w','1024','yes'),(77,0,'large_size_h','1024','yes'),(78,0,'image_default_link_type','file','yes'),(79,0,'image_default_size','','yes'),(80,0,'image_default_align','','yes'),(81,0,'close_comments_for_old_posts','0','yes'),(82,0,'close_comments_days_old','14','yes'),(83,0,'thread_comments','0','yes'),(84,0,'thread_comments_depth','5','yes'),(85,0,'page_comments','1','yes'),(86,0,'comments_per_page','50','yes'),(87,0,'default_comments_page','newest','yes'),(88,0,'comment_order','asc','yes'),(89,0,'sticky_posts','a:0:{}','yes'),(90,0,'widget_categories','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(91,0,'widget_text','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(92,0,'widget_rss','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(93,0,'timezone_string','','yes'),(94,0,'wp_11_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:47:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:14:\"edit_dashboard\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:33:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,0,'fileupload_url','http://emails.artistfolio.colorgridadmin.com/files','yes'),(140,0,'_transient_rewrite_rules','a:77:{s:25:\"(about)/emailpopuppage/?$\";s:43:\"index.php?pagename=$matches[1]&emailpopup=1\";s:21:\"([^/]+)/emailpopup/?$\";s:39:\"index.php?name=$matches[1]&emailpopup=1\";s:20:\"(about)/emailpage/?$\";s:38:\"index.php?pagename=$matches[1]&email=1\";s:16:\"([^/]+)/email/?$\";s:34:\"index.php?name=$matches[1]&email=1\";s:17:\"unsubscribe/(.+)$\";s:55:\"index.php?namespace=automessage&unsubscribe=$matches[1]\";s:56:\"activities_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?activities_tags=$matches[1]&feed=$matches[2]\";s:51:\"activities_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?activities_tags=$matches[1]&feed=$matches[2]\";s:44:\"activities_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?activities_tags=$matches[1]&paged=$matches[2]\";s:26:\"activities_tags/([^/]+)/?$\";s:37:\"index.php?activities_tags=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:14:\".*wp-atom.php$\";s:19:\"index.php?feed=atom\";s:13:\".*wp-rdf.php$\";s:18:\"index.php?feed=rdf\";s:13:\".*wp-rss.php$\";s:18:\"index.php?feed=rss\";s:14:\".*wp-rss2.php$\";s:19:\"index.php?feed=rss2\";s:14:\".*wp-feed.php$\";s:19:\"index.php?feed=feed\";s:22:\".*wp-commentsrss2.php$\";s:34:\"index.php?feed=rss2&withcomments=1\";s:27:\"about/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"about/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"about/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"about/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"about/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(about)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(about)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(about)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(about)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(about)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(about)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:29:\"comments/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:42:\"tag/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:37:\"tag/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:30:\"tag/(.+?)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:12:\"tag/(.+?)/?$\";s:25:\"index.php?tag=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'),(138,0,'blog_upload_space','','yes'),(139,0,'allowedthemes','','yes'),(141,0,'mp_pm_plugin_override_list','a:1:{i:0;s:5:\"EMPTY\";}','yes'),(98,0,'WPLANG','','yes'),(99,0,'cron','a:3:{i:1256847062;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1260803516;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(100,0,'_transient_doing_cron','1268761659','yes'),(105,0,'nonce_salt',')e!Qxi@WhpOtCQ7ZVKesDKH@*vN*^(nIv)DnSV6K!C6FuF@QaYH8oVXU03R^n3Ib','yes'),(106,0,'widget_pages','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(107,0,'widget_calendar','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(108,0,'widget_archives','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(109,0,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(110,0,'widget_meta','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(111,0,'widget_search','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(112,0,'widget_recent-posts','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(113,0,'widget_recent-comments','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(114,0,'widget_tag_cloud','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(115,0,'widget_bp_core_welcome_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(116,0,'widget_bp_core_members_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(117,0,'widget_bp_core_whos_online_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(118,0,'widget_bp_core_recently_active_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(119,0,'widget_bp_activity_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(120,0,'widget_bp_blogs_recent_posts_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(121,0,'widget_bp_groups_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(124,0,'recently_activated','a:1:{i:0;b:0;}','yes'),(125,0,'deactivated_sitewide_plugins','a:3:{i:0;b:0;s:45:\"branded-login-screen/branded-login-screen.php\";s:32:\"1984fceebf627cc6e1f12be8d1aa6d56\";s:29:\"gravityforms/gravityforms.php\";s:32:\"9b80d73025a219decc3493efb75e8d5d\";}','yes'),(127,0,'category_children','a:0:{}','yes'),(130,0,'widget_bp_group_documents_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(131,0,'widget_customtypewidgetlists','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(132,0,'widget_customtypewidgetlocations','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(133,0,'widget_customtypewidgetcategories','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes');
/*!40000 ALTER TABLE `wp_11_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_postmeta`
--

DROP TABLE IF EXISTS `wp_11_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL auto_increment,
  `post_id` bigint(20) unsigned NOT NULL default '0',
  `meta_key` varchar(255) default NULL,
  `meta_value` longtext,
  PRIMARY KEY  (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=243 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_postmeta`
--

LOCK TABLES `wp_11_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_11_postmeta` DISABLE KEYS */;
INSERT INTO `wp_11_postmeta` VALUES (27,75,'_alp_processed','1260890904'),(26,75,'_encloseme','1'),(25,75,'_pingme','1'),(21,73,'_alp_processed','1260890348'),(20,73,'_encloseme','1'),(19,73,'_pingme','1'),(24,74,'_alp_processed','1260890665'),(23,74,'_encloseme','1'),(22,74,'_pingme','1'),(28,76,'_pingme','1'),(29,76,'_encloseme','1'),(30,76,'_alp_processed','1260891096'),(31,77,'_pingme','1'),(32,77,'_encloseme','1'),(33,77,'_alp_processed','1260898001'),(43,81,'_pingme','1'),(44,81,'_encloseme','1'),(45,81,'_alp_processed','1260953336'),(46,82,'_pingme','1'),(47,82,'_encloseme','1'),(48,82,'_alp_processed','1261304488'),(49,83,'_pingme','1'),(50,83,'_encloseme','1'),(51,83,'_alp_processed','1262864270'),(52,84,'_pingme','1'),(53,84,'_encloseme','1'),(54,84,'_alp_processed','1262947365'),(55,85,'_pingme','1'),(56,85,'_encloseme','1'),(57,85,'_alp_processed','1263314329'),(58,86,'_pingme','1'),(59,86,'_encloseme','1'),(60,86,'_alp_processed','1263676770'),(61,87,'_pingme','1'),(62,87,'_encloseme','1'),(63,87,'_alp_processed','1263741716'),(64,88,'_pingme','1'),(65,88,'_encloseme','1'),(66,88,'_alp_processed','1263890566'),(67,89,'_pingme','1'),(68,89,'_encloseme','1'),(69,89,'_alp_processed','1263932692'),(70,90,'_pingme','1'),(71,90,'_encloseme','1'),(72,90,'_alp_processed','1263932717'),(73,91,'_pingme','1'),(74,91,'_encloseme','1'),(75,91,'_alp_processed','1263932728'),(76,92,'_pingme','1'),(77,92,'_encloseme','1'),(78,92,'_alp_processed','1264443262'),(79,93,'_pingme','1'),(80,93,'_encloseme','1'),(81,93,'_alp_processed','1264497765'),(82,94,'_pingme','1'),(83,94,'_encloseme','1'),(84,94,'_alp_processed','1264502978'),(94,98,'_pingme','1'),(95,98,'_encloseme','1'),(96,98,'_alp_processed','1264524048'),(97,99,'_pingme','1'),(98,99,'_encloseme','1'),(99,99,'_alp_processed','1264612930'),(100,100,'_pingme','1'),(101,100,'_encloseme','1'),(102,100,'_alp_processed','1264613202'),(103,101,'_pingme','1'),(104,101,'_encloseme','1'),(105,101,'_alp_processed','1264614863'),(106,102,'_pingme','1'),(107,102,'_encloseme','1'),(108,102,'_alp_processed','1264674122'),(109,103,'_pingme','1'),(110,103,'_encloseme','1'),(111,103,'_alp_processed','1264674583'),(112,104,'_pingme','1'),(113,104,'_encloseme','1'),(114,104,'_alp_processed','1264675316'),(115,105,'_pingme','1'),(116,105,'_encloseme','1'),(117,105,'_alp_processed','1264680158'),(118,106,'_pingme','1'),(119,106,'_encloseme','1'),(120,106,'_alp_processed','1264680807'),(121,107,'_pingme','1'),(122,107,'_encloseme','1'),(123,107,'_alp_processed','1264681981'),(124,108,'_pingme','1'),(125,108,'_encloseme','1'),(126,108,'_alp_processed','1264682212'),(127,109,'_pingme','1'),(128,109,'_encloseme','1'),(129,109,'_alp_processed','1264945083'),(130,110,'_pingme','1'),(131,110,'_encloseme','1'),(132,110,'_alp_processed','1265021143'),(133,111,'_pingme','1'),(134,111,'_encloseme','1'),(135,111,'_alp_processed','1265042442'),(136,112,'_pingme','1'),(137,112,'_encloseme','1'),(138,112,'_alp_processed','1265136231'),(139,113,'_pingme','1'),(140,113,'_encloseme','1'),(141,113,'_alp_processed','1265193893'),(142,114,'_pingme','1'),(143,114,'_encloseme','1'),(144,114,'_alp_processed','1265194438'),(145,115,'_pingme','1'),(146,115,'_encloseme','1'),(147,115,'_alp_processed','1265305323'),(148,116,'_pingme','1'),(149,116,'_encloseme','1'),(150,116,'_alp_processed','1265305923'),(154,118,'_pingme','1'),(155,118,'_encloseme','1'),(156,118,'_alp_processed','1265722235'),(157,119,'_pingme','1'),(158,119,'_encloseme','1'),(159,119,'_alp_processed','1265726431'),(160,120,'_pingme','1'),(161,120,'_encloseme','1'),(162,120,'_alp_processed','1265726487'),(163,121,'_pingme','1'),(164,121,'_encloseme','1'),(165,121,'_alp_processed','1266872879'),(166,122,'_pingme','1'),(167,122,'_encloseme','1'),(168,122,'_alp_processed','1266873144'),(169,123,'_pingme','1'),(170,123,'_encloseme','1'),(171,123,'_alp_processed','1267113888'),(172,123,'_pingme','1'),(173,123,'_encloseme','1'),(174,124,'_pingme','1'),(175,124,'_encloseme','1'),(176,124,'_alp_processed','1267118307'),(177,125,'_pingme','1'),(178,125,'_encloseme','1'),(179,125,'_alp_processed','1267119676'),(180,126,'_pingme','1'),(181,126,'_encloseme','1'),(182,126,'_alp_processed','1267120161'),(183,127,'_pingme','1'),(184,127,'_encloseme','1'),(185,127,'_alp_processed','1267809398'),(186,128,'_pingme','1'),(187,128,'_encloseme','1'),(188,128,'_alp_processed','1267810400'),(189,129,'_pingme','1'),(190,129,'_encloseme','1'),(191,129,'_alp_processed','1267810849'),(192,130,'_pingme','1'),(193,130,'_encloseme','1'),(194,130,'_alp_processed','1267887703'),(195,131,'_pingme','1'),(196,131,'_encloseme','1'),(197,131,'_alp_processed','1268643181'),(198,132,'_pingme','1'),(199,132,'_encloseme','1'),(200,132,'_alp_processed','1269342579'),(201,133,'_pingme','1'),(202,133,'_encloseme','1'),(203,133,'_alp_processed','1269344654'),(204,134,'_pingme','1'),(205,134,'_encloseme','1'),(206,134,'_alp_processed','1269345914'),(207,135,'_pingme','1'),(208,135,'_encloseme','1'),(209,135,'_alp_processed','1269347269'),(210,136,'_pingme','1'),(211,136,'_encloseme','1'),(212,136,'_alp_processed','1271109328'),(213,137,'_pingme','1'),(214,137,'_encloseme','1'),(215,137,'_alp_processed','1271238613'),(216,138,'_pingme','1'),(217,138,'_encloseme','1'),(218,138,'_alp_processed','1272271654'),(219,139,'_pingme','1'),(220,139,'_encloseme','1'),(221,139,'_alp_processed','1274268139'),(222,140,'_pingme','1'),(223,140,'_encloseme','1'),(224,140,'_alp_processed','1275908371'),(225,141,'_pingme','1'),(226,141,'_encloseme','1'),(227,141,'_alp_processed','1275947240'),(228,142,'_pingme','1'),(229,142,'_encloseme','1'),(230,142,'_alp_processed','1275987125'),(231,143,'_pingme','1'),(232,143,'_encloseme','1'),(233,143,'_alp_processed','1276000038'),(234,144,'_pingme','1'),(235,144,'_encloseme','1'),(236,144,'_alp_processed','1276005502'),(237,145,'_pingme','1'),(238,145,'_encloseme','1'),(239,145,'_alp_processed','1276020324'),(240,146,'_pingme','1'),(241,146,'_encloseme','1'),(242,146,'_alp_processed','1276073033');
/*!40000 ALTER TABLE `wp_11_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_posts`
--

DROP TABLE IF EXISTS `wp_11_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_posts` (
  `ID` bigint(20) unsigned NOT NULL auto_increment,
  `post_author` bigint(20) unsigned NOT NULL default '0',
  `post_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL default 'publish',
  `comment_status` varchar(20) NOT NULL default 'open',
  `ping_status` varchar(20) NOT NULL default 'open',
  `post_password` varchar(20) NOT NULL default '',
  `post_name` varchar(200) NOT NULL default '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_content_filtered` text NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL default '0',
  `guid` varchar(255) NOT NULL default '',
  `menu_order` int(11) NOT NULL default '0',
  `post_type` varchar(20) NOT NULL default 'post',
  `post_mime_type` varchar(100) NOT NULL default '',
  `comment_count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`)
) ENGINE=MyISAM AUTO_INCREMENT=147 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_posts`
--

LOCK TABLES `wp_11_posts` WRITE;
/*!40000 ALTER TABLE `wp_11_posts` DISABLE KEYS */;
INSERT INTO `wp_11_posts` VALUES (1,1,'2009-10-27 10:21:12','2009-10-27 08:21:12','Welcome to <a href=\"http://yellowpages.colorgridadmin.com/\">Yellowpages.colorgridadmin.com Blogs</a>. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2009-10-27 10:21:12','2009-10-27 08:21:12','',0,'',0,'post','',1),(2,1,'2009-10-27 10:21:12','2009-10-27 08:21:12','This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.','About','','publish','open','open','','about','','','2009-10-27 10:21:12','2009-10-27 08:21:12','',0,'',0,'page','',0),(41,36,'2009-10-29 14:35:38','2009-10-29 12:35:38','','k.popchovski@cy-systems.com','','draft','open','open','','test-firm-5','','','2009-10-29 14:35:38','2009-10-29 12:35:38','',0,'http://yellowpages.colorgridadmin.com/?p=41',0,'post','',0),(66,9,'2009-10-30 19:20:14','2009-10-30 17:20:14','','i.pasev@anpaaa.com','','draft','open','open','','4aeb204e9c972','','','2009-10-30 19:20:14','2009-10-30 17:20:14','',0,'http://yellowpages.colorgridadmin.com/?p=66',0,'post','',0),(62,9,'2009-10-30 17:42:56','2009-10-30 15:42:56','','redpromoter@gmail.com','','draft','open','open','','4aeb0980e9814','','','2009-10-30 17:42:56','2009-10-30 15:42:56','',0,'http://yellowpages.colorgridadmin.com/?p=62',0,'post','',0),(76,49,'2009-12-15 17:31:36','2009-12-15 15:31:36','','sashott3@gmail.com','','publish','open','open','','aaaaaaaaa','','','2009-12-15 17:31:36','2009-12-15 15:31:36','',0,'http://emails.yellowpages.colorgridadmin.com/2009/12/15/aaaaaaaaa/',0,'post','',0),(75,48,'2009-12-15 17:28:24','2009-12-15 15:28:24','','sashott3@gmail.com','','publish','open','open','','aaaaaa','','','2009-12-15 17:28:24','2009-12-15 15:28:24','',0,'http://emails.yellowpages.colorgridadmin.com/2009/12/15/aaaaaa/',0,'post','',0),(73,46,'2009-12-15 17:19:07','2009-12-15 15:19:07','','sashott3@gmail.com','','publish','open','open','','ddddddddd','','','2009-12-15 17:19:07','2009-12-15 15:19:07','',0,'http://emails.yellowpages.colorgridadmin.com/2009/12/15/ddddddddd/',0,'post','',0),(74,47,'2009-12-15 17:24:25','2009-12-15 15:24:25','','sashott3@gmail.com','','publish','open','open','','asdasds','','','2009-12-15 17:24:25','2009-12-15 15:24:25','',0,'http://emails.yellowpages.colorgridadmin.com/2009/12/15/asdasds/',0,'post','',0),(77,50,'2009-12-15 19:26:41','2009-12-15 17:26:41','','sashott3@gmail.com','','publish','open','open','','sssssssssss','','','2009-12-15 19:26:41','2009-12-15 17:26:41','',0,'http://emails.yellowpages.colorgridadmin.com/2009/12/15/sssssssssss/',0,'post','',0),(81,54,'2009-12-16 10:48:56','2009-12-16 08:48:56','','sashott3@gmail.com','','publish','open','open','','artist-1','','','2009-12-16 10:48:56','2009-12-16 08:48:56','',0,'http://emails.yellowpages.colorgridadmin.com/2009/12/16/artist-1/',0,'post','',0),(82,56,'2009-12-20 12:21:27','2009-12-20 10:21:27','','k.popchovski@cy-systems.com','','publish','open','open','','dude','','','2009-12-20 12:21:27','2009-12-20 10:21:27','',0,'http://emails.yellowpages.colorgridadmin.com/2009/12/20/dude/',0,'post','',0),(83,57,'2010-01-07 13:37:50','2010-01-07 11:37:50','','sashott2@gmail.com','','publish','open','open','','artist-alex2','','','2010-01-07 13:37:50','2010-01-07 11:37:50','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/07/artist-alex2/',0,'post','',0),(84,58,'2010-01-08 12:42:45','2010-01-08 10:42:45','','sashott3@gmail.com','','publish','open','open','','artist-2','','','2010-01-08 12:42:45','2010-01-08 10:42:45','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/08/artist-2/',0,'post','',0),(85,59,'2010-01-12 18:38:49','2010-01-12 16:38:49','','k.popchovski@cy-systems.com','','publish','open','open','','kir4o','','','2010-01-12 18:38:49','2010-01-12 16:38:49','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/12/kir4o/',0,'post','',0),(86,61,'2010-01-16 23:19:30','2010-01-16 21:19:30','','dude@mail.bg','','publish','open','open','','uniqueart','','','2010-01-16 23:19:30','2010-01-16 21:19:30','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/16/uniqueart/',0,'post','',0),(87,63,'2010-01-17 17:21:56','2010-01-17 15:21:56','','infu@mail.bg','','publish','open','open','','anhandreu','','','2010-01-17 17:21:56','2010-01-17 15:21:56','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/17/anhandreu/',0,'post','',0),(88,65,'2010-01-19 10:42:46','2010-01-19 08:42:46','','g.pasev@anpaaa.com','','publish','open','open','','selter','','','2010-01-19 10:42:46','2010-01-19 08:42:46','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/19/selter/',0,'post','',0),(89,66,'2010-01-19 22:24:52','2010-01-19 20:24:52','','apps+270007675042.1009202017.87d78c56d591214791b9b933425a9717@proxymail.facebook.com','','publish','open','open','','space-djs','','','2010-01-19 22:24:52','2010-01-19 20:24:52','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/19/space-djs/',0,'post','',0),(90,67,'2010-01-19 22:25:17','2010-01-19 20:25:17','','apps+270007675042.1009202017.87d78c56d591214791b9b933425a9717@proxymail.facebook.com','','publish','open','open','','sven-vaeth','','','2010-01-19 22:25:17','2010-01-19 20:25:17','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/19/sven-vaeth/',0,'post','',0),(91,68,'2010-01-19 22:25:28','2010-01-19 20:25:28','','apps+270007675042.1009202017.87d78c56d591214791b9b933425a9717@proxymail.facebook.com','','publish','open','open','','ben-long','','','2010-01-19 22:25:28','2010-01-19 20:25:28','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/19/ben-long/',0,'post','',0),(92,95,'2010-01-25 20:14:22','2010-01-25 18:14:22','','sashott5@gmail.com','','publish','open','open','','4b5ddf7e2ea2f','','','2010-01-25 20:14:22','2010-01-25 18:14:22','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/25/4b5ddf7e2ea2f/',0,'post','',0),(93,96,'2010-01-26 11:22:45','2010-01-26 09:22:45','','sashott@gmail.com','','publish','open','open','','4b5eb4657658f','','','2010-01-26 11:22:45','2010-01-26 09:22:45','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/26/4b5eb4657658f/',0,'post','',0),(94,97,'2010-01-26 12:49:38','2010-01-26 10:49:38','','sashott3@gmail.com','','publish','open','open','','firm-1-alex4','','','2010-01-26 12:49:38','2010-01-26 10:49:38','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/26/firm-1-alex4/',0,'post','',0),(98,103,'2010-01-26 18:40:48','2010-01-26 16:40:48','','sashott@gmail.com','','publish','open','open','','firm-7-1','','','2010-01-26 18:40:48','2010-01-26 16:40:48','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/26/firm-7-1/',0,'post','',0),(99,104,'2010-01-27 19:22:10','2010-01-27 17:22:10','','sashott@gmail.com','','publish','open','open','','4b60764203be8','','','2010-01-27 19:22:10','2010-01-27 17:22:10','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/27/4b60764203be8/',0,'post','',0),(100,105,'2010-01-27 19:26:42','2010-01-27 17:26:42','','sashott@gmail.com','','publish','open','open','','4b6077522d27f','','','2010-01-27 19:26:42','2010-01-27 17:26:42','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/27/4b6077522d27f/',0,'post','',0),(101,106,'2010-01-27 19:54:23','2010-01-27 17:54:23','','sashott@gmail.com','','publish','open','open','','4b607dcf3519e','','','2010-01-27 19:54:23','2010-01-27 17:54:23','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/27/4b607dcf3519e/',0,'post','',0),(102,107,'2010-01-28 12:22:02','2010-01-28 10:22:02','','sashott@gmail.com','','publish','open','open','','4b61654a15763','','','2010-01-28 12:22:02','2010-01-28 10:22:02','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/28/4b61654a15763/',0,'post','',0),(103,108,'2010-01-28 12:29:43','2010-01-28 10:29:43','','sashott11@gmail.com','','publish','open','open','','4b616717e2e19','','','2010-01-28 12:29:43','2010-01-28 10:29:43','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/28/4b616717e2e19/',0,'post','',0),(104,108,'2010-01-28 12:41:56','2010-01-28 10:41:56','','sashott@gmail.com','','publish','open','open','','4b6169f43dfd6','','','2010-01-28 12:41:56','2010-01-28 10:41:56','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/28/4b6169f43dfd6/',0,'post','',0),(105,109,'2010-01-28 14:02:38','2010-01-28 12:02:38','','sashott@gmail.com','','publish','open','open','','might','','','2010-01-28 14:02:38','2010-01-28 12:02:38','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/28/might-abv-bg/',0,'post','',0),(106,110,'2010-01-28 14:13:27','2010-01-28 12:13:27','','sashott@gmail.com','','publish','open','open','','might','','','2010-01-28 14:13:27','2010-01-28 12:13:27','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/28/might-abv-bg1/',0,'post','',0),(107,111,'2010-01-28 14:33:00','2010-01-28 12:33:00','','sashott7@gmail.com','','publish','open','open','','sashott7-gmail-com','','','2010-01-28 14:33:00','2010-01-28 12:33:00','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/28/sashott7-gmail-com/',0,'post','',0),(108,112,'2010-01-28 14:36:52','2010-01-28 12:36:52','','sashott7@gmail.com','','publish','open','open','','sashott7-gmail-com1','','','2010-01-28 14:36:52','2010-01-28 12:36:52','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/28/sashott7-gmail-com1/',0,'post','',0),(109,113,'2010-01-31 15:38:03','2010-01-31 13:38:03','','dude@mail.bg','','publish','open','open','','dude-mail-bg','','','2010-01-31 15:38:03','2010-01-31 13:38:03','',0,'http://emails.yellowpages.colorgridadmin.com/2010/01/31/dude-mail-bg/',0,'post','',0),(110,114,'2010-02-01 12:45:43','2010-02-01 10:45:43','','sashott@gmail.com','','publish','open','open','','might','','','2010-02-01 12:45:43','2010-02-01 10:45:43','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/01/might-abv-bg2/',0,'post','',0),(111,115,'2010-02-01 18:40:42','2010-02-01 16:40:42','','sashott@gmail.com','','publish','open','open','','might','','','2010-02-01 18:40:42','2010-02-01 16:40:42','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/01/might-abv-bg3/',0,'post','',0),(112,117,'2010-02-02 20:43:51','2010-02-02 18:43:51','','sashott@gmail.com','','publish','open','open','','might','','','2010-02-02 20:43:51','2010-02-02 18:43:51','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/02/might-abv-bg4/',0,'post','',0),(113,126,'2010-02-03 12:44:53','2010-02-03 10:44:53','','sashott@gmail.com','','publish','open','open','','might','','','2010-02-03 12:44:53','2010-02-03 10:44:53','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/03/might-abv-bg5/',0,'post','',0),(114,127,'2010-02-03 12:53:58','2010-02-03 10:53:58','','sashott@gmail.com','','publish','open','open','','might','','','2010-02-03 12:53:58','2010-02-03 10:53:58','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/03/might-abv-bg6/',0,'post','',0),(115,128,'2010-02-04 19:42:02','2010-02-04 17:42:02','','sashott@gmail.com','','publish','open','open','','might','','','2010-02-04 19:42:02','2010-02-04 17:42:02','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/04/might-abv-bg7/',0,'post','',0),(116,129,'2010-02-04 19:52:02','2010-02-04 17:52:02','','sashott@gmail.com','','publish','open','open','','might','','','2010-02-04 19:52:02','2010-02-04 17:52:02','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/04/might-abv-bg8/',0,'post','',0),(118,132,'2010-02-09 15:30:35','2010-02-09 13:30:35','','sashott15@gmail.com','','publish','open','open','','sashott15-gmail-com1','','','2010-02-09 15:30:35','2010-02-09 13:30:35','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/09/sashott15-gmail-com1/',0,'post','',0),(119,133,'2010-02-09 16:40:31','2010-02-09 14:40:31','','sashott15@gmail.com','','publish','open','open','','sashott15-gmail-com2','','','2010-02-09 16:40:31','2010-02-09 14:40:31','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/09/sashott15-gmail-com2/',0,'post','',0),(120,134,'2010-02-09 16:41:27','2010-02-09 14:41:27','','sashott15@gmail.com','','publish','open','open','','sashott15-gmail-com3','','','2010-02-09 16:41:27','2010-02-09 14:41:27','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/09/sashott15-gmail-com3/',0,'post','',0),(121,140,'2010-02-22 23:07:59','2010-02-22 21:07:59','','k.popchovski@cy-systems.com','','publish','open','open','','k-popchovski-cy-systems-com','','','2010-02-22 23:07:59','2010-02-22 21:07:59','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/22/k-popchovski-cy-systems-com/',0,'post','',0),(122,141,'2010-02-22 23:12:24','2010-02-22 21:12:24','','k.popchovski@cy-systems.com','','publish','open','open','','k-popchovski-cy-systems-com1','','','2010-02-22 23:12:24','2010-02-22 21:12:24','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/22/k-popchovski-cy-systems-com1/',0,'post','',0),(123,142,'2010-02-25 16:48:34','2010-02-25 14:48:34','','lorrainecreagh@abv.bg','','publish','open','open','','a-shtipliyski-cy-systems-com','','','2010-02-25 18:04:48','2010-02-25 16:04:48','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/25/a-shtipliyski-cy-systems-com/',0,'post','',0),(124,143,'2010-02-25 19:18:27','2010-02-25 17:18:27','','t1@cy-systems.com','','publish','open','open','','t1-cy-systems-com','','','2010-02-25 19:18:27','2010-02-25 17:18:27','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/25/t1-cy-systems-com/',0,'post','',0),(125,144,'2010-02-25 19:41:16','2010-02-25 17:41:16','','t2@cy-systems.com','','publish','open','open','','t2-cy-systems-com','','','2010-02-25 19:41:16','2010-02-25 17:41:16','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/25/t2-cy-systems-com/',0,'post','',0),(126,145,'2010-02-25 19:49:21','2010-02-25 17:49:21','','t3@cy-systems.com','','publish','open','open','','t3-cy-systems-com','','','2010-02-25 19:49:21','2010-02-25 17:49:21','',0,'http://emails.yellowpages.colorgridadmin.com/2010/02/25/t3-cy-systems-com/',0,'post','',0),(127,150,'2010-03-05 19:16:38','2010-03-05 17:16:38','','sashott@gmail.com','','publish','open','open','','might','','','2010-03-05 19:16:38','2010-03-05 17:16:38','',0,'http://emails.yellowpages.colorgridadmin.com/2010/03/05/might-abv-bg9/',0,'post','',0),(128,151,'2010-03-05 19:33:20','2010-03-05 17:33:20','','sashott@gmail.com','','publish','open','open','','might','','','2010-03-05 19:33:20','2010-03-05 17:33:20','',0,'http://emails.yellowpages.colorgridadmin.com/2010/03/05/might-abv-bg10/',0,'post','',0),(129,152,'2010-03-05 19:40:49','2010-03-05 17:40:49','','sashott15@gmail.com','','publish','open','open','','sashott15-gmail-com','','','2010-03-05 19:40:49','2010-03-05 17:40:49','',0,'http://emails.yellowpages.colorgridadmin.com/2010/03/05/sashott15-gmail-com/',0,'post','',0),(130,153,'2010-03-06 17:01:42','2010-03-06 15:01:42','','g.pasev@anpaaa.com','','publish','open','open','','g-pasev-anpaaa-com','','','2010-03-06 17:01:42','2010-03-06 15:01:42','',0,'http://emails.yellowpages.colorgridadmin.com/2010/03/06/g-pasev-anpaaa-com/',0,'post','',0),(131,154,'2010-03-15 10:53:00','2010-03-15 08:53:00','','t4@cy-systems.com','','publish','open','open','','t4-cy-systems-com','','','2010-03-15 10:53:00','2010-03-15 08:53:00','',0,'http://emails.yellowpages.colorgridadmin.com/2010/03/15/t4-cy-systems-com/',0,'post','',0),(132,156,'2010-03-23 13:09:38','2010-03-23 11:09:38','','t1@cy-systems.com','','publish','open','open','','t1-cy-systems-com1','','','2010-03-23 13:09:38','2010-03-23 11:09:38','',0,'http://emails.artistfolio.colorgridadmin.com/2010/03/23/t1-cy-systems-com1/',0,'post','',0),(133,157,'2010-03-23 13:44:14','2010-03-23 11:44:14','','t2@cy-systems.com','','publish','open','open','','t2-cy-systems-com1','','','2010-03-23 13:44:14','2010-03-23 11:44:14','',0,'http://emails.artistfolio.colorgridadmin.com/2010/03/23/t2-cy-systems-com1/',0,'post','',0),(134,158,'2010-03-23 14:05:14','2010-03-23 12:05:14','','t3@cy-systems.com','','publish','open','open','','t3-cy-systems-com1','','','2010-03-23 14:05:14','2010-03-23 12:05:14','',0,'http://emails.artistfolio.colorgridadmin.com/2010/03/23/t3-cy-systems-com1/',0,'post','',0),(135,159,'2010-03-23 14:27:49','2010-03-23 12:27:49','','t4@cy-systems.com','','publish','open','open','','t4-cy-systems-com1','','','2010-03-23 14:27:49','2010-03-23 12:27:49','',0,'http://emails.artistfolio.colorgridadmin.com/2010/03/23/t4-cy-systems-com1/',0,'post','',0),(136,160,'2010-04-13 00:55:28','2010-04-12 21:55:28','','dude@mail.bg','','publish','open','open','','dude-mail-bg1','','','2010-04-13 00:55:28','2010-04-12 21:55:28','',0,'http://emails.artistfolio.colorgridadmin.com/2010/04/13/dude-mail-bg1/',0,'post','',0),(137,161,'2010-04-14 12:50:13','2010-04-14 09:50:13','','t5@cy-systems.com','','publish','open','open','','t5-cy-systems-com','','','2010-04-14 12:50:13','2010-04-14 09:50:13','',0,'http://emails.artistfolio.colorgridadmin.com/2010/04/14/t5-cy-systems-com/',0,'post','',0),(138,162,'2010-04-26 11:47:34','2010-04-26 08:47:34','','g.pasev@anpaaa.com','','publish','open','open','','g-pasev-anpaaa-com1','','','2010-04-26 11:47:34','2010-04-26 08:47:34','',0,'http://emails.artistfolio.colorgridadmin.com/2010/04/26/g-pasev-anpaaa-com1/',0,'post','',0),(139,163,'2010-05-19 14:22:19','2010-05-19 11:22:19','','sashott23@abv.bg','','publish','open','open','','sashott23-abv-bg','','','2010-05-19 14:22:19','2010-05-19 11:22:19','',0,'http://emails.artistfolio.colorgridadmin.com/2010/05/19/sashott23-abv-bg/',0,'post','',0),(140,190,'2010-06-07 13:59:31','2010-06-07 10:59:31','','stuple@cy-systems.com','','publish','open','open','','stuple-cy-systems-com','','','2010-06-07 13:59:31','2010-06-07 10:59:31','',0,'http://emails.artistfolio.colorgridadmin.com/2010/06/07/stuple-cy-systems-com/',0,'post','',0),(141,192,'2010-06-08 00:47:20','2010-06-07 21:47:20','','aftester@mail.bg','','publish','open','open','','aftester-mail-bg','','','2010-06-08 00:47:20','2010-06-07 21:47:20','',0,'http://emails.artistfolio.colorgridadmin.com/2010/06/08/aftester-mail-bg/',0,'post','',0),(142,194,'2010-06-08 11:52:05','2010-06-08 08:52:05','','sashott@gmail.com','','publish','open','open','','might','','','2010-06-08 11:52:05','2010-06-08 08:52:05','',0,'http://emails.artistfolio.colorgridadmin.com/2010/06/08/might-abv-bg11/',0,'post','',0),(143,200,'2010-06-08 15:27:18','2010-06-08 12:27:18','','might@abv.bg','','publish','open','open','','might-abv-bg','','','2010-06-08 15:27:18','2010-06-08 12:27:18','',0,'http://emails.artistfolio.colorgridadmin.com/2010/06/08/might-abv-bg/',0,'post','',0),(144,201,'2010-06-08 16:58:21','2010-06-08 13:58:21','','might@abv.bg','','publish','open','open','','might-abv-bg1','','','2010-06-08 16:58:21','2010-06-08 13:58:21','',0,'http://emails.artistfolio.colorgridadmin.com/2010/06/08/might-abv-bg1/',0,'post','',0),(145,202,'2010-06-08 21:05:24','2010-06-08 18:05:24','','r.vasilev@cy-systems.com','','publish','open','open','','r-vasilev-cy-systems-com','','','2010-06-08 21:05:24','2010-06-08 18:05:24','',0,'http://emails.artistfolio.colorgridadmin.com/2010/06/08/r-vasilev-cy-systems-com/',0,'post','',0),(146,203,'2010-06-09 11:43:53','2010-06-09 08:43:53','','might@abv.bg','','publish','open','open','','might-abv-bg2','','','2010-06-09 11:43:53','2010-06-09 08:43:53','',0,'http://emails.artistfolio.colorgridadmin.com/2010/06/09/might-abv-bg2/',0,'post','',0);
/*!40000 ALTER TABLE `wp_11_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_term_relationships`
--

DROP TABLE IF EXISTS `wp_11_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL default '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0',
  `term_order` int(11) NOT NULL default '0',
  PRIMARY KEY  (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_term_relationships`
--

LOCK TABLES `wp_11_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_11_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_11_term_relationships` VALUES (1,2,0),(2,2,0),(1,1,0),(7,1,0),(4,1,0),(5,1,0),(66,1,0),(50,1,0),(62,1,0),(11,1,0),(49,1,0),(43,1,0),(22,1,0),(32,1,0),(28,1,0),(41,1,0),(67,1,0),(68,1,0),(69,1,0),(70,1,0),(71,1,0),(72,1,0),(73,1,0),(74,1,0),(75,1,0),(76,1,0),(77,1,0),(81,1,0),(82,1,0),(83,1,0),(84,1,0),(85,1,0),(86,1,0),(87,1,0),(88,1,0),(89,1,0),(90,1,0),(91,1,0),(92,1,0),(93,1,0),(94,1,0),(98,1,0),(99,1,0),(100,1,0),(101,1,0),(102,1,0),(103,1,0),(104,1,0),(105,1,0),(106,1,0),(107,1,0),(108,1,0),(109,1,0),(110,1,0),(111,1,0),(112,1,0),(113,1,0),(114,1,0),(115,1,0),(116,1,0),(118,1,0),(119,1,0),(120,1,0),(121,1,0),(122,1,0),(123,1,0),(124,1,0),(125,1,0),(126,1,0),(127,1,0),(128,1,0),(129,1,0),(130,1,0),(131,1,0),(132,1,0),(133,1,0),(134,1,0),(135,1,0),(136,1,0),(137,1,0),(138,1,0),(139,1,0),(140,1,0),(141,1,0),(142,1,0),(143,1,0),(144,1,0),(145,1,0),(146,1,0);
/*!40000 ALTER TABLE `wp_11_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_11_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL auto_increment,
  `term_id` bigint(20) unsigned NOT NULL default '0',
  `taxonomy` varchar(32) NOT NULL default '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL default '0',
  `count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_term_taxonomy`
--

LOCK TABLES `wp_11_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_11_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_11_term_taxonomy` VALUES (1,1,'category','',0,68),(2,2,'link_category','',0,2);
/*!40000 ALTER TABLE `wp_11_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_11_terms`
--

DROP TABLE IF EXISTS `wp_11_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_11_terms` (
  `term_id` bigint(20) unsigned NOT NULL auto_increment,
  `name` varchar(200) NOT NULL default '',
  `slug` varchar(200) NOT NULL default '',
  `term_group` bigint(10) NOT NULL default '0',
  PRIMARY KEY  (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_11_terms`
--

LOCK TABLES `wp_11_terms` WRITE;
/*!40000 ALTER TABLE `wp_11_terms` DISABLE KEYS */;
INSERT INTO `wp_11_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0);
/*!40000 ALTER TABLE `wp_11_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_12_comments`
--

DROP TABLE IF EXISTS `wp_12_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_12_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL auto_increment,
  `comment_post_ID` bigint(20) unsigned NOT NULL default '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL default '',
  `comment_author_url` varchar(200) NOT NULL default '',
  `comment_author_IP` varchar(100) NOT NULL default '',
  `comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL default '0',
  `comment_approved` varchar(20) NOT NULL default '1',
  `comment_agent` varchar(255) NOT NULL default '',
  `comment_type` varchar(20) NOT NULL default '',
  `comment_parent` bigint(20) unsigned NOT NULL default '0',
  `user_id` bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_12_comments`
--

LOCK TABLES `wp_12_comments` WRITE;
/*!40000 ALTER TABLE `wp_12_comments` DISABLE KEYS */;
INSERT INTO `wp_12_comments` VALUES (1,1,'Mr WordPress','','http://yellowpages.colorgridadmin.com/','127.0.0.1','2009-11-02 13:00:30','2009-11-02 11:00:30','Hi, this is a comment.<br />To delete a comment, just log in, and view the posts\' comments, there you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_12_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_12_email`
--

DROP TABLE IF EXISTS `wp_12_email`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_12_email` (
  `email_id` int(10) NOT NULL auto_increment,
  `email_yourname` varchar(200) NOT NULL default '',
  `email_youremail` varchar(200) NOT NULL default '',
  `email_yourremarks` text NOT NULL,
  `email_friendname` varchar(200) NOT NULL default '',
  `email_friendemail` varchar(200) NOT NULL default '',
  `email_postid` int(10) NOT NULL default '0',
  `email_posttitle` text NOT NULL,
  `email_timestamp` varchar(20) NOT NULL default '',
  `email_ip` varchar(100) NOT NULL default '',
  `email_host` varchar(200) NOT NULL default '',
  `email_status` varchar(20) NOT NULL default '',
  PRIMARY KEY  (`email_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_12_email`
--

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

--
-- Table structure for table `wp_12_gdpt_posts_views`
--

DROP TABLE IF EXISTS `wp_12_gdpt_posts_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_12_gdpt_posts_views` (
  `post_id` bigint(20) unsigned NOT NULL default '0',
  `day` varchar(10) default '',
  `usr_views` int(11) unsigned NOT NULL default '0',
  `vst_views` int(11) unsigned NOT NULL default '0',
  UNIQUE KEY `post_day` (`post_id`,`day`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_12_gdpt_posts_views`
--

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

--
-- Table structure for table `wp_12_gdpt_users_tracking`
--

DROP TABLE IF EXISTS `wp_12_gdpt_users_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_12_gdpt_users_tracking` (
  `user_id` bigint(20) unsigned NOT NULL default '0',
  `post_id` bigint(20) unsigned NOT NULL default '0',
  `day` varchar(10) default '',
  `views` int(11) unsigned NOT NULL default '0',
  UNIQUE KEY `user_post_day` (`user_id`,`post_id`,`day`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_12_gdpt_users_tracking`
--

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

--
-- Table structure for table `wp_12_links`
--

DROP TABLE IF EXISTS `wp_12_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_12_links` (
  `link_id` bigint(20) unsigned NOT NULL auto_increment,
  `link_url` varchar(255) NOT NULL default '',
  `link_name` varchar(255) NOT NULL default '',
  `link_image` varchar(255) NOT NULL default '',
  `link_target` varchar(25) NOT NULL default '',
  `link_description` varchar(255) NOT NULL default '',
  `link_visible` varchar(20) NOT NULL default 'Y',
  `link_owner` bigint(20) unsigned NOT NULL default '1',
  `link_rating` int(11) NOT NULL default '0',
  `link_updated` datetime NOT NULL default '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL default '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_12_links`
--

LOCK TABLES `wp_12_links` WRITE;
/*!40000 ALTER TABLE `wp_12_links` DISABLE KEYS */;
INSERT INTO `wp_12_links` VALUES (1,'http://wordpress.com/','WordPress.com','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.com/feed/'),(2,'http://wordpress.org/','WordPress.org','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/development/feed/');
/*!40000 ALTER TABLE `wp_12_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_12_options`
--

DROP TABLE IF EXISTS `wp_12_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_12_options` (
  `option_id` bigint(20) unsigned NOT NULL auto_increment,
  `blog_id` int(11) NOT NULL default '0',
  `option_name` varchar(64) NOT NULL default '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL default 'yes',
  PRIMARY KEY  (`option_id`,`blog_id`,`option_name`),
  KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=223 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_12_options`
--

LOCK TABLES `wp_12_options` WRITE;
/*!40000 ALTER TABLE `wp_12_options` DISABLE KEYS */;
INSERT INTO `wp_12_options` VALUES (1,0,'_transient_random_seed','a6afdcffb97bd9cc456c1663adde8d27','yes'),(2,0,'siteurl','http://locations.artistfolio.colorgridadmin.com/','yes'),(3,0,'blogname','Locations','yes'),(4,0,'blogdescription','Just another Yellowpages.colorgridadmin.com Blogs weblog','yes'),(5,0,'users_can_register','0','yes'),(6,0,'admin_email','k.popchovski@cy-systems.com','yes'),(7,0,'start_of_week','1','yes'),(8,0,'use_balanceTags','0','yes'),(9,0,'use_smilies','1','yes'),(10,0,'require_name_email','1','yes'),(11,0,'comments_notify','1','yes'),(12,0,'posts_per_rss','10','yes'),(13,0,'rss_excerpt_length','50','yes'),(14,0,'rss_use_excerpt','0','yes'),(15,0,'mailserver_url','mail.example.com','yes'),(16,0,'mailserver_login','login@example.com','yes'),(17,0,'mailserver_pass','password','yes'),(18,0,'mailserver_port','110','yes'),(19,0,'default_category','1','yes'),(20,0,'default_comment_status','open','yes'),(21,0,'default_ping_status','open','yes'),(22,0,'default_pingback_flag','1','yes'),(23,0,'default_post_edit_rows','10','yes'),(24,0,'posts_per_page','10','yes'),(25,0,'date_format','F j, Y','yes'),(26,0,'time_format','g:i a','yes'),(27,0,'links_updated_date_format','F j, Y g:i a','yes'),(28,0,'links_recently_updated_prepend','<em>','yes'),(29,0,'links_recently_updated_append','</em>','yes'),(30,0,'links_recently_updated_time','120','yes'),(31,0,'comment_moderation','0','yes'),(32,0,'moderation_notify','1','yes'),(33,0,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(34,0,'gzipcompression','0','yes'),(35,0,'hack_file','0','yes'),(36,0,'blog_charset','UTF-8','yes'),(37,0,'moderation_keys','','no'),(38,0,'active_plugins','a:8:{i:0;s:53:\"codestyling-localization/codestyling-localization.php\";i:1;s:24:\"cy-custom-types/Main.php\";i:2;s:30:\"fluency-admin/wp-fluency-2.php\";i:3;s:33:\"gd-press-tools/gd-press-tools.php\";i:4;s:29:\"role-manager/role-manager.php\";i:5;s:21:\"wp-email/wp-email.php\";i:6;s:47:\"wpmu-simple-dashboard/cets_simple_dashboard.php\";i:7;s:47:\"wpmu-simple-dashboard/cets_simple_dashboard.php\";}','yes'),(39,0,'home','http://locations.artistfolio.colorgridadmin.com/','yes'),(40,0,'category_base','','yes'),(41,0,'ping_sites','http://rpc.pingomatic.com/','yes'),(42,0,'advanced_edit','0','yes'),(43,0,'comment_max_links','2','yes'),(44,0,'gmt_offset','2','yes'),(45,0,'default_email_category','1','yes'),(46,0,'recently_edited','','no'),(47,0,'use_linksupdate','0','yes'),(48,0,'template','default','yes'),(49,0,'stylesheet','default','yes'),(50,0,'comment_whitelist','1','yes'),(51,0,'blacklist_keys','','no'),(52,0,'comment_registration','0','yes'),(53,0,'rss_language','en','yes'),(54,0,'html_type','text/html','yes'),(55,0,'use_trackback','0','yes'),(56,0,'default_role','subscriber','yes'),(57,0,'db_version','11548','yes'),(58,0,'uploads_use_yearmonth_folders','1','yes'),(59,0,'upload_path','wp-content/blogs.dir/12/files','yes'),(60,0,'secret','4CfYDgQU5jUCZuhHGm)Pta!$%OjfkPXTgE*q%gNRsL@YrYdxmKw4PK!U!vxGQNTD','yes'),(61,0,'blog_public','1','yes'),(62,0,'default_link_category','2','yes'),(63,0,'show_on_front','posts','yes'),(64,0,'tag_base','','yes'),(65,0,'show_avatars','1','yes'),(66,0,'avatar_rating','G','yes'),(67,0,'upload_url_path','','yes'),(68,0,'thumbnail_size_w','150','yes'),(69,0,'thumbnail_size_h','150','yes'),(70,0,'thumbnail_crop','1','yes'),(71,0,'medium_size_w','300','yes'),(72,0,'medium_size_h','300','yes'),(73,0,'avatar_default','mystery','yes'),(74,0,'enable_app','0','yes'),(75,0,'enable_xmlrpc','0','yes'),(76,0,'large_size_w','1024','yes'),(77,0,'large_size_h','1024','yes'),(78,0,'image_default_link_type','file','yes'),(79,0,'image_default_size','','yes'),(80,0,'image_default_align','','yes'),(81,0,'close_comments_for_old_posts','0','yes'),(82,0,'close_comments_days_old','14','yes'),(83,0,'thread_comments','0','yes'),(84,0,'thread_comments_depth','5','yes'),(85,0,'page_comments','1','yes'),(86,0,'comments_per_page','50','yes'),(87,0,'default_comments_page','newest','yes'),(88,0,'comment_order','asc','yes'),(89,0,'sticky_posts','a:0:{}','yes'),(90,0,'widget_categories','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(91,0,'widget_text','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(92,0,'widget_rss','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(93,0,'timezone_string','','yes'),(94,0,'wp_12_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:49:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:14:\"edit_dashboard\";b:1;s:12:\"manage_roles\";b:1;s:12:\"manage_email\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:33:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,0,'fileupload_url','http://locations.artistfolio.colorgridadmin.com/files','yes'),(96,0,'post_count','5','yes'),(222,0,'_transient_rewrite_rules','a:76:{s:25:\"(about)/emailpopuppage/?$\";s:43:\"index.php?pagename=$matches[1]&emailpopup=1\";s:58:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/emailpopup/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&emailpopup=1\";s:20:\"(about)/emailpage/?$\";s:38:\"index.php?pagename=$matches[1]&email=1\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/email/?$\";s:88:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&email=1\";s:17:\"unsubscribe/(.+)$\";s:55:\"index.php?namespace=automessage&unsubscribe=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:14:\".*wp-atom.php$\";s:19:\"index.php?feed=atom\";s:13:\".*wp-rdf.php$\";s:18:\"index.php?feed=rdf\";s:13:\".*wp-rss.php$\";s:18:\"index.php?feed=rss\";s:14:\".*wp-rss2.php$\";s:19:\"index.php?feed=rss2\";s:14:\".*wp-feed.php$\";s:19:\"index.php?feed=feed\";s:22:\".*wp-commentsrss2.php$\";s:34:\"index.php?feed=rss2&withcomments=1\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:29:\"comments/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:42:\"tag/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:37:\"tag/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:30:\"tag/(.+?)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:12:\"tag/(.+?)/?$\";s:25:\"index.php?tag=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:25:\".+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\".+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\".+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(180,0,'blog_upload_space','','yes'),(181,0,'allowedthemes','','yes'),(185,0,'mp_pm_plugin_override_list','a:1:{i:0;s:5:\"EMPTY\";}','yes'),(98,0,'WPLANG','','yes'),(99,0,'cron','a:3:{i:1259101643;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1259334335;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(100,0,'_transient_doing_cron','1271155122','yes'),(104,0,'nonce_salt','XCWw*$!lg2)dmLK0iv&$GoeM*kLK8yKr%f(4Ddn0H3)HFa&nE5XWC#(9qNgXLPGM','yes'),(105,0,'widget_pages','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(106,0,'widget_calendar','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(107,0,'widget_archives','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(108,0,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(109,0,'widget_meta','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(110,0,'widget_search','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(111,0,'widget_recent-posts','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(112,0,'widget_recent-comments','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(113,0,'widget_tag_cloud','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(114,0,'widget_bp_core_welcome_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(115,0,'widget_bp_core_members_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(116,0,'widget_bp_core_whos_online_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(117,0,'widget_bp_core_recently_active_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(118,0,'widget_bp_activity_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(119,0,'widget_bp_blogs_recent_posts_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(120,0,'widget_bp_groups_widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(121,0,'recently_activated','a:1:{i:0;b:0;}','yes'),(122,0,'dashboard_widget_options','a:3:{s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:47:\"http://locations.artistfolio.colorgridadmin.com\";s:4:\"link\";s:129:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&partner=wordpress&q=link:http://locations.artistfolio.colorgridadmin.com/\";s:3:\"url\";s:162:\"http://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=20&output=rss&partner=wordpress&q=link:http://locations.yellowpages.colorgridadmin.com/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:33:\"http://wordpress.org/development/\";s:3:\"url\";s:38:\"http://wordpress.org/development/feed/\";s:5:\"title\";s:26:\"WordPress Development Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:4:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;}}','yes'),(123,0,'current_theme','WordPress Default','yes'),(124,0,'_transient_timeout_feed_3ed12eb631d64db1741b2bc871f0f34e','1259102880','no'),(125,0,'_transient_feed_3ed12eb631d64db1741b2bc871f0f34e','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"link:http://locations.yellowpages.colorgridadmin.com/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&ie=ISO-8859-1&num=20&q=link:http://locations.yellowpages.colorgridadmin.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Your search - <b>link:http://locations.yellowpages.colorgridadmin.com/</b> - did not match any documents.   \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:4:\"date\";s:29:\"Tue, 24 Nov 2009 10:48:00 GMT\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:29:\"Fri, 01 Jan 1990 00:00:00 GMT\";s:13:\"cache-control\";s:25:\"no-cache, must-revalidate\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"set-cookie\";s:138:\"PREF=ID=19403ec4dcc36a58:TM=1259059680:LM=1259059680:S=LD0OcuyXytS1nA5p; expires=Thu, 24-Nov-2011 10:48:00 GMT; path=/; domain=.google.com\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:4:\"bsfe\";s:16:\"x-xss-protection\";s:1:\"0\";}s:5:\"build\";i:20081219;}','no'),(126,0,'_transient_timeout_feed_mod_3ed12eb631d64db1741b2bc871f0f34e','1259102880','no'),(127,0,'_transient_feed_mod_3ed12eb631d64db1741b2bc871f0f34e','1259059680','no'),(128,0,'_transient_timeout_feed_0ff4b43bd116a9d8720d689c80e7dfd4','1259102881','no'),(129,0,'_transient_feed_0ff4b43bd116a9d8720d689c80e7dfd4','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:51:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n			\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress Development Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://wordpress.org/development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress development and updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2009 03:49:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://wordpress.org/?v=2.9-beta-1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:50:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress Wins CMS Award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/development/2009/11/wordpress-wins-cms-award/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/development/2009/11/wordpress-wins-cms-award/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2009 03:48:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"cms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"packt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=978\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:294:\"I was very excited last week to learn that WordPress has been awarded the Overall Best Open Source CMS Award in the 2009 Open Source CMS Awards. This is a landmark for us, as it is the first time we&#8217;ve won this award, and it marks a shift in the public perception of WordPress, from [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1516:\"<p>I was very excited last week to learn that WordPress has been awarded the Overall Best Open Source CMS Award in the <a href=\"http://www.packtpub.com/award\">2009 Open Source CMS Awards</a>. This is a landmark for us, as it is the first time we&#8217;ve won this award, and it marks a shift in the public perception of WordPress, from blog software to full-featured CMS. No small contest, the Open Source CMS Awards received over 12,000 nominations and more than 23,000 votes across five categories. </p>\n<p>As Hiro Nakamura said when he first bent time and space to land in Times Square: &#8220;Yatta!&#8221;</p>\n<p>In addition to winning in the Overall Best Open Source CMS category, WordPress was named first runner-up in the Best Open Source PHP CMS category. This is significant because we weren&#8217;t even in the top 5 last year, and now we&#8217;re #2, ahead of Joomla! As is stated on the Award site, &#8220;WordPress made its way into the top five for the first time. The fact that it was outranked by Drupal by a very slight margin indicates how popular it has become with users as well as developers over the past year.&#8221;</p>\n<p>Every day thousands of new people are embracing WordPress to power not just their blogs but entire sites and communities without compromising on usability or scalability (as would be the case with a legacy CMS). Every member of the WordPress community, from core developer to beginning user, should be proud to be part of this momentum: congratulations to us all!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/development/2009/11/wordpress-wins-cms-award/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:47:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Core Contributors at WordCamp NYC\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/development/2009/11/core-wordcamp-nyc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/development/2009/11/core-wordcamp-nyc/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Nov 2009 13:14:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"#wordpress-dev\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"core contributors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=971\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:321:\"WordCamp NYC was last weekend, and it was crazy awesome to have so many WordPress users and developers together in one place (final numbers to come, but looks like over 700). One of my favorite moments was right at the end, when someone suggested getting a picture of the core contributors (I&#8217;d asked them all [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1398:\"<p>WordCamp NYC was last weekend, and it was crazy awesome to have so many WordPress users and developers together in one place (final numbers to come, but looks like over 700). One of my favorite moments was right at the end, when someone suggested getting a picture of the core contributors (I&#8217;d asked them all to stand so people could applaud them when we were doing the closing remarks). Some of them were camera shy and kept out of the happysnap, but here&#8217;s a handful of the people who make WordPress what it is.</p>\n<p><a href=\"http://jane.wordpress.com/files/2009/11/core-contributors.jpg\"><img title=\"Core Contributors at WordCamp NYC\" src=\"http://jane.wordpress.com/files/2009/11/core-contributors.jpg\" alt=\"Core Contributors at WordCamp NYC\" width=\"649\" height=\"295\" /></a><br />\nFrom left: <a href=\"http://sivel.net/\">Matt Martz</a> (sivel), <a href=\"http://simianuprising.com/ \">Jeremy Clarke</a>, <a href=\"http://bugssite.org/\">Shane Froebel</a> (^BuGs^), <a href=\"http://jane.wordpress.com\">Jane Wells</a>, <a href=\"http://ma.tt\">Matt Mullenweg</a>, <a href=\"http://markjaquith.com/\">Mark Jaquith</a>, <a href=\"http://dentedreality.com.au\">Beau Lebens</a>, <a href=\"http://apeatling.wordpress.com/\">Andy Peatling</a>, <a href=\"http://johnjamesjacoby.com/\">John James Jacoby</a> (jjj).<br />\n<em>Photo by <a href=\"http://www.nothingcliche.com/\">Chris Cochran</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/development/2009/11/core-wordcamp-nyc/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:44:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 2.8.6 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.org/development/2009/11/wordpress-2-8-6-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wordpress.org/development/2009/11/wordpress-2-8-6-security-release/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2009 19:17:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=966\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:354:\"2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.  If you have untrusted authors on your blog, upgrading to 2.8.6 is recommended.\nThe first problem is an XSS vulnerability in Press This discovered by Benjamin Flesch.  The second problem, discovered by Dawid Golunski,  is an issue [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ryan Boren\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:591:\"<p>2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.  If you have untrusted authors on your blog, upgrading to 2.8.6 is recommended.</p>\n<p>The first problem is an XSS vulnerability in Press This discovered by Benjamin Flesch.  The second problem, discovered by Dawid Golunski,  is an issue with sanitizing uploaded file names that can be exploited in certain Apache configurations.  Thanks to Benjamin and Dawid for finding and reporting these.</p>\n<p><a href=\"http://wordpress.org/download/\">Get WordPress 2.8.6</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.org/development/2009/11/wordpress-2-8-6-security-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Bug Hunt in Progress!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/development/2009/11/bug-hunt-in-progress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/development/2009/11/bug-hunt-in-progress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Nov 2009 00:50:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/development/2009/11/bug-hunt-in-progress/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:273:\"Just in case anyone forgot, the first of the November bug hunts for version 2.9 is now in progress, and will last another day. If you&#8217;ve got a dev environment set up, please consider pitching in to run some tests and help get us closer to the 2.9 milestone release. \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"<p>Just in case anyone forgot, the first of the <a href=\"http://wordpress.org/development/2009/10/upcoming-bug-hunts/\">November bug hunts</a> for version 2.9 is now in progress, and will last another day. If you&#8217;ve got a dev environment set up, please consider pitching in to run some tests and help get us closer to the 2.9 milestone release. </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/development/2009/11/bug-hunt-in-progress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Upcoming WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/development/2009/11/upcoming-wordcamps-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/development/2009/11/upcoming-wordcamps-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Nov 2009 02:42:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=960\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:330:\"There are six WordCamps coming up before the end of the year, and since I like to make sure people know about it when there&#8217;s a WordCamp near them, here&#8217;s the list, with some personal commentary thrown in. If you just want the list without my asides, check out the full schedule at WordCamp.org.\nWordCamp Phoenix [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5769:\"<p>There are six WordCamps coming up before the end of the year, and since I like to make sure people know about it when there&#8217;s a <a href=\"http://central.wordcamp.org/\">WordCamp</a> near them, here&#8217;s the list, with some personal commentary thrown in. If you just want the list without my asides, check out the full schedule at <a href=\"http://wordcamp.org\">WordCamp.org</a>.</p>\n<p><a href=\"http://phxwordcamp.com/\">WordCamp Phoenix</a> is first up, on November 13. I&#8217;d planned on attending this one myself before they changed the date (it was originally scheduled for the 7th), but will sadly have to miss it as it conflicts with WordCamp NYC. If you, like me, can&#8217;t make it to Phoenix, be sure to check their web site for information on the <a href=\"http://phxwordcamp.com/live-video-stream/\">live stream</a> they&#8217;re planning to provide. If it&#8217;s anywhere near the quality of the stream from Portland or Seattle earlier this fall, it&#8217;ll be just like being there, but without a t-shirt to show for it (and theirs has stripes, so if you&#8217;re local, you should go!). My only consolation in missing this WordCamp is that I&#8217;ve seen about half of the <a href=\"http://phxwordcamp.com/speakers/\">speakers</a> before. If you&#8217;re going, don&#8217;t miss the session by <a href=\"http://johnhawkinsunrated.com\">John Hawkins</a> on <a href=\"http://wordpress.tv/2009/09/20/john-hawkins-plugin-building-portland09/\"><em>Building a WordPress Plugin</em></a>; it got me to write my first plugin in Portland! <a href=\"http://ma.tt\">Matt</a>&#8216;ll be there, will you?</p>\n<p><a href=\"http://www.wordcampvictoria.ca/agenda/\">WordCamp Victoria</a> is next, on November 14. This is another one I&#8217;d love to go to, but can&#8217;t because it&#8217;s at the same time as New York&#8217;s. I would especially have liked to go because it looks like the <a href=\"http://www.wordcampvictoria.ca/speaker-biographies/\">speakers</a> are all local, and I haven&#8217;t seen any of them speak before. Occasionally WordCamps lose a little of the local feeling by focusing on visiting speakers, so it&#8217;s nice to see so many Vancouverites on the list. They&#8217;ll have a Blogger track and a Technical track running concurrently, so there should a little something for everyone. No word on a live stream, but hopefully they&#8217;ll be able to catch some of the presentations on video and post them to <a href=\"http://WordPress.tv\">WordPress.tv</a> after the event.</p>\n<p><a href=\"http://wordcamp.kapook.com/en/\">WordCamp Bangkok</a> is scheduled for November 15. I have to admit that the first thing that catches my eye on their agenda is &#8220;WordPress Band.&#8221; I&#8217;ve known WordCamps to have <a href=\"http://wordpress.tv/2008/10/31/wordcamp-sf-2008-andy-skelton-deserve/\">people</a> <a href=\"http://wordpress.tv/2008/10/31/wordcamp-sf-2008-chuck-lewis-the-seo-rapper/\">performing</a> <a href=\"http://vimeo.com/5354329\">songs</a> before, but a whole band? Might be a first. I hope they&#8217;ll post the video to WordPress.tv, too.</p>\n<p><a href=\"http://2009.newyork.wordcamp.org/\">WordCamp New York City</a> is the same weekend as the previous three, on November 14-15. In the interest of full disclosure, I need to tell you that I&#8217;m one of the organizers of WordCamp NYC, so my informative comment about it here may be a little biased. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' />  That said, we have over <a href=\"http://2009.newyork.wordcamp.org/speakers/\">50 confirmed speakers</a> (both local and visiting), and <a href=\"http://2009.newyork.wordcamp.org/program/\">2 full days of content</a> in 8 &#8212; count &#8216;em, 8 &#8212; tracks. Newbies get a free year of hosting and walked through setting up a WordPress blog in workshop format, while the other tracks have specialized content for Bloggers, CMS Users, Beginning Developers, Advanced Developers, Academic Users, people interested in MU/BuddyPress, and the Open Source Community. Did I mention the <a href=\"http://2009.newyork.wordcamp.org/plugintheme-competition/\">theme and plugin contest</a>? Or the <a href=\"http://2009.newyork.wordcamp.org/2009/10/28/my-favorite-conference-shirt/\">awesome shirts</a>? How about the Genius Bar, or the Hacker Room? The additional Unconference sessions? If you&#8217;re anywhere near NYC that weekend (and with the Acela, that&#8217;s anywhere from Boston to D.C.), you should definitely come. I&#8217;ll be there, Matt&#8217;ll be there, lead developer Mark Jaquith will be there, lead developer of BuddyPress Andy Peatling will be there, and too many other WordPress luminaries and locals to mention. If we hit 800 registrations by November 12, I&#8217;m baking cookies for everyone.</p>\n<p><a href=\"http://peru.wordcamp.org/\">WordCamp Peru</a> will be on November 28 in Lima. I was checking out their topics list, and it looks like they&#8217;re planning to cover all the usual topics around blog administration, security, increasing traffic, and integration with social media sites. No speaker list yet, but if you&#8217;re in Peru, it looks like this will be a nice gathering of WordPress users, and they&#8217;re hoping to have around 100 people attend.</p>\n<p><a href=\"http://wordcamporlando.org/\">WordCamp Orlando</a> is the last of the year, on December 5. They haven&#8217;t published a speaker list or schedule yet, but I know Matt will be there, Mark Jaquith will be there, and I will be there. I know some other awesome core contributors are planning to come, but I don&#8217;t want to jinx anything, so if you&#8217;re curious, come see for yourself. Plus, Florida in December!</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/development/2009/11/upcoming-wordcamps-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:62:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Upcoming Bug Hunts!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/development/2009/10/upcoming-bug-hunts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/development/2009/10/upcoming-bug-hunts/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 31 Oct 2009 21:28:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:4:\"bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:6:\"sprint\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:7:\"tickets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:4:\"trac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=953\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"As we near completion of the 2.9 milestone, it&#8217;s that time of dev cycle again, when we ask all you community developers who&#8217;ve been putting off contributing to core to dust off your dev environments and help us get closer to being release-ready. How? Bug hunts! Yes, that time-honored tradition (in the time of WordPress, [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3637:\"<p>As we near completion of the 2.9 milestone, it&#8217;s that time of dev cycle again, when we ask all you community developers who&#8217;ve been putting off contributing to core to dust off your dev environments and help us get closer to being release-ready. How? Bug hunts! Yes, that time-honored tradition (in the time of WordPress, anyway) of everyone pitching in to test patches and report the results, working on solutions to major bugs, and helping to clear out Trac has come around again, and we&#8217;re scheduling not one, but two bug hunts over the next couple of weeks to ensure that everyone has enough time to prepare and <a href=\"https://core.trac.wordpress.org/\">participate</a>.</p>\n<p><strong>#1</strong> &#8211; The first bug hunt of 2.9 will be Thursday through Saturday, November 5-7, 2009. This should give people a few days to plan for it, upgrade their dev environments if they haven&#8217;t been following trunk, and figure out how to allot their time. We&#8217;re stretching over both weekdays and weekend to try and accommodate everyone&#8217;s schedule.</p>\n<p><strong>#2 </strong>- The second bug hunt will be a week later, Saturday through Monday, November 14-16, 2009. This should make it possible for anyone who needs more than a week to set some time aside to participate. This bug hunt will coincide with <a href=\"http://2009.newyork.wordcamp.org/\">WordCamp NYC</a>, where a special Hacker Room will be set aside for people to go and work on 2.9 bug tickets alongside regular core contributors including Mark Jaquith and Matt Martz (sivel from IRC).</p>\n<h4>The Goals</h4>\n<p><strong>Test, test, test existing patches!</strong> You can see all tickets with patches that need testing by checking <a href=\"http://core.trac.wordpress.org/report/13\">this report</a>. When you&#8217;ve tested a patch, report your results in the ticket comments, so core committers can see how the patch is faring.</p>\n<p><strong>Fix known bugs! </strong>You can see the bugs that need patches by checking <a href=\"http://core.trac.wordpress.org/report/16\">this report</a>. Look for the ones that seem that they&#8217;ll affect the most people or have the biggest impact by being fixed. Edge case bugs should be lower priority.</p>\n<p><strong>Report new bugs! </strong>As you&#8217;re testing out the development version, if you come across a bug, <a href=\"http://core.trac.wordpress.org/search\">search trac</a> to see if someone has reported it yet. If so, add a comment with your experience to the ticket so we&#8217;ll know it&#8217;s affecting more than one person. If no ticket exists yet, <a href=\"http://core.trac.wordpress.org/newticket\">create one</a>.</p>\n<p>Core committers will be around (in the #wordpress-dev channel at irc.freenode.com) both weekends to review patches that have been thoroughly tested, answer questions as needed, and give feedback on patches that need more work before being commit-worthy.</p>\n<p>If you&#8217;ve never participated in a WordPress bug hunt before, but you&#8217;d like to get involved, we&#8217;d love to have you join us! To prepare, you&#8217;ll want to <a href=\"http://www.google.com/search?q=setting+up+a+wordpress+test+environment&#38;ie=utf-8&#38;oe=utf-8&#38;aq=t&#38;rls=org.mozilla:en-US:official&#38;client=firefox-a\">set up a test environment</a>, start using the current development version/maybe install the <a href=\"http://westi.wordpress.com/2009/06/22/making-it-easy-to-be-a-wordpress-tester/\">beta testing plugin</a>, join us in the #wordpress-dev IRC channel, and read up on <a href=\"http://codex.wordpress.org/Automated_Testing\">automated testing</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/development/2009/10/upcoming-bug-hunts/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Plugin Compatibility Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/development/2009/10/plugin-compatibility-beta/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.org/development/2009/10/plugin-compatibility-beta/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Oct 2009 12:11:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=944\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"The number one reason people give us for not upgrading to the latest version of WordPress is fear that their plugins won&#8217;t be compatible. As part of our continuing efforts to make WordPress core, plugin, and theme upgrades as painless as possible, Michael Adams developed and launched a beta of a new &#8220;Compatibility&#8221; feature in [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3193:\"<p>The number one reason people give us for not upgrading to the latest version of WordPress is fear that their plugins won&#8217;t be compatible. As part of our continuing efforts to make WordPress core, plugin, and theme upgrades as painless as possible, Michael Adams developed and launched a beta of a new &#8220;Compatibility&#8221; feature in the plugin directory, powered by your votes. When viewing a plugin in the directory, select a WordPress version and a plugin version from the drop-downs. If there has been feedback about this WordPress / plugin version combination, we&#8217;ll show you what percentage of responses marked that combination as compatible vs how many marked it as incompatible.</p>\n<p><img src=\"http://markjaquith.wordpress.com/files/2009/10/compatibility-viewing.png\" alt=\"Compatibility: Your Setup: (WordPress Version drop-down) (Plugin Version drop-down). Log in to vote. The Concensus: 44% negative, 56% positive\" title=\"Compatibility viewing\" width=\"220\" height=\"254\" class=\"alignnone size-full wp-image-365\" /></p>\n<p>If you log in, you&#8217;ll be able to help us gather this information! Just select a WordPress version / plugin version combination and click the &#8220;Works&#8221; or the &#8220;Broken&#8221; button. Please note that this shouldn&#8217;t be used to report minor issues with a plugin. You should mark a plugin as &#8220;Broken&#8221; only if its core functionality is truly broken when run on the specified WordPress version.</p>\n<p><img src=\"http://markjaquith.wordpress.com/files/2009/10/compatibility-voting.png\" alt=\"Compatibility: Your Setup: (WordPress Version drop-down) (Plugin Version drop-down). (Broken button) (Works button). The Concensus: No data\" title=\"Compatibility voting\" width=\"227\" height=\"276\" class=\"alignnone size-full wp-image-366\" /></p>\n<p>Right now we&#8217;re just in information gathering mode. So get out there and vote! Don&#8217;t just vote on broken plugins&#8230; cast a &#8220;Works&#8221; vote for every plugin that works on the version of WordPress you are using. This can help improve the signal-to-noise ratio in our data and prevent a few mistaken &#8220;Broken&#8221; votes from weighing too heavily.</p>\n<p>For developers, we&#8217;re now including this data in our API. The <code>plugin_information</code> action now returns a &#8220;compatibility&#8221; member with the multidimensional array format:</p>\n<p><code>array( {WP version} => array( {plugin version} => array( {% of reporters who say it works}, {# responses} ) ) )</code></p>\n<p>If the API knows which version of WordPress you are using (for example, if you are making this query using the <code>plugins_api()</code> function from with WordPress), the API will only return compatibility information for your version of WordPress.</p>\n<p>Eventually, we&#8217;d like to gather this compatibility feedback from within WordPress, allowing you to vote directly from your plugins admin screen. The ultimate goal is to use this information to inform you of plugin incompatibilities with a new version of WordPress during the upgrade process. For that to be useful we need a large set of high quality compatibility data. Start voting!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.org/development/2009/10/plugin-compatibility-beta/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:44:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress 2.8.5: Hardening Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Oct 2009 23:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=935\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:313:\"As you know over the past couple of months we have been working on the new features for WordPress 2.9. We have also been working on trying to make WordPress as secure as possible and during this process we have identified a number of security hardening changes that we thought were worth back-porting to the [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Peter Westwood\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1610:\"<p>As you know over the past couple of months we have been working on the new features for WordPress 2.9. We have also been working on trying to make WordPress as secure as possible and during this process we have identified a number of security hardening changes that we thought were worth back-porting to the 2.8 branch so as to get these improvements out there and make all your sites as secure as possible.</p>\n<p>The headline changes in this release are:</p>\n<ul>\n<li>A fix for the Trackback Denial-of-Service attack that is currently being seen.</li>\n<li>Removal of areas within the code where php code in variables was evaluated.</li>\n<li>Switched the file upload functionality to be whitelisted for all users including Admins.</li>\n<li>Retiring of the two importers of Tag data from old plugins.</li>\n</ul>\n<p>We would recommend that all sites are upgraded to this new version of WordPress to ensure that you have the best available protection.</p>\n<p>If you think your site may have been hit by one of the recent exploits and you would like to make sure that you have cleared out all traces of the exploit then we would recommend that you take a look at the <a href=\"http://wordpress.org/extend/plugins/exploit-scanner/\">WordPress Exploit Scanner</a>.  This is a plugin which searches the files on your website, and the posts and comments tables of your database for anything suspicious. It also examines your list of active plugins for unusual filenames.  You can read more about this plugin here &#8211; &#8220;<a href=\"http://ocaoimh.ie/exploit-scanner/\">WordPress Exploit Scanner</a>&#8220;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"289\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:50:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Getting involved with the 2.9 beta testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/development/2009/10/getting-involved-with-the-2-9-beta-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wordpress.org/development/2009/10/getting-involved-with-the-2-9-beta-testing/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Oct 2009 22:16:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"2.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=922\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:292:\"We have been hard at work now for a few months on the new features that will be coming in WordPress 2.9, and we are near the time when the first beta version will be available. We&#8217;ll need your help with beta testing the new features and ironing out any bugs.\nThere are a number of [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Peter Westwood\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2938:\"<p>We have been hard at work now for a few months on the new features that will be coming in WordPress 2.9, and we are near the time when the first beta version will be available. We&#8217;ll need your help with beta testing the new features and ironing out any bugs.</p>\n<p>There are a number of different ways in which you can get involved in the testing process, and each way is suited for each persons skill set and comfort level.  First of all, you can join the <a href=\"http://codex.wordpress.org/Mailing_Lists#Testers\">wp-testers</a> mailing list to keep up to date with the testing progress and to discuss things with the other testers.  Secondly, you can head over to the <a href=\"http://core.trac.wordpress.org/\">Trac ticketing system</a> and either create tickets for bugs you find or <a href=\"https://core.trac.wordpress.org/milestone/2.9\">use some of the useful searches</a> to look for patches that need testing or that need someone to try and reproduce the issue.</p>\n<p>During the beta phase we are going to focus on stabilizing the new features and removing existing bugs which are well-understood and have easily testable solutions.  During this process we will not be adding any new enhancements so as to ensure that the focus is on making the 2.9 release as bug-free as possible.  We will also try and have a few special bug hunt days where one or more experienced WordPress developers will be available to help people track down issues and get patches committed to fix bugs.</p>\n<p>To make is as easy as possible for you to get a beta testing install up and running we have put together a small WordPress plugin which makes it really easy to convert a test install of the latest release version of WordPress into a beta test install of the next up and coming release.  The plugin is called <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> and is available to download from WordPress Extend or can be installed using the built-in plugin installer.  Please make sure you to only install this plugin on a test site. We do not recommend running beta versions on your normal, live sites in case anything goes wrong.  You can read more about the plugin in &#8220;<a href=\"http://westi.wordpress.com/2009/06/22/making-it-easy-to-be-a-wordpress-tester/\">Making it easy to be a WordPress Tester</a>&#8221;</p>\n<p>We are aiming to release the first beta version of 2.9 around the end of October, after we have put the finishing touches on the new features. Then we switch to full on beta testing mode and your help and feedback will be very much appreciated.  During the beta test program will push out new builds for automated upgrades regularly. Once we feel that a suitable level of stability has been achieved we will move into the release candidate phase. We hope to be able to make the final release 2.9 build available in either late November or early December.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wordpress.org/development/2009/10/getting-involved-with-the-2-9-beta-testing/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"72\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:44:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"How to Keep WordPress Secure\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/development/2009/09/keep-wordpress-secure/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.org/development/2009/09/keep-wordpress-secure/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Sep 2009 19:22:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=908\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:301:\"A stitch in time saves nine. I couldn&#8217;t sew my way out of a bag, but it&#8217;s true advice for bloggers as well &#8212; a little bit of work on an upgrade now saves a lot of work fixing something later.\nRight now there is a worm making its way around old, unpatched versions of WordPress. [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6131:\"<p>A stitch in time saves nine. I couldn&#8217;t sew my way out of a bag, but it&#8217;s true advice for bloggers as well &#8212; a little bit of work on an <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">upgrade now</a> saves a lot of work fixing something later.</p>\n<p>Right now there is a worm making its way around old, unpatched versions of WordPress. This particular worm, like many before it, is clever: it registers a user, uses a security bug (fixed earlier in the year) to allow evaluated code to be executed through the permalink structure, makes itself an admin, then uses JavaScript to hide itself when you look at users page, attempts to clean up after itself, then goes quiet so you never notice while it inserts hidden spam and malware into your old posts.</p>\n<p>The tactics are new, but the strategy is not. Where this particular worm messes up is in the &#8220;clean up&#8221; phase: it doesn&#8217;t hide itself well and the blogger notices that all his links are broken, which causes him to dig deeper and notice the extent of the damage. Where worms of old would do childish things like defacing your site, the new ones are silent and invisible, so you only notice them when they screw up (as this one did) or your site gets removed from Google for having spam and malware on it.</p>\n<p>I&#8217;m talking about this not to scare you, but to highlight that this is something that has happened before, and that will more than likely happen again.</p>\n<p>A stitch in time saves nine. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Upgrading is a known quantity of work</a>, and one that the WordPress community has tried its darndest to make as easy as possible with one-click upgrades. <a href=\"http://codex.wordpress.org/FAQ_My_site_was_hacked\">Fixing a hacked blog, on the other hand, is quite hard</a>. Upgrading is taking your vitamins; fixing a hack is open heart surgery. (This is true of cost, as well.)</p>\n<p>2.8.4, the current version of WordPress, is immune to this worm. (<em>So was the release before this one.</em>) If you&#8217;ve been thinking about upgrading but haven&#8217;t gotten around to it yet, now would be a really good time. If you&#8217;ve already upgraded your blogs, maybe check out the blogs of your friends or that you read and see if they need any help. A stitch in time saves nine.</p>\n<p>Whenever a worm makes the rounds, everyone becomes a security expert and peddles one of three types of advice: snake oil, Club solutions, or real solutions. Snake oil you&#8217;ll be able to spot right away because it&#8217;s <em>easy</em>. Hide the WordPress version, they say, and you&#8217;ll be fine. Uh, duh, the worm writers thought of that. Where their 1.0 might have checked for version numbers, 2.0 just tests capabilities, version number be damned. </p>\n<p>The second type of advice is Club solutions; to illustrate, I&#8217;ll quote from <a href=\"http://diveintomark.org/archives/2002/10/29/club_vs_lojack_solutions\">Mark Pilgrim&#8217;s excellent essay on spam 7 years ago, before WordPress even existed</a>:</p>\n<blockquote><p>The <em>really</em> interesting thing about these approaches, from a game theory perspective, is that they are all <a href=\"http://slate.msn.com/?id=2041\" title=\"Slate, August 3, 1997: Property Is Theft: When protecting your own property is stealing from others\">Club solutions, not Lojack solutions</a>.  There are two basic approaches to protecting your car from theft: <a href=\"http://www.theclub.com/\">The Club</a> (or The Shield, or a car alarm, or something similar), and <a href=\"http://www.lojack.com/\">Lojack</a>.  The Club isn’t much protection against a thief who is determined to steal <em>your</em> car (it’s easy enough to drill the lock, or just cut the steering wheel and slide The Club off).  But it is effective protection against a thief who wants to steal <em>a</em> car (not necessarily <em>your</em> car), because thieves are generally in a hurry and will go for the easiest target, the low-hanging fruit.  The Club works as long as not everyone has it, since if everyone had it, thieves would have an equally difficult time stealing any car, their choice will be based on other factors, and your car is back to being as vulnerable as anyone else&#8217;s.  The Club doesn’t deter theft, it only deflects it.</p></blockquote>\n<p>Club blog security solutions can be simple (like an .htaccess file) or incredibly complex (like two-factor authentication), and they can work, especially for <em>known exploits</em>. Club solutions can be useful, like using a strong or complex password for your login &#8212; no one would recommend against that. (Another club solution is switching to less-used software on the assumption or more like the software&#8217;s claim that it&#8217;s perfect and more secure. This is why BeOS is more secure than Linux, ahem.)</p>\n<p>In the car world, if someone figured out how to teleport entire cars to chop shops, The Club wouldn&#8217;t be so useful anymore. Luckily for manufacturers of The Club, this hasn&#8217;t happened. Online and in the software world, though, the equivalent happens almost daily. There is only one real solution. <strong>The only thing that I can promise will keep your blog secure today and in the future is upgrading.</strong></p>\n<p>WordPress is a community of hundreds of people that read the code every day, audit it, update it, and care enough about keeping your blog safe that we do things like release updates weeks apart from each other even though it makes us look bad, because updating is going to keep your blog safe from the bad guys. I&#8217;m not clairvoyant and I can&#8217;t predict what schemes spammers, hackers, crackers, and tricksters will come up with with in the future to harm your blog, but I do know for certain that as long as WordPress is around we&#8217;ll do everything in our power to make sure the software is safe. We&#8217;ve already made upgrading core and plugins a one-click procedure. If we find something broken, we&#8217;ll release a fix. Please upgrade, it&#8217;s the only way we can help each other.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/development/2009/09/keep-wordpress-secure/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"451\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:38:\"http://wordpress.org/development/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:10:\"x-pingback\";s:43:\"http://wordpress.org/development/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Wed, 18 Nov 2009 03:49:38 GMT\";s:4:\"etag\";s:34:\"\"c0b7801559ca484e71e0d738f336b372\"\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"date\";s:29:\"Tue, 24 Nov 2009 10:48:01 GMT\";s:6:\"server\";s:9:\"LiteSpeed\";s:10:\"connection\";s:5:\"close\";}s:5:\"build\";i:20081219;}','no'),(130,0,'_transient_timeout_feed_mod_0ff4b43bd116a9d8720d689c80e7dfd4','1259102881','no'),(131,0,'_transient_feed_mod_0ff4b43bd116a9d8720d689c80e7dfd4','1259059681','no'),(132,0,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1259102882','no'),(133,0,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.tv: John Hawkins: Building Your First Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=3056\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.tv/2009/11/14/john-hawkins-plugins-nyc09/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1373:\"<div class=\"snap_preview\"><br /><ins>\n<div class=\"video-player\" id=\"x-video-4\">\n</div></ins>\n<br /><a href=\"http://wordpress.tv/2009/11/14/john-hawkins-plugins-nyc09/\"><img width=\"160\" height=\"120\" src=\"http://cdn.videos.wordpress.com/F7cHbGmP/pzula-wp-plugin_std.original.jpg\" /> </a>  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/3056/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/3056/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/3056/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/3056/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/3056/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/3056/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/3056/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/3056/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/3056/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/3056/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=3056&subd=wptv&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Nov 2009 04:15:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ryan Markel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Weblog Tools Collection: Google To Help Notify You Of New Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7237\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://weblogtoolscollection.com/archives/2009/11/23/google-to-help-notify-you-of-new-updates/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2376:\"<p><img class=\"alignright size-full wp-image-7238\" title=\"googlelogo\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/googlelogo.png\" alt=\"googlelogo\" width=\"127\" height=\"54\" />Here comes yet another way to be notified of new upgrades for WordPress in case you need one. Google <a href=\"http://googlewebmastercentral.blogspot.com/2009/11/new-software-version-notifications-for.html\" target=\"_blank\">has announced</a> that they will be using their processing power to scan the source code of websites to look for the version number of the publishing software they are using and send them a notification through Google Webmaster Tools letting them know that an upgrade is available. In the case of WordPress, the <strong></strong> meta tag was moved  to the core of WordPress in 2.5. Therefor, anyone running a version of WordPress from 2.5 and above should have it displayed in their source code unless it was either removed or edited out through an action in the functions.php file such as <strong>remove_action(&#8217;wp_head&#8217;, &#8216;wp_generator&#8217;);</strong> Also, some plugins have been created that removes the version info as well, typically security related plugins.</p>\n<p>Speaking of security, the security through obscurity argument regarding the public display of the version number of WordPress in the source code was over once the code for WordPress was available to the public. Matt Mullenweg mentioned this in his post regarding how to keep WordPress secure.</p>\n<blockquote><p>Hide the WordPress version, they say, and you’ll be fine. Uh, duh, the worm writers thought of that. Where their 1.0 might have checked for version numbers, 2.0 just tests capabilities, version number be damned.</p></blockquote>\n<p>So, I&#8217;m with Google in that including the version number in the source code can do more good than harm. In order to receive these update notifications from Google, you&#8217;ll need to have a <a href=\"https://www.google.com/webmasters/tools/\" target=\"_blank\">Google Webmaster Tools account</a> with a site attached.</p>\n<p>The majority of people in the WordPress community have continuously advised removing this generator from being seen in the source code as a means of security. Will this line of thinking continue, or will we see more people add or leave it in to take advantage of the updates from Google?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2009 20:21:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 11/23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7235\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://weblogtoolscollection.com/archives/2009/11/23/wordpress-plugin-releases-for-1123/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2529:\"<h3>New Plugins</h3>\n<p><a href=\"http://www.waltervos.com/wordpress-plugins/additional-image-sizes/\">Additional image sizes</a></p>\n<p>With this plugin, users can add and remove intermediate image sizes. The plugin can also make copies of existing images with these new sizes.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/online-leaf/\">Online Leaf</a></p>\n<p><a href=\"http://www.onlineleaf.com/\">Online Leaf</a> presents a new standby engine for all WordPress blogs. Once installed, it will detect any user inactivity on the blog and cover the blog with a dark screen, which darkens the colors and hides animations and effects, so that the monitors do not waste energy displaying these untill activity is detected again, which happens when the mouse is moved across the website.</p>\n<h3>Updated Plugins</h3>\n<p><a href=\"http://www.clickonf5.org/smooth-slider\">Smooth Slider</a></p>\n<p>Smooth Slider is a WordPress Plugin for creating a dynamic slideshow for featured posts on a blog.</p>\n<p><a href=\"http://www.seodesignsolutions.com/wordpress-seo/\">SEO Ultimate</a></p>\n<p>This all-in-one SEO plugin can handle titles, meta, noindex, canonical tags, 404 monitoring, linkboxes, and robots.txt. Version 1.3 adds anchor text customization for the &#8220;more&#8221; link in posts.</p>\n<p><a href=\"http://ocaoimh.ie/wp-super-cache/\">WP Super Cache</a></p>\n<p>WP Super Cache is a page caching plugin for WordPress that will significantly speed up your website.</p>\n<p><a href=\"http://www.gospelrhys.co.uk/plugins/wordpress-plugins/wordpress-email-capture-plugin\">WP Email Capture</a></p>\n<p>This creates a 2 field form (Name &amp; Email) for capturing emails. Email is double opt in, and allows you to forward opt in to services such as ebooks or software. When you are ready to begin your email marketing campaign, simply export the list into your chosen email marketing software or service.</p>\n<p><a href=\"http://denzeldesigns.com/wordpress-plugins/video-sidebar-widgets/\">Video Sidebar Widgets</a></p>\n<p>It enables the user to embed FlashVideo from various video sharing networks into the widgetised sidebar of a WordPress powered blog.</p>\n<p><a href=\"http://www.dev4press.com/plugins/gd-press-tools/\">GD Press Tools</a></p>\n<p>GD Press Tools is a collection of various administration, seo, maintenance and security related tools. This tools can be integrated into the various WordPress admin panels, can perform maintenance operations, change some aspects of WordPress, see detailed server settings and information.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2009 18:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Perurry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Donncha: WordPress, Nginx and WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://ocaoimh.ie/?p=89495533\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://ocaoimh.ie/89495533/wordpress-nginx-wp-super-cache/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8706:\"<p>If you host your own WordPress blog, it&#8217;s probably on Apache. That all fine and good. For most sites Apache works wonderfully, especially as it&#8217;s so easy to find information on it, on mod_rewrite and everything else that everyone else uses.</p>\n<p>One of the alternatives is <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25naW54Lm5ldC8=\">Nginx</a>, a really fast webserver that streaks ahead of Apache in terms of performance, but isn&#8217;t quite as easy to use. That&#8217;s partly because Apache is the default webserver on most Linux distributions and hosts. Want to try Nginx? Here&#8217;s how.</p>\n<p>Install Nginx. On Debian based systems that&#8217;s as easy as\n<pre class=\"brush: bash; gutter: false;\">aptitude install nginx</pre>\n<p> Nginx doesn&#8217;t talk PHP out of the box but one way to do it is via spawn-fcgi. Here&#8217;s where it gets complicated. (Docs summarised from <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5ob3d0b2ZvcmdlLmNvbS9uZ2lueF9waHA1X2Zhc3RfY2dpX3hjYWNoZV91YnVudHU3LjA0\">here</a>)</p>\n<ol>\n<li> Install php5-cgi. Again, on Debian systems, that&#8217;s\n<pre class=\"brush: bash; gutter: false;\">aptitude install php5-cgi</pre>\n</li>\n<li> Edit /etc/nginx/sites-available/default and add the following chunk of code to the &#8220;server&#8221; section:\n<pre class=\"brush: plain;\">location ~ \\.php$ {\n        include /etc/nginx/fastcgi_params;\n        fastcgi_pass  127.0.0.1:9000;\n        fastcgi_index index.php;\n        fastcgi_param  SCRIPT_FILENAME  /var/www/nginx-default$fastcgi_script_name;\n}</pre>\n</li>\n<li> Install lighttpd for the spawning command.\n<pre class=\"brush: bash; gutter: false;\">apt-get install lighttpd</pre>\n<p> You&#8217;ll probably get an error at the end of the install if Apache is already running on port 80. Edit /etc/lighttpd/lighttpd.conf and uncomment the line\n<pre class=\"brush: plain; gutter: false;\">server.port = 80</pre>\n<p> and change 80 to 81. Now run the apt-get command again and it will install.\n<pre class=\"brush: bash; gutter: false;\">/etc/init.d/lighttpd stop</pre>\n<p> will stop lighttpd running. (You don&#8217;t need it)</li>\n<li> Create a new text file, /usr/bin/php-fastcgi with this:\n<pre class=\"brush: plain;\">#!/bin/sh\n/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u nobody -f /usr/bin/php5-cgi</pre>\n<p>The user &#8220;nobody&#8221; should match the user Apache runs as to make things easier to transition.<br />\nMake it executable with\n<pre class=\"brush: bash; gutter: false;\">chmod 755 /usr/bin/php-fastcgi</pre>\n</li>\n<li> Create another new file /etc/init.d/init-fastcgi and make it executable with the chmod command too. Put this in the file:\n<pre class=\"brush: plain;\">#!/bin/bash\nPHP_SCRIPT=/usr/bin/php-fastcgi\nRETVAL=0\ncase \"$1\" in\n    start)\n      $PHP_SCRIPT\n      RETVAL=$?\n  ;;\n    stop)\n      killall -9 php\n      RETVAL=$?\n  ;;\n    restart)\n      killall -9 php\n      $PHP_SCRIPT\n      RETVAL=$?\n  ;;\n    *)\n      echo \"Usage: php-fastcgi {start|stop|restart}\"\n      exit 1\n  ;;\nesac\nexit $RETVAL</pre>\n</li>\n<li> Start the PHP processes with\n<pre class=\"brush: bash; gutter: false;\">/etc/init.d/init-fastcgi start</pre>\n<p> and make sure it starts on every reboot with\n<pre class=\"brush: bash; gutter: false;\">update-rc.d init-fastcgi defaults</pre>\n</li>\n</ol>\n<p>That&#8217;s the PHP part of things. In Debian, the default root is &#8220;/var/www/nginx-default&#8221; so put an index.php in there to test things out. Stop Apache and start Nginx (if this is a test server only!) and visit your site. Works? Now to get WordPress and WP Super Cache working.</p>\n<p>Open up /etc/nginx/sites-enabled/default in your editor and comment out the text already there with # characters. Paste the following in. Change paths and domains to suit your site. (<a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ZvcnVtLnNsaWNlaG9zdC5jb20vY29tbWVudHMucGhwP0Rpc2N1c3Npb25JRD0yMDg3\">via</a>)</p>\n<pre class=\"brush: plain;\">server {\n        server_name  example.com www.example.com;\n        listen   80;\n        error_log   /www/logs/example.com-error.log;\n        access_log  /www/logs/example.com-access.log;\n\n        location ~ \\.php$ {\n                include /etc/nginx/fastcgi_params;\n                fastcgi_pass  127.0.0.1:9000;\n                fastcgi_index index.php;\n                fastcgi_param  SCRIPT_FILENAME  /www/example.com/htdocs$fastcgi_script_name;\n        }\n\n        location / {\n               gzip  on;\n               gzip_http_version 1.0;\n\n               gzip_vary on;\n\n               gzip_comp_level 3;\n\n               gzip_proxied any;\n\n               gzip_types text/plain text/html text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;\n\n               gzip_buffers 16 8k;\n               root   /www/example.com/htdocs;\n               index  index.php index.html index.htm;\n# if the requested file exists, return it immediately\n               if (-f $request_filename) {\n                       break;\n               }\n\n               set $supercache_file \'\';\n               set $supercache_uri $request_uri;\n\n               if ($request_method = POST) {\n                       set $supercache_uri \'\';\n               }\n\n# Using pretty permalinks, so bypass the cache for any query string\n               if ($query_string) {\n                       set $supercache_uri \'\';\n               }\n\n               if ($http_cookie ~* \"comment_author_|wordpress|wp-postpass_\" ) {\n                       set $supercache_uri \'\';\n               }\n\n# if we haven\'t bypassed the cache, specify our supercache file\n               if ($supercache_uri ~ ^(.+)$) {\n                       set $supercache_file /wp-content/cache/supercache/$http_host/$1index.html;\n               }\n\n# only rewrite to the supercache file if it actually exists\n               if (-f $document_root$supercache_file) {\n                       rewrite ^(.*)$ $supercache_file break;\n               }\n\n# all other requests go to Wordpress\n               if (!-e $request_filename) {\n                       rewrite . /index.php last;\n               }\n        }\n}</pre>\n<p>I think the gzip settings above will compress cached files if necessary but Nginx can use the already gzipped Supercache files. The version of Debian I use doesn&#8217;t have gzip support compiled in, but if your system does, take a look at the gzip_static directive. Thanks <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL3NpdmVsL3N0YXR1c2VzLzU4ODcwMTYxNTU=\">sivel</a>.</p>\n<p>Finally, edit /etc/nginx/nginx.conf and make sure the user in the following line matches the user above:\n<pre class=\"brush: plain;\">user www-data;</pre>\n<p>I changed it to &#8220;nobody nogroup&#8221;.</p>\n<p>Now, stop Apache and start Nginx:\n<pre class=\"brush: bash; gutter: false;\">/etc/init.d/apache stop; /etc/init.d/nginx start</pre>\n<p>WP Super Cache will complain about mod_rewrite missing, and you should disable mobile support.</p>\n<p>How has it worked out? I only switched on Friday. The server did do more traffic than normal, but I put that down to <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvZmxvb2RpbmctaW4tY29yay8=\">the floods in Cork</a>. Weekend traffic was perfectly normal.</p>\n<p>Load on the site is slightly higher, probably because my anti-bot mod_rewrite rules aren&#8217;t working now. Pingdom stats for the site haven&#8217;t changed drastically and I think the Minify plugin stopped working, must debug that this week. Switching web servers is a huge task. I disabled mobile support in Supercache because I need to translate those rules to Nginx ones. A little birdie told me that he&#8217;s going to be writing a blog post on this very subject soon. Here&#8217;s hoping he&#8217;ll put fingers to keys soon.</p>\n<p>Have you switched to Nginx? How has your switch worked out for you?</p>\n<p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtMDg0LXRoZS1nYXJiYWdlLWNvbGxlY3Rvci8=\" rel=\"\">WP Super Cache 0.8.4, the garbage collector</a></li><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtMDg3Lw==\" rel=\"\">WP Super Cache 0.8.7</a></li><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtMC05LTUv\" rel=\"\">WP Super Cache 0.9.5</a></li></ul></p> <img src=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?view=1&post_id=89495533\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2009 12:34:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.tv: Last Week on WordPress.tv: Nov 15—Nov 21\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=102\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://blog.wordpress.tv/2009/11/23/last-week-on-wordpress-tv-nov-15%e2%80%94nov-21/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3637:\"<div class=\"snap_preview\"><br /><p>We had another light publishing week here on WordPress.tv last week, but we have the first of a bunch of WordCamp video for you tonight in a special weekend delivery to make up for lost time.</p>\n<p>The one video we did get out for you was the first video to come out of the excellent WordCamp New York City, and it features an awesome concept that came out of the Google Summer of Code. It&#8217;s <a href=\"http://wordpress.tv/2009/11/14/daryl-koopersmith-elastic-nyc09/\">Daryl Koopersmith&#8217;s talk on the Elastic WYSIWYG theme tool</a>; you should check it out.</p>\n<p>Tonight, we have three more videos, also from WordCamp NYC. First, Matt Martz gives <a href=\"http://wordpress.tv/2009/11/14/matt-martz-plugins-nyc09/\">an instructional course on intermediate plugin development</a>. Jim Doran talks to us about <a href=\"http://wordpress.tv/2009/11/14/jim-doran-jquery-nyc09/\">using jQuery when you develop for WordPress</a>. And lastly, Allan Cole discusses <a href=\"http://wordpress.tv/2009/11/14/allan-cole-child-themes-nyc09/\">the increasingly important role child themes take in WordPress development</a>.</p>\n<p>We have more WordCamp video on the way this week. To stay updated, follow <a href=\"http://twitter.com/wordpresstv\">@wordpresstv on Twitter</a>.</p>\n<p>Last week, I asked for suggestions for future video tutorials, and we received a handful of suggestions that I think are very good. I think you&#8217;ll see some information on those topics in the future. This week, I have a different request of the community.</p>\n<p><strong>We need volunteer transcribers and translators.</strong></p>\n<p>To get started, we have video coming in soon from <a href=\"http://kyoto.wordcamp.org/\">WordCamp Kyoto</a>. Almost all of it is (of course) in Japanese—and much of the WordPress community would still love to see those presentations but may not understand the Japanese language. If you are Japanese-speaking and could help us by volunteering to transcribe or translate the video from WordCamp Kyoto, please either leave a comment on this post or <a href=\"http://wordpress.tv/contact/\">drop us a line using this contact form</a>.</p>\n<p>Thanks, and if you&#8217;re celebrating Thanksgiving this week, have a great holiday week. Don&#8217;t forget <a href=\"http://en.blog.wordpress.com/2009/11/20/thanksgiving-video-contest/\">the contest currently going on at WordPress.com</a>—a video contest! There&#8217;s some snazzy prizes being given away over there.</p>\n  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/102/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/102/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptvblog.wordpress.com/102/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptvblog.wordpress.com/102/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptvblog.wordpress.com/102/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptvblog.wordpress.com/102/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptvblog.wordpress.com/102/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptvblog.wordpress.com/102/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptvblog.wordpress.com/102/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptvblog.wordpress.com/102/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=102&subd=wptvblog&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2009 05:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ryan Markel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: Jim Doran: Using jQuery in Your WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=3043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.tv/2009/11/14/jim-doran-jquery-nyc09/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1366:\"<div class=\"snap_preview\"><br /><ins>\n<div class=\"video-player\" id=\"x-video-0\">\n</div></ins>\n<br /><a href=\"http://wordpress.tv/2009/11/14/jim-doran-jquery-nyc09/\"><img width=\"160\" height=\"120\" src=\"http://cdn.videos.wordpress.com/pQ8uB7ox/pzula-jquery_std.original.jpg\" /> </a>  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/3043/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/3043/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/3043/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/3043/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/3043/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/3043/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/3043/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/3043/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/3043/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/3043/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=3043&subd=wptv&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2009 05:30:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ryan Markel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WordPress.tv: Allan Cole: Children Are the Future—Developing with Child Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=3045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.tv/2009/11/14/allan-cole-child-themes-nyc09/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1378:\"<div class=\"snap_preview\"><br /><ins>\n<div class=\"video-player\" id=\"x-video-2\">\n</div></ins>\n<br /><a href=\"http://wordpress.tv/2009/11/14/allan-cole-child-themes-nyc09/\"><img width=\"160\" height=\"120\" src=\"http://cdn.videos.wordpress.com/g4Y5mhnY/pzula-childthemes_std.original.jpg\" /> </a>  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/3045/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/3045/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/3045/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/3045/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/3045/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/3045/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/3045/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/3045/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/3045/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/3045/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=3045&subd=wptv&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2009 05:30:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ryan Markel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Matt Martz: Intermediate Plugin Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=3035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.tv/2009/11/14/matt-martz-plugins-nyc09/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1374:\"<div class=\"snap_preview\"><br /><ins>\n<div class=\"video-player\" id=\"x-video-3\">\n</div></ins>\n<br /><a href=\"http://wordpress.tv/2009/11/14/matt-martz-plugins-nyc09/\"><img width=\"160\" height=\"120\" src=\"http://cdn.videos.wordpress.com/dFZaLXS1/pzula-intplugindev_std.original.jpg\" /> </a>  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/3035/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/3035/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/3035/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/3035/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/3035/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/3035/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/3035/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/3035/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/3035/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/3035/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=3035&subd=wptv&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2009 05:00:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ryan Markel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: So we tried Intense Debate . . .\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://weblogtoolscollection.com/archives/2009/11/22/so-we-tried-intense-debate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5251:\"<p>It was not meant to be. I had high hopes for <a href=\"http://intensedebate.com\">Intense Debate</a> but the drawbacks outweighed the positives in our case. I was really looking forward to a few of the features that I thought might bring more interactivity to the blog and encourage readers to have meatier discussions. As you notice below, we have turned off Intense Debate and gone back to the original comment form. Below is a list of the some of the features I was really looking forward to and our experiences with them.</p>\n<p>I would like to preface this discussion by saying that I screwed up the install by adding this blog onto the wrong account and that added to some of our woes. The account bug that followed (we received some help via the support email) was caused by my fat fingering.</p>\n<ul>\n<li>Better overall look and feel of the comment section of a blog: I liked the look and feel. The AJAX interface is spiffy and quite versatile.</li>\n<li>Commenter reputation: I really like this feature and this was one of my top priorities for installing ID. I like it and it worked well. Add this to &#8220;last post of commenter&#8221; and it is a killer feature to give good commenters some free publicity.</li>\n<li>Comment voting: Useful for readers who want to join the discussion. Also very useful to determine spamminess of a comment. I found it to add to the community feel and found myself looking for votes on comments in hot posts.</li>\n<li>Social commenting: I saw a bunch of people use various types of profiles to log in and comment. I think this feature added interesting bits of information about commenters and might have prompted more readers to comment. I cannot say for sure. I had trouble staying logged in because of my fat fingering and caused myself some headaches.</li>\n<li>Reply to comments by Email: Useful feature. Did any of my readers use it? I have no clue. Did I use it? No.</li>\n<li>Automatic folding of threads: Does it work? Yes! Does it have the desired effect? No. On Weblog Tools Collection, automatic comment thread folding meant that a lot of relevant comments were overlooked by readers who ended up saying the same things over again and missing much of the conversation. It just did not have the right feel.</li>\n<li>Comment synchronization with the blog: We were able to roll back to the default commenting system because of this feature and are thankful for that. But the comments on hot/active posts were not quite at par with actual activity on the posts. This lack of real time updates resulted in less comments and conversations.</li>\n<li>Ability to add polls to comments: Cool feature in concept, barely used in reality. A relevant poll added to a hot post might get a few results but readers don&#8217;t use that kind of interactivity unless they want to come back and check the results, which is often not the case. Can be done with a plugin.</li>\n<li>Better spam filtering and moderation features: ID adds the ability to use their own filters in addition to Akismet. But I found these to be cumbersome and Akismet not as responsive. I can&#8217;t quite explain this gripe but I can say that too many comments were ending up in moderation and not enough of the ones that I marked as spam were then treated as spam on subsequent attempts. I don&#8217;t think the WordPress feature that allows previous commenters&#8217; comments to be posted without moderation works with IS. Blacklisted words did not appear to work as well as I have come to expect them to work. There is also no way to &#8220;remember me&#8221; on the ID login page, which is annoying.  Having to add co-authors on as admins of the blog on ID meant they got bugged with all the Spam and also meant that they had to be registered users. These reasons were probably the most annoying to me and my fellow authors and resulted in us backing out.</li>\n<li>Ability to record video comments: Cool feature but not used at all on this blog. I see <em>some</em> video comments on TechCrunch but our readers just did not care.</li>\n<li>Better comment curation for multi-author blogs: There is no way to send moderation emails to individual authors (which is a pain for multi-author blogs) and the moderation emails were just unfamiliar and not easy to get used to. Again, not fast enough in moderation and approval of comments.</li>\n</ul>\n<p>In addition to the good and the bad above, I also received some disturbing feedback which suggested that some people would not comment on a blog that runs Intense Debate. I have no such qualm and would really like to hear from folks who feel this way. Why this angst?</p>\n<p>In conclusion I have to say that I think Intense Debate was a mixed bag for us. If you are not thoroughly used to the WordPress comments system and do not have tens of thousands of comments, it is worth a shot. The ability to roll back is fantastic for buyers&#8217; remorse and I think there is a lot of potential.</p>\n<p><strong>UPDATE: And deactivating the plugin was not enough to stop it from acting upon incoming comments. Comments were borked since ID was deactivated yesterday. The plugin files have now been deleted and that seems to allow comments to flow back through. Sorry for the trouble.</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 22 Nov 2009 22:58:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mark Ghosh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 11/21\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://weblogtoolscollection.com/archives/2009/11/21/wordpress-theme-releases-for-1121-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1961:\"<h4><a href=\"http://www.thehostingfinder.com/blog/thf204/\">THF204</a></h4>\n<p><a href=\"http://www.thehostingfinder.com/demo/index.php?wptheme=THF204\"><img title=\"THF204\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/THF204.gif\" alt=\"THF204\" width=\"200\" height=\"156\" /></a></p>\n<p>Three column, simple clean theme with two widgetised sidebars.</p>\n<h4><a href=\"http://websitetheme.com/archives/18-BlackLens-Wordpress-theme.html\">BlackLens</a></h4>\n<p><a href=\"http://websitetheme.com/wpdemo/?themedemo=blacklens\"><img title=\"BlackLenstheme\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/BlackLenstheme.jpg\" alt=\"BlackLenstheme\" width=\"200\" height=\"152\" /></a></p>\n<p>BlackLens is a black, white and pink theme with a floral decoration in the top right of the page. Its a two column theme with a left sidebar and support for widgets.</p>\n<h4><a href=\"http://fyrewurks.com/2009/11/filmix/\">Filmix</a></h4>\n<p><a href=\"http://fyrewurks.com/wordpress-theme-demos/?preview_theme=Filmix\"><img title=\"Filmix\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/Filmix.jpg\" alt=\"Filmix\" width=\"200\" height=\"138\" /></a></p>\n<p>It supports gravatars, is widget-ready, Adsense-ready, dark, modern and clean.</p>\n<h4><a href=\"http://fyrewurks.com/2009/11/tiki-time/\">Tiki Time</a></h4>\n<p><a href=\"http://fyrewurks.com/wordpress-theme-demos/?preview_theme=Tiki%20Time\"><img title=\"Tiki Time\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/TikiTime.jpg\" alt=\"Tiki Time\" width=\"200\" height=\"146\" /></a></p>\n<p>3-columns, widget-ready, Adsense-ready, and supports gravatars</p>\n<h4><a href=\"http://human3rror.com/the-hives-wordpress-theme/\">The Hives</a></h4>\n<p><img title=\"The Hives\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/TheHives.jpg\" alt=\"The Hives\" width=\"200\" height=\"120\" /></p>\n<p>Three column, widget ready theme with a rotating carousel, lifestream and related posts.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Nov 2009 14:12:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Perurry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Mark Jaquith: Block-level comments trick\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://markjaquith.wordpress.com/?p=369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://markjaquith.wordpress.com/2009/11/21/block-level-comments-trick/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2993:\"<div class=\"snap_preview\"><br /><p>Block-level comments are useful for commenting out an entire block of code in PHP, CSS, and other code contexts.</p>\n<pre class=\"brush: php;\">\n/*\n$this = \'code is deactivated\';\n$and = \'so is this\';\n*/\n</pre>\n<p>The only problem with this is that when you go to re-activate this code, you have to change both the opening and closing comment markers. That&#8217;s a pain.</p>\n<p>While I was at WordCamp NYC last week, I saw <a href=\"http://wpmama.com/\">Daisy Olsen</a> using a very clever trick in her lightning round talk.</p>\n<pre class=\"brush: php;\">\n/*\n$this = \'code is deactivated\';\n$and = \'so is this\';\n/**/\n</pre>\n<p>See what she did there? The closing comment marker is preceded by another opening marker. Because comment blocks can&#8217;t be nested, this second opening comment marker is ignored. This enabled her to re-enable this code by removing the opening marker.</p>\n<pre class=\"brush: php;\">\n$this = \'code is reactivated\';\n$and = \'so is this\';\n/**/\n</pre>\n<p>Brilliant! I can&#8217;t believe I haven&#8217;t seen this before. The one downside to this is that you are deleting two characters and destroying the opening marker. Here&#8217;s an even better method.</p>\n<pre class=\"brush: php;\">\n//*\n$this = \'code is reactivated\';\n$and = \'so is this\';\n/**/\n</pre>\n<p>By adding a slash in front of the opening comment marker, I comment out the comment marker. It only takes one key press, and the corpse of the original opening marker is retained, allowing you to reinstate it with the deletion of a single character.</p>\n<p>Props to <a href=\"http://aleembawany.com/2009/01/27/lazy-block-comment-trick/\">Aleem Bawany</a> for the second trick (he uses <code>//*/</code> as the closing comment, which works pretty much the same way).</p>\n<p>What other commenting tricks do you know?</p>\n  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/369/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/369/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/369/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/369/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/369/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/369/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/369/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/369/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/369/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/369/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=369&subd=markjaquith&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Nov 2009 04:49:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Weblog Tools Collection: How to Create Micro Blogs Within WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://weblogtoolscollection.com/archives/2009/11/21/how-to-create-micro-blogs-within-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://weblogtoolscollection.com/archives/2009/11/21/how-to-create-micro-blogs-within-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7322:\"<p>I recently started out with a microblog on <a href=\"http://techie-buzz.com\" target=\"_blank\">my site</a>, where I wanted to quickly share content I find on the Internet. Before I started out I had an option of using the <a href=\"http://p2theme.com/\" target=\"_blank\">P2 theme</a> to post quick content on it. However, I shelved the idea since I did and do not have much time to customize the P2 theme to match the look and feel of my current site.</p>\n<p>This led to a big dilemma since I wanted 3 things:</p>\n<ul>\n<li>Start a Micro Blog and post quick content on it. </li>\n<li>Make sure that Google Indexes the micro blog content as it does with the other content. </li>\n<li>Create separate feeds for the Micro Blog and the rest of the content. </li>\n</ul>\n<p>Well, i was able to do all of these things without having to add new plugins or create a new blog. Here are the steps I followed to do it. Hopefully many of you will find this useful, and in turn also understand how powerful WordPress is when you want to customize it the way you want it to be.</p>\n<h3>Create Categories &amp; Modify Loops to Segregate Content</h3>\n<p>The first few steps include creating a separate category for the Microblog and segregating content accordingly.</p>\n<h4>Create Category for your Microblog</h4>\n<p>The first thing I wanted to do was to segregate the main content from the micro blog content on the home page, so I went ahead and created a new category called “Microblog”, where I post all the Microblog content.</p>\n<h4>Exclude Microblog Content from Main Loop</h4>\n<p>After creating a separate category, I needed the content from this category to be displayed separately on the site and not with the regular loop. To do that, you will have to edit your template file for the home page, usually index.php in your WordPress theme directory.</p>\n<p>To do that you will need to add the code given below before checking if posts exist.</p>\n<div>\n<div>\n<pre><span>   1:</span> query_posts($query_string . <span>\'&amp;cat=-123\'</span>); <span>//excludes micro blog category</span></pre>\n<pre><span>   2:</span> <span>//continue regular WP loop</span></pre>\n<pre><span>   3:</span> <span>if</span> (have_posts()) : </pre>\n<pre><span>   4:</span>   <span>while</span> (have_posts()) : the_post();</pre>\n<pre><span>   5:</span>       <span>//display posts </span></pre>\n<pre><span>   6:</span>   endwhile:</pre>\n<pre><span>   7:</span> <span>else</span> : </pre>\n<pre><span>   8:</span>     <span>//show errors </span></pre>\n<pre><span>   9:</span> endif;</pre>\n</p></div>\n</div>\n<p>The code query_posts&#8230; instructs WordPress to ignore categories which have an id 123.&#160; Please not that you need to provide the minus(-) symbol before the category id. You will need to specify comma separated values to skip multiple categories.</p>\n<h4>Only Display Microblog Content in The Loop</h4>\n<p>Since I wanted Google to index the content from the Microblog, I wanted to display in on the home page, for this I needed to run another loop, which only displays content from the Microblog.</p>\n<p>For that you need to add the following code:</p>\n<div>\n<div>\n<pre><span>   1:</span> query_posts(<span>\'category_name=microblog&amp;posts_per_page=5\'</span>); <span>//only display microblog posts</span></pre>\n<pre><span>   2:</span> <span>if</span>(have_posts()) :</pre>\n<pre><span>   3:</span>     <span>while</span>(haveposts()) : the_post();</pre>\n<pre><span>   4:</span>         <span>//show posts</span></pre>\n<pre><span>   5:</span>     endwhile;</pre>\n<pre><span>   6:</span> <span>else</span>:</pre>\n<pre><span>   7:</span>     <span>//show errors</span></pre>\n<pre><span>   8:</span> endif;</pre>\n</p></div>\n</div>\n<p>In this case, the query_posts only fetched posts from a particular category we specified as the category_name and skipped the rest of it.</p>\n<p>Using the above tricks you now have different sections on your blog home page which segregates content based on categories. You can find more information about skipping and querying certain categories by visiting the <a href=\"http://codex.wordpress.org/The_Loop\" target=\"_blank\">WordPress Codex entries for The Loop</a>.</p>\n<h3>Creating Different Feeds for Main and Microblog</h3>\n<p>Now that you have been able to separate content from your main blog and the microblog, it is now time to create separate feeds for them. This is much more simpler than segregating content above and only requires few changes in your feed URL.</p>\n<p>For example if your main feed URL is <strong>http://example.com/feed</strong> you will have to change it to <strong>http://example.com/feed?cat=-123</strong>. Similar to the skip rule in the query above, -123 will ignore posts from the category you specify.</p>\n<p>Creating a separate feed for your Microblog is much more simpler, all you need to do is use the current URL for the Microblog category and add /feed to it. Your Microblog feed will be <strong><a href=\"http://example.com/microblog/feed\">http://example.com/microblog/feed</a></strong>. </p>\n<p>Since you are offering multiple feeds, you might also want to add them to your header.php, so browsers with automatic feed discovery can discover all your feeds. To that, remove the regular feed/RSS link tags from your header and add this. Replace the feed URLs with your own.</p>\n<div>\n<div>\n<pre><span>   1:</span> <span>&lt;</span><span>link</span> <span>rel</span><span>=\"alternate\"</span> <span>type</span><span>=\"application/rss+xml\"</span> <span>title</span><span>=\"Techie Buzz RSS Feed\"</span> <span>href</span><span>=\"http://feeds.techie-buzz.com/techiebuzz\"</span> <span>/&gt;</span> </pre>\n<pre><span>   2:</span> <span>&lt;</span><span>link</span> <span>rel</span><span>=\"alternate\"</span> <span>type</span><span>=\"application/rss+xml\"</span> <span>title</span><span>=\"Techie Buzz Microblog\"</span> <span>href</span><span>=\"http://feeds.techie-buzz.com/tbmicroblog\"</span> <span>/&gt;</span></pre>\n</p></div>\n</div>\n<p><img title=\"multiple_feeds\" border=\"0\" alt=\"multiple_feeds\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/multiple_feeds.png\" width=\"214\" height=\"106\" /> </p>\n<p>Doing this will ensure that whenever a user tries to subscribe to you feeds, they will see multiple options as shown above.</p>\n<h3>Posting Quickly to Your Microblog</h3>\n<p>Now that you have your Microblog setup and ready to go, it would be more appropriate that you can quickly post content to it.</p>\n<p>To do that change your default category for posting to “Microblog” and then drag the Quick Press bookmarklet from your Tools menu to your browser bookmarks bar and start posting. Watch the video below to see how you can use Quick Press to quickly post content to your site.</p>\n<p align=\"center\"></p>\n<p>The above tricks will not create a <em>real</em> Microblog, but it will eventually help you to segregate content and run multiple smaller blogs within your major blog and offer them to subscribers. I would still prefer to use the P2 theme for the above task, however customizing it to match the look and feel is a lengthy process and hopefully it should be quicker in the future.</p>\n<p>The above tricks might be good or they might not be that good. Do give me your feedback on what you think about it and whether or not your found it helpful.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Nov 2009 04:01:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Keith Dsouza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Weblog Tools Collection: The New P2 Is Awesome\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://weblogtoolscollection.com/archives/2009/11/20/the-new-p2-is-awesome/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1941:\"<p>During WordCamp New York, I and many others had the chance to view a demo of the new P2 theme that will be released to WordPress.org users in due time. It&#8217;s already live for WordPress.com users in case you use that system. The New P2 improves on the first version by adding support for custom post types. For example, the theme has built in content types for a blog post, status updates, quotes, or links. These specific content types can be designed to give each an individual style. The first thing that comes to my mind when I saw this in action was Tumblr which does a great job styling the various types of content you have to choose from. Custom post types will be available in WordPress 2.9.</p>\n<p><a href=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/p2posttypes.png\" rel=\"thumbnail\"><img src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/p2posttypes-300x87.png\" alt=\"p2posttypes\" title=\"p2posttypes\" width=\"300\" height=\"87\" class=\"aligncenter size-medium wp-image-7216\" /></a></p>\n<p>The new P2 has also been reworked from the ground up so that it can be used as a parent theme and then extended with child themes. Andy Peatling says:</p>\n<blockquote><p>This will allow theme designers to create awesome new theme designs without having to duplicate all of the existing P2 features. We’ve streamlined the HTML of the theme so that it is much more flexible for creating new designs using CSS.</p></blockquote>\n<p>Although it&#8217;s not shown in the screenshots, I was told that the new P2 will contain media uploading so that images can be added to posts. This is something that was heavily requested after the first version of P2 was released. For more screenshots and to read Andy&#8217;s write up, check out <a href=\"http://en.blog.wordpress.com/2009/11/19/a-new-p2/\">this post on the WordPress.com blog</a> and keep an eye out for the release of the new P2 on the theme repository. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Nov 2009 21:56:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WordPress.tv: Daryl Koopersmith: Elastic—Your Theme’s Future WYSIWYG Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=3021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.tv/2009/11/14/daryl-koopersmith-elastic-nyc09/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1370:\"<div class=\"snap_preview\"><br /><ins>\n<div class=\"video-player\" id=\"x-video-1\">\n</div></ins>\n<br /><a href=\"http://wordpress.tv/2009/11/14/daryl-koopersmith-elastic-nyc09/\"><img width=\"160\" height=\"120\" src=\"http://cdn.videos.wordpress.com/RaOFBXtA/elastic_std.original.jpg\" /> </a>  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/3021/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/3021/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/3021/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/3021/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/3021/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/3021/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/3021/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/3021/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/3021/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/3021/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=3021&subd=wptv&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Nov 2009 03:45:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ryan Markel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: This Week in Startups\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=15103\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2009/11/this-week-in-startups/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:281:\"<p>Last week <a href=\"http://thisweekinstartups.com/2009/11/twist-26-with-matt-mullenweg/\">I was on This Week in Startups</a> with <a href=\"http://calacanis.com/\">Jason Calacanis</a> and <a href=\"http://www.joelonsoftware.com/\">Joel Spolsky</a>. Here&#8217;s the show:</p>\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Nov 2009 17:45:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Publisher Blog: WordPress and Windows Azure\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://publisherblog.automattic.com/?p=701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://publisherblog.automattic.com/2009/11/19/wordpress-and-windows-azure/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4269:\"<div class=\"snap_preview\"><br /><p>This week I had a unique opportunity to appear at Microsoft&#8217;s <a href=\"http://microsoftpdc.com/\">Professional Developer Conference</a> in Los Angeles, to demo four open source technologies &#8212; WordPress, <a href=\"http://www.apache.org/\">Apache</a>, <a href=\"http://www.mysql.com/\">MySQL</a>, <a href=\"http://php.net/index.php\">PHP</a> &#8212; running on Microsoft&#8217;s new EC2 competitor called Azure.</p>\n<p>WordPress and Windows Azure probably aren&#8217;t the first two things you&#8217;d think of together. WordPress has been free and open source software from the very beginning, Windows not so much, but we&#8217;ve always supported as many platforms as possible and for at least 4 years now you could run WP on Windows and IIS (Internet Information Services).</p>\n<p>Choice and competition are great for spurring innovation and better for users and I believe open source software is a good thing even if it&#8217;s on a proprietary platform. (Just like we have an open source <a href=\"http://iphone.wordpress.org/\">iPhone application</a>, or encourage people to use <a href=\"http://www.mozilla.com/firefox/\">Firefox</a> on Windows.)</p>\n<p>If you&#8217;re interested, check out <a href=\"http://www.microsoft.com/presspass/exec/ozzie/2009/11-17PDC.mspx\">the full transcript of the keynote from PDC</a> or watch <a href=\"http://microsoftpdc.com/Sessions/Key01\">the video of the keynote</a>.</p>\n<p>We also created this FAQ in case you had more questions about what was announced.</p>\n<p><strong>What did you announce about WordPress at Microsoft PDC 09?</strong><br />\nAs part of the introduction of the Windows Azure platform, we announced that self-hosted WordPress can be run in an Azure environment on an open source stack of Apache, MySQL, and PHP. Showing MySQL in particular at a Microsoft conference was unusual.</p>\n<p><strong>Are you moving WordPress.com to Azure?</strong><br />\nNo. <a href=\"http://www.wordpress.com\">WordPress.com</a>, which is Automattic&#8217;s hosted blogging service, is going to stay on its existing infrastructure. Martin Cron from the Cheezburger Network launched a new blog <a href=\"http://oddlyspecific.com/\">Oddly Specific</a> on Azure, which some people confused with Automattic.</p>\n<p><strong>Do you use Azure at all?</strong><br />\nYes, we&#8217;ve been testing out their blob storage as an alternative to Amazon S3 and Rackspace Cloudfiles. We don&#8217;t currently use it in production.</p>\n<p><strong>Doesn&#8217;t this conflict with your open source orientation?</strong><br />\nNo. We actually think it&#8217;s going to help the spread of open source to have the Free and open Web stack get more support and deployment through Microsoft&#8217;s cloud infrastructure, which they&#8217;re investing quite a bit in. Besides, as I like to say, once you get a taste of Freedom it&#8217;s hard to go back. <img src=\"http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/701/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/701/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/701/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/701/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/701/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/701/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/701/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/701/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/701/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/701/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=701&subd=wordpresspublishers&ref=&feed=1\" /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Nov 2009 17:26:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 11/19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7205\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://weblogtoolscollection.com/archives/2009/11/19/wordpress-theme-releases-for-1119-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2702:\"<h4><a href=\"http://www.clickonf5.org/aureola\">Aureola</a></h4>\n<p><a href=\"http://www.blogern.com/lifestyle/\"><img title=\"Aureola\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/Aureola.gif\" alt=\"Aureola\" width=\"200\" height=\"114\" /></a></p>\n<p>A free magazine style WordPress theme to show your content on a smooth layout.</p>\n<h4><a href=\"http://www.isoftwarereviews.com/brandnew-folio-free-wordpress-theme/\">BrandNew Folio</a></h4>\n<p><a href=\"http://www.isoftwarereviews.com/premium-theme-demo/?wptheme=BrandNew%20Folio%20-%20Custom%20Home%20Page\"><img title=\"BrandNew Folio\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/BrandNewFolio.png\" alt=\"BrandNew Folio\" width=\"171\" height=\"200\" /></a></p>\n<p>Two column, fixed width theme with support for gravatars, widgets and a customizable homepage.</p>\n<h4><a href=\"http://theme.anunciamex.com/\">wpClassifieds</a></h4>\n<p><a href=\"http://theme.anunciamex.com/demo/\"><img title=\"wpClassifieds\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/wpClassifieds.jpg\" alt=\"wpClassifieds\" width=\"200\" height=\"198\" /></a></p>\n<p>wpClassifieds is a free Wordpress theme that transform your wordpress blog into a classified ads site similar to Craigslist or OLX.</p>\n<h4><a href=\"http://webhostinghelpguy.inmotionhosting.com/wordpress/5-travel-inspired-wordpress-themes/\">5 Travel-Inspired WordPress Themes</a></h4>\n<p><a href=\"http://webhostinghelpguy.inmotionhosting.com/demos/?wptheme=Island%20Vacation\"><img title=\"article24-med-iv-cap\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/article24medivcap.jpg\" alt=\"article24-med-iv-cap\" width=\"200\" height=\"114\" /></a></p>\n<p>Five single column and multiple column themes inspired with some things travel.</p>\n<h4><a href=\"http://www.getacustomdesign.com/news/bold-life-free-wordpress-theme-psd-included/\">Bold Life</a></h4>\n<p><a href=\"http://www.boldlife.getacustomdesign.com/\"><img title=\"Bold Life Theme\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/BoldLifeTheme.gif\" alt=\"Bold Life Theme\" width=\"200\" height=\"112\" /></a></p>\n<p>Bold Life is 2 columns light, widget ready WordPress theme.</p>\n<h4><a href=\"http://blue-anvil.com/archives/minicard-theme-for-wordpress-a-cool-free-business-cardsocial-network-theme/\">MiniCard</a></h4>\n<p>MiniCard is a social network/business card Wordpress theme inspired by Tim Van Damme’s website. The theme lets you add links to all the social networking sites you may be a member of, and post useful information such as bio’s and contact details. It also has built in hCard support and (optionally) lets you offer a vCard for visitors to download your contact information.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Nov 2009 15:56:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Perurry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Donncha: WP Super Cache 0.9.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://ocaoimh.ie/?p=89495507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ocaoimh.ie/89495507/wp-super-cache-098/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11159:\"<p><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUv\">WP Super Cache</a> version 0.9.8 is now <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvd3Atc3VwZXItY2FjaGUv\">available</a>. WP Super Cache is a page caching plugin for WordPress that will significantly speed up your website.</p>\n<p>New in this release are 2 translations. The Spanish translation is by <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VxdWlwYWplZGVtYW5vLmluZm8v\">Omi</a> and the Italian by <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpZGliYW8ubmV0Lw==\">Gianni Diurno</a>. Please, if you use their translations, drop by their sites and leave a thank you comment! They&#8217;ve been very patient with me as I fixed gettext bugs and added new text. Both have blogged about the translations if you need to know more: <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpZGliYW8ubmV0L2luZGV4LnBocC8yMDA5LzExLzE4L3dwLXN1cGVyLWNhY2hlLWluLWl0YWxpYW5vLw==\">Gianni</a>, <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VxdWlwYWplZGVtYW5vLmluZm8vMTgvMTEvMjAwOS93cC1zdXBlci1jYWNoZS10cmFkdWNpZG8tYWwtY2FzdGVsbGFuby8=\">Omi</a>.</p>\n<p>The second major feature to go in is an &#8220;advanced&#8221; section to the debugger. This allows the plugin to check the front page every 5 minutes to make sure everything is ok. It monitors for 2 very rare problems:</p>\n<ol>\n<li> Very very occasionally, the front page becomes a gzip file that downloads. It happened here once and I examined the cache file. There was nothing wrong with it. It was perfect. I suspect Apache and mod_rewrite got confused somehow but clearing the cache fixed it. The file generated after was exactly the same size as the old one, so no chance it got &#8220;double gzipped&#8221;.</li>\n<li> In <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvc3VwcG9ydC90b3BpYy8yMzc0MTU/cmVwbGllcz02MA==\">certain rare cases</a>, where a blog has a static front page, <em>and</em> uses a permalink structure of /%category%/%postname%/, the wrong page may be cached as the front page. Even if your blog satisfies the two conditions above it may not suffer from this problem. I tried it on this blog for a few days and couldn&#8217;t reproduce it at all!</li>\n</ol>\n<p>Nevertheless, if you&#8217;re concerned edit your wp-cache-config.php and add this line:</p>\n<pre class=\"brush: php;\">$wp_super_cache_advanced_debug = 1;</pre>\n<p>Reload the admin page and you&#8217;ll see this added to the debug section:</p>\n<div align=\"center\"><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3AtY29udGVudC91cGxvYWRzLzIwMDkvMTEvYWR2YW5jZWQtZGVidWcucG5n\" rel=\"\"><img src=\"http://ocaoimh.ie/wp-content/uploads/2009/11/advanced-debug-300x182.png\" alt=\"advanced-debug\" title=\"advanced-debug\" width=\"300\" height=\"182\" class=\"size-medium wp-image-89495508\" /></a></div>\n<p>If activated, it will check your front page every 5 minutes. It&#8217;s not activated by default because these errors only happen to a small number of blogs. I&#8217;ve also noticed that WordPress seems to randomly forget to run the page checker from time to time. I debugged it and the job simply disappears from the wp-cron system! I&#8217;ve no idea why, but reloading the admin page schedules it again.<br />\nIf you&#8217;re still paranoid, set your cache expiry low so at least the cache files will be recycled quickly.</p>\n<h4>Caching, Minification and CDNs</h4>\n<p>Oh, there&#8217;s a new caching plugin on the scene. <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvdzMtdG90YWwtY2FjaGUv\">W3 Total Cache</a> works like Supercache&#8217;s half-on mode but can store to memory as well as disk (like <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvYmF0Y2FjaGUv\">Batcache</a>) but also does minification and supports CDNs. I&#8217;ve been asked a few times if I&#8217;ll support those features too but I don&#8217;t see why as other plugins already have that covered (and frankly, I don&#8217;t have time to maintain such complex features):</p>\n<ol>\n<li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvd3AtbWluaWZ5Lw==\">WP Minify</a> &#8220;integrates the Minify engine into your WordPress blog. Once enabled, this plugin will combine and compress JS and CSS files to improve page load time.&#8221; Thaya is very responsive and fixed a bug I reported quickly.</li>\n<li>There are any number of <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvc2VhcmNoLnBocD9xPUNETg==\">CDN plugins</a> for WordPress. I don&#8217;t use a CDN so I can&#8217;t recommend one but <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvb3NzZGwtY2RuLW9mZi1saW5rZXIv\">OSSDL CDN Off Linker</a> might be worth a shot. <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL21hcmsub3NzZGwuZGUvMjAwOS8wOC9yZXdyaXRpbmctdXJscy1mb3Itd29yZHByZXNzLWFuZC1jZG4v\">This post</a> on it mentions Supercache plus, a fork of this plugin.</li>\n</ol>\n<h4>Traffic Spikes and Benchmarks</h4>\n<p>I really should collect more of these. A few weeks ago Mark Pilgrim <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RpdmVpbnRvbWFyay5vcmcvYXJjaGl2ZXMvMjAwOS8xMC8xOS90aGUtcG9pbnQ=\">blogged about</a> how his book had been republished by a 3rd party and put up for sale on Amazon. His book was published under the GNU Free Documentation License so that&#8217;s perfectly legal to do, even if a little unusual as it can be downloaded from Mark&#8217;s website and is for sale by his publisher. The blog post generated a lot of interest and a few days later I received a donation from Mark, followed by a thank you email. I&#8217;m a big fan of what Mark does, so if it had been a physical cheque or a letter I&#8217;d have framed it!<br />\nA few days after that he <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL2RpdmVpbnRvbWFyay9zdGF0dXNlcy81MTEzNjk4NzUx\">tweeted the following graph</a>. Nice spike of traffic eh? His server held up fine with help from WP Super Cache.</p>\n<div align=\"center\"><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3AtY29udGVudC91cGxvYWRzLzIwMDkvMTEvZGl2ZWludG9tYXJrLm9yZy1kYXNoYm9hcmQucG5n\" rel=\"\"><img src=\"http://ocaoimh.ie/wp-content/uploads/2009/11/diveintomark.org-dashboard-300x105.png\" alt=\"diveintomark.org-dashboard\" title=\"diveintomark.org-dashboard\" width=\"300\" height=\"105\" class=\"size-medium wp-image-89495509\" /></a></div>\n<p>And finally, some benchmarks, in Russian unfortunately but the pages translates well.</p>\n<ul>\n<li> <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cuc2ppbmtzLnByby93b3JkcHJlc3MvNjgzLXdwLXN1cGVyY2FjaGUtdnMtaHlwZXJjYWNoZS12cy13My10b3RhbC1jYWNoZS12cy1tYXhzaXRlLWNhY2hlLw==\">WP Super Cache vs HyperCache vs W3 Total Cache vs MaxSite Cache</a> (<a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RyYW5zbGF0ZS5nb29nbGV1c2VyY29udGVudC5jb20vdHJhbnNsYXRlX2M/aGw9ZW4mIzAzODtpZT1VVEYtOCYjMDM4O3NsPXJ1JiMwMzg7dGw9ZW4mIzAzODt1PWh0dHA6Ly9ibG9nLnNqaW5rcy5wcm8vd29yZHByZXNzLzY4My13cC1zdXBlcmNhY2hlLXZzLWh5cGVyY2FjaGUtdnMtdzMtdG90YWwtY2FjaGUtdnMtbWF4c2l0ZS1jYWNoZS8mIzAzODtydXJsPXRyYW5zbGF0ZS5nb29nbGUuaWUmIzAzODt0d3U9MSYjMDM4O3VzZz1BTGtKcmhnQi1RcG02U0RYSDJRRzBvLWZCTGJWbE9zb0ln\">translation</a>) shows Supercache doing 106154.90 requests a second, but that&#8217;s thanks to using Nginx too.</li>\n<li> <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cuc2ppbmtzLnByby93b3JkcHJlc3MvNjg5LXdwLXN1cGVyLWNhY2hlLXZzLW1heHNpdGUtY2FjaGUtcGFydC0xLw==\">WP Super Cache vs MaxSite Cache: Part 1</a> (<a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RyYW5zbGF0ZS5nb29nbGV1c2VyY29udGVudC5jb20vdHJhbnNsYXRlX2M/aGw9ZW4mIzAzODtpZT1VVEYtOCYjMDM4O3NsPXJ1JiMwMzg7dGw9ZW4mIzAzODt1PWh0dHA6Ly9ibG9nLnNqaW5rcy5wcm8vd29yZHByZXNzLzY4OS13cC1zdXBlci1jYWNoZS12cy1tYXhzaXRlLWNhY2hlLXBhcnQtMS8mIzAzODtwcmV2PV90JiMwMzg7cnVybD10cmFuc2xhdGUuZ29vZ2xlLmllJiMwMzg7dHd1PTEmIzAzODt1c2c9QUxrSnJoZ3J1MXZZMGpYeVRxaWlRVlQtRTdMZkt5YnhXQQ==\">translation</a>) shows a tight race between Supercache and a plugin called Max Cache Lite, probably because he used Apache this time.</li>\n</ul>\n<div align=\"center\"><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3AtY29udGVudC91cGxvYWRzLzIwMDkvMTEvY2FjaGluZy1iZW5jaG1hcmtzLmdpZg==\" rel=\"\"><img src=\"http://ocaoimh.ie/wp-content/uploads/2009/11/caching-benchmarks-300x92.gif\" alt=\"caching-benchmarks\" title=\"caching-benchmarks\" width=\"300\" height=\"92\" class=\"aligncenter size-medium wp-image-89495516\" /></a></div>\n<p>Summary of changes in 0.9.8:</p>\n<ul>\n<li>Added Spanish translation by Omi.</li>\n<li>Added Italian translation by Gianni Diurno.</li>\n<li>Addded advanced debug code to check front page for category problem. Enable by setting $wp_super_cache_advanced_debug to 1 in the config file.</li>\n<li>Fixed wordpress vs wordpress_logged_in cookie mismatch in cookie checking function.</li>\n<li>Correctly check if WP_CACHE is set or not. PHP is weird.</li>\n<li>Added wp_cache_clear_cache() to clear out cache directory.</li>\n<li>Only show logged in message when debugging enabled.</li>\n<li>Added troubleshooting point 20. PHP vs Apache user.</li>\n<li>Fixed problem deleting cache file.</li>\n<li>Don&#8217;t delete cache files when moderated comments are deleted.</li>\n</ul>\n<p>PS. <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy53b3JkY2FtcGlyZWxhbmQuY29tLw==\">WordCamp Ireland</a> is on in early March next year in picturesque Kilkenny. Here&#8217;s <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5zYWJyaW5hZGVudC5jb20vMjAwOS8xMS8xOS9zaXRlLWxhdW5jaC13b3JkY2FtcC1pcmVsYW5kLw==\">Sabrina&#8217;s launch post</a>. Sign up! I&#8217;ll be going!</p>\n<p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtMDg0LXRoZS1nYXJiYWdlLWNvbGxlY3Rvci8=\" rel=\"\">WP Super Cache 0.8.4, the garbage collector</a></li><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtMDg3Lw==\" rel=\"\">WP Super Cache 0.8.7</a></li><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtZGV2ZWxvcGVyLWRvY3VtZW50YXRpb24v\" rel=\"\">WP Super Cache Developer Documentation</a></li></ul></p> <img src=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?view=1&post_id=89495507\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Nov 2009 14:20:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Weblog Tools Collection: WordPress Wins Best Open Source CMS Award for 2009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://weblogtoolscollection.com/archives/2009/11/18/wordpress-wins-best-open-source-cms-award-for-2009-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://weblogtoolscollection.com/archives/2009/11/18/wordpress-wins-best-open-source-cms-award-for-2009-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1168:\"<p>WordPress has always been one of the best open source software available for blogging and managing websites, corporate or otherwise. To better that, WordPress has been awarded the <a href=\"http://www.packtpub.com/award\" target=\"_blank\">Best Open Source CMS Award for 2009</a>.</p>\n<blockquote><p>We are pleased to announce that WordPress has won the Overall Best Open Source CMS Award in the 2009 Open Source CMS Awards. WordPress has won this Award for the first time in the past four years, earning itself a place in the Hall of Fame category for the Award next year.</p>\n</blockquote>\n<p>Three cheers to the most wonderful platform I have ever used, and will continue to use, thanks to the innovations and continued development of WordPress by the Automattic team.</p>\n<p>What do you think about this award? Feel free to let your congratulations and thoughts flow through the comments form.</p>\n<p><strong>Update:</strong> WordPress was also named the first runner-up in the Best Open Source PHP CMS Software. Read Matt Mullenweg’s Official announcement <a href=\"http://wordpress.org/development/2009/11/wordpress-wins-cms-award/\" target=\"_blank\">here</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Nov 2009 02:50:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Keith Dsouza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Weblog Tools Collection: Is Automattic Evil?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://weblogtoolscollection.com/archives/2009/11/18/is-automattic-evil/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3265:\"<p><img src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/automatticlogo-300x38.png\" alt=\"automatticlogo\" title=\"automatticlogo\" width=\"300\" height=\"38\" class=\"alignright size-medium wp-image-7208\" />Stick around the WordPress community for a period of time and you&#8217;re bound to come across a few folks who say Automattic is an evil company or Matt Mullenweg is evil in the way in which he runs WordPress.org. The more time I spend talking to Matt and with other employees of Automattic, the more I don&#8217;t understand where these thoughts and feelings of <i>evilness</i> come from. Sure, there is a decision made from time to time that a vocal group of people disagree with but you can&#8217;t make the right decision 100% of the time. Let&#8217;s take a closer look at Automattic as it relates to WordPress.</p>\n<p>When I interviewed Matt at WordCamp New York, one of the things I asked him to address is the notion that Automattic commercially benefits from those who work for free. This indeed happens but on the flip side, Automattic gives a ton back to the project and to the community. For example, I think there is a lot that can be said for the progression of WordPress thanks to the resources that Automattic has been able to provide due to their funding. It&#8217;s also worth mentioning that Automattic pays a couple of folks to work on WordPress the majority of their time such as Ryan Boren who is always slaving away committing code and Jane Wells who works on the usability front. </p>\n<p>It&#8217;s not like Automattic hoards the contributions to the project and gives nothing back. Matt said something during the interview that really stuck a chord with me and that is &#8220;<i>Automattic is just one member of the WordPress community. We are a huge contributor. Myself, Jane everyone involved tries to give as much back to the WordPress community as possible.</i>&#8221; So far, I can&#8217;t see anything that portrays the individuals or the company as evil. </p>\n<p>Throughout the history of Automattic, they have developed and released a number of WordPress plugins to the community. They have also taken some of their paid offerings such as VideoPress and released those to the public as well. The entire VideoPress framework to be exact. They don&#8217;t have to do this but they do so because Matt wants Automattic to be an excellent example of an Open Source based company. Not everything is open because hosted services do not have to abide by the GPL since there is no distribution taking place. It&#8217;s also worth noting that Automattic has a system in place now so that when they build in a cool new feature for WordPress.com such as <a href=\"http://en.blog.wordpress.com/2009/11/12/a-blog-near-you/\" target=\"_blank\">Geotagging</a> they also build a plugin to release for the WordPress.org side of things granted, the release isn&#8217;t always immediate. </p>\n<h2>Verdict:</h2>\n<p>It&#8217;s my opinion that neither Matt Mullenweg or Automattic is evil. They don&#8217;t have evil tendencies and they are not out to screw people. If that were the case, I can&#8217;t see how WordPress could become the piece of software it is today. So my question to you is, do you think either is evil and if so, why? </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Nov 2009 01:03:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Alex King: WPWeekly Episode 79 – Alex King And WPHelpCenter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://alexking.org/?p=3790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://www.wptavern.com/wpweekly-episode-79-%E2%80%93-alex-king-and-wphelpcenter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:909:\"<p>I enjoyed <a href=\"http://www.wptavern.com/wpweekly-episode-79-%e2%80%93-alex-king-and-wphelpcenter\" rel=\"external\">my podcast with Jeff last night</a> on <a href=\"http://www.wptavern.com/category/wordpress-weekly\" rel=\"external\">WordPress Weekly</a>.</p>\n<p>We discussed the <a href=\"http://wphelpcenter.com\">WordPress HelpCenter</a>, the <a href=\"http://carringtontheme.com\">Carrington CMS theme framework</a> and a little about Open Source business models.</p>\n<p>You can <a href=\"http://recordings.talkshoe.com/TC-34224/TS-293892.mp3\" rel=\"external\">download the MP3 file here</a>.\n<p><a href=\"http://alexking.org/blog/2009/11/18/wpweekly-episode-79-%e2%80%93-alex-king-and-wphelpcenter\">#</a> | <a href=\"http://www.wptavern.com/wpweekly-episode-79-%E2%80%93-alex-king-and-wphelpcenter\">Visit Site &raquo;</a></p>\n<img src=\"http://alexking.org/wp/?ak_action=api_record_view&id=3790&type=feed\" alt=\"\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2009 18:16:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Donncha: WordPress MU 2.8.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://ocaoimh.ie/?p=89495504\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ocaoimh.ie/89495504/wordpress-mu-286/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1305:\"<p>WordPress MU 2.8.6 has just been released and may be <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL211LndvcmRwcmVzcy5vcmcvZG93bmxvYWQv\">downloaded</a> immediately.</p>\n<p>This is a security release with the same <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZGV2ZWxvcG1lbnQvMjAwOS8xMS93b3JkcHJlc3MtMi04LTYtc2VjdXJpdHktcmVsZWFzZS8=\">fixes as WordPress 2.8.6</a> plus quite a few MU specific <a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RyYWMubXUud29yZHByZXNzLm9yZy90aW1lbGluZQ==\">bug fixes</a> too.</p>\n<p>Please upgrade as soon as you can.</p>\n<p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd29yZHByZXNzLW11LTI3Lw==\" rel=\"\">WordPress MU 2.7</a></li><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd29yZHByZXNzLW11LTI2MS8=\" rel=\"\">WordPress MU 2.6.1</a></li><li><a href=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd29yZHByZXNzLW11LTItOC0xLw==\" rel=\"\">WordPress MU 2.8.1</a></li></ul></p> <img src=\"http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?view=1&post_id=89495504\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2009 15:20:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Weblog Tools Collection: How Do You Do That?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7131\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://weblogtoolscollection.com/archives/2009/11/18/how-do-you-do-that/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5847:\"<p>Ever wanted to do something in WordPress but just wasn&#8217;t sure how? In my experience this happens quite often, mostly with people new to WordPress. But, even the experts run into trouble sometimes. Today I thought I&#8217;d start a series of posts which will aim to explain how to do certain things in WordPress. Hopefully this will cover anything from quick tips and simple little functions, all the way up to more complex custom code and the like. So, stick around and you just might learn something. <img src=\"http://weblogtoolscollection.com/wp-includes/images/smilies/icon_wink.gif\" alt=\";)\" class=\"wp-smiley\" /> </p>\n<p>I think I&#8217;ll kick off the series with a couple simple ones&#8230;</p>\n<ul>\n<li>\n<h5>Why isn&#8217;t this plugin working with my theme?</h5>\n<p>This is probably one of the most common issues I read about regarding WordPress. Sometimes even more experienced WP<em>ers</em> can get this one wrong. Now, I&#8217;m not saying this is the solution to <strong>all</strong> problems between plugins and themes. Its just that this little bugger is often the culprit.</p>\n<p>Try ensuring that your theme has <code>&lt;?php <a href=\"http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks\">wp_head</a>() ?&gt;</code> somewhere inside the <code>&lt;head&gt;</code> section of the document. Also, for that matter, make sure it has <code>&lt;?php <a href=\"http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks\">wp_footer</a>() ?&gt;</code> somewhere in the foot of the document; Before the <code>&lt;/body&gt;</code> tag.</p>\n<p>If your theme lacks these function calls many plugins that manipulate your theme will not be able to hook into the required areas. This can cause many headaches.</p>\n<p>If you have no idea what I&#8217;m talking about, you may be better off having a coder buddy take a look at the theme for you. Or you can also contact the theme author, if the theme you use was created by someone else.</li>\n<li>\n<h5>How come my URLs are yucky?</h5>\n<p>Or, &#8220;<em>How come my URLs look like <code>www.mysite.com?p=123</code> instead of <code>www&#8203;.mysite.&#8203;com&#8203;/my-&#8203;sample-&#8203;post/</code>?</em>&#8221;</p>\n<p>This one is right up there with the previous question. I see it all the time. However, more and more web hosts these days support the &#8220;<em>nice</em>&#8221; URLs by default without requiring any extra effort. So, its just a matter of going into the WordPress control panel, changing your Permalink Settings and then saving. Unfortunately, we&#8217;re not all this lucky&#8230;</p>\n<p>The first thing to try would be to contact your web host support and make sure they have whats known as <code>mod_rewrite</code> <em>(or similar functionality)</em> enabled on your account. If such functionality is not available on your web host, and you really need this feature, you may need to upgrade to a new host that does support it.</p>\n<p>If your host does support it and has it enabled on your account, but it still doesn&#8217;t work, you can check that WordPress is able to write to the <code>.htaccess</code> file <em>(which is where all the &#8220;nice&#8221; URL magic happens)</em>.</p>\n<p>For WordPress, on Unix-based systems, the htaccess file should be &#8220;<em><code><a href=\"http://codex.wordpress.org/Changing_File_Permissions#About_Chmod\">CHMOD</a></code>ed</em>&#8221; to at least <code>666</code>. On Windows-based systems the procedure is a bit different. It can be different depending on your particular setup so I won&#8217;t go into that.</p>\n<p>Basically, as was the case with the previous question, you may need to seek help to figure this out. If you don&#8217;t have a code buddy, get one! They are really great to have around. Just make sure you buy them a nice gift for their trouble. <img src=\"http://weblogtoolscollection.com/wp-includes/images/smilies/icon_biggrin.gif\" alt=\":D\" class=\"wp-smiley\" /> </li>\n<li>\n<h5>Can I have a link to login to WordPress somewhere in my theme?</h5>\n<p>Sure! It&#8217;s actually easier than you might think&#8230;</p>\n<p>Some themes have a link for that already. But, there are also some that seem to lack this obvious and simple feature. You can easily add this to any theme yourself. No need for any programming knowledge. Simply add <code>&lt;?php <a href=\"http://codex.wordpress.org/Function_Reference/wp_loginout\">wp_loginout</a>() ?&gt;</code> somewhere in your theme and you&#8217;re done. Easy right?</p>\n<p>Another nice function along the same lines is <code>&lt;?php <a href=\"http://codex.wordpress.org/Function_Reference/wp_register\">wp_register</a>() ?&gt;</code>, which will show a link to your registration page <em>(if your settings allow users to register)</em>, or a link to the WordPress control panel if you are already logged in.</p>\n<p>Do note though that by default the link will be output wrapped inside <code>&lt;li&gt;</code> tags. This is so you can include the link in a list of other links, like a &#8220;<em>meta</em>&#8221; section. If, however, that is not how you want it to be output you can use the function like <code>&lt;?php wp_register(\'\', \'\') ?&gt;</code>. That will simply output the link and nothing else.</p>\n<p>An example of how to customize that is something like <code>&lt;?php wp_register(\'&lt;p&gt;\', \'&lt;/p&gt;\') ?&gt;</code>, which will output the link wrapped in its own paragraph. Just change the opening and closing tags in the function to make it output how you want. Dead simple!</li>\n</ul>\n<p>That&#8217;s all for now&#8230; I hope it helps!</p>\n<p>Do you have a question about WordPress? Want to see it answered here on Weblog Tools Collection? If so, please <a href=\"http://weblogtoolscollection.com/archives/2007/02/06/contact-me/\">send us an E-Mail</a> or drop a comment here. Your question just might be featured in the series!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2009 12:55:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"James Dimick\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Dev Blog: WordPress Wins CMS Award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=978\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/development/2009/11/wordpress-wins-cms-award/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1515:\"<p>I was very excited last week to learn that WordPress has been awarded the Overall Best Open Source CMS Award in the <a href=\"http://www.packtpub.com/award\">2009 Open Source CMS Awards</a>. This is a landmark for us, as it is the first time we&#8217;ve won this award, and it marks a shift in the public perception of WordPress, from blog software to full-featured CMS. No small contest, the Open Source CMS Awards received over 12,000 nominations and more than 23,000 votes across five categories. </p>\n<p>As Hiro Nakamura said when he first bent time and space to land in Times Square: &#8220;Yatta!&#8221;</p>\n<p>In addition to winning in the Overall Best Open Source CMS category, WordPress was named first runner-up in the Best Open Source PHP CMS category. This is significant because we weren&#8217;t even in the top 5 last year, and now we&#8217;re #2, ahead of Joomla! As is stated on the Award site, &#8220;WordPress made its way into the top five for the first time. The fact that it was outranked by Drupal by a very slight margin indicates how popular it has become with users as well as developers over the past year.&#8221;</p>\n<p>Every day thousands of new people are embracing WordPress to power not just their blogs but entire sites and communities without compromising on usability or scalability (as would be the case with a legacy CMS). Every member of the WordPress community, from core developer to beginning user, should be proud to be part of this momentum: congratulations to us all!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2009 03:48:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 11/17\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7127\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://weblogtoolscollection.com/archives/2009/11/17/wordpress-plugin-releases-for-1117/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2264:\"<h3>New Plugins</h3>\n<p><a href=\"http://www.slimmity.com/2009/11/wp-plugin-url-redirector/\">URL Redirector</a></p>\n<p>URL Redirector allows you to create shorter URL&#8217;s and keeps track of how many times a link has been clicked. It&#8217;s useful for managing downloads, keeping track of outbound links and for masking URL&#8217;s.</p>\n<p><a href=\"http://scribu.net/wordpress/query-multiple-taxonomies\">Query Multiple Taxonomies</a></p>\n<p>A WordPress plugin that allows you to filter posts through multiple custom taxonomies</p>\n<p><a href=\"http://www.checkfront.com/extend/wordpress\">Checkfront Online Booking Plugin</a></p>\n<p>Checkfront is an online availability, reservation and booking engine. This plugin connects your Wordpress site to your Checkfront, and provides a powerful embedded booking interface within your site.</p>\n<p>This plugin requires a Checkfront account (available for free).</p>\n<h3>Updated Plugins</h3>\n<p><a href=\"http://crunchmeme.com/wp-archive-sitemap-generator-plugin/\">WP Archive-Sitemap Generator</a></p>\n<p>WP Archive-Sitemap Generator plugin generates simple Archives/Sitemap based on your sites/blogs posts and pages. This is not another XML sitemap plugin, but rather a nice sitemap generator.</p>\n<p><a href=\"http://crunchmeme.com/arpitshah-twitter-goodies-plugins/\">Twitter Goodies</a></p>\n<p>Twitter Goodies plugin will show your tweets under Sidebar Area (Widget), Post and/or Pages. REFRESH AUTOMATICALLY and you have 5 different Color Option.</p>\n<p><a href=\"http://markbeljaars.com/plugins/tocc-plugin/\">Table of Contents Creator</a></p>\n<p>Table of Contents Creator automatically generates a complete table of contents for your site, including pages, posts and forum comments. The table of contents is generated each time the page is displayed therefore ensuring it is always up to date.</p>\n<p><a href=\"http://scribu.net/wordpress/merge-tags\">Merge Tags</a></p>\n<p>A simple WordPress plugin that allows you to combine tags easily.</p>\n<p><a href=\"http://soledadpenades.com/projects/wordpress/delicatessen/\">Delicatessen</a></p>\n<p>A plug-in for finding out who has bookmarked your posts and pages in delicious.com, as well as the tags they used and the notes they wrote about your pages (if there are notes!).</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Nov 2009 20:41:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Perurry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Weblog Tools Collection: Download WordPress 2.9 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://weblogtoolscollection.com/archives/2009/11/17/download-wordpress-2-9-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://weblogtoolscollection.com/archives/2009/11/17/download-wordpress-2-9-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:506:\"<p>WordPress 2.9 Beta 1 is now available for downloads. If you are looking forward to test out the new features in WordPress 2.9, head to the <a href=\"http://wpdevel.wordpress.com/2009/11/16/wordpress-2-9-beta-1-is-available-get-i/\" target=\"_blank\">development update blog</a> to find links to download and try out WordPress 2.9 beta 1.</p>\n<p>WordPress 2.9 is still in beta, you can use it to test it and report bugs back to WordPress development team. However, do not use it on a production blog yet.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Nov 2009 20:00:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Keith Dsouza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Weblog Tools Collection: How to Create an Author Info Section in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7119\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://weblogtoolscollection.com/archives/2009/11/17/how-to-create-an-author-info-section-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1064:\"<div id=\"attachment_7121\" class=\"wp-caption alignleft\"><a href=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/1.jpg\" rel=\"thumbnail\"><img class=\"size-thumbnail wp-image-7121\" title=\"Author Info\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/1-150x150.jpg\" alt=\"Author Info\" width=\"105\" height=\"105\" /></a><p class=\"wp-caption-text\">Author Info Section </p></div>\n<p><a href=\"http://line25.com/tutorials/how-to-create-an-author-info-section-in-wordpress\">How to Create an Author Info Section in WordPress</a>: Chris has put together a nice tutorial on how to create an author info section on your WordPress blog. I am sure you have seen these in the past on multi-author blogs. They normally tend to be displayed at thebottom of single posts and Chris provides details, code and styling for various features that can be added to this section. I also think this would make for a very nice and simple plugin. So if you would like to set one of these up for your own blog and increase visitor stickiness, head over to the tutorial.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Nov 2009 16:43:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mark Ghosh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Dev Blog: Core Contributors at WordCamp NYC\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/development/?p=971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/development/2009/11/core-wordcamp-nyc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1397:\"<p>WordCamp NYC was last weekend, and it was crazy awesome to have so many WordPress users and developers together in one place (final numbers to come, but looks like over 700). One of my favorite moments was right at the end, when someone suggested getting a picture of the core contributors (I&#8217;d asked them all to stand so people could applaud them when we were doing the closing remarks). Some of them were camera shy and kept out of the happysnap, but here&#8217;s a handful of the people who make WordPress what it is.</p>\n<p><a href=\"http://jane.wordpress.com/files/2009/11/core-contributors.jpg\"><img title=\"Core Contributors at WordCamp NYC\" src=\"http://jane.wordpress.com/files/2009/11/core-contributors.jpg\" alt=\"Core Contributors at WordCamp NYC\" width=\"649\" height=\"295\" /></a><br />\nFrom left: <a href=\"http://sivel.net/\">Matt Martz</a> (sivel), <a href=\"http://simianuprising.com/ \">Jeremy Clarke</a>, <a href=\"http://bugssite.org/\">Shane Froebel</a> (^BuGs^), <a href=\"http://jane.wordpress.com\">Jane Wells</a>, <a href=\"http://ma.tt\">Matt Mullenweg</a>, <a href=\"http://markjaquith.com/\">Mark Jaquith</a>, <a href=\"http://dentedreality.com.au\">Beau Lebens</a>, <a href=\"http://apeatling.wordpress.com/\">Andy Peatling</a>, <a href=\"http://johnjamesjacoby.com/\">John James Jacoby</a> (jjj).<br />\n<em>Photo by <a href=\"http://www.nothingcliche.com/\">Chris Cochran</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Nov 2009 13:14:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Weblog Tools Collection: WordPress 2.9’s post image feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://weblogtoolscollection.com/?p=7113\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://weblogtoolscollection.com/archives/2009/11/16/wordpress-2-9%e2%80%99s-post-image-feature/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:885:\"<p><a href=\"http://justintadlock.com/archives/2009/11/16/everything-you-need-to-know-about-wordpress-2-9s-post-image-feature\">Everything you need to know about WordPress 2.9’s post image feature</a>:  Justin gives everyone an in depth look into the post thumbnail or image thumbnail features built into WordPress 2.9 <a href=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/post_image.PNG\" rel=\"thumbnail\"><img class=\"size-thumbnail wp-image-7115 alignleft\" title=\"post_image\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2009/11/post_image-150x150.PNG\" alt=\"post_image\" width=\"84\" height=\"84\" /></a>Jeff already makes liberal use of post images in all his posts. Also included, for the benefit of theme authors, are detailed instructions on how to add post image features to your WordPress theme and create various feature sets around this core concept.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Nov 2009 20:29:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mark Ghosh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress.tv: This (Past) Week on WordPress.tv: Nov 8—Nov 14\";s:7:\"attribs\";