-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold_data.py
23 lines (16 loc) · 492 KB
/
old_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf8 -*-
from __future__ import unicode_literals
# id, name, topcat, nomdetails, displayorder
awards = [(1, 'Best Pokémon Chaptered Fic', 1, 1, 1), (2, 'Best Pokémon One-Shot', 1, 1, 2), (3, 'Best Non-Pokémon Chaptered Fic', 1, 1, 2), (4, 'Best Plot', 2, 1, 1), (5, 'Most Original Overall', 2, 1, 1), (6, 'Best Writing Style', 2, 1, 1), (7, 'Best Setting', 2, 1, 2), (8, 'Best Character Development', 2, 1, 3), (9, 'Best Characterization in a Short Story', 2, 1, 4), (10, 'Best Original Species', 2, 2, 7), (11, 'Most Original Single Concept', 2, 2, 2), (12, 'Funniest Fic', 2, 1, 2), (13, 'Most Frightening Fic', 2, 1, 2), (14, 'Most Heartbreaking Fic', 2, 1, 9), (15, 'Most Heartwarming Fic', 2, 1, 2), (16, 'Most Suspenseful Fic', 2, 1, 8), (17, 'Best Trainer Fic', 3, 1, 1), (18, 'Best Pokémon-Centric', 3, 1, 2), (19, 'Best Canon Character-Centric', 3, 1, 2), (20, 'Best Human Main Character', 4, 2, 1), (21, 'Best Non-Human Main Character', 4, 2, 1), (22, 'Best Human Supporting Character', 4, 2, 1), (23, 'Best Non-Human Supporting Character', 4, 2, 1), (24, 'Best Human Antagonist', 4, 2, 1), (26, 'Funniest Character', 4, 2, 3), (27, 'Funniest Scene', 5, 2, 1), (28, 'Most Frightening Scene', 5, 2, 1), (29, 'Most Heartbreaking Scene', 5, 2, 1), (30, 'Most Heartwarming Scene', 5, 2, 1), (31, 'Most Suspenseful Scene', 5, 2, 1), (32, 'Best Plot Twist', 5, 2, 2), (33, 'Most Memorable Quote', 5, 2, 2), (34, 'Best Established Writer', 6, 0, 1), (35, 'Best New Writer', 6, 0, 1), (36, 'Most Dedicated Writer', 6, 0, 1), (37, 'Most Improved Writer', 6, 0, 1), (38, 'Most Helpful Reviewer', 7, 3, 1), (39, 'Most Dedicated Reviewer', 7, 3, 1), (40, 'Best Non-Pokémon One-Shot', 1, 1, 2), (41, 'Best Expansion of Canon', 2, 1, 2), (42, 'Best Minor Character', 4, 2, 2), (43, 'Best Non-Human Antagonist', 4, 2, 1), (44, 'Best Action Scene', 5, 2, 1), (45, 'Best Cliffhanger', 5, 2, 1), (46, 'Best Horror Fic', 3, 1, 1), (47, 'Best Comedy Fic', 3, 1, 1), (48, 'Best Description', 2, 1, 1), (49, 'Best Romantic Relationship', 2, 2, 5), (50, 'Best Non-Romantic Relationship/Interaction', 2, 2, 6), (51, 'Best Fantasy/Sci-Fi Fic', 3, 1, 1), (52, 'Best Pokémon Mystery Dungeon Fic', 3, 1, 1), (53, 'Best New Pokémon Chaptered Fic', 1, 1, 1)]
# id, year, active
year_awards = [(1, 2008, 1), (2, 2008, 1), (3, 2008, 1), (4, 2008, 1), (5, 2008, 1), (6, 2008, 1), (7, 2008, 1), (8, 2008, 1), (9, 2008, 1), (10, 2008, 1), (11, 2008, 1), (12, 2008, 1), (13, 2008, 1), (14, 2008, 1), (15, 2008, 1), (16, 2008, 1), (17, 2008, 1), (18, 2008, 1), (19, 2008, 1), (20, 2008, 1), (21, 2008, 1), (22, 2008, 1), (23, 2008, 1), (24, 2008, 1), (26, 2008, 1), (27, 2008, 1), (28, 2008, 1), (29, 2008, 1), (30, 2008, 1), (31, 2008, 1), (32, 2008, 1), (33, 2008, 1), (34, 2008, 1), (35, 2008, 1), (36, 2008, 1), (37, 2008, 1), (38, 2008, 1), (39, 2008, 1), (1, 2009, 1), (2, 2009, 1), (3, 2009, 1), (4, 2009, 1), (5, 2009, 1), (6, 2009, 1), (7, 2009, 1), (8, 2009, 1), (9, 2009, 1), (10, 2009, 1), (12, 2009, 1), (13, 2009, 1), (14, 2009, 1), (15, 2009, 1), (16, 2009, 1), (17, 2009, 1), (18, 2009, 1), (19, 2009, 1), (20, 2009, 1), (21, 2009, 1), (22, 2009, 1), (23, 2009, 1), (24, 2009, 1), (26, 2009, 1), (27, 2009, 1), (28, 2009, 1), (29, 2009, 1), (30, 2009, 1), (31, 2009, 1), (32, 2009, 1), (33, 2009, 1), (34, 2009, 1), (35, 2009, 1), (36, 2009, 1), (37, 2009, 1), (38, 2009, 1), (39, 2009, 1), (40, 2009, 1), (41, 2009, 1), (42, 2009, 1), (43, 2009, 1), (44, 2009, 1), (45, 2009, 1), (1, 2010, 1), (2, 2010, 1), (3, 2010, 1), (4, 2010, 1), (5, 2010, 1), (6, 2010, 1), (7, 2010, 1), (8, 2010, 1), (9, 2010, 1), (10, 2010, 1), (16, 2010, 1), (17, 2010, 1), (18, 2010, 1), (19, 2010, 1), (20, 2010, 1), (21, 2010, 1), (22, 2010, 1), (23, 2010, 1), (24, 2010, 1), (26, 2010, 1), (27, 2010, 1), (28, 2010, 1), (29, 2010, 1), (30, 2010, 1), (33, 2010, 1), (34, 2010, 1), (35, 2010, 1), (36, 2010, 1), (37, 2010, 1), (38, 2010, 1), (39, 2010, 1), (40, 2010, 1), (41, 2010, 1), (42, 2010, 1), (43, 2010, 1), (44, 2010, 1), (45, 2010, 1), (46, 2010, 1), (47, 2010, 1), (1, 2011, 1), (2, 2011, 1), (3, 2011, 1), (4, 2011, 1), (5, 2011, 1), (6, 2011, 1), (7, 2011, 1), (8, 2011, 1), (9, 2011, 1), (10, 2011, 1), (11, 2011, 0), (12, 2011, 0), (13, 2011, 0), (14, 2011, 1), (15, 2011, 0), (16, 2011, 1), (17, 2011, 1), (18, 2011, 1), (19, 2011, 1), (20, 2011, 1), (21, 2011, 1), (22, 2011, 1), (23, 2011, 1), (24, 2011, 1), (26, 2011, 1), (27, 2011, 1), (28, 2011, 1), (29, 2011, 1), (30, 2011, 1), (31, 2011, 0), (32, 2011, 0), (33, 2011, 1), (34, 2011, 1), (35, 2011, 1), (36, 2011, 1), (37, 2011, 1), (38, 2011, 1), (39, 2011, 1), (40, 2011, 1), (41, 2011, 1), (42, 2011, 1), (43, 2011, 1), (44, 2011, 1), (45, 2011, 1), (46, 2011, 1), (47, 2011, 1), (48, 2011, 1), (49, 2011, 1), (50, 2011, 1), (51, 2011, 1), (1, 2012, 1), (2, 2012, 1), (3, 2012, 1), (4, 2012, 1), (5, 2012, 1), (6, 2012, 1), (7, 2012, 1), (8, 2012, 1), (9, 2012, 1), (10, 2012, 1), (11, 2012, 0), (12, 2012, 0), (13, 2012, 0), (14, 2012, 1), (15, 2012, 0), (16, 2012, 1), (17, 2012, 1), (18, 2012, 1), (19, 2012, 1), (20, 2012, 1), (21, 2012, 1), (22, 2012, 1), (23, 2012, 1), (24, 2012, 1), (26, 2012, 1), (27, 2012, 1), (28, 2012, 1), (29, 2012, 1), (30, 2012, 1), (31, 2012, 0), (32, 2012, 0), (33, 2012, 1), (34, 2012, 1), (35, 2012, 1), (36, 2012, 1), (37, 2012, 1), (38, 2012, 1), (39, 2012, 1), (40, 2012, 1), (41, 2012, 1), (42, 2012, 1), (43, 2012, 1), (44, 2012, 1), (45, 2012, 1), (46, 2012, 1), (47, 2012, 1), (48, 2012, 1), (49, 2012, 1), (50, 2012, 1), (51, 2012, 1), (52, 2012, 1), (1, 2013, 1), (2, 2013, 1), (3, 2013, 1), (4, 2013, 1), (5, 2013, 1), (6, 2013, 1), (7, 2013, 1), (8, 2013, 1), (9, 2013, 1), (10, 2013, 1), (11, 2013, 0), (12, 2013, 0), (13, 2013, 0), (14, 2013, 1), (15, 2013, 0), (16, 2013, 1), (17, 2013, 1), (18, 2013, 1), (19, 2013, 1), (20, 2013, 1), (21, 2013, 1), (22, 2013, 1), (23, 2013, 1), (24, 2013, 1), (26, 2013, 1), (27, 2013, 1), (28, 2013, 1), (29, 2013, 1), (30, 2013, 1), (31, 2013, 0), (32, 2013, 0), (33, 2013, 1), (34, 2013, 1), (35, 2013, 1), (36, 2013, 1), (37, 2013, 1), (38, 2013, 1), (39, 2013, 1), (40, 2013, 1), (41, 2013, 1), (42, 2013, 1), (43, 2013, 1), (44, 2013, 1), (45, 2013, 1), (46, 2013, 1), (47, 2013, 1), (48, 2013, 1), (49, 2013, 1), (50, 2013, 1), (51, 2013, 1), (52, 2013, 1), (53, 2013, 1)]
# id, title, threadid, postid, author
fics = [(1, 'The Quest for the Legends', 10783, None, 'Dragonfree'), (2, 'Hoenn League: A Brendan and May Adventure', 18056, None, 'Breezy'), (3, 'World Saviors', 90567, None, 'whit19'), (4, 'Caught in the Moment', 98781, None, 'Silawen'), (5, 'The Corei Quest', 111162, None, 'Air Dragon'), (6, 'Obsession', 126628, None, 'Blackjack Gabbiani'), (7, 'Lurking in the Shadows: Lisa\'s Ultimate Challenge', 157755, None, 'DarkPersian479'), (8, 'Midian: City of the Damned', 158530, None, 'Knightblazer'), (9, 'Starbolts Chronicles', 171283, None, 'Ledian_X'), (10, 'Pokémon XD^3: The Waves of Truth', 185032, None, 'The Great Butler'), (11, 'Pokémon Revolution: Advent Phoenix', 207042, None, 'EonMaster One'), (12, 'The Sevii Islands Saga', 216749, None, 'Manaphyman'), (13, 'Morphic', 228940, None, 'Dragonfree'), (14, 'Deeds of Darkness', 234989, None, 'Haruka of Hoenn'), (15, 'The Retelling of Pokémon Colosseum', 246389, None, 'bobandbill'), (16, 'Pokémon Crusade', 263312, None, 'Pkmn Breeder Jack'), (17, 'Taxonomy of the Heart', 266048, None, 'Maze'), (18, 'Never in the Wrong Time or Wrong Place', 268560, None, 'Griff4815'), (19, 'Lost Evolution', 273148, None, 'elyvorg'), (20, 'Nothing, Everything', 276744, None, 'Bay'), (21, 'Aftershock', 281578, None, 'Luphinid Silnaek'), (22, 'The Saga of Team Supernova', 282557, None, 'FocusPresenceEndurance'), (23, 'At the Beginning', 284325, None, 'DarkPersian479'), (24, 'My Sinnoh Fan-Fic', 285037, None, 'palkia1'), (25, 'Forever Young', 288788, None, 'Bay'), (26, 'Pokémon Revelations: Omnipotence', 289019, None, 'xXSaberXx'), (27, 'Paws for Alarm', 289201, None, 'Pink Parka Girl'), (28, 'The Darkness in Her Dreams', 289964, None, 'Klaus'), (29, 'Sayonara', 290032, None, 'katiekitten'), (30, 'The Fall of a Leader', 290189, None, 'Dragonfree'), (31, 'Shattered Pieces', 292633, None, 'Divinity_123'), (32, 'Visions of Fate', 296380, None, 'Gardevoir Girl'), (33, 'Blazing Dreams: The Eternal Night', 300391, None, 'duncan'), (34, 'Fallen: Third Angel', 302577, None, 'Glitch'), (35, 'Blazing Frost', 307837, None, 'darkdragontamer'), (36, 'Divine Interventions', 310661, None, 'Glajummy'), (37, 'Fire Eye', 311780, None, 'Synthetic'), (38, 'Penultimate', 316322, None, 'Chozo'), (39, 'Stars', 319986, None, 'Dramatic Melody'), (40, 'Oaken Falls', 320572, None, 'Cheshire Cat'), (41, 'Drop', 321166, None, 'Blackjack Gabbiani'), (42, 'My Name is Fuega', 321934, None, 'Aqua059'), (43, 'Reality Trainer', 322375, None, 'Zephyr Flare'), (44, 'Pokémon Infinity', 322615, None, 'poke poke'), (45, 'Trinity', 323222, None, 'Shrike Flamestar'), (46, 'Northern Lights', 327992, None, 'joshlol'), (47, 'All the Small Things', 329581, None, 'Katiekitten'), (48, 'Oblivion', 332187, None, 'katiekitten'), (49, 'Maggots of Society', 335956, None, 'Burnt Flower'), (50, 'Pokédex One-Shots', 337927, None, 'Ysavvryl'), (51, 'Pokédex One-Shots (Froslass)', 337927, None, 'Ysavvryl'), (52, 'Pokédex One-Shots (Shuppet)', 337927, None, 'Ysavvryl'), (53, 'Pokédex One-Shots: Chandelure and Vanilluxe', 337927, 13876509, 'Ysavvryl'), (54, 'Pokédex One-Shots: Houndoom', 337927, None, 'Ysavvryl'), (55, 'Pokédex One-Shots: Hypno', 337927, 13675460, 'Ysavvryl'), (56, 'The Hounds of Goldenrod', 340037, None, 'Bay'), (57, 'Gym Rat', 341920, None, 'Smunkie'), (58, 'The Good Fight', 342072, None, 'purple_drake'), (59, 'Maternal Instinct', 342414, None, 'elyvorg'), (60, 'Welcome to the Internet', 343348, None, 'Burnt Flower'), (61, 'Battle of Wills', 345957, None, 'Psychic'), (62, 'Dance of the Lights', 350722, None, 'Mouse Tourmaline'), (63, 'BR34kin’tha4thw@ll2', 350728, None, 'Divinity_123'), (64, 'Max\'s Hoenn Journey', 351425, None, 'harryheart'), (65, 'Sick of Fried Rice and Fortune Cookies', 351449, None, 'Musapion'), (66, 'The Tower of Scyclical Times', 351552, None, 'Yonowaru in Chaos'), (67, 'Dawn of a New Legacy', 354900, None, 'Kiyohime and Mr-Alice'), (68, 'Business Lunch', 355618, None, 'Blackjack Gabbiani'), (69, 'The Incredibly Silly Adventure of Trevor', 359255, None, 'Hush'), (70, 'Just Another Journey/The Dreamscope Chronicles', 360174, None, 'JammyU'), (71, 'The Dreamscope Chronicles', 360174, None, 'JammyU'), (72, 'Pokémon Academy: Dedication Through Light and Darkness', 360248, None, 'Shadow Lucario'), (73, 'Travels of the Trifecta!', 364756, None, 'Shinneth'), (74, 'The Sapphire Story', 370107, None, 'Buraddo_Aipom'), (75, 'The Light in the Darkness', 371313, None, 'PokemonHero'), (76, 'I Understand', 374537, None, 'Synthetic'), (77, 'Pokémon Ranger and the Gardener of Gratitude', 374968, None, 'The Great Butler'), (78, 'Perish: Fire', 375889, None, 'Dramatic Melody'), (79, 'Perish: The One-Shots: Normal', 375889, 12496284, 'Dramatic Melody'), (80, 'Black Pathogenesis', 376714, None, 'Koridojo Blaziken'), (81, 'Three: H/Rt-314', 382076, None, 'Synthetic'), (82, 'Stitches', 382248, None, 'Breezy'), (83, 'Winds of the Past', 382844, None, 'palkia1'), (84, 'Angel of Mercy', 387289, None, 'Diddy'), (85, 'Above', 390056, None, 'Yonowaru in Chaos'), (86, 'Firefly\'s Folly', 392920, None, 'Haunter'), (87, 'A Step to Redemption', 393317, None, 'daveshan'), (88, 'j_m_lee', 397247, None, 'Blivsey'), (89, 'How to Lose Everything and Gain Nothing', 398721, None, 'DarkScyther1010'), (90, 'One Day', 399479, None, 'Breezy'), (91, 'Chasing Railroad Tracks', 405015, None, 'lilbluecorsola'), (92, 'Dimensions of Darkness Book 2: The Explorers of the Core', 407050, None, 'GalladeRocks'), (93, 'Shadow and Light', 407965, None, 'chosen_one386'), (94, 'Sixth', 408963, None, 'solovino'), (95, 'The Adventure of Adventureness', 410132, None, 'Missingno. Master'), (96, 'The Awesome of Awesomeness', 410132, 11568681, 'Missingno. Master'), (97, 'The Epic of Epicness', 410132, 13572533, 'Missingno. Master'), (98, 'The Random of Randomness', 410132, 12410474, 'Missingno. Master'), (99, 'Cheater', 411715, None, 'Mrs. Lovett'), (100, 'Foresight', 414488, None, 'Maze'), (101, 'The Fire', 414699, None, 'Torchibusken'), (102, 'A Rose by Any Other Name', 416099, None, 'Diddy'), (103, 'The Rookie\'s Handbook to Conspiracy Theory', 420378, None, 'purple_drake'), (104, 'Not', 421538, None, 'Seijiro Mafuné'), (105, 'Delta Species', 422317, None, 'Giratina!'), (106, 'Deeds of Darkness', 422635, None, 'Mrs. Lovett'), (107, 'The Limits of Kindness', 424901, None, 'Chozo'), (108, 'A Broken Trinity', 424938, None, 'Koridojo Blaziken'), (109, 'Lull', 425512, None, 'Breezy'), (110, 'Anima Ex Machina', 427130, None, 'JX Valentine'), (111, 'What I\'ve Lost', 427394, None, 'Umbreon Ruler'), (112, 'Clipping', 429097, None, 'Act'), (113, 'Digimon Guardians', 429138, None, 'Hotshot'), (114, 'PMD: Loopholes', 429252, None, 'Ysavvryl'), (115, 'The Ripple Effect', 430827, None, 'Zadros'), (116, 'Curse', 432183, None, 'Dragonfree'), (117, 'Heart of the Sea', 432241, None, 'Bay'), (118, 'Power', 432349, None, 'LampShade'), (119, 'Shattered Phoenix', 432919, None, 'Chickorita'), (120, 'A Haunting at the Old Chateau', 434502, None, 'Shrike Flamestar'), (121, 'Gratitude', 463361, None, 'pepperedfox'), (122, 'The Gun Line', 435368, None, 'Frigated'), (123, 'Pokémon: Battle of Battles', 436106, None, 'ESPNfanatic35'), (124, 'No Leaf Clover', 438972, None, 'PokemonHero'), (125, 'Beasts Like Us', 439427, None, 'Giratina!'), (126, 'Chasing Clouds', 439438, None, 'Umbreon Ruler'), (127, 'The Chasing Flames', 441824, None, 'Sinnohdragon'), (128, 'Adaptability', 442505, None, 'Hotshot'), (129, 'Never Resting', 443808, None, 'It is Called Metasaki'), (130, 'Nightmare', 444069, None, 'purple_drake'), (131, 'Destiny\'s Bond', 447060, None, 'Clare'), (132, 'Metronome', 449470, None, 'RainbowMunchies'), (133, 'Angels and Demons', 449666, None, 'chosen_one386'), (134, 'Pokémon Adventure - Kokubei Chronicles', 450472, None, 'xmikeyxlikesitx'), (135, 'The Path of Thorns', 452068, None, 'Elemental Charizam'), (136, 'Similar Opposites', 452519, None, 'Draco Malfoy'), (137, 'Monster', 453451, None, 'Saffire Persian'), (138, 'My Life as a Cave Guardian', 454539, None, 'Mrs. Lovett'), (139, 'Valiant Hearts', 455559, None, 'Charoshi'), (140, 'Six Spirit', 455921, None, 'Ysavvryl'), (141, 'Pokémon: Amber Sun and Opal Moon', 456655, None, 'PsychicChampion'), (142, 'Remix: Dedication Through Light and Darkness', 457150, None, 'Shadow Lucario'), (143, 'Roots', 457372, None, 'Mrs. Lovett'), (144, 'Growing Up', 457514, None, 'IneptatNormal'), (145, 'Tómur', 457740, None, 'SnoringFrog'), (146, 'Will They Thank You?', 459336, None, 'storymasterb'), (147, 'Beckon', 459789, None, 'MasterShaper'), (148, 'Hidden Gems and Hollow Lies', 460018, None, 'GastlyMan'), (149, 'When the Grave Calls', 461399, None, 'moonlightning'), (150, 'Legends Never Die: The Returning Champion', 461851, None, 'T9009'), (151, 'A Divide', 462692, None, 'Blazie'), (152, 'Nightmare on the Job', 462941, None, 'Luckster'), (153, 'Beat the System', 463383, None, 'Gallyrat'), (154, 'Inhuman', 463873, None, 'In a Quandary'), (155, 'Maids of the East Wing', 464179, None, 'Mrs. Lovett'), (156, 'PokéWorld: The Beginning of a Master', 464900, None, 'supershake'), (157, 'The Author Quest', 467795, None, 'Lilly2'), (158, 'Great Favor: Volkner\'s Story', 471551, None, 'IanDonyer'), (159, 'Pokémon: The Magic of a Melody', 471734, None, 'FlamingRuby'), (160, 'Imagine', 471874, None, 'Draco Malfoy'), (161, 'Braid', 473047, None, 'JX Valentine'), (162, 'MONOCHROME - Christ Almighty, What The Hell Is Up With This Place?!', 473321, None, 'Astra'), (163, 'Pokémon Revolution: Maverick Heart', 473608, None, 'EonMaster One'), (164, 'Grasswhistle', 474060, None, 'EspiratheAwesome'), (165, 'Hate', 457722, None, 'Umbreon Ruler'), (166, 'Notice: Keep Out', 474713, None, 'bobandbill'), (167, 'Lucid', 475306, None, 'Beechlgz'), (168, 'Broken Promise: The Story of Ash\'s Pidgeot', 476319, None, 'Articuno_rocks'), (169, 'Pikachu\'s Vacation Subtitled', 476619, None, 'ESPNfanatic35'), (170, 'The Gym', 477051, None, 'Neko Godot'), (171, '~Nameless Supplanter~', 481961, None, 'Caduceus Brigade'), (172, 'Fad', 482621, None, '[Imaginative]:[Clockwork]'), (173, 'Turnabout Assumptions', 483326, None, 'bobandbill'), (174, 'Smart Kids', 484483, None, '[Imaginative]:[Clockwork]'), (175, 'Foregone Conclusion', 490657, None, 'elyvorg'), (176, 'Wendigo', 490939, None, 'Dawn_Hero'), (177, 'Pokémon Epilogues: Season 1 - The Birth', 491951, None, 'Tonberry_King'), (178, 'The Game of Champions', 492836, None, 'Lamora'), (179, 'Nightfall', 493545, None, 'Manaphyman'), (180, 'Revenant', 495784, None, 'SilentMemento'), (181, 'A Day in the Life of a Gym Leader: Blaine', 495869, 13692410, 'disclaimer065'), (182, 'A Day in the Life of a Gym Leader: Erika', 495869, 12420308, 'disclaimer065'), (183, 'A Day in the Life of a Gym Leader: Janine', 495869, 12821013, 'disclaimer065'), (184, 'Ash Ketchum is the Man', 501846, None, 'Unicorn'), (185, 'Who Do You Think You Are?', 503689, None, 'Dawn_Hero'), (186, 'To Dust', 512896, None, 'Lily'), (187, 'The Thinking Man\'s Guide to Destroying the World', 513306, None, 'Cutlerine'), (188, 'Skogsrå', 514806, None, 'Diddy'), (189, 'League of Heroes', 517470, None, 'Feralninja'), (190, 'Secretary', 519457, None, 'rokettololi'), (191, 'Only God May Judge You', 522118, None, '[Imaginative]:[Clockwork]'), (192, 'Absconditus Infensus', 523254, None, 'moonlightning and kjt'), (193, 'Digimon: The Roots of Yggdrasil', 523317, None, 'Kamotz'), (194, 'Shining Silver', 525484, None, 'AmericanDreamer'), (195, 'The Life of a Bulbasaur', 525961, None, 'Bulbaclaw'), (196, 'Option Other', 528450, None, 'Breezy'), (197, 'Crushed', 528557, None, 'Dragon user X'), (198, 'My Reasons', 528740, None, 'JX Valentine'), (199, 'Under the Same Sky', 528756, None, 'Draco Malfoy'), (200, 'New Game', 529465, None, 'Dragon user X'), (201, 'ClichéStorm', 529963, None, 'Ysavvryl'), (202, 'Hero\'s Path', 530931, None, 'Feralninja'), (203, 'The Battle Frontier: A Brendan and May Adventure', 533114, None, 'Breezy'), (204, 'Phineas and Ferb/Pokémon Crossover', 536436, None, 'ShinyRaikou'), (205, 'Pirates of the Caribbean: The Creature of Storms', 537322, None, 'ESPNfanatic35'), (206, 'Chronicles of Unova', 538377, None, 'ChaosBlizzard'), (207, 'The Power N.U.', 538709, None, 'Articuno_rocks'), (208, 'polar nettles', 540353, None, 'Ejunknown and katiekitten'), (209, 'Into the Shadows', 542025, None, 'donotlookatdiagram'), (210, 'Tabula Rasa', 542138, None, 'purple_drake'), (211, 'Poké Punch-Out', 543313, None, 'Hilijix'), (212, 'Coriolanus Rowland\'s Guide to Pokémon Husbandry', 543615, None, 'Cutlerine'), (213, 'Mentor', 546053, None, 'Dagzar'), (214, 'How to Save a Life', 546372, None, 'chosen_one386'), (215, 'The Kingdom', 547410, None, 'Zibdas'), (216, 'Retroactive Continuity', 548910, None, 'JX Valentine'), (217, 'Operation GEAR: The Victory Star of Fate', 549083, None, 'The Great Butler'), (218, 'The Cool Kids', 550615, None, 'Antithesis'), (219, 'Something\'s Got to Give', 553973, None, 'Dragon user X'), (220, 'A Journeymen Solstice Carol', 555071, None, 'Feralninja'), (221, 'Three Heads Are Better Than One', 556077, None, 'elyvorg'), (222, 'Operation GEAR: The Firestorm Rebellion', 526682, None, 'The Great Butler'), (223, 'Shiny Expert: Xander', 520373, None, 'Xman96'), (224, 'Brothers\' Bond', 568749, None, 'Sid87'), (225, 'The Alpha Dex', 574719, None, 'Z-nogyroP'), (226, 'Crack\'d, or How the Love of Seafood Saved Unova', 584581, None, 'Cutlerine'), (227, '404 Error', 564423, None, 'Missingno. Master'), (228, 'Requiem', 565021, None, 'Sidewinder'), (229, 'Carry On, Blissey', 566626, None, 'ChloboShoka'), (230, 'Through the Thunder and the Lightning', 576305, None, 'Brutaka'), (231, 'Pokémon Mystery Dungeon: The Seekers of Light', 584574, None, 'SeekerofLight'), (232, 'Pokémon Mystery Dungeon: Overthrown', 562980, None, 'Knightfall'), (233, 'Champion Alliance', 587972, None, 'ESPNfanatic35'), (234, 'Butterfree', 557311, None, 'Dragonfree'), (235, 'Gallowwolf (Auðn)', 592256, None, 'Meeker'), (236, 'Survival Project', 561603, None, 'diamondpearl876'), (237, 'Mischief', 586756, None, 'Ememew'), (238, 'Out of My League', 581578, None, 'Skiyomi'), (239, 'Embrace', 576682, None, 'Drippy Miltank'), (240, 'The Legendarian Chronicles', 543597, None, 'Chibi Pika'), (241, 'Struggle for Power', 567967, None, 'Morpher01'), (242, 'Max\'s New Adventures', 579000, None, 'RealRaymon'), (243, 'The Human Species', 481252, None, 'ShadedSkies'), (244, 'Essence of Law', 593343, None, 'Agent Tectonic'), (245, 'My Trip to the End of Time, by Pearl Gideon', 555041, None, 'Cutlerine'), (246, 'A Different Kind of PMD Story (A Vulpix Tail)', 585188, None, 'Brutaka'), (247, 'Pokémon Mystery Dungeon Journal', 466028, None, 'pokenutter'), (248, 'Pokémon Mystery Dungeon: Silverveil', 587581, None, 'Koridojo_Blaziken'), (249, 'Mary Sue Must Die!', 555473, None, 'JX Valentine'), (250, 'TRINITY', 562420, None, 'Shrike Flamestar'), (251, 'What now..?', 593861, None, 'TheSirPeras'), (252, 'Book of the Hermit', 593061, None, 'JX Valentine'), (253, 'Jays Journey Through the Henzo Region', 582566, None, 'LadyLady'), (254, 'Stewie\'s Journey', 588005, None, 'pokemonsquared'), (255, 'Pokémon Mystery Dungeon: Domination and Liberation', 585635, None, 'Shadow Lucario 50'), (256, 'Dragonborn', 562455, None, 'pepperedfox'), (257, 'Stranger than Fiction', 569273, None, 'Cutlerine'), (258, 'Pokémon Mystery Dungeon: Reflecting Balance', 568115, None, 'DarkerShining'), (259, 'The Legend\'s End', 556872, None, 'Scaldaver'), (260, 'The Motionless Journey of Youngster Ian', 574736, None, 'Psychic'), (261, 'Deus X Machina', 571136, None, 'Deadly.Braviary'), (262, 'Digimon: Antivaccine', 578190, None, 'RoseQuartz'), (263, 'The Clash', 583541, None, 'Silent--Protagonist'), (264, 'The Fall to Redemption', 561591, None, 'Cypher DS'), (265, 'Colony 9.0', 556796, None, 'Treecko\'s Awesomeness'), (266, 'Weak', 577480, None, 'Ememew'), (267, 'Negative Edge', 557529, None, 'Diddy'), (268, 'Mama\'s Boy', 568758, None, 'An-chan'), (269, 'Pokémon Nightmare', 477564, None, 'Ocean Soul'), (270, 'Invisible', 569063, None, 'diamondpearl876'), (271, 'Til Death', 572312, None, 'Glover'), (272, 'The Itty Bitty Story of Ichabod', 582750, None, 'Silent--Protagonist'), (273, 'A Quick One While She\'s Away', 583473, None, 'jstinftw!'), (274, 'Bridging Dimensions', 589144, None, 'Cyn'), (275, 'Just A Dog', 559772, None, 'SerenadeSP'), (276, 'Chosen One', 558299, None, 'Little Miss Sunshine'), (277, 'Daniel\'s Travels in Unova', 582850, None, '007fan'), (278, 'Pokémon: The Next Generation', 583195, None, 'OshaMijuWott'), (279, 'Operation GEAR: The Angel of Reckoning', 571130, None, 'The Great Butler'), (280, 'The Leaf Green Incident', 587431, None, 'JX Valentine'), (281, 'Scars', 529562, None, 'Griff4815'), (282, 'Different Eyes', 560412, None, 'unrepentantAuthor'), (283, 'Essence of Life', 572984, None, 'Janovy'), (284, 'Earth, Air, Water, Fire', 563982, None, 'Bulba the Great!'), (285, 'Opelucid\'s Investments', 570408, None, 'Doryuzu'), (286, 'As the World Turns Back Around', 533562, None, 'Glover'), (287, 'Pokémon: Tyson\'s Journey!', 580949, None, 'TheSirPeras'), (288, 'Salvage', 587729, None, 'Negrek'), (289, 'The Pokémon Academy', 583567, None, 'King of Hearts'), (290, 'Zub: The Adventure of Stuff', 569394, None, 'Zibdas'), (291, 'War of Champions', 577493, None, 'Miror B...'), (292, 'Book of the Hermit - Story Two: The Stars Call for You', 593061, 15514387, 'JX Valentine'), (293, 'Seeker of Heaven', 566368, None, 'Ysavvryl'), (294, 'Book of the Hermit - Story One: Noodle Incident', 593061, 15512342, 'JX Valentine'), (295, 'Feli Chronicles: Vitandes', 579600, None, 'jireh the provider'), (296, 'Flying in the Dark', 618659, None, 'diamondpearl876'), (297, 'The Best Game', 624066, None, 'Phoenixsong'), (298, 'A Leash of Foxes', 623571, None, 'Cutlerine'), (299, 'Pokémon Mystery Dungeon: Explorers of the Aftermath', 601037, None, 'ChaosCaptain'), (300, 'Important Announcement', 603463, None, 'Psychic'), (301, 'The Lost One\'s Weeping', 624051, None, 'Brutaka'), (302, 'Anima Ex Machina: REBOOT', 612788, None, 'JX Valentine'), (303, 'Destiny\'s Forge', 623926, None, 'Agent Tectonic'), (304, 'Shadow War Trilogy Book 1: A Returning Darkness', 578365, None, 'Agent Tectonic'), (305, 'Blue Snow', 601148, None, 'pokenutter'), (306, 'ClichéStorm 2', 597035, None, 'Ysavvryl'), (307, 'Transcending the Abyss', 600110, None, 'Knightfall and pokenutter'), (308, 'Short Stories, Chapters, and Scenes', 614880, None, 'Sid87'), (309, 'Destiny Bonds', 613427, None, 'Cassafrass1999'), (310, 'Hoenn Reborn', 597722, None, 'Deadly.Braviary'), (311, 'The Wandering Storm', 623343, None, 'Subzero Dragon'), (312, 'Redemption', 623107, None, 'pokenutter'), (313, 'Down Sunnyside Lane', 623932, None, 'JX Valentine'), (314, 'From Under the Passho Tree', 613858, None, 'Poetry'), (315, 'Pokémon: Black & White', 593795, None, 'johno1995'), (316, 'Monsters Among Us: A Pokémon AU', 620683, None, 'GingerDixie'), (317, 'Adventure Time: An Icy Detachment', 623457, None, 'Dr.Horrible117'), (318, 'Drowning', 624047, None, 'starliteevee'), (319, 'The Unfortunate Truth to the Pokémon Trainer Ideal', 594238, None, 'SilentMemento'), (320, '399 Words', 615469, None, 'Praxiteles'), (321, 'Indigo', 618404, None, 'gorgonfish'), (322, 'Extinguished', 597619, None, '33Whimsicott33'), (323, 'Snapshots', 593477, None, 'bobandbill'), (324, 'Answering Machine', 619245, None, 'Blackjack Gabbiani'), (325, 'The Martial Way', 613367, None, 'moonlightning'), (326, 'The Age of Harmony', 583601, None, 'EonMaster One'), (327, 'The Progression', 615126, None, 'Praxiteles'), (328, 're: Through the Thunder and the Lightning', 623611, None, 'Brutaka'), (329, 'The Forbidden Forest', 620985, None, 'NightmareHybrid'), (330, 'The Trial of Juno Saga', 616084, None, 'Avenger Angel'), (331, 'Hero\'s Bond', 560701, None, 'Shadow Lucario'), (332, '404 Error 2; File Not Found', 606452, None, 'Missingno. Master'), (333, 'The Flash Drive of Champions', 619659, None, 'Rediamond')]
# id, nomid, link
nomination_links = [(1, 1162, 'http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown&p=16800601#post16800601'), (2, 1163, 'http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown&p=16652896#post16652896'), (4, 1214, 'http://www.serebiiforums.com/showthread.php?618659-Flying-in-the-Dark&p=16556441#post16556441'), (5, 1162, 'http://www.serebiiforums.com/showthread.php?p=16798464#post16798464'), (7, 1289, 'http://www.serebiiforums.com/showthread.php?618659-Flying-in-the-Dark&p=16557423&highlight=#post16557423'), (8, 1290, 'http://www.serebiiforums.com/showthread.php?273148-Lost-Evolution&p=16489689&highlight=#post16489689'), (9, 1291, 'http://www.serebiiforums.com/showthread.php?612788-Anima-Ex-Machina-REBOOT&p=16408492#post16408492'), (10, 1335, 'http://www.serebiiforums.com/showthread.php?565021-Requiem-(PG-13)&p=16985477#post16985477')]
# id, catid, fic, author, threadid, details, year, ficid
nominations = [(1, 1, 'Lost Evolution', 'elyvorg', 273148, None, 2008, 19), (2, 1, 'Penultimate', 'Chozo', 316322, None, 2008, 38), (3, 1, 'Pokémon Revelations: Omnipotence', 'xXSaberXx', 289019, None, 2008, 26), (4, 1, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, None, 2008, 10), (5, 1, 'Pokémon Revolution: Advent Phoenix', 'EonMaster One', 207042, None, 2008, 11), (6, 1, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2008, 16), (7, 1, 'Oaken Falls', 'Cheshire Cat', 320572, None, 2008, 40), (8, 2, 'Dance of the Lights', 'Mouse Tourmaline', 350722, None, 2008, 62), (9, 2, 'Battle of Wills', 'Psychic', 345957, None, 2008, 61), (10, 2, 'The Good Fight', 'purple_drake', 342072, None, 2008, 58), (11, 2, 'Drop', 'Blackjack Gabbiani', 321166, None, 2008, 41), (12, 2, 'Forever Young', 'Bay', 288788, None, 2008, 25), (13, 2, 'The Hounds of Goldenrod', 'Bay', 340037, None, 2008, 56), (14, 3, 'Starbolts Chronicles', 'Ledian_X', 171283, None, 2008, 9), (15, 3, 'World Saviors', 'whit19', 90567, None, 2008, 3), (16, 3, 'Northern Lights', 'joshlol', 327992, None, 2008, 46), (17, 4, 'Pokémon Infinity', 'poke poke', 322615, None, 2008, 44), (18, 4, 'Pokémon Revolution: Advent Phoenix', 'EonMaster One', 207042, None, 2008, 11), (19, 4, 'Pokémon Revelations: Omnipotence', 'xXSaberXx', 289019, None, 2008, 26), (20, 4, 'Blazing Dreams: The Eternal Night', 'duncan', 300391, None, 2008, 33), (21, 4, 'Lost Evolution', 'elyvorg', 273148, None, 2008, 19), (22, 4, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2008, 16), (23, 4, 'Aftershock', 'Luphinid Silnaek', 281578, None, 2008, 21), (24, 4, 'Shattered Pieces', 'Divinity_123', 292633, None, 2008, 31), (25, 5, 'Morphic', 'Dragonfree', 228940, None, 2008, 13), (26, 5, 'Taxonomy of the Heart', 'Maze', 266048, None, 2008, 17), (27, 5, 'All the Small Things', 'Katiekitten', 329581, None, 2008, 47), (28, 5, 'Reality Trainer', 'Zephyr Flare', 322375, None, 2008, 43), (29, 5, 'Aftershock', 'Luphinid Silnaek', 281578, None, 2008, 21), (30, 5, 'Pokémon Infinity', 'poke poke', 322615, None, 2008, 44), (31, 5, 'The Tower of Scyclical Times', 'Yonowaru in Chaos', 351552, None, 2008, 66), (32, 6, 'The Tower of Scyclical Times', 'Yonowaru in Chaos', 351552, None, 2008, 66), (33, 6, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2008, 16), (34, 6, 'Paws for Alarm', 'Pink Parka Girl', 289201, None, 2008, 27), (35, 6, 'All the Small Things', 'katiekitten', 329581, None, 2008, 47), (36, 6, 'Oblivion', 'katiekitten', 332187, None, 2008, 48), (37, 6, 'Sick of Fried Rice and Fortune Cookies', 'Musapion', 351449, None, 2008, 65), (38, 7, 'The Corei Quest', 'Air Dragon', 111162, None, 2008, 5), (39, 7, 'Fire Eye', 'Synthetic', 311780, None, 2008, 37), (40, 8, 'Taxonomy of the Heart', 'Maze', 266048, None, 2008, 17), (41, 8, 'Morphic', 'Dragonfree', 228940, None, 2008, 13), (42, 8, 'Sayonara', 'katiekitten', 290032, None, 2008, 29), (44, 9, 'The Good Fight', 'purple_drake', 342072, None, 2008, 58), (45, 9, 'Battle of Wills', 'Psychic', 345957, None, 2008, 61), (46, 9, 'All the Small Things', 'katiekitten', 329581, None, 2008, 47), (47, 9, 'Welcome to the Internet', 'Burnt Flower', 343348, None, 2008, 60), (48, 10, 'Lost Evolution', 'elyvorg', 273148, 'Archopy', 2008, 19), (49, 10, 'The Quest for the Legends', 'Dragonfree', 10783, 'Mutark', 2008, 1), (50, 11, 'Lurking in the Shadows: Lisa\'s Ultimate Challenge', 'DarkPersian479', 157755, 'Lisa Northwood (main character)', 2008, 7), (51, 12, 'Gym Rat', 'Smunkie', 341920, None, 2008, 57), (52, 12, 'Hoenn League: A Brendan and May Adventure', 'Breezy', 18056, None, 2008, 2), (53, 12, 'Penultimate', 'Chozo', 316322, None, 2008, 38), (54, 12, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, None, 2008, 15), (55, 12, 'BR34kin’tha4thw@ll2', 'Divinity_123', 350728, None, 2008, 63), (56, 12, 'The Incredibly Silly Adventure of Trevor', 'Hush', 359255, None, 2008, 69), (57, 12, 'Just Another Journey/The Dreamscope Chronicles', 'JammyU', 360174, None, 2008, 70), (58, 12, 'Sick of Fried Rice and Fortune Cookies', 'Musapion', 351449, None, 2008, 65), (59, 13, 'Maggots of Society', 'Burnt Flower', 335956, None, 2008, 49), (60, 14, 'The Good Fight', 'purple_drake', 342072, None, 2008, 58), (61, 14, 'Maternal Instinct', 'elyvorg', 342414, None, 2008, 59), (62, 14, 'The Fall of a Leader', 'Dragonfree', 290189, None, 2008, 30), (63, 15, 'At the Beginning', 'DarkPersian479', 284325, None, 2008, 23), (64, 16, 'Blazing Dreams: The Eternal Night', 'duncan', 300391, None, 2008, 33), (65, 16, 'Nothing, Everything', 'Bay', 276744, None, 2008, 20), (66, 16, 'Shattered Pieces', 'Divinity_123', 292633, None, 2008, 31), (67, 17, 'Pokémon Revolution: Advent Phoenix', 'EonMaster One', 207042, None, 2008, 11), (68, 17, 'Lurking in the Shadows: Lisa\'s Ultimate Challenge', 'DarkPersian479', 157755, None, 2008, 7), (69, 17, 'Just Another Journey/The Dreamscope Chronicles', 'JammyU', 360174, None, 2008, 70), (70, 17, 'Caught in the Moment', 'Silawen', 98781, None, 2008, 4), (71, 18, 'Dance of the Lights', 'Mouse Tourmaline', 350722, None, 2008, 62), (72, 18, 'Paws for Alarm', 'Pink Parka Girl', 289201, None, 2008, 27), (73, 18, 'Fallen: Third Angel', 'Glitch', 302577, None, 2008, 34), (74, 19, 'Obsession', 'Blackjack Gabbiani', 126628, None, 2008, 6), (76, 20, 'Taxonomy of the Heart', 'Maze', 266048, 'Michael', 2008, 17), (77, 20, 'Pokémon Revelations: Omnipotence', 'xXSaberXx', 289019, 'Saber', 2008, 26), (78, 20, 'Pokémon Revelations: Omnipotence', 'xXSaberXx', 289019, 'Kai', 2008, 26), (79, 20, 'Aftershock', 'Luphinid Silnaek', 281578, 'Luphinid', 2008, 21), (80, 20, 'Obsession', 'Blackjack Gabbiani', 126628, 'Jirarudan', 2008, 6), (81, 20, 'Deeds of Darkness', 'Haruka of Hoenn', 234989, 'Sadie Cartherwood', 2008, 14), (82, 21, 'The Fall of a Leader', 'Dragonfree', 290189, 'Shadowdart', 2008, 30), (83, 21, 'Battle of Wills', 'Psychic', 345957, 'Raikou', 2008, 61), (84, 21, 'Reality Trainer', 'Zephyr Flare', 322375, 'Diablo', 2008, 43), (85, 21, 'Starbolts Chronicles', 'Ledian_X', 171283, 'Norad', 2008, 9), (86, 21, 'My Name is Fuega', 'Aqua059', 321934, 'Zangoose', 2008, 42), (87, 22, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, 'Satsukoro', 2008, 10), (88, 23, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, 'Treecko', 2008, 18), (89, 23, 'Midian: City of the Damned', 'Knightblazer', 158530, 'Felix', 2008, 8), (90, 23, 'Divine Interventions', 'Glajummy', 310661, 'Lucy', 2008, 36), (91, 24, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, 'Maria', 2008, 10), (92, 24, 'Blazing Dreams: The Eternal Night', 'duncan', 300391, 'Dusek', 2008, 33), (93, 24, 'Stars', 'Dramatic Melody', 319986, 'Sirius', 2008, 39), (96, 26, 'Blazing Frost', 'darkdragontamer', 307837, 'Phrygoil', 2008, 35), (97, 26, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, 'Tom', 2008, 15), (98, 26, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, 'Corphish', 2008, 18), (99, 26, 'Penultimate', 'Chozo', 316322, 'Miscellaneous Chansey', 2008, 38), (100, 26, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, 'Miror B.', 2008, 15), (101, 27, 'Pokédex One-Shots', 'Ysavvryl', 337927, 'When Spiritomb appears in \"Spiritomb Entry\"', 2008, 50), (102, 27, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, 'The battle against Miror B. in chapter 11', 2008, 15), (103, 27, 'The Darkness in Her Dreams', 'Klaus', 289964, 'The mix-up concerning Kris\'s breasts in chapter 27', 2008, 28), (104, 27, 'Business Lunch', 'Blackjack Gabbiani', 355618, 'Cyrus ordering a meal', 2008, 68), (105, 28, 'Dawn of a New Legacy', 'Kiyohime and Mr-Alice', 354900, 'Aeris and Fable encounter an Andros Glalie in chapter 1: Land of the Dead', 2008, 67), (106, 29, 'My Sinnoh Fan-Fic', 'palkia1', 285037, 'When Arceus kills Shintoo', 2008, 24), (107, 30, 'At the Beginning', 'DarkPersian479', 284325, 'Where Lisa thanks her Persian for everything', 2008, 23), (108, 31, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, 'The defibrillator scene near the end of chapter 14', 2008, 18), (109, 31, 'Shattered Pieces', 'Divinity_123', 292633, 'The mall evacuation scene in chapter 2', 2008, 31), (110, 32, 'Blazing Frost', 'darkdragontamer', 307837, 'Orca originally belonging to Roark', 2008, 35), (112, 33, 'Sick of Fried Rice and Fortune Cookies', 'Musapion', 351449, 'As he inserted the three-pronged utensil into the cheese, it oozed liquid. He paused, then, just as he broke off a piece and was about to insert it into his mouth, one of the underlings screeched, like nails raking against a chalkboard. I\'m half-sure it was a man, though you couldn\'t tell just from the voice (not that I could blame the guy).<br><br>\"S-something in the cheese just MOVED.\"<br><br>\"Oh, \" Brody said, placid smile still plastered to his face. \"That would be the maggots.\"<br><br>\"... Brody, \" I said, voice shaking with hardly suppressed anger. \"Are you <em>trying</em> to kill us?\"<br><br>He blinked, taken aback, reacting as if I had just cursed in front of his precious maggot-infested child; he did everything but cover the virgin ears of his surrogate cheese child, but I\'d almost swear, if cheese had ears, he would have done it. \"Tabitha! It\'s a delicacy!\"<br>Then he folded his arms across his chest. \"That\'s how you know it\'s still good.\"<br><br>The incredibly brave and or stupid guy chickened out at the last second, abandoning the fork into the middle of the pit of hell that was Casu marzu. I felt sorry for that fork.', 2008, 65), (113, 33, 'The Dreamscope Chronicles', 'JammyU', 360174, '\"Yeah, both his parents are moss-covered reptiles, lets celebrate.\"', 2008, 71), (114, 34, None, 'elyvorg', None, None, 2008, None), (115, 34, None, 'Kiyohime', None, None, 2008, None), (116, 34, None, 'xXSaberXx', None, None, 2008, None), (117, 34, None, 'Bay', None, None, 2008, None), (118, 34, None, 'Saffire Persian', None, None, 2008, None), (119, 35, None, 'Ysavvryl', None, None, 2008, None), (120, 35, None, 'Dramatic Melody', None, None, 2008, None), (121, 35, None, 'Duckie', None, None, 2008, None), (122, 35, None, 'JammyU', None, None, 2008, None), (123, 35, None, 'Gardevoir Girl', None, None, 2008, None), (124, 36, None, 'Ysavvryl', None, None, 2008, None), (125, 36, None, 'EonMaster One', None, None, 2008, None), (126, 36, None, 'Bay', None, None, 2008, None), (127, 37, None, 'The Great Butler', None, None, 2008, None), (128, 37, None, 'katiekitten', None, None, 2008, None), (129, 37, None, 'Duckie', None, None, 2008, None), (130, 37, None, 'Gardevoir Girl', None, None, 2008, None), (131, 37, None, 'Bay', None, None, 2008, None), (132, 37, None, 'Haruka of Hoenn', None, None, 2008, None), (133, 38, None, 'Silawen', None, None, 2008, None), (134, 38, None, 'Shinxy', None, None, 2008, None), (135, 38, None, 'Libie', None, None, 2008, None), (136, 38, None, 'Sike Saner', None, None, 2008, None), (137, 39, None, 'Sike Saner', None, None, 2008, None), (138, 39, None, 'poke poke', None, None, 2008, None), (139, 39, None, 'DarkPersian479', None, None, 2008, None), (158, 17, 'Pokémon Revolution: Advent Phoenix', 'EonMaster One', 207042, None, 2009, 11), (159, 4, 'Anima Ex Machina', 'JX Valentine', 427130, None, 2009, 110), (160, 5, 'Three: H/Rt-314', 'Synthetic', 382076, None, 2009, 81), (161, 41, 'The Rookie\'s Handbook to Conspiracy Theory', 'purple_drake', 420378, None, 2009, 103), (163, 8, 'Obsession', 'Blackjack Gabbiani', 126628, None, 2009, 6), (165, 10, 'Anima Ex Machina', 'JX Valentine', 427130, 'XP-494', 2009, 110), (167, 9, 'The Rookie\'s Handbook to Conspiracy Theory', 'purple_drake', 420378, None, 2009, 103), (168, 24, 'Nothing, Everything', 'Bay', 276744, 'Jacob', 2009, 20), (169, 36, None, 'Ysavvryl', None, None, 2009, None), (170, 38, None, 'JX Valentine', None, None, 2009, None), (172, 41, 'Travels of the Trifecta!', 'Shinneth', 364756, None, 2009, 73), (173, 22, 'Travels of the Trifecta!', 'Shinneth', 364756, 'Conway', 2009, 73), (174, 38, None, 'Luphinid Silnaek', None, None, 2009, None), (175, 24, 'Pokémon Ranger and the Gardener of Gratitude', 'The Great Butler', 374968, 'Count Fernando VIII', 2009, 77), (177, 1, 'Pokémon Ranger and the Gardener of Gratitude', 'The Great Butler', 374968, None, 2009, 77), (179, 36, None, 'The Great Butler', None, None, 2009, None), (181, 33, 'The Adventure of Adventureness', 'Missingno. Master', 410132, '\"What\'s wrong with the story?\" the incredibly handsome narrator asked incredulously.<br /><br />\"There you go again! Will you PLEASE stop praising yourself in your own narration?!\" yelled Jack, clearly at his wit\'s end. \"And what\'s wrong with the story?! Did you not see that story?! It STUNK, that\'s what\'s wrong with it! Two lines! Two lines of text! I go down the road, I catch a shiny Rayquaza with a Master Ball that seems to appear out of nowhere?! Where\'s the plot?! Where\'s the depth?! The description! For all the readers know, I could be a two-headed cheeseburger with a hundred-and-seven tentacles!\"', 2009, 95), (182, 20, 'The Adventure of Adventureness', 'Missingno. Master', 410132, 'The \"devilishly handsome\" narrator', 2009, 95), (183, 1, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2009, 16), (184, 7, 'Trinity', 'Shrike Flamestar', 323222, None, 2009, 45), (185, 12, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, None, 2009, 15), (187, 22, 'Stars', 'Dramatic Melody', 319986, 'Agena Star', 2009, 39), (188, 26, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, 'Tom', 2009, 15), (189, 39, None, 'Bay', None, None, 2009, None), (191, 4, 'Pokémon Academy: Dedication Through Light and Darkness', 'Shadow Lucario', 360248, None, 2009, 72), (192, 12, 'Dimensions of Darkness Book 2: The Explorers of the Core', 'GalladeRocks', 407050, None, 2009, 92), (193, 3, 'Digimon Guardians', 'Hotshot', 429138, None, 2009, 113), (194, 1, 'Hoenn League: A Brendan and May Adventure', 'Breezy', 18056, None, 2009, 2), (196, 7, 'The Sevii Islands Saga', 'Manaphyman', 216749, None, 2009, 12), (197, 10, 'Lost Evolution', 'elyvorg', 273148, 'Archopy', 2009, 19), (198, 17, 'The Sevii Islands Saga', 'Manaphyman', 216749, None, 2009, 12), (199, 20, 'Nothing, Everything', 'Bay', 276744, 'Bunny', 2009, 20), (200, 24, 'Stars', 'Dramatic Melody', 319986, 'Sirius', 2009, 39), (201, 34, None, '//Mix\\\\', None, None, 2009, None), (202, 37, None, 'Manaphyman', None, None, 2009, None), (203, 18, 'Pokédex One-Shots', 'Ysavvryl', 337927, None, 2009, 50), (204, 35, None, 'JX Valentine', None, None, 2009, None), (205, 12, 'The Adventure of Adventureness', 'Missingno. Master', 410132, None, 2009, 95), (206, 16, 'A Haunting at the Old Chateau', 'Shrike Flamestar', 434502, None, 2009, 120), (208, 2, 'Cheater', 'Mrs. Lovett', 411715, None, 2009, 99), (209, 3, 'The Ripple Effect', 'Zadros', 430827, None, 2009, 115), (210, 6, 'The Limits of Kindness', 'Chozo', 424901, None, 2009, 107), (211, 41, 'The Limits of Kindness', 'Chozo', 424901, None, 2009, 107), (213, 16, 'Deeds of Darkness', 'Mrs. Lovett', 422635, None, 2009, 106), (214, 8, 'Stars', 'Dramatic Melody', 319986, None, 2009, 39), (215, 8, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, None, 2009, 10), (216, 17, 'The Sapphire Story', 'Buraddo_Aipom', 370107, None, 2009, 74), (222, 39, None, 'bobandbill', None, None, 2009, None), (223, 1, 'Lost Evolution', 'elyvorg', 273148, None, 2009, 19), (224, 4, 'Nothing, Everything', 'Bay', 276744, None, 2009, 20), (226, 26, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, 'Miror B.', 2009, 15), (229, 27, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Dialga and Palkia decide on the chosen hero', 2009, 114), (230, 8, 'The Saga of Team Supernova', 'FocusPresenceEndurance', 282557, None, 2009, 22), (232, 6, 'Visions of Fate', 'Gardevoir Girl', 296380, None, 2009, 32), (233, 24, 'Morphic', 'Dragonfree', 228940, 'The Church of Holy Truth', 2009, 13), (234, 17, 'The Corei Quest', 'Air Dragon', 111162, None, 2009, 5), (235, 7, 'The Corei Quest', 'Air Dragon', 111162, None, 2009, 5), (236, 27, 'The Corei Quest', 'Air Dragon', 111162, 'A few nights later, an elderly lady walked down the tranquil street towards her new modest two storey home. A large shopping bag hung from the crook of her left arm as she marched briskly on, the large brown trench coat masking her short frame effectively.<br /><br />A couple of thickset thugs stepped out of a side street and barred her way onward. One of the thugs, with a shiny pate and a large yellow heart-shaped tattoo stepped forward, his many heavy chains clinking and gleaming in the lamp light.<br /><br />\"Good evening, Mum, \" the second one leered in a northern city accent not unlike cockney, revealing a glint of silver as he moved his lips. \"How\'s about a fiver for \'e pub, eh?\"<br /><br />\"I\'m sorry, \" the woman replied haltingly, her pale blue eyes flashing dangerously. \"But I must be getting home-\"<br /><br />\"Aw, don\'t say that, Granny, \" the first thug wheedled, grabbing her by the crook of her arm tightly. \"We jus\' wanna afiver...\"<br /><br />\"Please unhand me at once, \" the old lady said with a grizzled smile, \"or I\'m afraid I will have to harm you.\"<br /><br />\"Wot was \'zat?\" The first thug yelled, evidently angered by the elderly lady\'s spunk, his bright green punk mohawk seemingly standing straighter than usual in his rage. Pulling out a solitary pokeball, he threw it forward and yelled, \"Go, Charmeleon!\"<br /><br />A medium sized (by which I mean a three foot plus) reptile appeared before their victim, its long dirty claws and vicious fangs bared as the flame on its long tail burned with great intensity. a single horn grew out from in between and above its indigo-shaded irises, which were narrowed in anger or bloodlust, its crimson complexion made it hard to tell.<br /><br />\"Well, so much for playin\' nice, \" the cueball sighed. \"Come out, Wombeal!\"<br /><br />A small, dirty grey creature appeared on the ground in a flash of light, rubbing its thick blue knuckles menacingly as it leered at the old woman. It knew what it had to do, and was rather looking forward to it.<br /><br />\"Oh, dear, \" the seemingly defenseless woman sighed. Fishing in her shopping bag, she puled out a red and white or and splitting it open with the press of a button, commanded, \"Petal, be a dear and use Petal Dance, would you?\"<br /><br />A whirl of petals, a series of loud smacks and yells later, all four assailants were tied to the lamp post by a number of thick, thorny green vines, out cold. Picking up her broad-rimmed hat, she dusted it off and said scoldingly, \"Youth of today. So ill-mannered, most of them. Come along, Petal, \" she called to her Bouquet Pokemon, retracting it in a fash of red light. \"We must get home now.\"<br /><br />And without a backwards glance, Rosa Saunders moved off towards the corner amidst a shower of sapphire rose petals, muttering, \"Let that be a lesson to you punks. Nobody messes with G.\"', 2009, 5), (237, 16, 'Stitches', 'Breezy', 382248, None, 2009, 82), (238, 21, 'Black Pathogenesis', 'Koridojo Blaziken', 376714, 'Siyu the Larvitar', 2009, 80), (239, 9, 'Chasing Railroad Tracks', 'lilbluecorsola', 405015, None, 2009, 91), (240, 20, 'Chasing Railroad Tracks', 'lilbluecorsola', 405015, 'Gary', 2009, 91), (241, 24, 'Cheater', 'Mrs. Lovett', 411715, 'Wallace', 2009, 99), (242, 17, 'Winds of the Past', 'palkia1', 382844, None, 2009, 83), (243, 5, 'j_m_lee', 'Blivsey', 397247, None, 2009, 88), (244, 18, 'Sixth', 'solovino', 408963, None, 2009, 94), (245, 41, 'Sixth', 'solovino', 408963, None, 2009, 94), (246, 14, 'A Broken Trinity', 'Koridojo Blaziken', 424938, None, 2009, 108), (247, 7, 'What I\'ve Lost', 'Umbreon Ruler', 427394, None, 2009, 111), (248, 23, 'What I\'ve Lost', 'Umbreon Ruler', 427394, 'The Sentret', 2009, 111), (249, 7, 'Power', 'LampShade', 432349, None, 2009, 118), (250, 5, 'Power', 'LampShade', 432349, None, 2009, 118), (251, 34, None, 'Breezy', None, None, 2009, None), (252, 36, None, 'chosen_one386', None, None, 2009, None), (253, 2, 'I Understand', 'Synthetic', 374537, None, 2009, 76), (254, 3, 'Firefly\'s Folly', 'Haunter', 392920, None, 2009, 86), (255, 40, 'How to Lose Everything and Gain Nothing', 'DarkScyther1010', 398721, None, 2009, 89), (256, 19, 'Travels of the Trifecta!', 'Shinneth', 364756, None, 2009, 73), (259, 15, 'A Broken Trinity', 'Koridojo Blaziken', 424938, None, 2009, 108), (261, 1, 'Pokémon Revolution: Advent Phoenix', 'EonMaster One', 207042, None, 2009, 11), (262, 17, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2009, 16), (263, 26, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, 'Corphish', 2009, 18), (265, 43, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, 'Daggerback', 2009, 18), (267, 16, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2009, 16), (268, 3, 'Above', 'Yonowaru in Chaos', 390056, None, 2009, 85), (269, 6, 'Not', 'Seijiro Mafuné', 421538, None, 2009, 104), (270, 41, 'Angel of Mercy', 'Diddy', 387289, None, 2009, 84), (271, 15, 'One Day', 'Breezy', 399479, None, 2009, 90), (272, 13, 'A Rose by Any Other Name', 'Diddy', 416099, None, 2009, 102), (274, 34, None, 'Ysavvryl', None, None, 2009, None), (275, 35, None, 'Venomfrog', None, None, 2009, None), (276, 36, None, 'Yonowaru in Chaos', None, None, 2009, None), (277, 38, None, 'Breezy', None, None, 2009, None), (280, 2, 'Curse', 'Dragonfree', 432183, None, 2009, 116), (281, 2, 'Perish: Fire', 'Dramatic Melody', 375889, None, 2009, 78), (282, 8, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, None, 2009, 18), (283, 16, 'Clipping', 'Act', 429097, None, 2009, 112), (284, 16, 'Shattered Pieces', 'Divinity_123', 292633, None, 2009, 31), (286, 17, 'Delta Species', 'Giratina!', 422317, None, 2009, 105), (288, 20, 'Heart of the Sea', 'Bay', 432241, 'Damus', 2009, 117), (289, 21, 'Delta Species', 'Giratina!', 422317, 'Giratina', 2009, 105), (292, 35, None, 'Giratina!', None, None, 2009, None), (293, 37, None, 'Gardevoir Girl', None, None, 2009, None), (294, 37, None, 'Medicate', None, None, 2009, None), (295, 38, None, 'Sike Saner', None, None, 2009, None), (296, 39, None, 'Sike Saner', None, None, 2009, None), (297, 36, None, 'Shadow Lucario', None, None, 2009, None), (298, 40, 'The Fire', 'Torchibusken', 414699, None, 2009, 101), (299, 37, None, 'Mickis96', None, None, 2009, None), (300, 38, None, 'Diddy', None, None, 2009, None), (301, 44, 'A Step to Redemption', 'daveshan', 393317, 'Street brawl (chapter 3)', 2009, 87), (303, 42, 'The Light in the Darkness', 'PokemonHero', 371313, 'Paco the Lombre', 2009, 75), (304, 15, 'Pokédex One-Shots: Houndoom', 'Ysavvryl', 337927, None, 2009, 54), (305, 1, 'Anima Ex Machina', 'JX Valentine', 427130, None, 2009, 110), (306, 32, 'Pokémon Ranger and the Gardener of Gratitude', 'The Great Butler', 374968, 'Howard\'s true alliances', 2009, 77), (307, 44, 'Pokémon Revolution: Advent Phoenix', 'EonMaster One', 207042, 'Travis, Nate and Katrina versus Gorba', 2009, 11), (308, 1, 'Three: H/Rt-314', 'Synthetic', 382076, None, 2009, 81), (310, 1, 'Shadow and Light', 'chosen_one386', 407965, None, 2010, 93), (311, 1, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, None, 2010, 10), (312, 1, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, None, 2010, 18), (313, 1, 'Hoenn League: A Brendan and May Adventure', 'Breezy', 18056, None, 2010, 2), (314, 1, 'Pokémon Revolution: Advent Phoenix', 'EonMaster One', 207042, None, 2010, 11), (315, 1, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2010, 16), (316, 1, 'Anima Ex Machina', 'JX Valentine', 427130, None, 2010, 110), (317, 1, 'The Corei Quest', 'Air Dragon', 111162, None, 2010, 5), (318, 1, 'The Quest for the Legends', 'Dragonfree', 10783, None, 2010, 1), (319, 1, 'Six Spirit', 'Ysavvryl', 455921, None, 2010, 140), (320, 1, 'Lull', 'Breezy', 425512, None, 2010, 109), (321, 1, 'Pokémon Revolution: Maverick Heart', 'EonMaster One', 473608, None, 2010, 163), (322, 2, 'Pokédex One-Shots', 'Ysavvryl', 337927, None, 2010, 50), (323, 2, 'Pikachu\'s Vacation Subtitled', 'ESPNfanatic35', 476619, None, 2010, 169), (324, 2, 'Braid', 'JX Valentine', 473047, None, 2010, 161), (325, 2, 'Notice: Keep Out', 'bobandbill', 474713, None, 2010, 166), (327, 2, 'Inhuman', 'In a Quandary', 463873, None, 2010, 154), (328, 3, 'The Ripple Effect', 'Zadros', 430827, None, 2010, 115), (329, 40, 'Will They Thank You?', 'storymasterb', 459336, None, 2010, 146), (330, 4, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2010, 16), (331, 4, 'The Sevii Islands Saga', 'Manaphyman', 216749, None, 2010, 12), (332, 4, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, None, 2010, 10), (333, 4, 'The Sapphire Story', 'Buraddo_Aipom', 370107, None, 2010, 74), (334, 4, 'When the Grave Calls', 'moonlightning', 461399, None, 2010, 149), (335, 4, 'Beat the System', 'Gallyrat', 463383, None, 2010, 153), (336, 4, 'MONOCHROME - Christ Almighty, What The Hell Is Up With This Place?!', 'Astra', 473321, None, 2010, 162), (337, 4, 'Six Spirit', 'Ysavvryl', 455921, None, 2010, 140), (338, 4, 'Roots', 'Mrs. Lovett', 457372, None, 2010, 143), (339, 5, 'Shattered Phoenix', 'Chickorita', 432919, None, 2010, 119), (340, 5, 'Shadow and Light', 'chosen_one386', 407965, None, 2010, 93), (341, 5, 'The Adventure of Adventureness', 'Missingno. Master', 410132, None, 2010, 95), (342, 5, 'The Gun Line', 'Frigated', 435368, None, 2010, 122), (343, 5, 'Imagine', 'Draco Malfoy', 471874, None, 2010, 160), (344, 5, 'Similar Opposites', 'Draco Malfoy', 452519, None, 2010, 136), (345, 5, 'Six Spirit', 'Ysavvryl', 455921, None, 2010, 140), (346, 5, 'Nightmare on the Job', 'Luckster', 462941, None, 2010, 152), (347, 5, 'The Author Quest', 'Lilly2', 467795, None, 2010, 157), (348, 7, 'Heart of the Sea', 'Bay', 432241, None, 2010, 117), (349, 7, 'The Sevii Islands Saga', 'Manaphyman', 216749, None, 2010, 12), (350, 7, 'Gratitude', 'pepperedfox', 435368, None, 2010, 121), (351, 7, 'Valiant Hearts', 'Charoshi', 455559, None, 2010, 139), (352, 7, 'Pokémon Adventure - Kokubei Chronicles', 'xmikeyxlikesitx', 450472, None, 2010, 134), (353, 7, 'Hidden Gems and Hollow Lies', 'GastlyMan', 460018, None, 2010, 148), (354, 6, 'Roots', 'Mrs. Lovett', 457372, None, 2010, 143), (355, 6, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, None, 2010, 10), (356, 6, 'The Quest for the Legends', 'Dragonfree', 10783, None, 2010, 1), (357, 6, 'Inhuman', 'In a Quandary', 463873, None, 2010, 154), (358, 6, 'When the Grave Calls', 'moonlightning', 461399, None, 2010, 149), (359, 6, 'Monster', 'Saffire Persian', 453451, None, 2010, 137), (360, 6, 'Tómur', 'SnoringFrog', 457740, None, 2010, 145), (361, 6, 'Foresight', 'Maze', 414488, None, 2010, 100), (362, 6, 'Chasing Clouds', 'Umbreon Ruler', 439438, None, 2010, 126), (363, 6, 'Lull', 'Breezy', 425512, None, 2010, 109), (364, 41, 'Roots', 'Mrs. Lovett', 457372, None, 2010, 143), (365, 41, 'Lull', 'Breezy', 425512, None, 2010, 109), (366, 41, 'Beasts Like Us', 'Giratina!', 439427, None, 2010, 125), (367, 41, 'Maids of the East Wing', 'Mrs. Lovett', 464179, None, 2010, 155), (368, 41, 'MONOCHROME - Christ Almighty, What The Hell Is Up With This Place?!', 'Astra', 473321, None, 2010, 162), (369, 8, 'The Sapphire Story', 'Buraddo_Aipom', 370107, None, 2010, 74), (371, 8, 'Max\'s Hoenn Journey', 'harryheart', 351425, None, 2010, 64), (372, 8, 'Travels of the Trifecta!', 'Shinneth', 364756, None, 2010, 73), (373, 8, 'Six Spirit', 'Ysavvryl', 455921, None, 2010, 140), (374, 8, 'The Quest for the Legends', 'Dragonfree', 10783, None, 2010, 1), (375, 8, 'PMD: Loopholes', 'Ysavvryl', 429252, None, 2010, 114), (376, 9, 'My Life as a Cave Guardian', 'Mrs. Lovett', 454539, None, 2010, 138), (377, 9, 'Gratitude', 'pepperedfox', 435368, None, 2010, 121), (378, 9, 'Monster', 'Saffire Persian', 453451, None, 2010, 137), (379, 9, 'Pokédex One-Shots', 'Ysavvryl', 337927, None, 2010, 50), (380, 10, 'Blazing Frost', 'darkdragontamer', 307837, 'The Pokémon that likes McDonald\'s fries called Phrygoil', 2010, 35), (381, 10, 'Lost Evolution', 'elyvorg', 273148, 'Archopy', 2010, 19), (382, 10, 'Lucid', 'Beechlgz', 475306, 'Hyvans', 2010, 167), (383, 10, 'Six Spirit', 'Ysavvryl', 455921, 'The legendary Pokémon surrounding the religion', 2010, 140), (384, 10, 'The Corei Quest', 'Air Dragon', 111162, 'Zen', 2010, 5), (385, 10, 'The Corei Quest', 'Air Dragon', 111162, 'Drayca', 2010, 5), (386, 16, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, None, 2010, 10), (387, 16, 'Pokémon Crusade', 'Pkmn Breeder Jack', 263312, None, 2010, 16), (388, 16, 'Nightmare', 'purple_drake', 444069, None, 2010, 130), (389, 16, 'The Corei Quest', 'Air Dragon', 111162, None, 2010, 5), (390, 16, 'The Quest for the Legends', 'Dragonfree', 10783, None, 2010, 1), (391, 17, 'Hoenn League: A Brendan and May Adventure', 'Breezy', 18056, None, 2010, 2), (392, 17, 'The Sevii Islands Saga', 'Manaphyman', 216749, None, 2010, 12), (393, 17, 'The Sapphire Story', 'Buraddo_Aipom', 370107, None, 2010, 74), (394, 17, 'Adaptability', 'Hotshot', 442505, None, 2010, 128), (395, 17, 'Chasing Clouds', 'Umbreon Ruler', 439438, None, 2010, 126), (396, 17, 'Remix: Dedication Through Light and Darkness', 'Shadow Lucario', 457150, None, 2010, 142), (397, 17, 'The Corei Quest', 'Air Dragon', 111162, None, 2010, 5), (398, 17, 'Pokémon: Amber Sun and Opal Moon', 'PsychicChampion', 456655, None, 2010, 141), (399, 17, 'Growing Up', 'IneptatNormal', 457514, None, 2010, 144), (400, 46, 'A Haunting at the Old Chateau', 'Shrike Flamestar', 434502, None, 2010, 120), (401, 46, 'Beckon', 'MasterShaper', 459789, None, 2010, 147), (402, 46, 'Monster', 'Saffire Persian', 453451, None, 2010, 137), (403, 46, 'Braid', 'JX Valentine', 473047, None, 2010, 161), (404, 46, 'Pokédex One-Shots (Shuppet)', 'Ysavvryl', 337927, None, 2010, 52), (405, 46, 'The Path of Thorns', 'Elemental Charizam', 452068, None, 2010, 135), (406, 47, 'The Adventure of Adventureness', 'Missingno. Master', 410132, None, 2010, 95), (407, 47, 'The Awesome of Awesomeness', 'Missingno. Master', 410132, None, 2010, 96), (408, 47, 'Blazing Frost', 'darkdragontamer', 307837, None, 2010, 35), (409, 47, 'Foresight', 'Maze', 414488, None, 2010, 100), (410, 47, 'PMD: Loopholes', 'Ysavvryl', 429252, None, 2010, 114), (411, 47, 'The Gym', 'Neko Godot', 477051, None, 2010, 170), (412, 18, 'Beasts Like Us', 'Giratina!', 439427, None, 2010, 125), (413, 18, 'Never Resting', 'It is Called Metasaki', 443808, None, 2010, 129), (414, 18, 'Metronome', 'RainbowMunchies', 449470, None, 2010, 132), (415, 18, 'Grasswhistle', 'EspiratheAwesome', 474060, None, 2010, 164), (416, 18, 'Inhuman', 'In a Quandary', 463873, None, 2010, 154), (417, 19, 'Roots', 'Mrs. Lovett', 457372, None, 2010, 143), (418, 19, 'Nightmare', 'purple_drake', 444069, None, 2010, 130), (419, 19, 'Hate', 'Umbreon Ruler', 474060, None, 2010, 165), (420, 19, 'Great Favor: Volkner\'s Story', 'IanDonyer', 471551, None, 2010, 158), (422, 20, 'Pokémon: The Magic of a Melody', 'FlamingRuby', 471734, 'Brock', 2010, 159), (423, 20, 'Six Spirit', 'Ysavvryl', 455921, 'Polaris', 2010, 140), (424, 20, 'The Quest for the Legends', 'Dragonfree', 10783, 'Mark', 2010, 1), (425, 20, 'Pokémon Revolution: Maverick Heart', 'EonMaster One', 473608, 'Lucas', 2010, 163), (426, 20, 'The Gym', 'Neko Godot', 477051, 'Brock', 2010, 170), (427, 21, 'Shadow and Light', 'chosen_one386', 407965, 'Katie', 2010, 93), (428, 21, 'Six Spirit', 'Ysavvryl', 455921, 'Picasso the Smeargle', 2010, 140), (429, 21, 'The Awesome of Awesomeness', 'Missingno. Master', 410132, 'Jack\'s Pokédex', 2010, 96), (430, 21, 'A Divide', 'Blazie', 462692, 'Holly the Treecko', 2010, 151), (431, 21, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Trey', 2010, 114), (432, 22, 'Shattered Phoenix', 'Chickorita', 432919, 'Marcus', 2010, 119), (433, 22, 'Max\'s Hoenn Journey', 'harryheart', 351425, 'Roxanne', 2010, 64), (434, 22, 'Travels of the Trifecta!', 'Shinneth', 364756, 'Conway', 2010, 73), (435, 22, 'Remix: Dedication Through Light and Darkness', 'Shadow Lucario', 457150, 'Edric', 2010, 142), (436, 22, 'Lull', 'Breezy', 425512, 'Mr. Eldritch', 2010, 109), (437, 22, 'Six Spirit', 'Ysavvryl', 455921, 'Megan', 2010, 140), (438, 22, 'The Corei Quest', 'Air Dragon', 111162, 'Brian', 2010, 5), (439, 22, 'The Quest for the Legends', 'Dragonfree', 10783, 'May', 2010, 1), (440, 22, 'Lull', 'Breezy', 425512, 'Lane', 2010, 109), (441, 23, 'Roots', 'Mrs. Lovett', 457372, 'Stunky', 2010, 143), (442, 23, 'Lull', 'Breezy', 425512, 'Squish the Castform', 2010, 109), (443, 23, 'Six Spirit', 'Ysavvryl', 455921, 'Garnet', 2010, 140), (444, 23, 'The Quest for the Legends', 'Dragonfree', 10783, 'Scyther', 2010, 1), (445, 23, 'Growing Up', 'IneptatNormal', 457514, 'Samantha the Otteshore', 2010, 144), (446, 23, 'The Quest for the Legends', 'Dragonfree', 10783, 'Sandslash', 2010, 1), (447, 23, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Palkia', 2010, 114), (448, 24, 'Pokémon: Battle of Battles', 'ESPNfanatic35', 436106, 'Lucian', 2010, 123), (449, 24, 'Pokémon: Amber Sun and Opal Moon', 'PsychicChampion', 456655, 'Darren', 2010, 141), (450, 24, 'Legends Never Die: The Returning Champion', 'T9009', 461851, 'Victor', 2010, 150), (451, 43, 'Angels and Demons', 'chosen_one386', 449666, 'The demon', 2010, 133), (452, 43, 'A Haunting at the Old Chateau', 'Shrike Flamestar', 434502, 'Rotom', 2010, 120), (453, 43, 'The Adventure of Adventureness', 'Missingno. Master', 410132, 'The pop-ups', 2010, 95), (454, 43, 'PMD: Loopholes', 'Ysavvryl', 429252, 'The Sableye', 2010, 114), (455, 42, 'Destiny\'s Bond', 'Clare', 447060, 'Sabrina', 2010, 131), (456, 42, 'The Corei Quest', 'Air Dragon', 111162, 'Arlene', 2010, 5), (457, 42, 'PokéWorld: The Beginning of a Master', 'supershake', 464900, 'Ace', 2010, 156), (458, 42, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Konga', 2010, 114), (459, 26, 'Blazing Frost', 'darkdragontamer', 307837, 'Lightning', 2010, 35), (460, 26, 'The Adventure of Adventureness', 'Missingno. Master', 410132, 'The narrator', 2010, 95), (461, 26, 'The Awesome of Awesomeness', 'Missingno. Master', 410132, 'Miror B.', 2010, 96), (462, 26, 'Pokédex One-Shots', 'Ysavvryl', 337927, 'Spiritomb', 2010, 50), (463, 26, 'The Corei Quest', 'Air Dragon', 111162, 'Zen', 2010, 5), (464, 26, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Kip', 2010, 114), (465, 45, 'The Sevii Islands Saga', 'Manaphyman', 216749, 'The end of chapter 2', 2010, 12), (466, 45, 'Monster', 'Saffire Persian', 453451, 'The end of part one', 2010, 137), (467, 45, 'When the Grave Calls', 'moonlightning', 461399, '\"We tried our best. We were not good enough.”<br /><br />“Rhydon.” Pluto spoke, “Hyper Beam.”<br /><br />There was dead silence as the Pokemon charged a sphere of yellow energy above its spiralling horn. It aimed down at Jess with an animal rage.<br /><br />The energy was increasing. Jess could feel the rise of power in the room. It was building to a climactic level. Jess tensed her muscles and closed her eyes, hoping this wouldn’t hurt too much.<br /><br />Suddenly I was sitting against the wall, completely in control. Just like that, Jess had relinquished her grip on me. But in front of me, this doom, this demon I was facing, made the change not so welcome.<br /><br />The terror gripped my mind and I wanted to scream and lose control. I wanted to look away from the deadly energy gathering before me but I couldn’t.<br /><br />It was just too beautiful.<br /><br />There was a horrific whooshing of wind and explosion of noise as the attack was released. The light was overpowering.<br /><br />There was a loud and ear ringing crack.<br /><br />Suddenly everything disappeared<br /><br />And turned<br /><br />White.', 2010, 149), (468, 27, 'Dimensions of Darkness Book 2: The Explorers of the Core', 'GalladeRocks', 407050, '\"Aye, aye, captain\" (chapter 22)', 2010, 92), (469, 27, 'Lucid', 'Beechlgz', 475306, 'Henry urinates himself in front of the hyvan warriors', 2010, 167), (470, 27, 'The Adventure of Adventureness', 'Missingno. Master', 410132, 'Miror B.\'s transformation into a pop-up', 2010, 95), (471, 27, 'The Awesome of Awesomeness', 'Missingno. Master', 410132, 'The naming of Cheeseball', 2010, 96), (472, 27, 'Foresight', 'Maze', 414488, 'Pokemon Biology 101: The measure of a Pikachu\'s stamina is a measure of its voltage. No Pikachu with cheek potential difference (CPD) less than 3.7 volts should be placed into battle, no matter how vivacious the brave-natured ones pretend to be.<br /><br />I touch Pikachu\'s cheeks with either side of the meter and the screen brightens up and an LED indicator on the top left flashes red. 3.1 volt CPD, Pikachu is unfit for battle. I show him the score and his little black eyes widen and his mouth hangs in shock and disappointment. It almost breaks my heart to force him back into his Pokeball. I pat his head and recall him. But it doesn\'t matter how he feels, the data suggests he\'s too drained to participate in another round. If I hadn\'t known that, I\'d have let him keep fighting. Maybe if I had a softer heart about the whole thing, I\'d let him stay out and on the field because I appreciate how much he wanted to, but that doesn\'t get you anywhere. It doesn\'t get you an assured victory, it doesn\'t grow your bond with your pokemon, it doesn\'t gain you an overall quality of 96.78% (Thank you, I\'m proud of it.).<br /><br />\"Are you done rubbing salve on your injured babies? Should we continue with the match or would you rather I wait a little longer while you read your Pikachu a bedtime story?\" he says in a jeering tone.<br /><br />It\'s called Reaction Formation. \'I\'m losing so I\'ll shout like I\'m winning.\'<br /><br />\"Oh, I\'m sorry. Yeah, sure. Let\'s continue.\" I let him know with my tone that what I just did was not out of the ordinary. I\'m not excited, I\'m not on a hot streak. I am a hot streak.<br /><br />I\'m already thinking of what I\'ll buy with the money I earn from this battle. Devon Corp\'s black bulletproof vest.<br /><br />I imagine being hit by a bus wearing a bulletproof vest.<br /><br />Falling off of a balcony wearing a bulletproof vest.<br /><br />****, focus. You haven\'t won yet. Fight like you\'re losing until you win.<br /><br />And then he does something truly shocking.<br /><br />\"Salamence!\" The loudest roar you can imagine. Louder.<br /><br />That was my heart pounding.<br /><br />That was my pulse racing.<br /><br />That was my jaw dropping.<br /><br />****! Now he can see it, my fear. It\'s the moment in your nightmare when you\'re at school and you realize you have no pants on.', 2010, 100), (473, 27, 'The Quest for the Legends', 'Dragonfree', 10783, 'Mark muttered something in agreement and sent Charizard, Dragonair and Scyther out again while Alan brought him a few potion bottles. Charizard looked with embarrassment at Carl’s female, who winked with a teasing grin before turning around to let Carl spray some Potion on the cut on her belly.<br /><br />“Well, that battle was… interesting.” Mark coughed, not sure how to finish the thought.<br /><br />“Awkward, ” Charizard agreed, and Mark could have sworn he saw the dragon’s face slightly reddening.<br /><br />“Very.”<br /><br />“Although at the same time, it was… kind of nice.”<br /><br />Mark couldn’t help snickering. “Charizard in love.”<br /><br />“I hate you sometimes, ” the Pokémon muttered.', 2010, 1), (474, 27, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Dialga and Palkia decide on the chosen hero', 2010, 114), (475, 33, 'Blazing Frost', 'darkdragontamer', 307837, '\"Okay, idiots, I’m not going to wander into Brock’s gym just to get crushed by some pathetic pebble. I need experience, and one of you is going to give it to me. Who’s my first victim?\"', 2010, 35), (476, 33, 'Foresight', 'Maze', 414488, '\"No, I\'m okay. I just didn\'t get a lot of sleep last night, I guess. And then there was the unexpected battle. And then there was the sun and its rays. And so on and so on.\" I\'m actually saying \"and so on and so on\". I don\'t even know what I\'m talking about.\"', 2010, 100), (477, 33, 'When the Grave Calls', 'moonlightning', 461399, '“Revenge? I don’t think so Jess. I don’t think life works like that. When the grave calls, you have to deal with it. I’ve realised this. You can’t take it back, can’t change the past, it’s done.<br /><br />No amount of revenge will ever help.”', 2010, 149), (478, 33, 'The Quest for the Legends', 'Dragonfree', 10783, '\"Death is not to be feared, for it is the only thing that we all have in common.\"', 2010, 1), (479, 33, 'PMD: Loopholes', 'Ysavvryl', 429252, '\"Hey, want to see something stupid?\" Kip called out. He then looked down and started singing. \"Go to sleep, go to sleep, go to sleep you frikken *******!\"', 2010, 114), (480, 44, 'Dimensions of Darkness Book 2: The Explorers of the Core', 'GalladeRocks', 407050, 'Piplup and Darkrai\'s aura battle (chapter 30)', 2010, 92), (481, 44, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, 'Paul vs. Rich (chapter 29)', 2010, 10), (482, 44, 'The Chasing Flames', 'Sinnohdragon', 441824, 'Escaping a volcano', 2010, 127), (483, 44, 'Six Spirit', 'Ysavvryl', 455921, 'Polaris vs. Telsa (first time)', 2010, 140), (484, 44, 'Remix: Dedication Through Light and Darkness', 'Shadow Lucario', 457150, 'Jyharri hitting Tyrogue with a pole', 2010, 142), (485, 44, 'The Corei Quest', 'Air Dragon', 111162, '“What the- what are you, shrimp?” Kamren yelled rudely, earning a cold glare from the creature that sat or stood (it was hard to tell because of the cloak) before him.<br /><br />The being said nothing; just stared.<br /><br /><Yo, my master asked you a question? Or are you dumb?!> Burner yelled.<br /><br />Still no sound escaped the Pokémon’s lips.<br /><br />“If you can use Light Screen, you must be a Pokémon!” Kamren said in glee.*<br /><br />So, a Pokémon is in charge of Pokémon? Sapph thought, bewildered. Must be a Psychic type to intimidate Fighting types like Rumboo... but wait, Rumboo are part Ghost too, so why would they choose to serve a Psychic type?*<br /><br />“And if you’re a Pokémon, ” the reddish blond trainer cackled, enlarging an empty pokéball. “It simply means I can catch you! Go, pokéball!” Kamren roared, throwing the pokéball towards it.<br /><br />“Wha-?” Sapph started in surprise. “No fair, Kamren!”<br /><br />“All’s fair in my book, widdle Sapphire!” Kamren mocked as the pokéball made its progress towards the strange Pokémon.<br /><br />Reacting quickly, the being’s eyes snapped forward onto Kamren’s Therline, who was stepping out of the pokéball’s path. The yellow orbs glowed an extraterrestrial blue as Burner felt his body move out of control, his whole being also enveloped on a light of matching hue to the cause’s eyes.<br /><br /><Hey!> Burner yelled, his eyes dilating in fear. <What d’you think you’re doing? HEY!> He yelled as he was thrown bodily by unseen forces into the pokéball’s way. The stranger released its psychic hold on burner as the pokéball struck him in the back, splitting the ball open and sucking him in.<br /><br />“What the-“ Kamren gasped stunned as the pokéball hit the ground with a thud, rolled around a couple of times before the light which had been blinking in the centre went off with a loud PING!, signaling that it had successfully captured its accidental target.<br /><br />“Wow, way to go, Little Kammykins, ” Sapph choked out having a hard time controlling his laughter. “What a classic catch!”<br /><br />“Shut it, you wannabe! OK, you!” he added at the Pokémon. “Let’s see you dodge this!” he said with a flourish, pulling out a black and white pokéball with two yellow stripes running on either side of a yellow letter ’H’ parallel to each other, all embossed on the black half of the pokéball.<br /><br />Whoa, that’s an Ultra Ball! Sapph thought, suddenly jealous. Why’s he get all the good stuff?*<br /><br />“Ultra ball, go!” he exclaimed, cocking back his fist and throwing the enhanced capture device at his elusive quarry.<br /><br />The creature’s eyes went blue again, this time ensnaring the Ultra ball in a halo of shimmering blue light.<br /><br />“Hunh?!” Kamren practically screamed in frustration.<br /><br /><Sorry, > the being said softly. <But I can’t play with you anymore.><br /><br />With that, the creature under the cloak raised a fingerless gloved hand out of the cloak, pointing it at Kamren. Suddenly, as had happened with Burner, Kamren found himself completely out of his own control.<br /><br />“Hey, what gives?” Kamren roared in panic as he was lifted bodily in the air. “What’s the meaning of this? Put me down NOW! I order you to...”<br /><br /><Nobody orders me to do anything, > the creature said coldly, slightly clenching his fingers and he bent his fore arm towards his chest. With a sweep of his hand (the glove seemed attached to his hand), he sent Kamren and the Ultra ball soaring out through the wall.', 2010, 5), (486, 28, 'Anima Ex Machina', 'JX Valentine', 427130, 'Oak watches a parasite overtake a woman', 2010, 110), (487, 28, 'Braid', 'JX Valentine', 473047, '\"H-hey!\" you exclaim. \"Let me go!\"<br /><br />The old woman\'s grip on your wrist tightens. \"I\'m sorry, child. She made me do this.\"<br /><br />Your joints feel stiff. At first, you think it\'s just fear, but looking down, you notice something weird: your skin has turned rough and brown, and small twigs are starting to grow from your arms.<br /><br />You want to scream, but you just can\'t. Your mouth is open, but no sound is coming from it.<br /><br />The old woman guides you outside. You can feel the chill wind all around you, but it passes right through your clothes and your skin and directly into your bones. Your insides feel hot, like they\'re trying to boil up against your skin. Groaning, you writhe and try to break away from the old woman, but she simply guides you to a spot near the house.<br /><br />Your feet break out of your sneakers. Your toes thrust into the ground. You can feel the moist earth beneath you, but your mind, by then, breaks.<br /><br />Eventually, you can\'t think straight as your body stretches and thickens. Your legs fuse together into a single trunk, and all of a sudden, you realize in your last fit of consciousness that you never felt a single bit of pain. Discomfort, yes, but no pain. It was almost as if it was natural for this to happen.<br /><br />Looking down at the old woman, you notice another creature standing beside her. At first, you think it\'s a lady dressed in green, but at second glance, you notice that it\'s a small, pixie-like pokémon with large, blue eyes turned towards you.<br /><br />\"Another offering, \" the old woman says wearily. \"Does it satisfy you, my lady?\"<br /><br />The creature nods. She doesn\'t say anything.<br /><br />---<br /><br />Panicked by the green woman\'s threat, the chieftain\'s daughter ran into the village. There, she saw the strangest sight she had ever seen: people everywhere turning into trees. She watched helplessly as her father\'s arms grew into branches, as his face disappeared into bark, as his legs thrust into the ground where he stood. She watched her suitor drop his quiver and grow leaves around his head. She watched as the children froze where they were, their eyes wide and terrified as they, too, became trees.<br /><br />After a while, the chieftain\'s daughter screamed and ran into one of the houses. The lady in green followed her, breaking down the red door without even touching it. There, as the chieftain\'s daughter sat on the floor and cried, the lady in green knelt next to her and touched her on the head.<br /><br />\"There, there, \" she said. \"You will not be alone. All around you, the people of this village will always stand around this house. And, if that is not enough, I will always be with you. I have even given you a gift. You will not know how to use it until much later, of course, but I will have time to teach you some other day.\"<br /><br />She stood. The chieftain\'s daughter still said nothing. Instead, she could only glare at the woman in green.<br /><br />\"Someday, \" the witch said, \"you will come to love the people of the village as they are, and you will come to love me. Until that day, use the gift I have given you to bring me your offerings. It will be the way you can work to earn my forgiveness.\"<br /><br />The woman flashed one more smile -- one more toothy grin, and for the first time, the chieftain\'s daughter felt afraid of the green woman.<br /><br />But the witch did nothing else except leave. Eventually, the buildings of Ilex Village would crumble except for the one the chieftain\'s daughter would grow old in -- always old but never dead. Her hair turned from sunlight golden to a pale silver, her eyes lost the beautiful sapphire blue that once attracted the sorry hunter, and her moon-colored skin grew as cold as her heart, but she would never die.<br /><br />Instead, she built a stone shrine to her mistress. There, she used the magic that the witch of the prairie had given her -- the same magic that she had witnessed herself -- to offer countless lost children to the green woman, the creature who became the Voice of the Forest.<br /><br />---<br /><br />I\'m so sorry.', 2010, 161), (488, 28, 'Growing Up', 'IneptatNormal', 457514, '\"Well, thing’s aren’t looking great, especially now that he’s become conscious\" said Dr. Mathenos, lip twitching a bit. \"Are you aware about how potions work, Jerwin?\"<br /><br />I shook my head.<br /><br />\"Well, \" he began. \"Potions release certain chemicals that heal the Pokemon. Ordinarily, these are released naturally when the Pokemon faints. They only come out in small doses, to ensure that the Pokemon becomes fully healed, withoit complicatations.\"<br /><br />\"However, you are never supposed to inject a Pokemon with a potion while it is fainted. It says so on the potion itself. The chemicals that heal the Pokemon are very concentrated in potions. While they are ordinarily very beneficial to the Pokemon, they can cause bad things to happen. If the bones were broken, as they were already in Teddiursa’s case, they can start growing in awkward angles, even damaging internal organs, or growing out of the skin. In this Pokemon’s case, both are happening.\"<br /><br />I made a chocking sound, halfway between a sob and a gasp.<br /><br />\"If it weren’t for the old man and lady’s idea, as you say, which was putting him inside the Pokeball, he probably wouldn’t be alive right now. His clavicle is growing up threw his neck - it’s already pierced through his windpipe, incidentally - and is heading directly towards his brain. If it hits, he’s gone.\"<br /><br />\"Right now, he’s stable inside his Pokeball. There’s only one thing we can do to save him at this point, and that’s an extremely risky surgery. Worse yet, is that we don’t have any anesthetics to prevent him from feeling pain. The potion chemicals, still in his body, fight them off as if they were intruders, or sickness.\" He sighed, and took off his spectacles.<br /><br />\"Jerwin, that means that we are going to have to break, saw, and reset his bones, while he’s still conscious.\"<br /><br />I nodded.<br /><br />\"I don’t blame you for this, Jerwin. You were trying to do your part as a humane human being.\" Dr. Mathenos said solemnly. \"However, it was irresponsible for you to do it this way. Common sense could have averteted this whole ordeal. If you just had caught the Teddiursa in a Pokeball, without injecting it with unneeded medicine, everything would be great right now.\"<br /><br />\"Oh, and it obviously got in a battle before it was so seriously maimed, if you hadn’t noticed. It’s eyes were clawed out. It’s going to be blind forever.\"<br /><br />With that, Dr. Mathenos gave me a brief, kind look, and paced to the back room. I stared straight ahead, stunned at what my actions had cost the Pokemon.<br /><br />A few minutes later, I could hear the screams and squeals of a Teddiursa being tortured. I knew that it was all my fault.<br /><br />All my stupid, ****ing fault.', 2010, 144), (489, 28, 'The Path of Thorns', 'Elemental Charizam', 452068, 'It had been a long day, what with the journey, the fight and the elder’s endless font of fortune-cookie wisdom. The soft fabric of the bed sheets felt good on her aching body. She’d fished a book from her pack earlier, but she was too tired to read it.<br /><br />Her hand grasped a pokéball, etched with the name ‘Eidolon’, and released the catch. He appeared in a flash, the gases that made up his miasmic body contriving to look solid as they coalesced into the shape of a gengar. He gave her a toothy white grin wider than his body.<br /><br />As he placed his hands on her forehead, she fell once more into a dreamless sleep.', 2010, 135), (490, 29, 'Roots', 'Mrs. Lovett', 457372, 'When Stunky is abused', 2010, 143), (491, 29, 'Pokémon XD^3: The Waves of Truth', 'The Great Butler', 185032, 'Anabel\'s miscarriage', 2010, 10), (492, 29, 'No Leaf Clover', 'PokemonHero', 438972, 'The end', 2010, 124), (493, 29, 'Monster', 'Saffire Persian', 453451, '“Rrrratttaaaaata, ” it chattered in warning, watching her with keen, wary eyes, fully prepared to bolt when and if the need came. “Rrrrrattatta.”<br /><br />Anna picked her head up – that action nearly sent the creature fleeing.<br /><br />She didn’t move. She didn’t want to scare it away. She liked animals.<br /><br />Anna tried to smile now. The pain was fading. She could be brave and smile. Maybe the rattata would be her friend. “Hi. I’m Anna. An-na.”<br /><br />Its stance was different now, less tense and less prepared. It cocked its head as if it were genuinely confused. Instead of running away, it came closer, sniffing the air. “Rat? Ratttata, rat?”<br /><br />Anna crept forward, stretching out a tentative hand. No sooner had her hand brushed the top of the rattata’s head then did it react. With a hissing screech, the rattata recoiled, sinking its sharp fangs deep into her palm. Anna cried out in pain, flailing her hand with its unnaturally curved fingers until the rat let go. The force of the swing sent the rat’s tiny body skidding across the cement floor. It quickly leapt back onto its feet, scurrying away through the hole to freedom.<br /><br />Anna hardly noticed the throbbing pain, or the blood steadily welling up from the bite. Instead, she watched the hole that the rattata had fled out of, waiting for it to come back. She waited and waited and waited, but it never returned. The only companion she had was the cold, unfeeling silence.<br /><br />Anna hadn’t meant to frighten it. Was she really that scary?<br /><br />This time, Anna couldn’t stop herself from crying. She really wasn’t the brave girl Daddy said she was.<br /><br />…Monster…', 2010, 137), (494, 29, 'When the Grave Calls', 'moonlightning', 461399, 'On the inside I bled dropping to my heart.<br /><br />“Ha! The weakling rodent died! That’s one Pokémon we’re not taking to the new universe!”<br /><br />I snapped.<br /><br />Suddenly I was split in two. And I was sitting carelessly on a cloud an eternity away watching a sad girl through a telescope.<br /><br />She ran, leaving all others behind. She ran, trying to escape the nightmare. She ran into the rain, the dark sky unleashed its fury on her. But she kept running. She blundered into a grove of trees and fell, sinking her forearms into deep mud.<br /><br />Then there was a sucking sensation. My haven was destroyed as I came back to myself.<br /><br />I was cold and alone. The grass beneath my feet sucked up rain, uncaring of the way I felt. I could almost feel the fear, rage and sadness being condensed inside me, forming into something soiled, something I could ignore for a while.<br /><br />I put my head in my hands. It was dark so it made no difference. The wind was picking up.*<br /><br />The trees moaned for my sorrow.<br /><br />How thoughtful.', 2010, 149), (495, 29, 'The Quest for the Legends', 'Dragonfree', 10783, 'May stared over the area for a moment and then nodded. “I think this is the best we can do, ” she said quietly. Taylor’s body was still lying there on the blood-soaked ground, jarringly out of place alone in the barren landscape. Neither of them had been able to bring themselves to touch it.*<br /><br />“Are we going back to the trainer lodge?” Mark asked, the thought of being around other people strangely nauseating.<br /><br />May shook her head. “We’ll camp somewhere else.” She spent a moment seemingly lost in thought before she finally looked up at Tyranitar. “You need to go away.”<br /><br />He looked back at her, uncomprehending. “Not with you?”<br /><br />“No, not with me.” She looked down. “I’m releasing you. Go and find some wild Tyranitar to live with.”<br /><br />The Pokémon stared at her. “But I won’t…”<br /><br />“It doesn’t matter, ” May said, her voice shaking a little but still firm. “You killed someone. I don’t know if they can trace it back to you somehow, but if they can, I can’t still be carrying you around. Wild Pokémon don’t get prosecuted.”<br /><br />Tyranitar looked mortified. He stared at May for a moment longer and then let out a bone-chilling wail before he turned around and fled, eventually blending into the rocky landscape and disappearing from sight.<br /><br />Mark turned to May and noticed with a jolt that there were tears running down her cheeks as she stared after Tyranitar. As she realized he was looking at her, she quickly wiped her face with her sleeve and then turned around, heading off without a word.<br /><br />Something compelled Mark to take one last look at the body before he followed her. The boy’s face was frozen in horror, his frightened stare now fixed forever on the sky above; he didn’t look like a League Champion, or a dangerous opponent, or a cheating scumbag. He just looked like a scared little kid who would never get to walk or talk or laugh or do anything again.', 2010, 1), (496, 29, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Team Marmalade\'s execution', 2010, 114), (497, 29, 'PMD: Loopholes', 'Ysavvryl', 429252, 'The battle of Amp Plains', 2010, 114), (498, 30, 'Maids of the East Wing', 'Mrs. Lovett', 464179, 'One week later, and we\'re still here. No blacklist. Backlot didn\'t even have time to fire us. He seemed to like the idea too, and as long as we gave a small percent of our profits to the mansion, he\'d give us living space and endorse our contest.<br /><br />Still, for me, every day is the same. I wake up, see the sunlight through my window, and smile. I get up, make my bed, brush my teeth, and put on my uniform - red dress, white tights, heels, and - surprise! - makeup.<br /><br />After I leave my room, I head to the lone door at the end of the East Wing, where I will wait, ready to welcome anyone that happens to come our way. You\'ll see our advertisements on TV, and sometimes on billboards. Our story is all over the papers, how five ordinary maids rose up to become celebrities. The media has made us an image, but really, we\'re just five friends. Five friends who once upon a time had nothing, then built themselves up into having everything.<br /><br />\"Welcome to the East Wing.\"', 2010, 155), (499, 30, 'Gratitude', 'pepperedfox', 435368, '\"... Is this the place?\" she hears Lucas ask.<br /><br />\"... Yes.\" The word leaves Marley\'s lips with difficulty. Her hand clenches into a fist. \"Yes. It is.\" She turns around, forces a smile. \"This is the end of my journey.\"<br /><br />Lucas can sense her disappointment, but she does not care. He begins to say something, but Marley looks away, out toward the dark ocean before her, face blank. \"\'The Pokemon among the flowers...\'\" she whispers, leaning against the stone. It is real and solid, an anchor for her to cling on in the midst of her broken dreams.<br /><br />She feels a hand on her shoulder. \"I\'m sorry, \" says Lucas.<br /><br />Marley lets her eyes wander upwards, towards the stars once more. They wink at her, fellow conspirators in on a secret that no one else knew. The ocean sings its song, lapping at the shore in accompanying melody. She turns around, looking down at the page clutched in her hand.<br /><br />\"... It\'s fine, \" she says at last, raising her gaze to meet Lucas\'s. \"It\'s not the first time.\"<br /><br />Lucas frowns. \"That doesn\'t make it any better.\"<br /><br />Marley traces the petals on the pressed flower, and the smile returns. \"... I\'m happy that I made it here, \" she answers. \"This place is beautiful.\" She hesitates, then tenderly lets the page go. It whirls in the wind, once, twice, then disappears into the night. Lucas watches.<br /><br />\"My time with you is drawing to a close...\"<br /><br />It surprises her, those words. It surprises Lucas as well.<br /><br />\"What do you mean by that?\" he says in alarm.<br /><br />Marley flushes. She is not used to saying so much, with such little restraint. But she continues to talk, and the words rise up from a hidden part of her, coming freely, flowing like a stream. \"I... I don\'t like to talk. I choose my words carefully, but they may still hurt someone accidentally... when I think of that, I clam up...\"<br /><br />She takes a deep breath. \"That\'s why I think this certain Pokemon is so wonderful. It\'s a Pokemon that conveys the feelings of gratitude in a nice way...\"<br /><br />It is gratitude that she has tried so hard to convey, tried so hard to say but couldn\'t. Something in her heart and in her throat had always prevented her from doing so, but as she looks into Lucas\'s eyes, into the memory of her long-gone friend, she feels it dissipate into a wonderfully tender feeling.<br /><br />\"I... thank you.\"', 2010, 121), (500, 30, 'The Quest for the Legends', 'Dragonfree', 10783, '“Well, anyway, ” Ash continued before Mark had the chance to answer, directing his next question at Mark’s Pokémon, “what do you honestly think of your trainer?”<br /><br />“He’s nice, ” Charmeleon answered. “A little foolish, though…” He shot a glance at Scyther and then at Mark, who just blushed.<br /><br />“He is very kind and cares about us, ” said Sandslash. “Not the best battler, but a good person.”<br /><br />“He saved my life, ” said Jolteon quietly.<br /><br />“Mine too, ” Charmeleon added.<br /><br />“He’s not bad, ” Dragonair just said.<br /><br />“I don’t know what he’s like, he just caught me earlier, ” said Leta.<br /><br />“And you?” Ash inquired, turning to Scyther.<br /><br />The mantis took his time to answer. He looked into Ash’s eyes for a long while, and then at Mark.<br /><br />“I came with him, ” he then began slowly. “I needed him… something to give me a purpose after leaving behind all that I ever loved… something to make life worth living so I wouldn’t lose all sanity I had left and slit my own throat…”<br /><br />He raised his scythe in front of his face, staring at his own reflection in the shiny surface.<br /><br />“I guess, ” he finished softly, “that he saved my life too.”<br /><br />Ash looked at Mark in silence for a few seconds, but then said: “Your Pokémon have judged. You deserve to be a Pokémon trainer. May I have your Pokédex, please?”<br /><br />Mark handed it to Ash, and he gestured to Pikachu, who darted into the house before returning, holding some kind of a small, box-like device that was around two thirds of his own size. He gave it to Ash, who scratched Pikachu in return before somehow attaching Mark’s Pokédex to the device and pressing a few buttons on both. A small card, not unlike a credit card, popped out from a slot on the box’s side.<br /><br />“Done, ” said Ash, handing the card to Mark. He looked at it; it had his name, that horrible photo, little icons of his badges, and a bit of other information. On the back were empty spaces for showing his placements in various competitions – such as the Attack Approval.<br /><br />“Thank you, ” Mark said gratefully.<br /><br />“Thank your Pokémon, ” said Ash and smiled.<br /><br />“Um, Dad? Shouldn’t we get going?” Alan inserted. Ash quickly looked at his watch.<br /><br />“Yes, we should, ” he replied, immediately starting to walk quickly down the street. Mark and Alan ran after him.', 2010, 1), (502, 30, 'PMD: Loopholes', 'Ysavvryl', 429252, 'Kip and Manaphy\'s conversation at Zero Island', 2010, 114), (503, 34, None, 'Buraddo_Aipom', None, None, 2010, None), (504, 34, None, 'Ysavvryl', None, None, 2010, None), (505, 34, None, 'Breezy', None, None, 2010, None), (506, 34, None, 'Shrike Flamestar', None, None, 2010, None), (507, 34, None, 'Mrs. Lovett', None, None, 2010, None), (508, 34, None, 'purple_drake', None, None, 2010, None), (509, 34, None, 'Air Dragon', None, None, 2010, None), (510, 35, None, 'Chickorita', None, None, 2010, None), (511, 35, None, 'Beechlgz', None, None, 2010, None), (512, 35, None, 'Charoshi', None, None, 2010, None), (513, 35, None, 'The Jewel of Life', None, None, 2010, None), (514, 35, None, 'Blitzy', None, None, 2010, None), (515, 35, None, 'Astra', None, None, 2010, None), (516, 35, None, 'xmikeyxlikesitx', None, None, 2010, None), (517, 36, None, 'chosen_one386', None, None, 2010, None), (518, 36, None, 'GalladeRocks', None, None, 2010, None), (519, 36, None, 'Ysavvryl', None, None, 2010, None), (520, 36, None, 'EonMaster One', None, None, 2010, None), (521, 36, None, 'Pkmn Breeder Jack', None, None, 2010, None), (522, 36, None, 'moonlightning', None, None, 2010, None), (523, 36, None, 'GastlyMan', None, None, 2010, None), (524, 37, None, 'chosen_one386', None, None, 2010, None), (525, 37, None, 'Shadow Lucario', None, None, 2010, None), (526, 37, None, 'PsychicChampion', None, None, 2010, None), (527, 37, None, 'T9009', None, None, 2010, None), (528, 38, None, 'Breezy', None, None, 2010, None), (529, 38, None, 'Bay', None, None, 2010, None), (530, 38, None, 'Silawen', None, None, 2010, None), (531, 38, None, 'Shadow Lucario', None, None, 2010, None), (532, 38, None, 'bobandbill', None, None, 2010, None), (533, 38, None, 'Dawn_Hero', None, None, 2010, None), (534, 38, None, 'moonlightning', None, None, 2010, None), (535, 38, None, 'Scizorstrike', None, None, 2010, None), (536, 39, None, 'FlamingRuby', None, None, 2010, None), (537, 39, None, 'Breezy', None, None, 2010, None), (538, 39, None, 'Buraddo_Aipom', None, None, 2010, None), (539, 39, None, 'The Great Butler', None, None, 2010, None), (540, 39, None, 'Air Dragon', None, None, 2010, None), (541, 39, None, 'PsychicChampion', None, None, 2010, None), (542, 39, None, 'kittyguy2008', None, None, 2010, None), (543, 39, None, 'In a Quandary', None, None, 2010, None), (544, 39, None, 'GastlyMan', None, None, 2010, None), (545, 39, None, 'Kjt', None, None, 2010, None), (546, 30, 'Pokédex One-Shots (Froslass)', 'Ysavvryl', 337927, 'By the time she woke up, the short-lived winter day was already gone. She ate a few more icicles, then went to check on her sculpture. It was still standing, but weakened a little by the sun’s light. It was foggy yet again, so she strengthened weak spots in the ice.<br /><br />A crunch in the snow put her on alert, but it was the man who had saved her yesterday. “Then it is your work, Froslass.”<br /><br />She nodded. “<A sign of my thanks, that is all. I worked hard on it.>”<br /><br />“You must have worked hard all night to make it.” He smiled. “Many people came to see it, even those not of our faith. It’s something special.”<br /><br />She brought her wings together on her chest. “<It is the biggest one I have made. The best so far, I think.>”<br /><br />He turned to the sculpture and looked it over. “Many people came. And they heard of how our synagogue is in danger of being removed unless it is repaired. We’ve gotten many donations to help cover the cost. We’re not quite there yet, but we almost have enough money to cover everything. And it’s all thanks to your work here.”<br /><br />“<Is it?>” she asked, bashfully cover her face. “<I didn’t mean to do that much.>”<br /><br />He patted her. “Thank you, although I feel you did this in thanks to me. Perhaps God has worked through you today.”', 2010, 51), (547, 1, 'Foregone Conclusion', 'elyvorg', 490657, None, 2011, 175), (548, 1, 'The Battle Frontier: A Brendan and May Adventure', 'Breezy', 533114, None, 2011, 203), (549, 1, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, None, 2011, 15), (550, 1, 'League of Heroes', 'Feralninja', 517470, None, 2011, 189), (551, 1, 'The Awesome of Awesomeness', 'Missingno. Master', 410132, None, 2011, 96), (552, 1, 'Shining Silver', 'AmericanDreamer', 525484, None, 2011, 194), (553, 1, 'Max\'s Hoenn Journey', 'harryheart', 351425, None, 2011, 64), (554, 1, 'Pirates of the Caribbean: The Creature of Storms', 'ESPNfanatic35', 537322, None, 2011, 205), (555, 1, 'The Thinking Man\'s Guide to Destroying the World', 'Cutlerine', 513306, None, 2011, 187), (556, 1, 'The Kingdom', 'Zibdas', 547410, None, 2011, 215), (557, 1, 'Under the Same Sky', 'Draco Malfoy', 528756, None, 2011, 199), (558, 1, 'Broken Promise: The Story of Ash\'s Pidgeot', 'Articuno_rocks', 476319, None, 2011, 168), (559, 1, 'The Power N.U.', 'Articuno_rocks', 538709, None, 2011, 207), (560, 1, 'Pokémon Epilogues: Season 1 - The Birth', 'Tonberry_King', 491951, None, 2011, 177), (561, 1, 'Lull', 'Breezy', 425512, None, 2011, 109), (562, 1, 'Stars', 'Dramatic Melody', 319986, None, 2011, 39), (563, 2, 'Retroactive Continuity', 'JX Valentine', 548910, None, 2011, 216), (564, 2, 'The Life of a Bulbasaur', 'Bulbaclaw', 525961, None, 2011, 195), (565, 2, 'New Game', 'Dragon user X', 529465, None, 2011, 200), (566, 2, 'Pokédex One-Shots: Chandelure and Vanilluxe', 'Ysavvryl', 337927, None, 2011, 53), (567, 2, 'A Day in the Life of a Gym Leader: Janine', 'disclaimer065', 495869, None, 2011, 183), (568, 2, 'Fad', '[Imaginative]:[Clockwork]', 482621, None, 2011, 172), (569, 2, 'Ash Ketchum is the Man', 'Unicorn', 501846, None, 2011, 184), (570, 2, 'My Reasons', 'JX Valentine', 528740, None, 2011, 198), (571, 2, 'A Day in the Life of a Gym Leader: Blaine', 'disclaimer065', 495869, None, 2011, 181), (572, 2, 'Perish: The One-Shots: Normal', 'Dramatic Melody', 375889, None, 2011, 79), (573, 3, 'The Ripple Effect', 'Zadros', 430827, None, 2011, 115), (574, 3, 'Digimon: The Roots of Yggdrasil', 'Kamotz', 523317, None, 2011, 193), (575, 40, 'Who Do You Think You Are?', 'Dawn_Hero', 503689, None, 2011, 185), (576, 4, 'Crushed', 'Dragon user X', 528557, None, 2011, 197), (577, 4, 'The Battle Frontier: A Brendan and May Adventure', 'Breezy', 533114, None, 2011, 203), (578, 4, 'The Epic of Epicness', 'Missingno. Master', 410132, None, 2011, 97), (579, 4, 'The Power N.U.', 'Articuno_rocks', 538709, None, 2011, 207), (580, 4, 'The Thinking Man\'s Guide to Destroying the World', 'Cutlerine', 513306, None, 2011, 187), (581, 4, 'Absconditus Infensus', 'moonlightning and kjt', 523254, None, 2011, 192), (582, 4, 'Nightfall', 'Manaphyman', 493545, None, 2011, 179), (583, 4, 'To Dust', 'Lily', 512896, None, 2011, 186), (584, 4, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, None, 2011, 18), (585, 4, 'Tabula Rasa', 'purple_drake', 542138, None, 2011, 210), (586, 5, 'Retroactive Continuity', 'JX Valentine', 548910, None, 2011, 216), (587, 5, 'The Epic of Epicness', 'Missingno. Master', 410132, None, 2011, 97), (588, 5, 'The Random of Randomness', 'Missingno. Master', 410132, None, 2011, 98), (589, 5, 'Pirates of the Caribbean: The Creature of Storms', 'ESPNfanatic35', 537322, None, 2011, 205), (590, 5, 'Lull', 'Breezy', 425512, None, 2011, 109), (591, 5, 'Roots', 'Mrs. Lovett', 457372, None, 2011, 143), (592, 5, 'Pokémon: The Magic of a Melody', 'FlamingRuby', 471734, None, 2011, 159), (593, 5, 'Pokémon Revolution: Maverick Heart', 'EonMaster One', 473608, None, 2011, 163), (594, 5, 'Absconditus Infensus', 'moonlightning and kjt', 523254, None, 2011, 192), (595, 6, 'Retroactive Continuity', 'JX Valentine', 548910, None, 2011, 216), (596, 6, 'The Cool Kids', 'Antithesis', 550615, None, 2011, 218), (597, 6, 'Coriolanus Rowland\'s Guide to Pokémon Husbandry', 'Cutlerine', 543615, None, 2011, 212), (598, 6, 'Pokédex One-Shots', 'Ysavvryl', 337927, None, 2011, 50), (599, 6, 'Shining Silver', 'AmericanDreamer', 525484, None, 2011, 194), (600, 6, 'Lull', 'Breezy', 425512, None, 2011, 109), (601, 6, 'polar nettles', 'Ejunknown and katiekitten', 540353, None, 2011, 208), (602, 6, 'The Game of Champions', 'Lamora', 492836, None, 2011, 178), (603, 6, 'To Dust', 'Lily', 512896, None, 2011, 186), (604, 48, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, None, 2011, 15), (605, 48, 'Shining Silver', 'AmericanDreamer', 525484, None, 2011, 194), (606, 48, 'Lull', 'Breezy', 425512, None, 2011, 109), (607, 48, 'The Kingdom', 'Zibdas', 547410, None, 2011, 215), (608, 48, 'polar nettles', 'Ejunknown and katiekitten', 540353, None, 2011, 208), (609, 48, 'Tabula Rasa', 'purple_drake', 542138, None, 2011, 210), (610, 7, 'The Battle Frontier: A Brendan and May Adventure', 'Breezy', 533114, None, 2011, 203), (611, 7, 'The Epic of Epicness', 'Missingno. Master', 410132, None, 2011, 97), (612, 7, 'How to Save a Life', 'chosen_one386', 546372, None, 2011, 214), (613, 41, 'Lull', 'Breezy', 425512, None, 2011, 109), (614, 41, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, None, 2011, 15), (615, 41, 'Under the Same Sky', 'Draco Malfoy', 528756, None, 2011, 199), (616, 41, 'Roots', 'Mrs. Lovett', 457372, None, 2011, 143), (617, 41, 'Tabula Rasa', 'purple_drake', 542138, None, 2011, 210), (618, 8, 'Foregone Conclusion', 'elyvorg', 490657, None, 2011, 175), (619, 8, 'Nightfall', 'Manaphyman', 493545, None, 2011, 179), (620, 8, 'Lull', 'Breezy', 425512, None, 2011, 109), (621, 8, 'Under the Same Sky', 'Draco Malfoy', 528756, None, 2011, 199), (622, 8, '~Nameless Supplanter~', 'Caduceus Brigade', 481961, None, 2011, 171), (623, 8, 'Pokémon Epilogues: Season 1 - The Birth', 'Tonberry_King', 491951, None, 2011, 177), (624, 9, 'Three Heads Are Better Than One', 'elyvorg', 556077, None, 2011, 221), (625, 9, 'Option Other', 'Breezy', 528450, None, 2011, 196), (626, 9, 'New Game', 'Dragon user X', 529465, None, 2011, 200), (627, 9, 'A Journeymen Solstice Carol', 'Feralninja', 555071, None, 2011, 220), (628, 9, 'A Day in the Life of a Gym Leader: Erika', 'disclaimer065', 495869, None, 2011, 182), (629, 9, 'Secretary', 'rokettololi', 519457, None, 2011, 190), (630, 9, 'My Reasons', 'JX Valentine', 528740, None, 2011, 198), (631, 9, 'A Day in the Life of a Gym Leader: Blaine', 'disclaimer065', 495869, None, 2011, 181), (632, 49, 'The Battle Frontier: A Brendan and May Adventure', 'Breezy', 533114, 'Brendan and May', 2011, 203), (633, 49, 'The Random of Randomness', 'Missingno. Master', 410132, 'Roy SquarePants and Bianca', 2011, 98), (634, 49, 'Skogsrå', 'Diddy', 514806, 'Celebi/Gardenia', 2011, 188), (635, 49, 'Who Do You Think You Are?', 'Dawn_Hero', 503689, 'The Queen/the condemned man', 2011, 185), (636, 50, 'Option Other', 'Breezy', 528450, 'Hilda and Hilbert', 2011, 196), (637, 50, 'Chronicles of Unova', 'ChaosBlizzard', 538377, 'David and Paula', 2011, 206), (638, 50, 'Poké Punch-Out', 'Hilijix', 543313, 'Doc Throh and Little Hitmonchan', 2011, 211), (639, 50, 'Angels and Demons', 'chosen_one386', 449666, 'Patrick McKenna and Katharine', 2011, 133), (640, 50, 'My Reasons', 'JX Valentine', 528740, 'Bill and Faith', 2011, 198), (641, 10, 'Anima Ex Machina', 'JX Valentine', 427130, 'Ixodida/XP-494/XP-650', 2011, 110), (642, 16, 'Anima Ex Machina', 'JX Valentine', 427130, None, 2011, 110), (643, 16, 'Nightfall', 'Manaphyman', 493545, None, 2011, 179), (644, 16, 'Operation GEAR: The Victory Star of Fate', 'The Great Butler', 549083, None, 2011, 217), (645, 14, 'Foregone Conclusion', 'elyvorg', 490657, None, 2011, 175), (646, 14, 'Crushed', 'Dragon user X', 528557, None, 2011, 197), (647, 14, 'Who Do You Think You Are?', 'Dawn_Hero', 503689, None, 2011, 185), (648, 14, 'Morphic', 'Dragonfree', 228940, None, 2011, 13), (649, 14, 'New Game', 'Dragon user X', 529465, None, 2011, 200), (650, 14, 'Only God May Judge You', '[Imaginative]:[Clockwork]', 522118, None, 2011, 191), (651, 14, 'Perish: The One-Shots: Normal', 'Dramatic Melody', 375889, None, 2011, 79), (652, 14, 'The Life of a Bulbasaur', 'Bulbaclaw', 525961, None, 2011, 195), (653, 17, 'The Battle Frontier: A Brendan and May Adventure', 'Breezy', 533114, None, 2011, 203), (654, 17, 'The Random of Randomness', 'Missingno. Master', 410132, None, 2011, 98), (655, 17, 'The Power N.U.', 'Articuno_rocks', 538709, None, 2011, 207), (656, 17, 'The Thinking Man\'s Guide to Destroying the World', 'Cutlerine', 513306, None, 2011, 187), (657, 17, 'Mentor', 'Dagzar', 546053, None, 2011, 213), (658, 17, 'Roots', 'Mrs. Lovett', 457372, None, 2011, 143), (659, 17, 'Chronicles of Unova', 'ChaosBlizzard', 538377, None, 2011, 206), (660, 17, 'Never in the Wrong Time or Wrong Place', 'Griff4815', 268560, None, 2011, 18), (661, 46, 'Pokédex One-Shots: Hypno', 'Ysavvryl', 337927, None, 2011, 55), (662, 46, 'Wendigo', 'Dawn_Hero', 490939, None, 2011, 176), (663, 46, 'Smart Kids', '[Imaginative]:[Clockwork]', 484483, None, 2011, 174), (664, 46, 'Revenant', 'SilentMemento', 495784, None, 2011, 180), (665, 46, 'Anima Ex Machina', 'JX Valentine', 427130, None, 2011, 110), (666, 46, 'Into the Shadows', 'donotlookatdiagram', 542025, None, 2011, 209), (667, 47, 'The Retelling of Pokémon Colosseum', 'bobandbill', 246389, None, 2011, 15), (668, 47, 'The Awesome of Awesomeness', 'Missingno. Master', 410132, None, 2011, 96), (669, 47, 'The Epic of Epicness', 'Missingno. Master', 410132, None, 2011, 97), (670, 47, 'Turnabout Assumptions', 'bobandbill', 483326, None, 2011, 173), (671, 47, 'Pokémon: The Magic of a Melody', 'FlamingRuby', 471734, None, 2011, 159), (672, 47, 'Pirates of the Caribbean: The Creature of Storms', 'ESPNfanatic35', 537322, None, 2011, 205), (673, 47, 'The Random of Randomness', 'Missingno. Master', 410132, None, 2011, 98), (674, 47, 'ClichéStorm', 'Ysavvryl', 529963, None, 2011, 201), (675, 47, 'Phineas and Ferb/Pokémon Crossover', 'ShinyRaikou', 536436, None, 2011, 204), (676, 51, 'Anima Ex Machina', 'JX Valentine', 427130, None, 2011, 110), (677, 18, 'Three Heads Are Better Than One', 'elyvorg', 556077, None, 2011, 221), (678, 18, 'Coriolanus Rowland\'s Guide to Pokémon Husbandry', 'Cutlerine', 543615, None, 2011, 212), (679, 19, 'Retroactive Continuity', 'JX Valentine', 548910, None, 2011, 216), (680, 19, 'Shining Silver', 'AmericanDreamer', 525484, None, 2011, 194), (681, 19, 'Broken Promise: The Story of Ash\'s Pidgeot', 'Articuno_rocks', 476319, None, 2011, 168), (682, 19, 'Secretary', 'rokettololi', 519457, None, 2011, 190), (683, 19, 'Option Other', 'Breezy', 528450, None, 2011, 196), (684, 19, 'Under the Same Sky', 'Draco Malfoy', 528756, None, 2011, 199), (685, 20, 'Option Other', 'Breezy', 528450, 'Hilda', 2011, 196), (686, 20, 'Hero\'s Path', 'Feralninja', 530931, 'Cole', 2011, 202), (687, 20, 'Max\'s Hoenn Journey', 'harryheart', 351425, 'Max', 2011, 64), (688, 20, 'Pirates of the Caribbean: The Creature of Storms', 'ESPNfanatic35', 537322, 'Captain Jack Sparrow', 2011, 205), (689, 20, 'Something\'s Got to Give', 'Dragon user X', 553973, 'Alvaro', 2011, 219), (690, 20, 'Secretary', 'rokettololi', 519457, 'Giovanni\'s secretary', 2011, 190), (691, 20, 'Pokémon Revolution: Maverick Heart', 'EonMaster One', 473608, 'Lucas Blackthorn', 2011, 163), (692, 20, 'Pokémon Epilogues: Season 1 - The Birth', 'Tonberry_King', 491951, 'Ash', 2011, 177), (693, 20, '~Nameless Supplanter~', 'Caduceus Brigade', 481961, '\"Nameless\"', 2011, 171), (694, 20, 'Lull', 'Breezy', 425512, 'Lucas', 2011, 109), (695, 20, 'ClichéStorm', 'Ysavvryl', 529963, 'Hilda', 2011, 201), (696, 21, 'New Game', 'Dragon user X', 529465, 'Rhydon', 2011, 200), (697, 21, 'The Power N.U.', 'Articuno_rocks', 538709, 'The Smogon', 2011, 207), (698, 21, None, 'Cutlerine', None, 'Robin Goodfellow', 2011, 187), (699, 21, None, 'chosen_one386', None, 'Katharine (Aquapolian)', 2011, 214), (700, 21, None, 'JX Valentine', None, 'Bill/Adam', 2011, 110), (701, 21, None, 'ChaosBlizzard', None, 'Paula', 2011, 206), (702, 21, None, 'Ysavvryl', None, 'Kyurem', 2011, 201), (703, 22, None, 'harryheart', None, 'Roxanne', 2011, 64), (704, 22, None, 'Missingno. Master', None, 'Miror B.', 2011, 98), (705, 22, None, 'bobandbill', None, 'Miror B.', 2011, 15), (706, 22, None, 'Dragon user X', None, 'Hilda Wayland', 2011, 219), (707, 22, None, 'Breezy', None, 'Lane', 2011, 109), (708, 22, None, 'Mrs. Lovett', None, 'Henry', 2011, 143), (709, 22, None, 'EonMaster One', None, 'Wil', 2011, 163), (710, 22, None, 'JX Valentine', None, 'Faith', 2011, 198), (711, 22, None, 'The Great Butler', None, 'Olivia Mistbloom', 2011, 222), (712, 23, None, 'Missingno. Master', None, 'Lucario', 2011, 97), (713, 23, None, 'FlamingRuby', None, 'Pikachu', 2011, 159), (714, 23, None, 'elyvorg', None, 'Zathern', 2011, 175), (715, 23, None, 'Ysavvryl', None, 'Victini', 2011, 201), (716, 24, None, 'Missingno. Master', None, 'The Chapter Title Guy', 2011, 98), (717, 24, None, 'bobandbill', None, 'Nascour', 2011, 15), (718, 24, None, 'Manaphyman', None, 'Empress', 2011, 179), (719, 24, None, 'The Great Butler', None, 'Captain Liam Everton', 2011, 217), (720, 24, None, 'Dramatic Melody', None, 'Sirius', 2011, 39), (721, 24, None, 'purple_drake', None, 'Sakaki', 2011, 210), (722, 43, None, 'ESPNfanatic35', None, 'Phantom\'s Kabutops', 2011, 205), (723, 43, None, 'chosen_one386', None, 'Hastings McKenna', 2011, 133), (724, 43, None, 'Cutlerine', None, 'Zero', 2011, 187), (725, 43, None, 'Griff4815', None, 'Daggerback', 2011, 18), (726, 42, None, 'Missingno. Master', None, 'Elesa', 2011, 98), (727, 26, None, 'Xman96', None, 'Jerry the Police Officer', 2011, 223), (728, 26, None, 'Hilijix', None, 'Doc Throh', 2011, 211), (729, 26, None, 'Missingno. Master', None, 'Miror B.', 2011, 98), (730, 26, None, 'bobandbill', None, 'Grave Destroyer of Souls (Venus\'s Steelix)', 2011, 15), (731, 26, None, 'bobandbill', None, 'Wes\'s Yanma', 2011, 15), (732, 26, None, 'Breezy', None, 'Muddy', 2011, 203), (733, 27, None, 'Hilijix', None, '“You look pretty beat up. I think you should take a drink, Hitmonchan.” Gyarados noted as he curled up, allowing himself to fit into the edge of the ring.<br /><br />“Come on, Chan-“<br /><br />“Why do you call me that?”<br /><br />“It’s contagious!” Throh contemplated a joke for a moment, then snapped his fingers. “Now how about we make a new kinda drink recipe! I’ll call it… Doc Slam. Step one, chill a Gyarados by hitting it with a maximum power Sky Uppercut. Watch its tears fizz out of its eyes for about ten seconds, and then grab a mug. Its tears will eventually start spewing out a sweet sensational soda. That’s how you make Doc Slam.“<br /><br />Lilligant giggled. “That sounds like a cool soda! Though the recipe sounds a bit profound and bland. Now why don’t you hear it from a real cook who’s been in the kitchen a ton?”<br /><br />“Yeah, why not? It’s not like we have all day.” Hitmonchan sarcastically responded as he crossed his arms.<br /><br />“Now find a Gyarados and make sure it is completely flattened out. To do so, you must completely shock it in every way possible. After doing so, that’s when you…“ Lilligant’s leaf curled as a hand would make fist, as well as changing her tone of voice to a more violent one. “…grab it by the neck! Once you’ve got Gyarados, slam him into a hole about three yards high, three yards wide, constantly trying to push it into there! After about doing it for a minute, remove the Gyarados and shake it as much as you can, until it throws up the best-tasting soda ever! This can be repeated up to three times a day until the Gyarados faints from lack of liquid. And that’s how you make Lilligant’s Spice Soda!”<br /><br />Both Fighting types were dumbfounded at how violent Lilligant sounded. “That recipe makes my recipe look like carbonated water.” Throh replied.', 2011, 211), (734, 27, None, 'Breezy', None, '“But look at it like this. My life right now is on a repetitive schedule, and I know you like things on schedule. Maybe I\'m just trying to please you. Have you thought about it like that?”<br /><br />“I also like making out. Please me that way.”<br /><br />“Keep trying, ” she said with a grin.<br /><br />“Damn.”', 2011, 196), (735, 27, None, 'bobandbill', None, '“OBJECTION!” he cried loudly. However, all Phoenix managed to do was lose his grip on the animal, the trout flying through the air and hitting Edgeworth right in the face.<br /><br />Pearl grinned to herself. She never really understood the way the courtroom worked, but she knew that if the crowd shouted loudly after Phoenix did something it usually meant he did that something well. She grinned, before mentally slapping herself. So much for not talking to him!<br /><br />The nine-year-old girl continued to muse to herself as Phoenix hurried over to make sure Edgeworth wasn’t badly hurt. But maybe...maybe I’m wrong. Maybe Phoenix isn’t Maya’s ‘special someone’...after all, they both insist on denying that! That, and I never see any Psych Locks when they do so...<br /><br />“Sorry, Edgeworth, I didn’t mean to throw that...” Phoenix mumbled, feeling himself glow red with embarrassment. <br /><br />“Mr Wright, I will not tolerate the throwing of evidence in my courtroom! Maybe Godot and his cups of coffee were allowed, I’ll admit, but I draw the line at trout!” the judge shouted, banging his gravel loudly. “I hate fish, ” he added with a stern frown. <br /><br />He doesn’t ever stare at her like real lovers should! But if so, then who does he like? All adults should like someone!<br /><br />“Great, this suit is ruined forever now!” Edgeworth lamented as Phoenix tried to remove the fish, only for it to flop out of his hands and on top of Edgeworth’s head.<br /><br />“Why is it still ALIVE!?”<br /><br />“GET IT OFF!”', 2011, 173), (736, 27, None, 'Breezy', None, 'Sirius enjoys the wind and yells at trees in Chapter 4', 2011, 203), (737, 27, None, 'ShinyRaikou', None, '“You’re right Perry, ” Phineas said “We live in a fan fiction now.”<br /><br />“Does that mean a child controls our destinies?” Irving asked<br /><br />“Yes, yes it does, ” Isabella answered “And please, stop with all the fourth wall breakage. Seriously, there are other forms of humor to work with.”<br /><br />“Don’t blame us, ” Baljeet told her “Blame the writer! He thinks it’s funny!”<br /><br />“If the author breaks the fourth wall one more time, ” Isabella began “I’m seriously gonna hurt him.”<br /><br />“I think that line breaks the fourth wall, ” Phineas said<br /><br />“That’s it, ” Isabella said “The author is going down!”<br /><br />“That also breaks the fourth wall, ” Baljeet said<br /><br />“What is the fourth wall?” Buford said<br /><br />“I wait eight chapters to appear and as soon as I arrive, all my chapter is is just a bunch of fourth wall gags, ” N complained<br /><br />“Seriously, ” Buford said “What’s the fourth wall?”', 2011, 204), (738, 27, None, 'The Great Butler', None, '“Does this system have ten-pound balls?”<br /><br />This time Matt really was annoyed. It was Olivia who made the interrupting remark, and he immediately realized that Nekou had goaded her on into saying it. “Someone who isn’t my student who is getting penalized later for bad behavior, please, ” he hissed through gritted teeth.', 2011, 217), (739, 28, None, 'Dawn_Hero', None, 'I went to lay my hand on James\'s shoulder, but something stopped me in my tracks. My hands were bright red. <br /><br />I looked at them for a second, confused, then looked to see where the red had come from. My eyes slowly worked their way down to my lap, the sheet laying over me stained with red. \"James...? What\'s on these sheets...?\" My eyes then made their way across the bed, the thick, red substance pooling where James had been laying next to me. The sheets were ripped in places, and a single hand coming up from the floor laid on the side of the bed. A single hand with the wrist cut and a diamond ring on its finger. Realization and horror flooded over me. \"James, what the hell is going on here?!\" As I went to grab the man sitting at the edge of my bed, it was then that I saw its horrible figure. The way its back looked as if it had been broken three times, the way its head was facing upwards at a horrible angle. I grabbed it by the shoulder, touched the skin that felt strangely inhuman, and as it turned to me, I screamed in horror. Its eyes and skin were pure white, but its face was covered with blood, as if it had just been feeding. It looked at me with a surreal form of delight as it licked its lips, its tongue slowly moving over its pointed, bloody teeth. A deep gurgling sound arose from its throat as it turned back to my daughter, moving its face down towards her ear. \"Don\'t you dare touch her!\" I screamed, lunging towards the monster as quickly as I could in hopes to stop it from whatever it had planned. In a single, sudden motion, it then threw her to the ground and shot off towards the window on all fours, skidding to a halt and looking back over its shoulder at us. I could almost see a smile cross its face as it gave a deep growl before jumping out into the night.', 2011, 176), (740, 28, None, 'SilentMemento', None, 'I can’t see anything. Am I blind? Dead? No, I can’t be dead; why would Death chase me if I was already in his grasp? I keep hearing Andrea’s screams. God, I have to help. I can’t just lie here and do nothing. I have to open my eyes. Wake up, Claude! Wake up, damn you!<br /><br />Pokulok knew that something was wrong the second he opened his eyes. He saw nothing but darkness, and he couldn’t move his legs. He had a cold feeling all around his skin, like something was crawling above and inside it. And it wasn’t just his skin. It was eating at his brain and his eyes…<br /><br />Wait – that’s not a cold feeling…<br /><br />He felt the area around his eyes with his fingers, dread working its way into his body. Normally, his eyes would have closed at the intrusion, but he immediately noticed that no matter what he did, they wouldn’t shut. He had a horrible feeling that there was something missing. His quivering fingers brushed against the upper part of his eyes, and he nearly emptied the contents of his stomach when he realized what was missing.<br /><br />My eyelids! Oh, GOD!<br /><br />The cold feeling that he had earlier had returned, but this time it seemed very tangible around his left hand. He grabbed at his left hand with his other hand, and he felt something squish against them. His eyesight was beginning to improve in the darkness. He felt around for the thing that he had crushed. When he finally found it and saw what it was, he let out a very high-pitched screech.<br /><br />“Maggots! ****!”<br /><br />Pokulok flung the crushed maggot away from him, revulsion racing through his body.<br /><br />I think I\'m a corpse, but why? Why am I dead? I can’t believe this is happening…<br /><br />“Why is it so hard to believe? You’re already dead inside. Why can’t you be dead on the outside as well?”', 2011, 180), (741, 28, None, 'Dawn_Hero', None, '\"Mommy... It... It ate Daddy...It told me that-\"<br /><br />\"Ma\'am, what about your husband? Ma\'am?\"<br /><br />I disregarded the operator for a second, looking down at my daughter, horrified. \"It... It told you it ate Daddy? When did it tell you that...?\"<br /><br />\"No, Mommy... That\'s not what it told me. It...\" She gave a horrified sob, burrowing her face into my chest.<br /><br />\"Katelyn, what did it tell you?!\" The lamp above us flickered off, coating the room with darkness as the phone in my hand went silent. A shiver ran down my spine as I stared at my daughter through the darkness. \"Katelyn...?\" The door to the room slowly creaked open through the darkness and low, gurgling noises filled the air. \"Katelyn, what did it tell you?\" I whispered. Tears began to roll down my cheeks as hot breath hit the back of my neck.<br /><br />\"Mommy... It told me that it was hungry and would be coming back with some friends.\"', 2011, 176), (742, 28, None, 'donotlookatdiagram', None, 'The ending paragraph of chapter two', 2011, 209), (743, 29, None, 'Dragon user X', None, 'Lucidity. She pulls herself forward, watching the edge draw nearer by miniscule increments. Pride. She pulls again, her body by now screaming in protest. Freedom. She pulls again, standing up now out of the question. Sun. She pulls again. <br /><br /><em>Wahahaha, wheheoo, I\'m the big man, yes I am, see me come, I\'m going to be rich, and you\'re going to make me that way, say, I wonder how you\'re doing there, you\'ve been awfully quiet, good girl, good girl, goody-googy, goody-girl you, wahooooo, good-good-good, goooooood . . .</em><br /><br />The sun, the sun. The edge is right there. Her nose pushes its way under the red canvas, and a little light floods in, pure as the drops of dew on a rose in the morning. Almost, almost. A few more pulls, her body now shaking with effort and misery, but also that most elusive of vehicles: hope. The sun, she can almost see the sun.<br /><br />There is nothing. She tries to back up, but her back legs cannot move properly and she can only watch, as if she is a helpless outsider, as her tiny body tips over the edge and off, down, out. The sun, the sun! It\'s there, but it\'s not. It\'s something else, something bright and round and white. It is cooler than the sun, and it sits in a field of indigo, surrounded by its incandescent children, calmly watching as the last of her balance goes and she drops like a filthy, hopeless stone. She wonders briefly if she will fall forever, but that thought is quickly quashed as the ground hits her like a mallet, shattering her utterly.<br /><br />As she floats her way skyward on wings made from her soul, she watches the moonlight wash over the world below, cleaning what is unclean and righting what is wrong. It kisses the top of the rough red drapes over what had been her prison. It brushes its fingertips across the sleeping eyelids of the sailor who tried to free her. It gently folds itself downwards, settling itself in silken ribbons upon the body of a tiny Pokemon who, in life, did no wrong, and embraces it like a long-lost child.', 2011, 197), (744, 29, None, 'Dawn_Hero', None, 'The Queen did not say anything, continuing to walk forward as they made their way into the town square. Before she knew what she was doing, the Queen turned to the man and embraced him, holding onto him tightly the way she had always hoped to as a child and he had always hoped to hold his beloved as a child as well. \"I\'m sorry, \" she whispered quietly. \"Love is a good thing, something that brings peace and happiness to all that it touches. Never should I have outlawed it in this fair kingdom.\"<br /><br />The man smiled at her, breaking the embrace and walking towards the execution stand in the middle of the town square. \"Fear not, my Queen. There must be a reason why my love is met with death while yours shall be met with praise once it is found.\"<br /><br />The Queen watched as the man she had loved since her youth stepped onto the execution stand, surrounded by crowds of her loving, jeering subjects. Before her eyes another young man stepped onto the execution stand, holding the hand of her beloved and kissing him gently on the lips as the executioner made his way through the masses.<br /><br />And as the crowd cheered at the death of the young, loving couple, not a single soul noticed the crying Queen in the midst of the revelry.', 2011, 185), (745, 30, None, 'bobandbill', None, '“Good idea, ” Rui remarked after Espeon had followed his brother. “Hopefully they won’t take too long...”<br /><br />“It’s what we did in the old days in fact, ” Wes admitted with a slight smirk. “But meanwhile, if you don’t mind you could tell me more about what you were saying when we were so rudely interrupted.”<br /><br />“Ah, ” Rui replied, looking at her feet. “Well, sure, there’s the stuff I said already, but I suppose those are not the only reasons why because I suppose when I get down to it you could say that I like you, but not just like you but maybe-” she tried, before being interjected by Wes holding up a hand.<br /><br />“Rui, you’re rambling again, ” Wes said slowly as Rui pouted. <br /><br />“Well, I’m not sure I can put it in words that easily...well!” she suddenly piped up, and before Wes knew what happened she had kissed him. <br /><br />“Well indeed, ” he said at length.', 2011, 15), (746, 30, None, 'disclaimer065', None, 'With a heavy heart, he flipped over the lid. Staring back at him was the skeleton of a puppy.<br /><br />More specifically, it was the Growlithe he had owned as a child. It was his best friend, and he shared so many memories with him—happy, sad, angry, the works. Seeing the decayed and broken corpse of his long-lost friend drove a hot knife into Blaine’s heart. A tear slid down his normally composed face behind his sunglasses. Shaking, he replaced the lid and lifted the coffin. He slowly dragged his feet in the direction of the boat. <br /><br />He was ready to move on from Cinnabar, but he was not ready to forsake his past.<br /><br /><em>Sunken beneath this earthen plain<br />Lies a seed which awaits the rain.</em><br /><br />Before he reached the ridge separating him from the boat, he heard Cubone making a ruckus. He tried to block out the sound, but finally an exclamation from Mr. Fuji himself made him turn around.<br /><br />“Blaine! Come back!” Grimacing from emotional pain, he set down the coffin and dragged himself back to where Mr. Fuji and the Cubone were standing, near the hole. “Look down there.” Slowly, Blaine drifted his eyes back down to stare into the hole. Staring back at him was a red and orange striped and spotted egg.', 2011, 181), (747, 30, None, 'elyvorg', None, 'Marina couldn’t have understood him, but she seemed to get what he meant all the same. “I didn’t enter the League in the end, ” she said. “I tried – I went right up to the registration desk and everything. But it just felt wrong, entering all of my Pokémon except you. I couldn’t do it.” She gave us an apologetic smile. “So no League battles for a while, I’m afraid.”<br /><br />She suddenly threw her hands up in frustration. “I’ve really messed up, haven’t I? If I’d just kept looking for longer, I might have found you, and then I could still have got here and registered on time.”<br /><br />Left rested his head comfortingly on her shoulder, and she sighed. “No, you’re right, ” she said. “There’s always next year. And you’re still here, which…” Marina smiled at Left, her eyes lighting up with that same joy from before. “I still can’t believe you’re alive.”<br /><br />She lifted her bandaged hand to ruffle Left’s feathers. “Oh, Dodrio, ” she said, smiling sadly. “I’m so sorry I didn’t try harder to find you. You must have been all alone in there.”<br /><br />Out of the corner of his eye, Left shared an amused glance with Right and me. For all her qualities as a trainer, sometimes Marina didn’t understand us at all.', 2011, 221), (748, 30, None, 'purple_drake', None, 'The kiss scene between Aina and Wataru in chapter 7', 2011, 210), (749, 44, None, 'Manaphyman', None, 'Instantly, the cool wind whipped his hair around and tossed Meghan’s sunhat off of her head as if it had a mind of its own. Luna took flight next to them, struggling to keep pace with the massive bird. Meghan had both of her Pokémon, Emory and Vesta, out of their Pokéballs, both flying at top speed at the incoming blotches. They were starting to come into focus.<br /><br />He felt drops of water on his hands, thought briefly, ****, its raining, but then noticed the silent tears streaming down Meghan’s cheeks.<br /><br />“It’s going to be alright, ” yelled John over the roar of the wind.<br /><br />Her response was inaudible; all he could make out was “Blackthorn, Blackthorn.”<br /><br />He seized control, somehow, some hidden instinct kicking in, and started talking to Charles.<br /><br />“The hard part is going to be the approach, ” he shouted, the previously formless blobs now showing the clear shape of men riding on the backs of black, hawk-like Pokémon. <br /><br />They looked like Staraptor, not that it mattered; the other looming black shapes - obviously other Pokémon - meant to do the dirty work.<br /><br />They were rapidly approaching, fast and furious. The faces of their attackers came into focus, probably twenty of them, their dark, bloodshot pupils and five o’clock shadow suddenly appearing.<br /><br />“Dive, ” John shouted, and the Pidgeot obeyed, narrowly missing the lead attacker.<br /><br />“Bilbo, Water Gun at anything you see; Luna, Hypnosis!” John called, assuming Charles would act on his own. Meghan was busy commanding her Pokémon. Out of the corner of his eye, he saw a giant grey bird gnawing on a Pellipper with a man hanging on for dear life. <br /><br />“Luna!” he shouted again, startling the struggling Hoothoot. <br /><br /><I’m trying! I don’t think I can! > she screamed.<br /><br />“Do it or he dies!” he shouted frantically. Immediately her eyes glowed red, yellow waves almost exploding from them towards their target. The hypnosis attack caught the man in the grey Galactic uniform off guard. The bird Pokémon, a species unknown to John, fell asleep, falling down, its master flung from her back. John followed the tumbling bodies as they landed with a violent splash in the water far below them.<br /><br />Their ally climbed back aboard the gigantic seagull Pokémon, waved briefly in appreciation, and dove back downward to catch an enemy.<br /><br />“Great job, Luna!” he cheered; she smiled.<br /><br />“Who says you get to have all the fun?” asked Meghan, clearly having regained her composure. <br /><br />“You can have the next one, ” he joked, in a fake gentlemanly tone.<br /><br />The mood changed suddenly though.<br /><br />“Duck!” she cried. John instantly buried his head in the Pidgeot as the bird dove. He felt a searing, ripping pain on his back, as two twin yellow claws gored him. He felt like he was being yanked in the air for a brief moment, and then he was soaked, covered in water, his lower back sticky with blood.<br /><br />“Bilbo?” he asked frantically.<br /><br />< I no think he likes water, > he chirped. John couldn’t tell, but he was sure the oblivious Totodile was beaming.<br /><br />He looked to his left, his eye forced to shut momentarily after a simultaneous wind gust and glare from the sun. He saw the bird that had gored him, a Staraptor, and a rider in a black robe, both of whom were drenched.<br /><br />“He’s coming for another pass, ” he moaned, trying to shake off the pain in his back. He looked down below. They were only feet from the water, which didn’t look so serene and calm now, instead like staring into the face of death. His stomach lurched. He forgot how much he hated flying. <br /><br />“Vesta, Comet Punch that bastard out of the sky!” Meghan ordered. <br /><br />The Ledian did as she was told, meeting the winged assassin head on, dodging a fierce bite from its beak, and using all of her arms to whip the duo down. The two of them were furiously thrown into the depths of the lake, so close to them that they felt the mist from the splash.<br /><br />He looked up, the city now in front of him. Nothing was burning or seemed damaged, except for Sprout Tower to his left. The elderly structure was partially on fire; smoke billowing from a large hole in the middle of its structure.<br /><br />As Charles rose in height, he looked for the enemy combatants. After a brief moment of scanning, he saw only a few, all of which were headed in the opposite direction. Struggling to catch up with them was the black hooded warrior they had just encountered. He must have survived. Falkner and Amelia, meanwhile, were charging after them with the rest of the militia that Gabe had gathered. They caught Falkner’s attention, and he waved them back, his face frozen in a sigh of relief.<br /><br />Charles swiftly turned around, targeting the beach. After a few minutes of flying, the bird began to descend rather rapidly, tired from the advanced maneuvers it had just executed with the weight it was carrying. He landed clumsily, and Luna, Emory, and Vesta landed with him.', 2011, 179), (750, 44, None, '[Imaginative]:[Clockwork]', None, 'They boy got an idea. “One!” The same attack was repeated. “Keep it up for as long as you can!” He dived yet again to dodge the rolling stone, squinting from the heat as the pursuing pup and trail of fire followed. “Good girl!” He glanced at the other man and saw he was screaming at his now-bright red Pokémon, something that had gone unnoticed until now.<br /><br />Suddenly, apparently by command, the smoking, almost-bubbling boulder stopped. He stopped attacking, he stopped rolling, and judging from the dead look in his eyes, he had stopped caring. What followed happened too suddenly for the boy to comprehend immediately.<br /><br />The Pokémon exploded.<br /><br />Whether by the heat or a special technique, it became a living bomb, destroying both itself and the boy’s Pokémon, scorching the land around it, and covering the boy’s screams with a ringing left in the ears of anyone within hearing range. He wore his lungs out after only a few seconds, soon reducing his cries into wheezes and then nothing but sobs. She was absolutely decimated. Aside from a few scraps of hide and guts, she had crumbled into nothing more than a pile of ash. <br /><br />Adding Pokémon to the battlefield was supposed to decrease the psychological damage of war. If you weren’t the one doing the actual killing, then the burden of murder would not be an issue. Pokémon were considered expendable. The military saw not the importance of the creatures to individual soldiers but rather the value of them as a weapon. It was a controversial view.<br /><br />The boy ripped a knife from the small case on his belt and ran at the man without delay. Tears burned his eyes and blurred his vision. His target was enormous but there were no stakes left. They would both die eventually.<br /><br />With this being the dominant thought in his mind, he dived through the air and stuck the blade as hard as he could into the guy’s chubby stomach and they both fell to the ground. Blood gurgled out and ran down his sides. <br /><br />It was strange. The boy felt no pleasure now. He wasn’t even relieved to have avenged his Pokémon. In fact, he felt nothing now. Why was the anger gone? Where was the fear? He pulled the knife from the flesh and stared at it. He had murdered. He had reacted in a single flash of rage and had murdered another human being.', 2011, 191), (751, 44, None, 'Dramatic Melody', None, 'The battle in chapter 22', 2011, 39), (752, 45, None, 'chosen_one386', None, 'St. Peter’s Square was eerily quiet as Katharine strolled through it alone. She picked up a few bits of Shadow energy nearby, but that wasn’t what haunted her. For some reason, she felt as if someone was watching her every mood. Suddenly, a chill washed through her, and she was convinced someone was standing behind her.<br /><br />“Hello, Chosen One, ” a cold voice spoke.<br /><br />She turned to see a tall, black-haired young woman step across the stones to stand a few feet in front of her. She shivered at the young woman’s cold gaze. There was no mistaking that she was a demon. The bottom of her black dress seemed to recede into the shadows as if they were one.<br /><br />“I am Nyx, ” she said, smiling a cruel smile. “And this is your last day on Earth.”', 2011, 133), (753, 33, None, 'Breezy', None, '“I don\'t mind losing”–she didn\'t mind a lot of things, he noted–“and I have no regrets about my battle with Alder. But I will be back. Trust me. Until then, I suppose I have \'other\' things to do.” She winked.', 2011, 196), (754, 33, None, 'Missingno. Master', None, '\"JAAAAAAAAAAACK PAAAAAAAAAAWNCH!\"', 2011, 95), (755, 33, None, 'Breezy', None, 'The boy tilted his head to the left and shrugged his left shoulder, pressing his ear against it. His brow furrowed. “The word \'go, \' a verb, often defined as \'to move or travel, \'” he began, brow relaxing the further he spoke. He straightened his head. “‘You\'re, ’ the contraction of ‘you are’ with ‘you are’ being ‘I am’ in this case. ‘Not, ’ an adverb, used to express negation, denial, refusal. Therefore with my powers combined I, Brendan Birch, am not going.”', 2011, 203), (756, 34, None, 'bobandbill', None, None, 2011, None), (757, 34, None, 'Dragon user X', None, None, 2011, None), (758, 34, None, 'Breezy', None, None, 2011, None), (759, 34, None, 'Manaphyman', None, None, 2011, None), (760, 34, None, 'JX Valentine', None, None, 2011, None), (761, 35, None, 'Antithesis', None, None, 2011, None), (762, 35, None, 'ShinyRaikou', None, None, 2011, None), (763, 35, None, 'Cutlerine', None, None, 2011, None), (764, 35, None, 'ShadedSkies', None, None, 2011, None), (765, 35, None, '[Imaginative]:[Clockwork]', None, None, 2011, None), (766, 35, None, 'disclaimer065', None, None, 2011, None), (767, 36, None, 'Breezy', None, None, 2011, None), (768, 36, None, 'Feralninja', None, None, 2011, None), (769, 36, None, 'Missingno. Master', None, None, 2011, None), (770, 36, None, 'EonMaster One', None, None, 2011, None), (771, 37, None, 'ShinyRaikou', None, None, 2011, None), (772, 37, None, 'ESPNfanatic35', None, None, 2011, None), (773, 37, None, 'Mrs. Lovett', None, None, 2011, None), (774, 38, None, 'JX Valentine', None, None, 2011, None), (775, 38, None, 'Gelatino95', None, None, 2011, None), (776, 38, None, 'Breezy', None, None, 2011, None), (777, 38, None, 'chosen_one386', None, None, 2011, None), (778, 38, None, 'ESPNfanatic35', None, None, 2011, None), (779, 39, None, 'Breezy', None, None, 2011, None), (780, 39, None, 'Gelatino95', None, None, 2011, None), (781, 39, None, 'FlamingRuby', None, None, 2011, None), (782, 39, None, 'JX Valentine', None, None, 2011, None), (783, 1, None, 'Sid87', None, None, 2012, 224), (785, 4, None, 'Sid87', None, None, 2012, 224), (786, 2, None, 'Z-nogyroP', None, None, 2012, 225), (787, 5, None, 'Cutlerine', None, None, 2012, 226), (788, 7, None, 'Missingno. Master', None, None, 2012, 227), (789, 49, None, 'Missingno. Master', None, 'Orange/Violet', 2012, 227), (790, 50, None, 'Sid87', None, 'Sammy/Tommy', 2012, 224), (791, 47, None, 'Z-nogyroP', None, None, 2012, 225), (792, 47, None, 'Missingno. Master', None, None, 2012, 227), (793, 38, None, 'JX Valentine', None, None, 2012, None), (794, 39, None, 'Sid87', None, None, 2012, None), (795, 1, None, 'Sidewinder', None, None, 2012, 228), (796, 48, None, 'Sid87', None, None, 2012, 224), (797, 34, None, 'JX Valentine', None, None, 2012, None), (798, 35, None, 'Sidewinder', None, None, 2012, None), (799, 38, None, 'Air Dragon', None, None, 2012, None), (800, 39, None, 'Sidewinder', None, None, 2012, None), (801, 28, None, 'ChloboShoka', None, '\"Little-Wit\"', 2012, 229), (802, 30, None, 'Brutaka', None, '\"Hm. How about you tell me what\'s been going inside your head since you woke up? Maybe that will tell me more about you.\"<br /><br />Do I tell her? Tell her that I...like her? No, not yet. It wouldn\'t be right. She\'s clearly still upset about the possibility of us not making it out...Maybe later would be better. I looked back at her. \"There isn\'t much to tell. Obviously, waking up as Pokemon is terrifying.\" <br /><br />April gave me an odd look. \"What\'s so bad about being a Pokemon?\"<br /><br />\"Er, that\'s not what I meant. All I\'m saying is that I know I\'m supposed to be a human. Randomly waking up as a different species would be scary, wouldn\'t it? Not to mention not being able to remember anything. Imagine if you woke up as a human and couldn\'t remember anything. You\'d be freaked out, wouldn\'t you?\"<br /><br />April nodded. \"I guess I see your point. Go on.\"<br /><br />\"So while I attempted to even just stand up in my strange new form, you showed up. At first, you actually kinda scared me, haha.\" I let out a small chuckle.<br /><br />\"What do you mean?\" April was giving me that odd look again.<br /><br />\"Well, I suppose I\'m used to being taller. And when I saw you, I thought you were some sort of giant squirrel monster or something. But then-but then I-\" I was stumbling at that point. I couldn\'t decide whether to tell her my feelings or not.<br /><br />\"But you what?\"<br /><br />\"Um, then I realized I wasn\'t so tall and that you were only as tall as me. I hadn\'t remembered all the Pokemon names at once, but I knew you were one of them.\"<br /><br />\"Uh-huh. I know there\'s more than that...\" She looked at me with a serious gaze.<br /><br />What!? Am I really that transparent? Oh no, now what? I fumbled for words. \"Er, um, well you see, when I saw you...a-and that sparkle that you had on your coat...it-it\"<br /><br />\"Oh boy...why does this always happen? I had suspected as much. You like me, don\'t you? Like, you know, like me, like me?\"<br /><br />\"Wha!? Er, um, uh, no, not at all! Well, uh, yeah. Yeah, I do...\" I was looking at the ground again. This isn\'t when I wanted to bring this up!<br /><br />April sighed. \"I knew it...I\'ve caught you just randomly staring at me. It looked like you were daydreaming. But you weren\'t. You were staring at me. Well, I suppose its to be expected. I am incredibly good-looking after all, teehee!\" She seemed happier. I thought that was odd. <br /><br />She looked as if finding out made her upset. But...she\'s all giggly again. Could that mean? No, don\'t get your hopes. Arg! I can\'t believe it! What am I thinking!? How could I have let that feeling go crazy again? People...humans...aren\'t supposed to like Pokemon! But denying this feeling is getting harder and harder. I\'ve got to turn back soon!<br /><br />I shook my head, clearing my thoughts. \"Look, April, it doesn\'t matter how I feel. That\'s the Pachirisu talking. I\'m really a human. It would...it would never work out...\"<br /><br />\"What do you mean? You are the Pachirisu! At least, you are now!\"<br /><br />\"I just don\'t want to get all attached to you. In fact, it\'d be worse for you if you became that way towards me. I\'m still trying to turn back, remember? If I were to go back, this Pachirisu would be gone. I wouldn\'t be here. I\'d be back with my friends, my family. As a human. And if you grew to like me...in that way...then imagine how hurt you\'d be? I couldn\'t stand to do that to anyone. I just couldn\'t.\"<br /><br />April was silent for a while. Then she put her paw on mine. \"Then don\'t. Stay with me instead. Imagine the adventures we could have together! Doesn\'t...doesn\'t that sound like fun?\" She was giving me a shy, sideways glance.<br /><br />I took my paw away. All of this was getting way too touchy-feely for my taste. \"No, please, don\'t do that to me. Just, stop. Stop it...Don\'t make me choose!\" What am I saying, of course I\'d go home. I can\'t like a Pokemon!<br /><br />\"Shane! You\'re gonna have to decide eventually!\"<br /><br />I looked at her suddenly, confused. \"You...you called me Shane.\"', 2012, 230), (803, 33, None, 'SeekerofLight', None, '\"... as the Headmaster was often described as ‘Super Effective against everyone’.\"', 2012, 231), (804, 48, None, 'Knightfall', None, None, 2012, 232), (805, 50, None, 'ChloboShoka', None, 'Matron and Spiritomb', 2012, 229), (806, 7, None, 'ESPNfanatic35', None, None, 2012, 233), (807, 9, None, 'Dragonfree', None, None, 2012, 234), (808, 8, None, 'Dragonfree', None, None, 2012, 234), (809, 49, None, 'Brutaka', None, 'Sparky and April', 2012, 230), (810, 52, None, 'Brutaka', None, None, 2012, 230), (811, 18, None, 'ChloboShoka', None, None, 2012, 229), (812, 18, None, 'Knightfall', None, None, 2012, 232), (813, 20, None, 'Meeker', None, 'Kip Blackburn', 2012, 235), (814, 22, None, 'Meeker', None, 'Vodyanoy', 2012, 235), (815, 23, None, 'Knightfall', None, 'Jay', 2012, 232), (816, 38, None, 'Skiyomi', None, None, 2012, None), (817, 38, None, 'Kutie Pie', None, None, 2012, None), (818, 1, None, 'diamondpearl876', None, None, 2012, 236), (819, 2, None, 'Ememew', None, None, 2012, 237), (820, 4, None, 'Knightfall', None, None, 2012, 232), (821, 5, None, 'Skiyomi', None, None, 2012, 238), (822, 6, None, 'diamondpearl876', None, None, 2012, 236), (823, 7, None, 'SilentMemento', None, None, 2012, 180), (824, 41, None, 'Mrs. Lovett', None, None, 2012, 143), (825, 9, None, 'Drippy Miltank', None, None, 2012, 239), (826, 50, None, 'Sidewinder', None, 'Dorian/Shelton', 2012, 228), (827, 16, None, 'Chibi Pika', None, None, 2012, 240), (828, 14, None, 'ChloboShoka', None, None, 2012, 229), (829, 17, None, 'Sidewinder', None, None, 2012, 228), (830, 46, None, 'SilentMemento', None, None, 2012, 180), (831, 47, None, 'Skiyomi', None, None, 2012, 238), (832, 52, None, 'Knightfall', None, None, 2012, 232), (833, 18, None, 'diamondpearl876', None, None, 2012, 236), (834, 19, None, 'Mrs. Lovett', None, None, 2012, 143), (835, 20, None, 'Sidewinder', None, 'Dorian', 2012, 228), (836, 21, None, 'diamondpearl876', None, 'Kuiora', 2012, 236), (837, 22, None, 'Chibi Pika', None, 'Spencer', 2012, 240), (838, 23, None, 'Morpher01', None, 'Beartic', 2012, 241), (839, 24, None, 'Sidewinder', None, 'Ethan', 2012, 228), (840, 43, None, 'SilentMemento', None, 'The Revenant', 2012, 180), (841, 42, None, 'Knightfall', None, 'Alec', 2012, 232), (842, 26, None, 'Skiyomi', None, 'Milly', 2012, 238), (843, 28, None, 'SilentMemento', None, '“Praise God, ” he muttered. He then shook his head in dismay. “I never thought I’d praise God for a helmet…”<br /><br />“No god exists here. They have all abandoned us to slaughter…”<br /><br />Pokulok whirled around to search for the voice. “Who’s there?” he snapped. He fumbled with his helmet before he slammed it over his head and attached it to his suit.<br /><br />“Nothing is here, ” the masculine voice said in a melancholy tone. “You know that. Why can’t you accept it?”<br /><br />The MSE switched on the night vision and looked in the direction of the voice. A shape that had the vague silhouette of a large man was curled against the wall in a position more suited for a fetus. Otherwise, it was far too dark to see any features.<br /><br />Pokulok gazed at the pitiful figure for a few seconds before he decided to ask the man a question. “What’s your name, sir?” he said in a hushed tone.<br /><br />The man didn’t respond to his inquiry, which served to annoy the younger teen. “Sir?” Pokulok asked in a firmer tone.<br /><br />The man still did not move and showed no indication that he had even heard the question. Anger surged through the MSE’s blood. This was pointless. Why should he risk his life for these people if they were going to be as useful as a sack of flour? He had no time left to waste; he had put his life and the lives of his Pokemon in danger for this man, and he needed an answer now.<br /><br />“Sir!” he spat furiously. The man flinched and looked up at him in fear. “Your name. What is it?”<br /><br />The response was so small and weak that he almost couldn’t hear it. “M-Motris. Giror Motris.”<br /><br />The MSE raised his eyebrows in response to the name. “Giror…Motris?” he repeated slowly. “Do you happen to be from Orre?”<br /><br />Motris lowered his head. “I don’t know.” He looked up again. “Who are you? Are you a crewmember?”<br /><br />The teenager sighed. “My name is Claude Pokulok. I’m an MSE, and I’m going to get you and the rest of the crew out of he-”<br /><br />“No!” The MSE took a step back from the ferocity of the tone. “They’ll kill us if we try!”<br /><br />Pokulok held his hands up defensively. “Okay, just calm down for a second. Let’s start from the beginning and tell me who you’re talking about. Is it the Revenant?”<br /><br />Motris wrung his hands in agitation, although he had thankfully stopped shouting. “I don’t know who they are, man, ” he mumbled. “I just know that they’ll kill us.”<br /><br />The MSE stared in response. “That thing is going to find you in this room either way, ” he said, trying to make his voice sound calm. “We can walk out, and if you’re behind me every step of the way, I can promise that nothing will hurt y-”<br /><br />“No, you don’t know anything, man!” Motris interrupted, rising to his feet. He jabbed a finger at Pokulok’s chest. “You don’t know what they want. They want us, man! They want all of us!”<br /><br />“Yeah, I know it does. It’s a game to that monster, but I’m not going to do what it wants. If we stick together and-”<br /><br />“No, you’re wrong, man. They want us. They need us. You don’t know anything, man. Not a ****ing thing.”<br /><br />“So you’re just going to wait for the monster to come and kill you?” the teenager growled incredulously, trying to stop himself from screaming at the man’s idiocy. “That’s a pathetic way of thinking.” He took a deep breath to cool his temper down. “I intend to get out of here with my Pokemon, and you’re more than welcome to come along. I could definitely use your help to get out of this mess.”<br /><br />“No, man, we’ll never get out, ” Motris said with an air of finality. He sat down and folded his arms over his chest. “You can’t beat them, ma-”<br /><br />“Goddammit, have you been paying any attention to anything I’ve said?!” Pokulok howled, finally losing his patience. “I don’t give a flying **** about what you think! I put my Pokemon’s lives at risk for you, you pessimistic son of a *****! I left them alone in the hangar of this ****ing ship to save you!”<br /><br />The man shuddered. “I-I can’t, man, ” he said. “The spawn will kill us if we go out…”<br /><br />“Well, that’s too bad for you, ” the MSE snarled, firmly grabbing Motris by the arm. He involuntarily shivered at the icy-cold touch. “We are going out of this room, and there’s not a damned thing you can do about it. I’m in charge of this situation, and we’re getting out of this hellhole alive. You have one of two choices: you can get on your ****ing feet and walk out of here on your own power or I will drag you out myself, even if you’re kicking and screaming. But you will go out of this room, and I will not allow you to impede my progress. Do – I – make – myself – clear?”<br /><br />After a few seconds, the man quietly nodded. Pokulok then realized that something that Motris had said seemed hauntingly familiar, especially after recalling Harris’ last moments.<br /><br />“Giror, you said something about the ‘spawn’ killing us, ” he said, making sure that his tone wouldn’t provoke the older man further. “What are the spawn?”<br /><br />Motris glanced from side to side, almost as if he was afraid of a person overhearing the conversation. “Part of them, ” he said simply.<br /><br />The teenager bit his lip in frustration. The information wasn’t nearly good enough to go on, but he knew that if he pushed the man any more than he had, he risked losing him for good.<br /><br />“Alright, ” Pokulok murmured, turning toward Motris. “Now that we have that settled, do you know a way out of this room?”<br /><br />The older man pointed at a metal door that the MSE had not noticed earlier. An emotion that was eerily similar to paranoia had started to dig its way into his brain, and it took the last bit of his courage to force it down.<br /><br />“Okay, let’s get out of here, ” Pokulok said in resignation. He walked toward the door, opened it, and nearly jumped out of his skin when he saw what was behind it.<br /><br />He was back in the hangar, and his Pokemon were ten yards away, staring at him in horror.<br /><br />“Deifir! Faitios!” He rushed over to them and embraced them tightly. “God, you had me worried. Let’s get out of here; I’ve seen enough to last…”<br /><br />The teenager trailed off when he felt them trembling. He looked into their faces and saw the terror in both of their eyes – terror that was not aimed at him. He didn’t even need to turn around to know that he had been duped by the Revenant again. The pieces – an ungodly mudslide of clues he had missed and hints he had failed to see – had suddenly fallen into place with cruel precision.<br /><br />I was a fool! It put the name right in front of me, and I still couldn’t see it! Giror Motris…Rigor mortis…<br /><br />“****, ” he muttered despairingly, whirling around and drawing his pistol after hearing an unearthly screech. The entity known as Giror Motris was roaring in agony as its human form slowly dissolved. Its melting eyes met Pokulok’s with a glare of utter loathing as the rest of its body continued its hideous transformation into shadow and tar.<br /><br />“****!” The MSE raised his pistol and fired at the monster until the magazine had been emptied. However, it didn’t seem to faze the creature. After realizing that he was out of bullets, he fumbled with ejecting the empty clip, wasting too many precious seconds. He made the mistake of looking up and saw that the monster was shambling toward him with surprising speed. He took out a new clip and tried to load it into the pistol. In his terror, it slipped out of his grasp and clattered to the floor.<br /><br />The teenager let out several obscenities and dove toward his ammo. He managed to snag the magazine with one hand, but the monster had reached him slightly afterward. It grabbed him by the throat with both of its clawed hands and raised him into the air. He thought that it looked up at him, but without its eyes, mouth, or nose, it was almost impossible to truly tell – until its face split into four and bellowed at him, revealing a jumbled mess of distorted facial features behind the mask.<br /><br />The teenager kicked at it and thrashed around, but nothing seemed to break its grip. He was about to give up hope when he remembered that he still had his gun. He felt a strange sense of calm guide him as he loaded the gun, pulled back the hammer, aimed at the monster’s head, and fired six point-blank shots. It let out a bloodcurdling screech and immediately dropped him while it staggered and fell on its back. It melted through the ground as it hit the floor, leaving nothing behind.<br /><br />Pokulok lay where he fell and breathed rapidly. He was exhausted beyond measure, but as he remembered his Pokemon, he realized that they needed him to be strong. He rolled onto his stomach and slowly got up, gasping at the effort. He stumbled to their side and immediately fell down again. He looked at them and forced a smile on his face, but it quickly faded when they didn’t return the favor. Instead, Faitios sobbed unashamedly into Deifir’s shoulder, while the normally-confident Absol had a defeated look on his face and didn’t even try to comfort the Skarmory. He felt a pang of sorrow hit him as he realized the enormity of what had just happened.<br /><br />The Revenant lied. There were no hostages. It turned the crew into monsters like itself…<br /><br />The MSE was interrupted by the cacophony of familiar laughter. He looked around and noticed the spawn phase through the walls with cruel laughs of their own. His Pokemon let out cries of panic and fled through the door he had come through.<br /><br />“No, wait!” the teenager shouted, quickly leaping to his feet and giving chase. “Come back!” He ran at the door, but it slammed shut and locked itself on him as if it were possessed. He kicked the door open, walked through, and immediately shut it on the advancing horde.<br /><br />The scenery had undergone a complete metamorphosis from when he last saw it; it had changed from a tiny room devoid of light to a balcony with a large brightly-lit room below him. Pokulok scanned the room and caught sight of Deifir and Faitios on the lower level, trying to get another door open. He immediately rushed to the edge of the balcony, opening his mouth to yell their names. He never got the chance.<br /><br />He barely felt the subtle shift of his feet leaving the ground. He couldn’t force a scream out of his throat as he twisted his body to lessen the impact. He didn’t even try to fight off the darkness when he hit the ground. The last thought that came to his mind before he slipped into unconsciousness was that he had failed his mission and his friends.', 2012, 180), (844, 29, None, 'ChloboShoka', None, 'I leaned over to get some eye contact with Mew. \"Do you remember me?\" I asked curiously. Mew nodded. When Mew\'s water had broke, I could tell that Gardevoir really wanted to faint. Sparkles was the first to notice the baby bump breaking it\'s shape. The hybrid had hatched inside Mew. Mewtwo also hatched inside of Mew when he was born.<br /><br />\"I\'m Mummy, \" Mew crackled. Normally, pokémon lay eggs. If the egg hatches before its been laid then labour or a caesarian would be the best choice.<br /><br />\"I\'m going to support Mew\'s back, \" I said to Sparkles. \"You and Gardevoir can check what\'s coming out of Mew.\"<br /><br />It was throwing them both into the deep end, but the hard lessons will stick with them. They deserve to be working here and I refuse to let anything make them feel otherwise.<br /><br />\"The egg shells are coming out Matron, \" Gardevoir confirmed.<br /><br />\"Remove them at once Sparkles, \" I warned, \"The hybrid might get stabbed.\"<br /><br />\"Is it out yet?\" Mew asked. She was still just as childish as she was before. It was as if history were repeating itself.<br /><br />\"It\'s just the egg shells at the moment, \" Gardevoir replied. \"Keep pushing... Okay I think the head is coming out. It\'s covered in blood.\"<br /><br />\"Keep pushing, \" I requested to Mew. \"You\'re doing very well.\"<br /><br />Mew gave out a massive roar so loud it would make an exploud sound like a feather. After what felt like an earthquake to my ear drums, Mew had expelled the newborn hybrid from it\'s body.<br /><br />\"Can I hold it?\" Mew asked me. \"They never let me hold my babies before.\"', 2012, 229), (845, 30, None, 'diamondpearl876', None, 'Sai was quiet, then he spoke after a few moments: “Do you want to be closer to me or something? Are you feeling like the others are getting more attention or something? I didn’t know. You should have told me.”<br /><br />I looked up, caught off guard. “N-No, that’s not—”<br /><br />“I don’t know how to be close to people. Or pokémon, for that matter, ” he said solemnly, ignoring me. “I’m not allowed to be close to anyone, so it’s fine. I guess. But if that’s what you want…”<br /><br />I waited for him to go on, but he didn’t. He looked at me, his dark blue eyes full of sadness. The panic that he was in at the radio tower had vanished.<br /><br />He went over to the bed and started rummaging through his backpack. He pulled out a marker, which I didn’t even know he had. It made me think that there was no end to the amount of things in his backpack, just like there was no end to the things to the radio.<br /><br />“I use it to practice writing sometimes, ” he said. “I don’t know what to do. It might sound weird, I know. I don’t know. We can share a secret about each other, all right? You share one secret, and I’ll share one of mine. You can read my secret, but I won’t read yours. You can write it on my back, and I’ll write yours on a piece of paper, since you don’t wear shirts.”<br /><br />“Um, ” was all I could think to say. A secret? About me? About my trainer? I had mixed feelings, as I usually did. I had never told anyone a secret about me since I was too shy. But it would be nice to know my trainer a bit more, and maybe it could help me make my decision…<br /><br />“This could make us feel closer, you know? Since that’s what you want, ” Sai went on. He went over to the table in the corner of the room, and picked up the piece of paper that had been lying there since the day we rented out the room. It had all of the pokémon center’s housing rules on it, but he took the marker and wrote over the words. Soon, I would be able to read those words, whatever they were. I noted that it took him a long time to write, as if writing each letter was agonizing for him.<br /><br />When he was done, he took off his shirt. Since Earl had always told me I shouldn’t look at his body out of self-consciousness, I turned to look away from Sai as well. But then Sai came closer to me and bent down, making it hard to not see him. He handed me the marker and nodded.<br /><br />“This is…” I said, trailing off. I didn’t know how to put it. It was weird, writing on a human’s back, was it not? Would it stay there forever? What if someone else saw? Couldn’t I just not write a secret, and Sai would never know?<br /><br />But Sai seemed so calm compared to his panicky demeanor at the radio tower. I wanted to keep him calm. So I took the marker and wrote on his back as quickly as I could to get the awkwardness over with. I didn’t even have to think about what I wrote: I wish I was human.<br /><br />Yes, I did wish I was a human. If I were human, I would do my absolute best to get rid of my shy demeanor. I’d travel the entire world, see what each city and town had to offer. I’d meet all the great kinds of people out there, and all the terrible kinds of people, too. I wouldn’t have pokémon to protect me; I’d protect myself. And as I traveled, I’d find out what I wanted to do with the rest of my life.<br /><br />I wished the same for Sai.<br /><br />I had believed that I had done a good job of finally forcing myself to do something I wanted in life. I had believed that I was doing a good thing for Sai by showing him around the city, proving to him that there was more to like than the pokémon that constantly followed him around. Perhaps I had been wrong, because now he was being paranoid. Now he seemed to be crazy again, thinking someone was stalking him, watching his every move. This seemed completely illogical to me, but there was nothing I could say to prove it to him. All I could think was that, at the end of the day, his life revolved around this journey for the gym badges. To him, there was nothing else, and though it bothered me, I couldn’t change him. His emotions and passion were fierce, his eyes set on one goal and one goal only. Still, I would wait out my decision. It wasn’t anything that I had to declare right now, and truthfully, I was afraid of deciding, anyway.', 2012, 236), (846, 44, None, 'Sidewinder', None, 'Chapter 6', 2012, 228), (847, 45, None, 'Morpher01', None, 'Evan winced as Jenny recalled Herdier. He had chosen Zweilous in the first place because it was his most recent capture, having been acquired as a young Deino shortly before his participation in the Pokemon League. Knowing this, Zweilous was easily the least experienced of Evan’s Pokemon, but he had apparently underestimated its sheer power.<br /><br />“You may have beaten me, ” Officer Jenny growled, “but you won’t get away! I’ll lock down the station, and—”<br /><br />A sharp bang cut her off.<br /><br />Officer Jenny coughed, splattering a red stain on her uniform.<br /><br />The life vanished from her eyes.<br /><br />And she fell to the floor.<br /><br />“Whuh—What the hell?!” Evan cried, rushing to Officer Jenny’s side. He found a hole in her back. “What the hell just—”<br /><br />“That would be my handiwork, ” Lunaris said, returning with a smoking gun in his hand, “though I\'ll admit that it’s not my best.”<br /><br />“Did…did you…?” Evan stammered.<br /><br />“I did, ” Lunaris said with a disturbingly casual tone in his voice. “Leaving her alive would have made her quite a nuisance. Now, I have my things, including the Pokemon I want to present to Team Rocket. Shall we take our leave?”<br /><br />Evan hesitated. He put a finger to his ear.<br /><br />“We’re ready for pickup, ” Evan said, the cockiness in his voice completely gone.<br /><br />“Roger, ” the pilot said back.<br /><br />Evan’s finger fell out of his ear as the rest of his arm dangled limply at his side. Lunaris left, leaving Officer Jenny’s corpse behind to rot. Only one thought ran through Evan’s mind.<br /><br />This wasn’t how it was supposed to be.', 2012, 241), (848, 34, None, 'SilentMemento', None, None, 2012, None), (849, 36, None, 'Knightfall', None, None, 2012, None), (850, 37, None, 'Chibi Pika', None, None, 2012, None), (851, 38, None, 'Ememew', None, None, 2012, None), (852, 39, None, 'diamondpearl876', None, None, 2012, None), (853, 1, None, 'RealRaymon', None, None, 2012, 242), (854, 5, None, 'ChloboShoka', None, None, 2012, 229), (855, 6, None, 'Missingno. Master', None, None, 2012, 227), (856, 17, None, 'RealRaymon', None, None, 2012, 242), (857, 20, None, 'RealRaymon', None, 'Max', 2012, 242), (858, 34, None, 'bobandbill', None, None, 2012, None), (859, 35, None, 'RealRaymon', None, None, 2012, None), (860, 1, None, 'ShadedSkies', None, None, 2012, 243), (861, 1, None, 'Chibi Pika', None, None, 2012, 240), (862, 2, None, 'Agent Tectonic', None, None, 2012, 244), (863, 3, None, 'Meeker', None, None, 2012, 235), (864, 4, None, 'Cutlerine', None, None, 2012, 245), (865, 5, None, 'Brutaka', None, None, 2012, 246), (866, 5, None, 'ESPNfanatic35', None, None, 2012, 205), (867, 6, None, 'Chibi Pika', None, None, 2012, 240), (868, 6, None, 'pokenutter', None, None, 2012, 247), (869, 48, None, 'Koridojo_Blaziken', None, None, 2012, 248), (870, 8, None, 'Sid87', None, None, 2012, 224), (871, 50, None, 'Sid87', None, 'Sam and Barry', 2012, 224), (872, 16, None, 'Articuno_rocks', None, None, 2012, 168), (873, 17, None, 'Missingno. Master', None, None, 2012, 227), (874, 47, None, 'JX Valentine', None, None, 2012, 249), (875, 51, None, 'Shrike Flamestar', None, None, 2012, 250), (876, 21, None, 'pokenutter', None, 'Heath', 2012, 247), (877, 22, None, 'Sid87', None, 'Barry', 2012, 224), (878, 23, None, 'ShadedSkies', None, 'Mew', 2012, 243), (879, 43, None, 'Cutlerine', None, 'Spiritomb', 2012, 245), (880, 42, None, 'Sid87', None, 'Carlos', 2012, 224), (881, 26, None, 'Missingno. Master', None, 'Orange', 2012, 227), (882, 27, None, 'Cutlerine', None, '“Move!” yelled the thin man, shoving me past. The next thing I knew, I\'d turned and saw him at the centre of a ring of old folks, their eyes all fixed hungrily on his jigsaw.<br /><br />“Come on!” I cried back. “Push on!”<br /><br />One of the old people lashed out at him with a walking stick; he ducked it, put the jigsaw inside his coat and drew out what appeared to be a rapier from his pocket.<br /><br />“Go on without me!” he replied, parrying a second blow and slashing at an old woman\'s snatching hand. “I\'ll keep them busy!”<br /><br />“But your niece—!”<br /><br />“She has parents – they can buy her presents.” His blade was a blur, flickering from point to point around the circle as the encircling elderly attacked. “Go!”<br /><br />“But—”<br /><br />“Go!”<br /><br />He turned to look at me, and it was that momentary lapse of concentration that was his undoing. Someone released a Jack-in-the-box from a shelf into his hand; the Jack\'s pointy hat jabbed his thumb and he dropped his sword with a yelp. A moment later, he was just a face between the clawing hands of the old people, screaming wildly; a few seconds later, he had vanished entirely in a swell of cardigans and wrinkled skin.<br /><br />“No!”<br /><br />I lashed out at the nearest old person with my pipe, but I was shoved aside; I was no match for five of them at once. There was nothing more I could do, and if I stood still I would be crushed – so I left the thin man and ran for the Lego.<br /><br />As I got close, I noticed a man on his hands and knees, searching for something on the bottom shelf; I stepped onto his back and jumped off without breaking stride, crashing into the top of the shelves where the Lego was and snatching up the boxes mid-leap. Toys, pieces of wood and one teenager with an armful of Lego rained down on the unfortunates on the other side of the shelf; thankfully, I landed on a fat man\'s belly, bounced off and kept running. One woman watched me open-mouthed, and shouted in a high, keening wail:<br /><br />“He\'s got Lego!”', 2012, 226), (883, 29, None, 'Sidewinder', None, 'This was a dream; this was not the order of events that were supposed to take place. He brought the marker, he would receive the reward, and they would go home; that’s it, done! This did not fit into his life, this was not his path. He knew Ronnie was inside, and he knew that he probably would have no idea what had taken place right outside his office.<br /><br />Through a flickering hallway he followed Kecleon, who had adopted a speed Dorian had never witnessed. The four of them burst through the door to his uncle’s office a moment later, almost tripping over each other in an effort to get through. <br /><br />Dorian’s heart stopped.<br /><br />Smoke billowed across the ceiling while lines of blood crisscrossed the floor in small rivers. The streams of crimson emanated from the body of his uncle, who was lying in the floor, head cocked to the side unnaturally. As Dorian fell to his knees, he saw that the word ‘thief’ had been carved into his uncle’s chest, the letters jagged and deep.<br /><br />Kecleon started shrieking.', 2012, 228), (884, 44, None, 'Chibi Pika', None, 'I looked around the corner again to see another striped firedog, similar to Spencer’s, but this one had a horrifyingly vicious expression right now, causing Typhlosion and Arcanine to recoil slightly, seemingly losing some of the tension in their muscles.<br /><br />It took me a second, but then I recognized what it had done. Her Arcanine must have had the Intimidate ability, which cut the strength of any attacker it encountered.<br /><br />“Crap, gonna Intimidate us, is that it?” Spencer mumbled through gritted teeth. “Time for ranged moves, then…Typhlosion, Arcanine! Flamethrower!”<br /><br />Simultaneous blasts of fire flew down the hill, striking the other Arcanine right in its front. It snarled as it took the assaults, noticeably affected by them despite its natural resistance to fire. But then suddenly flames were scattered everywhere as a tan horse jumped in the way of the blaze, glowing with a fiery sheen—it didn’t seem to even notice that it was being hit. In fact, the flames of its mane and tail only intensified.<br /><br />“Did that just make it stronger?! Oh crap, it must have Flash Fire. Typhlosion, stop the Flamethrower and use Dig! Arcanine—” And then Spencer’s face lit up like he had just made the best realization of his life. “Dude, I’ve got it! Typhlosion, quick—use Flamethrower on Arcanine!!”', 2012, 240), (885, 45, None, 'ShadedSkies', None, '\"He\'s…\" the Gallade said while trying to stand up, \"… He\'s down!\"<br />\"YES! HAHAHA!\" Pikablu gave off a prideful and loud laughter, \"We did it! We won! Victory is ours!\"<br />\"Way to go, Zerobi!\" Lucario yelled, the happy feelings of having won turning his joy into actually feelings of being a professional coach. He ignored his pain and smiled brightly at his partner, who still had her back turned to him. Her black and unusually red back…<br /><br />\"… Blood…!?\" Lucario exclaimed, angry at himself for not having noticed it sooner. Zerobi stood where she landed after the final attack, her body covered with tiny speckles of blood from the Garchomp. She wasn\'t saying a word, but was instead shaking profusely.<br /><br />Lucario got worried and tried to run to her, noticing just how badly damaged his right leg had become from fighting the Garchomp. Whether it had been the constant fiery attacks or the fact that his roundhouse kicks might as well have been directed at a brick wall he did not know. All he knew was that if someone was to happen to Zerobi now, he would…<br /><br />\"… Zerobi…?\" Lucario slowly asked, patting the shoulder of his partner.<br /><br />In an instant she spun around with a claw outstretched, cutting through his throat with a quick slash. Blood splayed across the field as time seemed to stop all around them. Pain filled Lucario\'s head while a gargling sound escaped his throat as he tried to draw breath, but the passageway to his lungs had been completely severed and he began choking instead. He felt his warm blood running the fur on his neck, holding up a hand in a futile attempt of stopping the flow. Falling to his knees from the lack of air, all he could do was stare deeply into the eyes of the smiling Weavile in front of him. <br /><br />Inside of them, he noticed that there was something unusual.<br /><br />Nothing.', 2012, 243), (886, 33, None, 'Cutlerine', None, '“I suppose there\'s nothing we can do, ” Bond said at last, leaning back into his seat. “Never mind. There can\'t be much further until we arrive.”<br /><br />Well, technically you\'re right, Jeeves, but I like to know where I\'m going. The last time I found myself on a train at random, I ended up in City 17. And I ain\'t no Free Man, so you can guess how that went. Pigzie Doodle sighed. I do realise you can\'t hear me, but I also find it hard to stop talking. Centuries of travelling alone does that to a person. Anyway, did I ever tell you about Mombasa? There was me, this Gastly and a Misdreavus called Sandy, and we thought it\'d be a good idea to possess a couple of elephants...<br /><br />As the train rattled on, his story continued, growing steadily more unbelievable and sadly no less unhearable.', 2012, 245), (887, 34, None, 'ShadedSkies', None, None, 2012, None), (888, 35, None, 'Shadow Lucario 50', None, None, 2012, None), (889, 36, None, 'Chibi Pika', None, None, 2012, None), (890, 37, None, 'Brutaka', None, None, 2012, None), (891, 38, None, 'Sid87', None, None, 2012, None), (892, 39, None, 'Azurus', None, None, 2012, None), (893, 47, None, 'ChloboShoka', None, None, 2012, 229), (896, 38, None, 'amittal12', None, None, 2012, None), (897, 38, None, 'ultimateblaziken11', None, None, 2012, None), (898, 39, None, 'PaddysTurtwigFanClub', None, None, 2012, None), (899, 39, None, 'Charizard-Fan', None, None, 2012, None), (900, 5, None, 'TheSirPeras', None, None, 2012, 251), (901, 35, None, 'TheSirPeras', None, None, 2012, None), (902, 2, None, 'JX Valentine', None, None, 2012, 252), (903, 4, None, 'RealRaymon', None, None, 2012, 242), (905, 20, None, 'pokemonsquared', None, 'Stewie', 2012, 254), (906, 30, None, 'RealRaymon', None, '(Tears appear on Max\'s face and he starts crying. Then he becomes serious and shouts with all the confidence he has.)<br /><br />Max: \"Kirlia! Gardevoir! Do you hear me? I came back for Ralts like I promised!\" (He waits a bit.) \"I am here to take Ralts with me! Do you remember?\" (Then he starts getting sad.) \"No, this can\'t be...Ralts, are you here, my dear friend? I came back for you!\"<br /><br />(After that a wind starts blowing at Max and he sees a familiar blue light.)', 2012, 242), (907, 34, None, 'Ysavvryl', None, None, 2012, None), (908, 36, None, 'Matori', None, None, 2012, None), (910, 39, None, 'JX Valentine', None, None, 2012, None), (911, 1, None, 'Shadow Lucario 50', None, None, 2012, 255), (912, 1, None, 'Knightfall', None, None, 2012, 232), (913, 40, None, 'pepperedfox', None, None, 2012, 256), (914, 5, None, 'Shadow Lucario 50', None, None, 2012, 255), (915, 6, None, 'Knightfall', None, None, 2012, 232), (916, 49, None, 'Shadow Lucario 50', None, 'Lucas and Lilly', 2012, 255), (917, 47, None, 'Cutlerine', None, None, 2012, 257), (918, 51, None, 'Meeker', None, None, 2012, 235), (919, 52, None, 'Shadow Lucario 50', None, None, 2012, 255), (920, 21, None, 'Shadow Lucario 50', None, 'Soul the Vulpix', 2012, 255), (921, 26, None, 'Knightfall', None, 'Noah the Dewott', 2012, 232), (922, 27, None, 'DarkerShining', None, '“Wait… you don’t remember anything?” Blitz asked, tilting his head slightly.<br /><br />“No, I don’t… Heh, that’s weird, ” the Mienfoo said, a small confused smile crossing his face.<br /><br />“So… You don’t remember who you are, how you got here, or what happened to you?”<br /><br />“Nope! Not at all!” the Mienfoo replied, seeming oddly amused by the strangeness of the situation he found himself in.<br /><br />“That… doesn’t sound good…” Sera said, looking somewhat concerned.<br /><br />“Maybe we should ask nurse Giselle over at the rescue team HQ if she can take a look at him?” Blitz asked.<br /><br />“Sounds like a good idea, ” Sera responded, before turning to the Mienfoo. “What do you say? Want to come with us?”<br /><br />“Sure!” the Mienfoo replied enthusiastically. “It’s not like I have anything better to do, or at least, not that I know of!” ', 2012, 258), (923, 33, None, 'DarkerShining', None, '“The mushroom agrees with the Shinx, that mission is too much for you two!” a strange monotone voice called out to them.<br /><br />Blitz and Sera turned to see that an orange bug Pokémon with a large mushroom growing on its back was the one who had just spoken to them, the Parasect staring at the two with its blank white eyes.<br /><br />“Hey, I think I’ve seen you around here before, ” Blitz said. “You’re Mirage’s teammate, aren’t you? Or do I have you confused with another Parasect?”<br /><br />“You are correct, I am indeed Mirage’s teammate, ” the Parasect clarified, speaking in an almost robotic way. “My name is Cordyceps, by the way.”<br /><br />“But didn’t Mirage already have a mission she intended to do today?” Sera asked.<br /><br />“Indeed, but the mushroom thought it might be a good idea to check what other missions are available, in case we find something Mirage might be interested in, ” Cordyceps explained.<br /><br />“Well, I think there are some missions with a high reward on here, ” Blitz said, gesturing to some missions on the board with his paw. “They look kind of difficult, but I guess that is why they pay off so well…”<br /><br />“The mushroom thanks you for making this observation, this pleases the mushroom, ” Cordyceps replied, picking off a mission from the board with his orange claw. “Mirage will be pleased as well.”<br /><br />“You’re welcome?” Blitz felt a bit creeped out by the orange bug that was apparently being controlled by the mushroom on his back.<br /><br />“I will be taking this as well, ” Cordyceps picked off the mission Sera had been looking at. “The mushroom thinks it would be better for an experienced rescue team to handle this, and that you kids should handle something easier.”<br /><br />“Hey! Who are you calling a kid!?” Sera seemed a bit offended by the Parasect’s remark.<br /><br />“The mushroom is merely making the observation that you two are too inexperienced for a mission like this, ” he responded.<br /><br />“Cordy? You coming?” a somewhat deep, but still feminine voice called out. The Pokémon turned to see what appeared to be a large duck like creature with flame like patterns on her body. “Mirage is waiting.”<br /><br />“The mushroom apologizes for being late, ” Cordyceps responded as he crawled over to the Magmar. “However, I found some missions that I think Mirage will be interested in.”', 2012, 258), (924, 34, None, 'Dragonfree', None, None, 2012, None), (925, 35, None, 'Knightfall', None, None, 2012, None), (926, 1, None, 'Scaldaver', None, None, 2012, 259), (927, 2, None, 'Dragonfree', None, None, 2012, 234), (928, 2, None, 'Psychic', None, None, 2012, 260), (929, 3, None, 'Deadly.Braviary', None, None, 2012, 261), (930, 3, None, 'RoseQuartz', None, None, 2012, 262), (931, 4, None, 'Sidewinder', None, None, 2012, 228), (932, 5, None, 'Cutlerine', None, None, 2012, 257), (933, 5, None, 'Silent--Protagonist', None, None, 2012, 263), (934, 6, None, 'Silent--Protagonist', None, None, 2012, 263), (935, 6, None, 'Cypher DS', None, None, 2012, 264), (936, 48, None, 'Chibi Pika', None, None, 2012, 240), (937, 7, None, 'Treecko\'s Awesomeness', None, None, 2012, 265), (938, 41, None, 'bobandbill', None, None, 2012, 15), (939, 41, None, 'Ememew', None, None, 2012, 266), (940, 8, None, 'Sidewinder', None, None, 2012, 228), (941, 49, None, 'Diddy', None, 'Cynthia/Dawn', 2012, 267), (942, 16, None, 'Cypher DS', None, None, 2012, 264), (943, 14, None, 'Dragonfree', None, None, 2012, 234), (944, 17, None, 'diamondpearl876', None, None, 2012, 236), (945, 17, None, 'An-chan', None, None, 2012, 268), (946, 46, None, 'Ocean Soul', None, None, 2012, 269), (947, 46, None, 'diamondpearl876', None, None, 2012, 270), (948, 47, None, 'bobandbill', None, None, 2012, 15), (949, 52, None, 'Koridojo_Blaziken', None, None, 2012, 248), (950, 52, None, 'Glover', None, None, 2012, 271), (951, 18, None, 'Silent--Protagonist', None, None, 2012, 272), (952, 18, None, 'jstinftw!', None, None, 2012, 273), (953, 19, None, 'Ememew', None, None, 2012, 266), (954, 19, None, 'Psychic', None, None, 2012, 260), (955, 20, None, 'Cyn', None, 'Mark', 2012, 274), (956, 20, None, 'Scaldaver', None, 'Edward', 2012, 259), (957, 21, None, 'SerenadeSP', None, 'Rosco', 2012, 275), (958, 22, None, 'Scaldaver', None, 'Nuria', 2012, 259), (959, 23, None, 'Scaldaver', None, 'Bayleef', 2012, 259), (960, 43, None, 'Deadly.Braviary', None, 'The Machines', 2012, 261), (961, 43, None, 'diamondpearl876', None, 'The ghost', 2012, 270), (962, 42, None, 'bobandbill', None, 'Sherles', 2012, 15), (963, 26, None, 'bobandbill', None, 'Tom', 2012, 15), (964, 27, None, 'bobandbill', None, '“But how…” Wes mused. “Well… Umbreon! Try a Mean Look attack!”<br /><br />“Umb…” (I’ll try…) Umbreon said uncertainly, reluctantly moving forward towards the Raikou who was now trying to remove Tom by bucking wildly. <br /><br />“Bah, this ridiculousness might as well end quickly, ” Nascour muttered to Es Cade. “Let’s send out all our Pokémon and end this quickly. Relax for now, Metagross!” he ordered. <br /><br />“Yes, I think that will be in our best interest, ” the mayor agreed, reaching for his Poké Balls. “I’ll send out five of mine and you send out your whole team!”<br /><br />“Quickly, Umbreon!” Wes urged as the Raikou continued another loop and rushed past them. <br /><br />“Tomsy wil buy yous…busies a dollars!” Tom added desperately.<br /><br />“Umb!” (Fine!) Umbreon shouted. He then shouted loudly at the Raikou to grab its attention and then breathed deeply in before contorting his face into the most terrifying facial expression he could possibly muster.<br /><br />The :3 face.', 2012, 15), (965, 28, None, 'diamondpearl876', None, 'Your blonde hair is so pretty, baby. It’s so bright, much too bright for a place like this. I rip it out. You hold on to your head, though your hair is the least of your worries. Your eyes goes next. You’re crashing into walls and bleeding everywhere, so lost when trying to escape. Oh, how wonderful it must be to run into the solid walls, a sure sign of the reality around you. I wish that I could figure out if I’m real or not. Does being real bother you, baby? I will find out. I make you beg and scream. For your mother. For your father. For your doctor. I make you beg and scream for the person that you had hoped to be at this point in your life. Does it bother you, baby, to know that you have been waiting for the best day of your life, all the while never considering that it may have already happened? <br /><br />Scream your pokemon’s name, now, baby. They were waiting for that day with you, I’m sure. How disappointed they will be. Your pokemon’s move are powerless against me; they move right through my body. They are screaming, too. So loud. I want to hear you, not them. Does that bother you, baby? But I don’t mind, really. Teach them young, I say… I’ll teach them how to fear and cry while they’re still young. I wish that I could have joined your team, even if just for a short while. I could have observed them and learned so much. Likewise, I could have taught them many things.<br /><br />I could have taught them how there are many ways to end a life, making such a sacred concept even more fragile than expected and desired.<br /><br />There could be a simple snap of the neck. A disease whose only desire is to determine the day that you die. A pokémon attack gone awry and fired in all the wrong directions at all the wrong people. There could be the pull of a trigger and bullets that move faster than air itself, the same air that goes through so much trouble to place people in the gun\'s path, only to abandon them and watch them rot. <br /><br />Let it not be forgotten that your current pokémon are causing the same kind of mayhem as I am, the same kind of carnage—and perhaps even more, though you will never know or dare to ask—as you yearn for their touch, their voices, any sign of propinquity.<br /><br />Let it not be forgotten that blood—though you despise me for wanting it so much—is exactly what keeps both of you alive and breathing and together.<br /><br />Let it not be forgotten that you are trying to live in a world that can offer you nothing but misery not meant for someone so young, a constant fight against insanity, and a skeptical view on what it means to be happy. <br /><br />Let it not be forgotten that you made me this way. <br /><br />Does that bother you, baby? <br /><br />Baby? <br /><br />Why aren’t you screaming anymore? <br /><br />Your pokémon have run. Aren’t they supposed to be loyal? I would have been loyal to you. <br /><br />Baby?', 2012, 270), (966, 29, None, 'Dragonfree', None, 'Your face can’t form expressions like a human can, but I can see anyway in the slight tilt of your head, the twitching of your antennae, the slight slowing of your wing flaps, that it takes you a moment to recognize me. That wrenches at my heart more than anything; suddenly it occurs to me that your sense of time on the PC was muddled, that your first realization of how long it’s been is seeing me suddenly a teenager in place of the child that you knew. You hover there silently for a second, just staring at me with those unblinking red compound eyes; I don’t know if the accusation I see in them is real or just a projection of my own guilt. I try to imagine what must be going through your mind, what it might feel like to realize you’ve been in stasis for years, that everyone you knew has moved on without you – but I can’t even begin to comprehend it.<br /><br />“I’m sorry, Butterfree, ” I whisper; my voice is hoarse, and as I say it, as that pathetic apology escapes my lips as if it could ever make up for it, tears start pricking at the corners of my eyes. “I should have done this so long ago.”<br /><br />It’s painful to speak, so I point the ball back at you and press the button, showing you that nothing happens, that I’ve deactivated the Pokéball. I throw it away; it bounces off the ground and comes to a rest by the roadside. You stare at it for a second, then look back at me.<br /><br />“I kept telling myself I’d keep training you, ” I say, fighting the urge to avert my eyes, the feeling that I don’t have any right to look at you anymore (I don’t, but this whole time I’ve been refusing to face you, and I can’t do that anymore). “And I never did. I released the others I couldn’t get the chance to continue training, so they could move on and have a life, but not you. I could never accept that you’d be better off without me. But you would.”<br /><br />You look at me for a moment more, and then you flutter upwards, circling a few times in the sky for the first time in six years – six years that you never even knew. I try to swallow the lump in my throat, but I can’t; my mind is full of every time I avoided using you, every time I put off training you, every time I remembered you and realized I hadn’t thought about you for weeks. It’s an aching, suffocating feeling of opportunities lost, potential wasted and friendship neglected.', 2012, 234), (967, 30, None, 'Dragonfree', None, 'As Charizard deals the final blow to that Alakazam, you snuggle into my hair, the way that you always used to do, and I just know that your happiness must be real. What else could it be?', 2012, 234), (968, 44, None, 'Scaldaver', None, 'Less than a second before entering the haze, an atom-splitting, savage impact sent the killer crashing toward the ocean below with more force than a meteor.<br /><br />The murderer slowed as it approached the water, the friction of its power vaporising some of the liquid beneath. It did not experience pain, merely dissatisfaction at this unscheduled delay. It began to turn its gaze skyward but was blasted downward by the invisible force again, crashing deep below the ocean surface. It aligned itself and looked toward the surface venomously. This disruption was only giving its quarry more time to escape.<br /><br />The murderer closed its eyes, sensing the world around it. Suddenly it felt a massive power speeding towards it, almost as fast as light. It opened its eyes, allowing power to surge through it, and an explosion of pure power enveloped the killer\'s frame, atomising the water into its base components. It could sense its foe flying away rapidly to avoid the deadly energy. <br /><br />The killer rose to avoid the resurgence of the water, looking skyward to its aggressor. The murderer\'s eye\'s widened slightly in surprise. The killer\'s attacker saw this minute shift in facial expression and changed shape.<br /><br />Orange skin started to crawl over its grey legs and body, causing them to grow thicker and leaving only a small, spiked, blue strip on each of its knees. The large, turquoise and orange oblong melted into its head, the flesh reworking itself like wax to form a three-pronged mask. As well as this each thin tentacle split at the tip, the two sides peeling down the tentacle until there were two formed, one turquoise and one orange on each side. The only space left unchanged was the dark purple orb in its chest, twinkling even in the lack of sunlight.<br /><br />In the split second this transformation took place, the creature lunged toward the killer, wasting no time in executing blows which could have levelled a continent. But this time the killer was ready. With each attack the air shook and thunder rolled, but the killer stayed motionless, absorbing the onslaught without so much as a blink.<br /><br />And then the killer struck back.', 2012, 259), (969, 33, None, 'Little Miss Sunshine', None, '<em>I am not your chosen one.</em>', 2012, 276), (970, 34, None, 'Cutlerine', None, None, 2012, None), (971, 35, None, 'Silent--Protagonist', None, None, 2012, None), (972, 36, None, 'Cutlerine', None, None, 2012, None), (973, 37, None, 'Deadly.Braviary', None, None, 2012, None), (974, 38, None, 'Psychic', None, None, 2012, None), (975, 39, None, 'Shadow Lucario', None, None, 2012, None), (976, 1, None, '007fan', None, None, 2012, 277), (977, 5, None, 'OshaMijuWott', None, None, 2012, 278), (980, 17, None, '007fan', None, None, 2012, 277), (981, 47, None, 'pokemonsquared', None, None, 2012, 254), (982, 37, None, 'RealRaymon', None, None, 2012, None), (983, 5, None, 'Missingno. Master', None, None, 2012, 227), (984, 1, None, 'The Great Butler', None, None, 2012, 279), (985, 2, None, 'JX Valentine', None, None, 2012, 280), (986, 3, None, 'Griff4815', None, None, 2012, 281), (987, 4, None, 'unrepentantAuthor', None, None, 2012, 282), (988, 4, None, 'The Great Butler', None, None, 2012, 279), (989, 5, None, 'Sidewinder', None, None, 2012, 228), (990, 6, None, 'unrepentantAuthor', None, None, 2012, 282), (991, 6, None, 'Janovy', None, None, 2012, 283), (992, 48, None, 'Sidewinder', None, None, 2012, 228), (993, 48, None, 'Bulba the Great!', None, None, 2012, 284), (994, 41, None, 'The Great Butler', None, None, 2012, 279), (995, 8, None, 'Griff4815', None, None, 2012, 281), (996, 9, None, 'Psychic', None, None, 2012, 260), (997, 50, None, 'The Great Butler', None, 'Nekou/Matt', 2012, 279), (998, 16, None, 'JX Valentine', None, None, 2012, 280), (999, 17, None, 'Doryuzu', None, None, 2012, 285), (1000, 51, None, 'JX Valentine', None, None, 2012, 110), (1001, 20, None, 'Sid87', None, 'Sam', 2012, 224), (1002, 21, None, 'Sidewinder', None, 'Nuzleaf/Shiftry', 2012, 228), (1003, 23, None, 'unrepentantAuthor', None, 'Dusk', 2012, 282), (1004, 26, None, 'Griff4815', None, 'Strom', 2012, 281), (1005, 27, None, 'Sid87', None, '“According to Phoenix Corporation President, Henrique Alonzo, Barry West is dangerous, possibly disturbed, and prone to violent, destructive outbursts. He is responsible for millions of dollars of damaged property, and he allegedly made an attempt on the lives of several Phoenix employees off the coast of Snowpoint City.”<br /><br />“Well, okay. Most of that one is true...”<br /><br />“I’m gonna terrorize all the ecos!”', 2012, 224), (1006, 28, None, 'JX Valentine', None, 'July 5<br />Guyana, South America<br />A new pokémon was discovered deep in the jungle.<br /><br /><br />July 10<br />We christened the newly discovered pokémon, [SE-005].<br /><br /><br />Feb. 6<br />[SE-005] gave birth. We named the newborn [SE-004].<br /><br /><br />Sept. 1<br />[SE-004] is far too powerful. We have failed to curb its vicious tendencies…<br /><br /><br />Sept. 2<br />Dr. [REDACTED] has disappeared. According to claims made by several members of our peers, [SE-004] is responsible. We do not yet have the data to explain this.<br /><br /><br />Sept. 9<br />Pieces of Dr. [REDACTED] has been found. We have made arrangements to cremate him. All efforts to contain [SE-004] have failed.<br /><br /><br />Sept. 12<br />Several members of our team claim to hear [SE-004] constantly, despite the fact that it is contained in [REDACTED]. It is difficult to sleep…<br /><br /><br />Sept. 20<br />Nurse [REDACTED] has died. She walked into [SE-004]\'s containment cell and [DATA EXPUNGED]. Her body has been removed, and we [DATA EXPUNGED].<br /><br /><br />Oct. 1<br />Six others have died. We have attempted to prevent three others from succumbing to [SE-004], but that has provoked [SE-004] itself. The rest of us have barricaded ourselves as deeply in the laboratory as possible, but it will be no use. [SE-004] has sent [REDACTED] to find us. They have already cut our communication lines.<br /><br /><br />Oct. 5<br />Every night, we hear them. They\'re coming for us. [SE-004] talks to me too now. We have not slept for three days.<br /><br /><br />Oct. 7<br />The others are coming. They want to cut us open. They say Im [sic] the last one. [SE-004] shows me things when im [sic] awake now. We didn\'t know that (The entry ends here.)<br /><br /><br />Oct. 8<br />He hears us through the wires that\'s how he (The entry ends here.)<br /><br /><br />Oct. 9<br />The banging has gotten louder and [SE-004] is still here Always here<br /><br /><br />oct 10<br />im so sorry<br /><br /><br />oct 10<br />burn it all burn it all burn it all burn it all (This repeats for three pages. The third ends abruptly, implying that there may have been other pages at some point.)<br /><br />oct [ILLEGIBLE]<br />[ILLEGIBLE]<br /><br />8ct End<br />He has asked us to open the door and look into the light, and we have. There is no god there but [DATA EXPUNGED].', 2012, 280), (1007, 28, None, 'Sidewinder', None, '“Ala!” his Pokemon yelled.<br /><br />“Look!” Ethan growled, showing Alakazam his uninjured hand. “I’d appreciate it if you’d give me a little space. I’m fine! I was fine last time and the time before that! Get off my back about it!”<br /><br />“Ala!” Alakazam exclaimed, taking a step closer.<br /><br />“Of course not! Besides that, it’s something that I want to do. Its only ever helped us anyway.”<br /><br />“Kazam, zam ala.”<br /><br />“Oh screw you! You’ve been with me every step of the way. You can’t just spring these complaints on me out of nowhere. If you have a problem with something I’m doing, then say something right then. Don’t just spring it on me out of nowhere when the situation has passed. You do this all the time!”<br /><br />“Kazamam!” his Pokemon challenged.<br /><br />“I don’t have to ask for your permission! I involve you in my decisions because I love you! I’ve never led any of you into anything we couldn’t handle and I’m not about to start! Let it go!”<br /><br />“Kazam!” Alakazam accused, baring his small teeth.<br /><br />“Shut up, ” Ethan hissed, roughly shoving his Pokemon backwards.<br /><br />“Ala!” his Pokemon yelled. As the sound left his lips, the psychic Pokemon flexed his right hand, calling an orb of psychic energy to hover above his palm. The ball gyrated quickly, eager to be released. The colors thrummed from purple to black, with grey streaks swirling around its center.<br /><br />“Do it, ” Ethan whispered, grabbing his Pokemon’s hand.<br /><br />“Kazam, ” his Pokemon replied.<br /><br />“Come on, do it, ” Ethan said, egging the Pokemon on.<br /><br />“Alakazam.”<br /><br />“You lack the courage of your convictions, ” Ethan accused, shoving his face into the swirling ball of energy.<br /><br />“KAZAM!”<br /><br />As Ethan’s faced grazed the exterior of the ball, his flesh began to fester and burn, quickly bypassing first degree and going straight to third. His Alakazam quickly ended the flow of power feeding the orb’s energy, effectively saving his master from further injury. The attack had broiled the lower half of his face, making him quickly reel backwards in pain. He stumbled backwards, his hands reaching up in reflex to put pressure on the wound. <br /><br />He watched Alakazam approach, his eyes beginning to tear with worry. The pain he felt vanished instantly as he took a breath and centered himself; the flakes were already doing their work. As he continued to breathe, the burned and ruined flesh on his face evaporated in a stream of black smoke, being replaced by the tan, flawless skin that had been there before. Reaching up again, he felt his unblemished skin stretch itself tight across his chin. <br /><br />Looking at his Alakazam, he stated, “That’s why we do this. This is why we’re out here.”<br /><br />“Kazam, ” his Pokemon lamented. <br /><br />“I do value your opinion, but we agreed on this a long time ago.”<br /><br />Alakazam just stared at him.<br /><br />“And you will not mention that incident again. Do you understand?”<br /><br />“Kazam, ” his Pokemon nodded.<br /><br />Ethan walked away, the gravel crunching delightfully under his boots.', 2012, 228), (1008, 29, None, 'Psychic', None, '“You know, lately I’ve been wanting to battle you again...”<br /><br />It’s really hard to ignore the quiver in my voice as I croak these words into the receiver. I just pray you don’t notice it at the other end of the line. I just pray you’re listening. I just pray that I didn’t just go right to voicemail – you’re always so quiet I can never quite tell.<br /><br />I just pray you’ll actually stop by.', 2012, 260), (1009, 44, None, 'Sidewinder', None, 'Over fifty rock Pokemon surrounded them, the ones nearest to the front gasping for the air that had been sucked away from them by Vibrava’s attack. Most of them were growling, making their intentions clear. They would not stop, and they had the numbers to back it up.<br /><br />“I’m sorry, ” Dorian said to the crowd. “We had nothing to do with it.”<br /><br />Gathering his emotions, he walked forward and stood in front of Shelton. Raising his fists, he waited. It would come in a moment. The inevitable tide of anger would wash across them and leave nothing behind. Dorian thought that at a moment like this, things would become simple. Clarity would chime in and he would know exactly what to do. Nothing came however, nothing to give him hope. He was with their Pokemon, and his mind was blank.<br /><br />“Duduck, ” Golduck stated, tapping him on the shoulder.<br /><br />Dorian turned, vaguely aware that the rock type Pokemon around them were rushing forward. He watched Golduck gently stroke Shelton’s cheek, a peculiar milky glow beginning to take shape around his head. He placed Shelton in Dorian’s arms, pushing her against him to make sure he had a strong grip. <br /><br />Faster than Dorian could think, he, Shelton, and their Pokemon were yanked upwards and shoved to the right, high above the incoming stampede of rock Pokemon. They flew through the air, being guided by Golduck’s formidable mind. Dorian saw everything, he felt all of it. His group was guided into the crater the earlier explosion had made, being pushed tenderly out of harm’s way.<br /><br />Just before they passed below the lip of the crater, Dorian saw the rock Pokemon race towards Golduck, he saw the mauve energy around Golduck flare brightly as they reached him, and as the first attack connected, he saw the sapphire Pokemon explode.', 2012, 228), (1010, 33, None, 'Sid87', None, 'Floaroma Town was barely an outskirt of a suburb, a small stopover village nestled in the woods at the bottom of Mount Coronet. In comparison, Celestic Town may well have been a bustling center of trade. But where Celestic was surrounded by perpetual mountain haze, looming pine trees, and a jagged, knife-like terrain that combined to cause Sam to fear for his life at the movement of his own shadow, Floaroma Town was much more sleepy and calm. The village was literally alive with colors; flowers bloomed from the east end to the western highway out towards Eterna City, and roads and walkways were shaped windingly around their beds so as to molest them as little as possible.', 2012, 224), (1011, 34, None, 'Psychic', None, None, 2012, None), (1012, 35, None, 'Sid87', None, None, 2012, None), (1013, 36, None, 'Griff4815', None, None, 2012, None), (1014, 37, None, 'Doryuzu', None, None, 2012, None), (1015, 38, None, 'Crimson Penguin', None, None, 2012, None), (1016, 39, None, 'The Great Butler', None, None, 2012, None), (1017, 1, None, 'JX Valentine', None, None, 2012, 110), (1018, 5, None, 'JX Valentine', None, None, 2012, 110), (1019, 6, None, 'JX Valentine', None, None, 2012, 280), (1020, 49, None, 'JX Valentine', None, 'Bill/Lanette', 2012, 110), (1021, 10, None, 'JX Valentine', None, 'Ixodida', 2012, 110), (1022, 16, None, 'Knightfall', None, None, 2012, 232), (1023, 14, None, 'diamondpearl876', None, None, 2012, 236), (1024, 17, None, 'Sid87', None, None, 2012, 224), (1025, 51, None, 'SilentMemento', None, None, 2012, 180), (1026, 21, None, 'diamondpearl876', None, 'Senori', 2012, 236), (1027, 22, None, 'Glover', None, 'Glover', 2012, 286), (1028, 23, None, 'Glover', None, 'Tiny', 2012, 286), (1029, 33, None, 'Sid87', None, '\"I’m gonna terrorize all the ecos!\"', 2012, 224), (1030, 36, None, 'FlamingRuby', None, None, 2012, None), (1031, 5, None, 'diamondpearl876', None, None, 2012, 236), (1032, 17, None, 'The Great Butler', None, None, 2012, 279), (1033, 42, None, 'Sidewinder', None, 'Golduck', 2012, 228), (1034, 6, None, 'TheSirPeras', None, None, 2012, 287), (1035, 41, None, 'RealRaymon', None, None, 2012, 242), (1037, 47, None, 'Cutlerine', None, None, 2012, 226), (1039, 23, None, 'TheSirPeras', None, 'Hitmonchan', 2012, 287), (1043, 36, None, 'RealRaymon', None, None, 2012, None), (1044, 1, None, 'Cutlerine', None, None, 2012, 226), (1045, 4, None, 'Missingno. Master', None, None, 2012, 227), (1046, 7, None, 'Cutlerine', None, None, 2012, 226), (1047, 7, None, 'Knightfall', None, None, 2012, 232), (1048, 41, None, 'Cutlerine', None, None, 2012, 226), (1049, 10, None, 'Missingno. Master', None, 'Smogons', 2012, 97), (1050, 17, None, 'Scaldaver', None, None, 2012, 259), (1051, 21, None, 'Negrek', None, 'The child', 2012, 288), (1052, 43, None, 'Cutlerine', None, 'Teiresias', 2012, 226), (1053, 33, None, 'Missingno. Master', None, '\"Orange?\" said Violet.<br /><br />\"Yes?\"<br /><br />\"Shut up.\"', 2012, 227), (1054, 38, None, 'Knightfall', None, None, 2012, None), (1055, 4, None, 'Brutaka', None, None, 2012, 230), (1056, 4, None, 'Mrs. Lovett', None, None, 2012, 143), (1057, 5, None, 'Psychic', None, None, 2012, 260), (1058, 5, None, 'Scaldaver', None, None, 2012, 259), (1059, 48, None, 'King of Hearts', None, None, 2012, 289), (1060, 7, None, 'Mrs. Lovett', None, None, 2012, 143), (1061, 8, None, 'Mrs. Lovett', None, None, 2012, 143), (1062, 16, None, 'ShadedSkies', None, None, 2012, 243), (1063, 46, None, 'JX Valentine', None, None, 2012, 280), (1064, 18, None, 'ShadedSkies', None, None, 2012, 243), (1065, 27, None, 'Zibdas', None, 'Zub made a gesture at his empty belt loop to indicate he had no Pokémon.<br /><br />The man’s eyes narrowed, dangerously so. “I see. I win through forfeit, ” he whispered. “Now I, as required by the League, have to mug you.”<br /><br />“Wait wait wait wait!” exclaimed Death, reappearing in front of Zub, donning a pair of what appeared to be Pikachu ears.. “I’m a Pokémon! I’m Pikachu!” Realizing his mistake, he changed his brilliantly balck robe into an outfit resembling a Pikachu. “Pika pika, ” he added helpfully. <br /><br />The man’s eyes lit up once more. “A POGEYMAN! AND IT IS CUUU~UTE!” groping his belt for his Pokéball, he promptly threw it, releasing a Magikarp.<br /><br />“Oo, this’ll be fun!” exclaimed Zub’s ‘Pikachu’. “Especially after he called me ‘cute’.”<br /><br />“EXCELLENT!” said their opponent giddily. “MAGIKARP, USE YOUR ?FANTABULOUS? SPLASH ATTACK!” <br /><br />The Magikarp’s eyes narrowed. Lightning and thunder struck from a distance. The fish Pokémon rose up into the sky, blue streams of light flowing over it. More lightning.<br /><br />Death whistled. “Our special effects guy better not blow the budget on this fish.”<br /><br />Magikarp, faster than a speeding Remoraid, sped to Death, unleashing its ultimate attack….<br /><br />Magikarp flailed a little bit, then fell over on the ground, gasping for air. Death gave a confused glance over to Zub, then punted Magikarp away, instantly defeating it.<br /><br />“HYOOOOOOOI!” screamed their opponent, doubling over as if he was hit in the groin with something heavy. “MY POGEYMAN!”<br /><br />“Do we win?” asked Death in a nonchalant manner.<br /><br />“NO!” screamed the man. “I HAVE FIVE MORE OF THESE THINGS!”<br /><br />Death frowned. After a moment of thinking, he came up with a solution. “Would you like a hug from this ADOWABLE Pikachu?”<br />“Boy howdy!” shouted the man, and ran up to hug Death, where he dropped dead.<br /><br />“There we go, ” said Death , grabbing the man’s remaining Pokeballs. “Who’s up for grilled fish for dinner?”', 2012, 290), (1066, 33, None, 'Miror B...', None, '“What do you want?”<br /><br />“I have a mission for you Koga.”<br /><br />Blaine went on to describe how he had invented a weapon in his hidden laboratory on Cinnabar Island. He described the nature of the weapon and it’s purpose, much to Koga’ shock and delight. Blaine then described the mission and how the weapon would be put to use. Koga was visibly excited with this news and this very much annoyed Blaine. He found Koga a disgusting specimen of a human being. A man who takes pleasure out of killing is a warped and twisted man thought Blaine, as Koga excitedly began preparing for the mission.<br /><br />“How can you sleep at night?” Blaine asked.<br /><br />“Ha, you’re disgusted by me, aren’t you?” Koga said, smiling.<br /><br />“Yes. You’re a ninja. A man who kills people under the disguise of shadows and darkness. How is that honourable?”<br /><br />“And yet, you’re a scientist. A man who kills people under the disguise of knowledge and discovery. You are no different to me.”<br /><br />“What on earth do you mean?” Blaine suddenly yelled.<br /><br />“The weapon I’m going to use in this mission. I may be the one using it but you are the one who created it. If you made the gun, you are no better than the man who pulls the trigger.”', 2012, 291), (1067, 21, None, 'ShadedSkies', None, 'Lucario', 2012, 243), (1068, 34, None, 'Chibi Pika', None, None, 2012, None), (1069, 35, None, 'King of Hearts', None, None, 2012, None), (1070, 36, None, 'Mrs. Lovett', None, None, 2012, None), (1071, 1, None, 'ESPNfanatic35', None, None, 2012, 205), (1072, 1, None, 'Articuno_rocks', None, None, 2012, 168), (1073, 4, None, 'ESPNfanatic35', None, None, 2012, 205), (1074, 20, None, 'ESPNfanatic35', None, 'Captain Jack Sparrow', 2012, 205), (1075, 20, None, 'Ysavvryl', None, 'Hilda', 2012, 201), (1076, 21, None, 'Ysavvryl', None, 'Kyurem', 2012, 201), (1077, 22, None, 'bobandbill', None, 'Miror B.', 2012, 15), (1078, 26, None, 'bobandbill', None, 'Wes\'s Yanma', 2012, 15), (1079, 26, None, 'ESPNfanatic35', None, 'Jack Sparrow\'s Zorua', 2012, 205), (1080, 5, None, 'Knightfall', None, None, 2012, 232), (1081, 33, None, 'Knightfall', None, '“What do you mean I never clarified my orders? I explicitly told you what and what not to do while on watch! I never told you to use Sleep Seeds of all things! Don’t you know how potent they are raw? I swear, I’ve met rocks more apt to follow orders then you!” Torrent yelled. <br /><br />“I would very much like to meet those rocks, sir. Perhaps they can teach me a lesson in humility, sir, ” Noah responded in as serious of a tone Leo thought impossible to reach. Torrent stood and stared at the Dewott for a moment, not knowing what exactly to make of the statement. <br /><br />“Just shut up for now, Noah. I can’t talk to you anymore. The camp healer says it’s bad for my health to hold a direct conversation with you for more than two minutes at a time. So, just stay there and stay quiet while I deal with our guests, ” he said, choosing to ignore the recruit until later. He turned to the other side of the room where Jay and Kelly were seated. Leo watched as his colossal stature towered over him.', 2012, 232), (1082, 5, None, 'JX Valentine', None, None, 2012, 280), (1083, 5, None, 'Negrek', None, None, 2012, 288), (1084, 6, None, 'Cutlerine', None, None, 2012, 245), (1085, 41, None, 'Psychic', None, None, 2012, 260), (1086, 41, None, 'JX Valentine', None, None, 2012, 280), (1087, 9, None, 'JX Valentine', None, None, 2012, 292), (1088, 14, None, 'Ysavvryl', None, None, 2012, 293), (1089, 43, None, 'Cutlerine', None, 'Iago', 2012, 245), (1090, 26, None, 'Sid87', None, 'Barry', 2012, 224), (1091, 26, None, 'JX Valentine', None, 'Bebe', 2012, 294), (1092, 29, None, 'Ysavvryl', None, 'Seeker decided to leave the cave too and fly into the icy winds. As she\'d come up slower than when she\'d tried before, her body wasn\'t working as hard to keep up with the thin cold air. Maybe that was the secret, to get used to the thin air little by little. But then how long would it take to fully break through the sky?<br /><br />Finding a rock jutting out of a wall, she landed there and listened around her. Not that far below her, Cyrus had already found a fight for Sneasel in a snover. Gyarados was complaining about the cold and ice, while Murkrow was suddenly hyper and energetic, fluttering around the group. However, Cyrus didn\'t feel anything for them, not even annoyance. They were like parts of his machines: not as important as the whole, just things to use. Did he feel the same for her?<br /><br />No, definitely not. He had been pleased with her at least once, and he allowed concern to lead him to throw a battle rather than knock her out. Maybe she had just been a part of his designs once, but Seeker was pretty sure that she was more important to him than that now. He just didn\'t let those feelings and thoughts rise above his internal defenses.<br /><br />The sky was full of moisture, in the form of snow and clouds. There were more clouds overhead, so it wasn\'t a time she\'d usually try to fly into the sky. Then again, what if the presence of all that moisture helped her? She would have a full radar view of the air around her and could notice something unusual. Maybe she could succeed now.<br /><br />Even as she thought of it, she had to wonder why. Why did she want to go through to the other side of the sky? It was just curiosity at first, to know what was there. And then it was because she had always failed and hoped that she might just make it this time. But then, what was the point of it? Whatever was on the other side of the sky... it didn\'t matter. And it didn\'t matter because Cyrus was on this side of the sky.<br /><br />It was her dream, but it didn\'t really matter. Only what Cyrus wanted mattered. Even if he wanted to replace her, it didn\'t matter. It was okay.<br /><br />There was a tinge of sadness when she thought of that, but that passed away into numbness quickly. It was a relief to think that she didn\'t need to worry about what her goals should be, because they\'d end up passed over in favor of his goals anyhow. As long as she was near him, she was... happy wasn\'t quite the right term for it. Content. It wouldn\'t matter if there was silence or noise around her. When she heard him and knew his thoughts, she would know what to do. Even if her own heart was silent.<br /><br />And that turned out to be the breakthrough she needed.<br /><br />A few minutes later, Cyrus had the other two members of his team evolved. They had sounded pleased, but hopeful that he might let them go soon if he didn\'t feel anything for them. Seeker wasn\'t bothered by this. He still had some use for them, so she would tolerate their foolishness. Once they had been recalled, she flew over to meet with him.<br /><br />“A little late for the effect I wanted in having a crobat, ” he said, reaching over to rub her ear while she hovered by him. “But good. It proves the falseness of what was believed.” And he smiled.', 2012, 293), (1093, 45, None, 'JX Valentine', None, 'Bill opened his mouth, but without warning, Adam interrupted him.<br /><br />Something about her seems familiar. Ask her if she is the advisor to the empress.<br /><br />Although he had no idea where Adam was going with this, Bill knew he had nothing to lose if he followed. After all, either way, he knew that he would be fighting this ixodida and potentially the army she had amassed behind him. The question was when. Straightening his back as much as he could, he took a deep breath and spoke.<br /><br />\"Are you the advisor to the empress?\"<br /><br />Pandora lifted her head. \"I am and always will be. My loyalty to Her Majesty is limitless, and it is my pleasure to serve her through my wisdom and abilities.\"<br /><br />Long-winded as ever. I know this creature. Bill, you must tell her to deliver a message to her empress.<br /><br />\"What?\" Bill whispered.<br /><br />Just trust me.<br /><br />\"I really hope this doesn\'t end badly.\"<br /><br />It will end favorably for us, no matter what happens.<br /><br />Bill exhaled. A strange feeling of dread crept into him, but knowing how large of an army was behind him and how powerful the ixodida were, he once again realized it wouldn\'t exactly hurt him to follow Adam\'s lead. At least Adam seemed to have a good idea of how to navigate the situation.<br /><br />\"Then I have a message for Her Majesty, \" he said.<br /><br />Holding her tail still, Pandora tilted her head. \"Oh? Then send it, rogue. She will be entertained by what you have to say.\"<br /><br />I do not doubt that, Adam responded. Bill, repeat after me. Ready?<br /><br />He nodded slowly. \"I am.\"<br /><br />To the empress, I give you a warning. <br /><br />Lifting his chin, Bill announced, \"To the empress, I give you a warning.\"<br /><br />For it is true that my partner was a member of the Gray Rebellion. <br /><br />\"For it is true that my partner was a member of the Gray Rebellion.\"<br /><br />And against the Violet Throne…<br /><br />\"And against the Violet Throne…\"<br /><br />Presided over by the daughter of the dual suns…<br /><br />\"Presided over by the daughter of the dual suns…\"<br /><br />Just as we have on our home moon…<br /><br />\"Just as we have on our home moon…\"<br /><br />We do indeed declare war. <br /><br />\"We do indeed declare war.\" He paused for a beat to think about what he had just said. When it finally sank in, he snapped a glance to the side. \"Wait, what?!\"<br /><br />Steven swiveled his head towards his companion. \"Bill, what are you doing?!\"<br /><br />\"I don\'t know!\" Bill hissed in response.<br /><br />Before he had a chance to explain himself, his enemy pulled her feet under her and stood atop the ice mountain. Her eyes darkened, but otherwise, her expression was just as blank as ever.<br /><br />\"Is that your answer to Her Majesty, little one?\" she drawled. \"If that is the case, then my response on behalf of the empire is this.\"<br /><br />She lifted a hand, made a swirling pattern in the air, and extended a long claw directly at Bill and Steven.<br /><br />\"Stop them by any means necessary, \" she stated.<br /><br />Dark shapes lifted off the trees as one giant flock. The sky was practically obscured by them as far as Bill and Steven could see. At that point, the champion kept his blue-gray eyes to the sky as he addressed the researcher.<br /><br />\"Well, Bill. Ready?\"<br /><br />\"Not really.\"<br /><br />Steven shook his head and drew four poké balls – two for each hand – out of his pockets. \"Neither am I.\"<br /><br />Bill glanced at his companion. \"Looks like we don\'t have a choice. Shall we, then?\"<br /><br />\"Let\'s.\"<br /><br />As the flock dove at them, Bill and Steven sprang in opposite directions, directly into the fight.', 2012, 110), (1094, 4, None, 'ChloboShoka', None, None, 2012, 229), (1095, 6, None, 'OshaMijuWott', None, None, 2012, 278), (1096, 7, None, 'OshaMijuWott', None, None, 2012, 278), (1097, 21, None, 'ChloboShoka', None, 'Matron Blissey', 2012, 229), (1098, 35, None, 'Chapter of Charizard', None, None, 2012, None), (1099, 7, None, 'Sid87', None, None, 2012, 224), (1100, 8, None, 'Scaldaver', None, None, 2012, 259), (1101, 8, None, 'Knightfall', None, None, 2012, 232), (1102, 20, None, 'JX Valentine', None, 'Bill', 2012, 110), (1103, 22, None, 'Sidewinder', None, 'Shelton', 2012, 228), (1104, 23, None, 'Sidewinder', None, 'Alakazam', 2012, 228), (1105, 42, None, 'Knightfall', None, 'Wire', 2012, 232), (1106, 1, None, 'Negrek', None, None, 2012, 288), (1107, 4, None, 'Negrek', None, None, 2012, 288), (1108, 48, None, 'Negrek', None, None, 2012, 288), (1109, 9, None, 'JX Valentine', None, None, 2012, 280), (1110, 50, None, 'Chibi Pika', None, 'Jade and Chibi', 2012, 240), (1111, 50, None, 'Scaldaver', None, 'Edward and Nuria', 2012, 259), (1112, 20, None, 'JX Valentine', None, 'The Rocket agent', 2012, 280), (1113, 26, None, 'Scaldaver', None, 'Zubat', 2012, 259), (1114, 44, None, 'Chibi Pika', None, 'The bulk of chapter 7', 2012, 240), (1115, 34, None, 'Negrek', None, None, 2012, None), (1116, 35, None, 'Scaldaver', None, None, 2012, None), (1117, 37, None, 'Scaldaver', None, None, 2012, None), (1118, 3, None, 'jireh the provider', None, None, 2012, 295), (1119, 6, None, 'Mrs. Lovett', None, None, 2012, 143), (1120, 16, None, 'Sid87', None, None, 2012, 224), (1123, 22, None, 'diamondpearl876', None, 'Sai', 2012, 236), (1124, 1, None, 'ShadedSkies', None, None, 2013, 243), (1125, 53, None, 'diamondpearl876', None, None, 2013, 296), (1126, 2, None, 'Phoenixsong', None, None, 2013, 297), (1127, 4, None, 'Sidewinder', None, None, 2013, 228), (1128, 5, None, 'Cutlerine', None, None, 2013, 298), (1129, 6, None, 'ChaosCaptain', None, None, 2013, 299), (1130, 48, None, 'Cutlerine', None, None, 2013, 226), (1131, 7, None, 'Psychic', None, None, 2013, 300), (1132, 8, None, 'diamondpearl876', None, None, 2013, 296), (1133, 9, None, 'Brutaka', None, None, 2013, 301), (1134, 49, None, 'Brutaka', None, 'Shane and April', 2013, 230), (1135, 50, None, 'diamondpearl876', None, 'Haley and Markus', 2013, 296), (1136, 16, None, 'Sidewinder', None, None, 2013, 228), (1137, 14, None, 'Brutaka', None, None, 2013, 301), (1138, 17, None, 'Sid87', None, None, 2013, 224), (1139, 46, None, 'JX Valentine', None, None, 2013, 302), (1140, 47, None, 'Psychic', None, None, 2013, 300), (1141, 51, None, 'Agent Tectonic', None, None, 2013, 303), (1142, 52, None, 'DarkerShining', None, None, 2013, 258), (1143, 18, None, 'Agent Tectonic', None, None, 2013, 304), (1144, 19, None, 'Phoenixsong', None, None, 2013, 297), (1145, 20, None, 'Cutlerine', None, 'Nameless protagonist', 2013, 298), (1146, 21, None, 'pokenutter', None, 'Kyle Montressor', 2013, 305), (1147, 22, None, 'Sidewinder', None, 'Garrett', 2013, 228), (1148, 23, None, 'ShadedSkies', None, 'Zerobi', 2013, 243), (1149, 24, None, 'Sidewinder', None, 'Ethan', 2013, 228), (1150, 43, None, 'ShadedSkies', None, 'Darkrai', 2013, 243), (1151, 42, None, 'Sid87', None, 'Carlos', 2013, 224), (1152, 26, None, 'Psychic', None, 'The collective writers of Serebii\'s Fan Fiction forums', 2013, 300), (1153, 27, None, 'Cutlerine', None, '“What did you do to him?” asked Cheren, narrowing his eyes. “And what are you?”<br /><br />“We are the Shadow Triad, ” said the lead man. “We can do certain things.”<br /><br />“No sh*t, ” said Halley. “What exactly is it that you did?”<br /><br />“I took him somewhere, ” said the man on the left – the one who\'d grabbed Ezra. “Forget that. He will be back eventually.”<br /><br />“We have been sent here for you, Jared Black, ” said the leader. “We were to take you from Zinzolin.”<br /><br />“Who sent you, then?” asked Cheren, but I already knew the answer to that.<br /><br />“N, ” I said. “What does he want? He said we weren\'t going to meet—”<br /><br />“The situation has changed, ” said the leader. “You found his birthplace.”<br /><br />That shut me up. That did change things – quite a lot, actually.<br /><br />“How did he know?” asked Cheren. “That doesn\'t make any sense, unless he\'s watching somehow.”<br /><br />“Cheren, it\'s N, ” said Bianca, as if it were obvious – and it was, to anyone less logical than Cheren. “He felt it.”<br /><br />“I don\'t see how—”<br /><br />Bianca shook her head.<br /><br />“Never mind, ” she sighed.<br /><br />“I can\'t help but think we\'re wandering a little far from the f*cking point, ” said Halley. “Magical teleporting ninjas, anyone?”', 2013, 226), (1154, 28, None, 'JX Valentine', None, '<b>Zero</b><br /><br />June 30, 1908. In the dim hours of that morning, a meteorite exploded over Siberian Russia. Modern scientists estimate that the energy had been equal to that of a thermonuclear bomb. Witnesses described it as a flash of blue light almost as brilliant as the sun. The shockwaves alone were enough to flatten over seven hundred square miles of forest. And the object itself? The size of two school buses end to end. Scientists called this the Tunguska event.<br /><br />In order to picture what a meteor the size of one school bus could do, the logical action would be to divide everything by half. Take three hundred square miles of forest out of the Tunguska event. Dim the brilliant, blue light of the meteorite until it becomes a star half as bright as the sun. Imagine that the resulting air burst releases the energy equivalent to five hundred nuclear bombs instead of one thousand.<br /><br />On September 27, 2000, almost one hundred years after the Tunguska event, that was exactly how scientists described the bus-sized meteor heading directly towards Earth.<br /><br />The meteor in question was dubbed 2000 SE, and it came without warning. That in itself would have been unusual. There was astronomical equipment all over the world, and not one of them spotted an object of that size until it was almost as close as the moon. But that wasn’t what grabbed the media’s attention. What did was the fact that it was heading directly towards Earth, and with its speed, researchers estimated that it would reach the planet in four days. More specifically, it was heading to a point just outside of Fortree City.<br /><br />Hoenn’s regional government had never staged a full-scale evacuation of an entire city. Despite monsoons and the activity of two weather-altering legendaries, the region was never threatened significantly enough to warrant an evacuation of that magnitude. But it had to be done. Certainly, Fortree had survived far more earthquakes, storms, and general natural disasters than it should have, what with it being a city built entirely in the treetops, but the Japanese parliament wasn’t going to assume that it would survive a meteor strike that close to its borders. So over the course of three days—the three days before 2000 SE would pass through the Earth’s atmosphere—the entire city of Fortree took what it could and left.<br /><br />On the fourth night, it turned out that the government was correct in their decision. Fortree was doomed.<br /><br />It rained fire the night 2000 SE exploded, and the blasts emanating from its shattering masked the cracking of the forest that held the city aloft. Had anyone been in the city, they would never hear the screaming of the wood supports splintering. They would never hear the boom of their homes falling. They would never hear the crashing of glass or the screeching of bending metal. Not while the air resonated with the blast of the meteorite, anyway. Only when the resonance of the explosion died down, and only when the skies fell silent, did the last shrieks of the falling city echo through the night air.<br /><br />And then, there was silence.<br /><br />Outside of the city, beyond the red-hot craters that the meteorites carved out for themselves, there were two listeners. The first was an absol who stood guard at the Ancient Tomb with his red eyes to the sky. His pack had already been gone for days. Many of them had been part of the pokémon exodus that started almost a week ago, long before the humans knew 2000 SE existed. Others stayed and tried to warn the humans, and this party departed after Fortree was finally evacuated. All that was left was the single absol, who had, up until the explosion, kept his red eyes to the sky and his teeth bared in a constant, low growl.<br /><br />It was because he knew something else was going to happen. He could feel the cold, familiar weight of his premonitions in his bones, but for the life of him, he couldn’t see what he was meant to warn the humans about. And then, when the star exploded and sent a shockwave of trembling earth and hot wind across the route, the absol braced himself against the tomb’s rocky walls and gritted his teeth. The feeling in his bones grew heavier with each passing second until it reached a peak the moment the hot winds died down. His paws scrambled over the loose earth, and he raced down the hillside towards the craters. In his mind, his visions began to resolve, and all he could see was red.<br /><br />The ground grew hotter as he drew closer to one of the impact craters, but he couldn’t stop. His entire body was focused completely on that cold, heavy feeling deep inside him—the feeling of his supernatural senses vibrating with his last vision. Any moment now, he would know. He would know exactly what message he needed to deliver.<br /><br />Suddenly, the ground almost ended beneath him, giving way to the red edge of a crater. He stopped, staring deep into the pit at the rock that sat at its heart. His muzzle snapped in frantic barks, and he paced along the rim. All the while, he steadied his eyes on the glowing, red surface of the meteorite. Every pit in its face, every imperfection in the stone made the feeling deep inside the absol grow until it filled his entire being. Something wasn’t right. Something was about to happen. Something terrible was about to be born.<br /><br />Then, he saw what he came to see. His paws froze, and his mouth shut.<br /><br />A crack laced up the side of the meteor. At first, it was only an inch wide by a foot long, but then, it grew until it resembled a gaping smile turned sideways. The longer the absol stared at it, the more he realized that the glow was not coming from the surface of the rock but rather from within it, pulsing with every passing second like a heartbeat. This, the absol knew, was exactly what he was supposed to foresee. His lips puckered, and in that pause, he emitted a short, high-pitched whine.<br /><br />That was when the meteorite cracked completely open and released the sea of red light. It rushed up the side of the crater before the absol could discern what it was, and within seconds, it washed over him.<br /><br />Miles away, the absol’s pained howling echoed through the air, and the second listener raised her head.<br /><br />Her name was Phoebe, and she had just completed two weeks of training atop Mt. Pyre. Now, she was descending the mountain for supplies. She had no idea that the absol’s howl was a warning.<br /><br />That night, a war erupted because of her.', 2013, 302), (1155, 29, None, 'ShadedSkies', None, '(spoiler)\'s death in chapter 90', 2013, 243), (1156, 45, None, 'Sid87', None, 'Tommy\'s return at the end of chapter 21', 2013, 224), (1157, 33, None, 'Cutlerine', None, 'N shook his head.<br /><br />“I don\'t know yet. Give me your phone number. I\'ll tell you more as I find it out.”<br /><br />“Aren\'t we enemies, though?”<br /><br />“I don\'t know, ” he repeated. “Not yet, anyway.” He gave me a crooked smile. “We\'ll find out.”<br /><br />We exchanged numbers and he left without another word, melting into the crowd and disappearing as if he\'d never been.', 2013, 226), (1158, 34, None, 'Cutlerine', None, None, 2013, None), (1159, 35, None, 'Kukansis', None, None, 2013, None), (1160, 36, None, 'DarkerShining', None, None, 2013, None), (1161, 37, None, 'Agent Tectonic', None, None, 2013, None), (1162, 38, None, 'JX Valentine', None, None, 2013, None), (1163, 39, None, 'Azurus', None, None, 2013, None), (1164, 1, None, 'Negrek', None, None, 2013, 288), (1165, 53, None, 'Cutlerine', None, None, 2013, 298), (1166, 4, None, 'Cutlerine', None, None, 2013, 226), (1167, 6, None, 'diamondpearl876', None, None, 2013, 296), (1168, 6, None, 'Cutlerine', None, None, 2013, 298), (1169, 48, None, 'Negrek', None, None, 2013, 288), (1170, 7, None, 'Cutlerine', None, None, 2013, 226), (1171, 9, None, 'Psychic', None, None, 2013, 300), (1172, 50, None, 'JX Valentine', None, 'Bill and Adam', 2013, 302), (1173, 10, None, 'JX Valentine', None, 'Ixodida', 2013, 302), (1174, 16, None, 'Negrek', None, None, 2013, 288), (1175, 17, None, 'Ysavvryl', None, None, 2013, 306), (1176, 51, None, 'Knightfall and pokenutter', None, None, 2013, 307), (1177, 52, None, 'pokenutter', None, None, 2013, 305), (1178, 52, None, 'Knightfall', None, None, 2013, 232), (1179, 19, None, 'Mrs. Lovett', None, None, 2013, 143), (1180, 19, None, 'JX Valentine', None, None, 2013, 302), (1181, 20, None, 'Mrs. Lovett', None, 'Michael Rowan', 2013, 143), (1182, 20, None, 'JX Valentine', None, 'Bill', 2013, 302), (1183, 21, None, 'Negrek', None, 'The child', 2013, 288), (1184, 21, None, 'Cutlerine', None, 'Haley', 2013, 226), (1185, 22, None, 'Ysavvryl', None, 'Curtis', 2013, 306), (1186, 23, None, 'Knightfall', None, 'Mismagius', 2013, 232), (1187, 23, None, 'Negrek', None, 'Absol', 2013, 288), (1188, 24, None, 'diamondpearl876', None, 'Team Rocket', 2013, 236), (1189, 43, None, 'Cutlerine', None, 'Teiresias', 2013, 226), (1190, 43, None, 'JX Valentine', None, 'The ixodida', 2013, 302), (1191, 30, None, 'diamondpearl876', None, 'To the person who will take my heart when I die and the doctors see that I’m an organ donor—<br /><br />Treat it nicely. It’s fragile. It has lists upon lists of views it wants to see, sounds it wants to hear. It doesn’t let you hold your breath for too long, lest you should die sooner than expected. It doesn’t contain as much blood as you would like it to. Your ribcage can never be small enough to hold it, so expand its consciousness, in and out, and your ribcage will be filled. Let your senses exhaust you to the brim, and follow the premonitions given to you—you’ll never regret it. Don’t let any other organ suffer from your musings and tears. Most nights, you’ll need to cross your arms and strap yourself down. Please don’t try to fix the extra red and black stitching on the surface; they were made by my pokémon in the midst of their honest curiosity. Blue eyes, messy black hair, skinny frame… The heart knows only those things, but it will accept you anyway. Know that I’m sorry—I tried my best for you. And remember to feel real.<br /><br />Sincerely, <br />Sai Luart', 2013, 236), (1192, 45, None, 'Knightfall', None, 'Jay grumbled something about “stupid dungeon Pokémon” as Leo clasped his outstretched paw and helped his leader to his feet. The Riolu seemed no worse for the wear. A few cuts were visible through his blue fur, the once bright azure color dulled with ground-in dust and blood, but he looked like he was functioning properly.<br /><br />“What the hell was that?” Jay said with a cough. Leo didn’t know how to answer him. He didn’t rightly know how to explain the string of events that had transpired in the last few moments. “Is everyone okay?” Jay inquired, brushing himself off as the Riolu blinked in the blue sunlight.<br /><br />“I think so, ” Leo replied. Looking around, he saw Noah getting up from the crater he had hunkered down in during the assault of the music, Jay was still getting oriented with his feet and limbs, and the monster was nowhere in sight. She had vanished. Though, there was something missing from this scene of aftermath.<br /><br />“Kelly?” Leo blurted out when he did not see the yellow and white furred Jolteon at all. Jay ceased his complaints as he found he could not find his friend as well. “Kelly? Kelly!” Leo yelled with increasing volume as he took a few steps in each direction looking for his teammate.<br /><br />There was no sign of the Jolteon, despite her being literally a foot away from him before the Froslass’s song. Both he and Jay fell dead silent as they tried to listen for any sound from her, though only the canyon walls screeched as wind tore through them, making his tail flame flicker. His blood turned to ice once again as the demented dungeon seemed to mock him, tempting him to venture deeper in search of his friend.<br /><br />“Kelly!” Leo screamed to the passage, his voice straining as sheer panic took over. It was then that Noah jogged up beside both Pokémon. The Dewott put a paw on both of their shoulders.<br /><br />“She’s gone.” Leo felt something inside him collapse. Whether it was his soul or a lung from the Froslass’s attack, he couldn’t tell.<br /><br />“Gone? What do you mean ... gone?” The Charmeleon’s voice barely broke a hushed whisper as the cold wind blasted from the passage. The instinctively tightened muscles in his legs kept him from collapsing to the ground while his mind managed to keep a rein on his emotions to suppress his urge to sob.<br /><br />“Noah, wh-where is Kelly right now?” Jay asked, the Riolu trying in vain to mask his own emotions with a near monotone voice. The wind ceased, allowing the oppressive silence to once again rule this domain of altered sun and stone.<br /><br />Noah only shook his head in apparent defeat. “She’s with Her now, probably about to be frozen alive. If I remember right, we have about ten minutes before she is added to Her ... collection.” The Dewott looked up at the two remaining members of Salient, his face betraying no inner feelings or thoughts. “There’s nothing we can do now. If we’re lucky, we can still get out of here while she’s busy with Kelly.”<br /><br />“N-nothing? What do you mean, ‘there’s nothing we can do’, Noah?” Leo demanded, his voice rising in volume. He knew perfectly well what it might mean. The Froslass had wanted me and I refused. And so she took the next best thing... His thoughts plainly told him, and for once, he knew he could trust them. It’s all... He felt his heart drop again. It’s all my fault she was taken.<br /><br />The Dewott crossed his arms as he leaned against a pillar of glowing blue rock. “It’s exactly what it means. We can’t do anything. She doesn’t usually bother us when we travel through here, but on occasion, she will take one Pokémon to her lair and freeze them solid, ” Noah answered nonchalantly as he tightened the strap on his shoulder.<br /><br />“How do you know this? Huh? How?” Jay spoke up, his paws curling into fists as energy began to flow into them. Noah moved his paw down Jay’s arm and pushed it down.<br /><br />“I’ve seen it happen. Seven times. Watched them all freeze while Torrent ordered us to run for the exit. Trust me, seeing a Arcanine frozen alive oversteps the boundary of mentally scarring ten times over, ” he explained as Leo saw an involuntary shudder run down the Dewott’s spine.<br /><br />Leo wasn’t sure if it was the combined effects of everything that had happened to him over the last week, or his mind finally slipping past his damaged rational, but he felt a burning force of anger rise from his chest where his heart fell.<br /><br />He had gone through too much: waking up, arrest, near death, hallucinations, exile, he could handle, but the notion of losing what was perhaps the only other being on this planet that could sympathise with him, it was impossible. He wouldn’t let it happen.<br /><br />“No.” Both Noah and Jay looked up from their argument at him. “I’ve gone too far with her, Jay, and even you, Noah, to lose any of you. My head may not be clear right now, but that is the one thing I am damn sure of. Noah, where is She, because I am going to tear Her to shreds, ” Leo snarled, a low, primal growl accompanying the statement.<br /><br />“Leo, you don’t understand: She will kill all of us if we don’t leave. Kelly’s probably already dead anyways, so let’s just--” Noah replied shortly before being cut off as Leo lunged at him. His reptillian body tackled the otter to the ground, shoving his head into the small, sharp rocks. Leo held the sharp edges of his claws against the Dewott’s neck and pressed forward enough so that Noah would feel the pain. Jay crouched down next to the two, though didn’t make any attempt to stop Leo’s assault.<br /><br />Leo’s chest was heaving, anger leaving a red mist in his eyes. He huffed a hot jet of steam from his nostrils as he leaned close to the pinned Dewott’s face. His red scales glinting almost evilly in the stark, blue sunlight.<br /><br />“Shut up! Kelly will survive! She’s strong enough! I know she will! Now, you are going to lead us to her, and then, you, Jay, and I are going to march right in there, burn Her goddamned liar to oblivion, and then rescue Kelly. Do you understand?” Leo yelled, every thought of his bent suddenly on the destruction of the Froslass.<br /><br />“You know? For once, I actually agree with one of your horrible ideas, Leo. Let’s do this, “ Jay added as Noah gave a sigh of defeat.<br /><br />“You two are the most stupid, stubborn Pokémon I’ve ever met, and that’s coming from me. I’ll go, but I hope you know we’re all going to die. Her ‘pet’ will make sure of that... “ Both Leo and Jay shot him confused looks as they wondered what he meant by his last sentence. Their questions were answered as a deep, feral-sounding roar shook the blue-stoned dungeon. Leo released his grip on the Dewott and climbed off of him, letting him get back to his feet with an annoyed huff.<br /><br />Kelly, don’t worry. We’re on our way, he thought to her as the glowing blue ground thumped in rhythm to the steady footsteps of the monster’s personal monster. ', 2013, 232), (1193, 33, None, 'Psychic', None, 'The Almighty Rules faded away into nothingness. Not a **** was given that day.', 2013, 300), (1194, 34, None, 'Ysavvryl', None, None, 2013, None), (1195, 34, None, 'Negrek', None, None, 2013, None), (1196, 37, None, 'Knightfall', None, None, 2013, None), (1197, 1, None, 'Sidewinder', None, None, 2013, 228), (1198, 1, None, 'The Great Butler', None, None, 2013, 279), (1199, 40, None, 'Sid87', None, None, 2013, 308), (1201, 5, None, 'Sidewinder', None, None, 2013, 228), (1202, 6, None, 'Sidewinder', None, None, 2013, 228), (1203, 48, None, 'Knightfall', None, None, 2013, 232), (1204, 41, None, 'The Great Butler', None, None, 2013, 279), (1205, 50, None, 'The Great Butler', None, 'Matt and Olivia', 2013, 279), (1206, 19, None, 'The Great Butler', None, None, 2013, 279), (1207, 20, None, 'The Great Butler', None, 'Nekou', 2013, 279), (1208, 26, None, 'Sidewinder', None, 'Dorian', 2013, 228), (1209, 27, None, 'Sidewinder', None, '“Are you serious?” Dorian asked. “He looks like he’s going to take us to some crack den, chloroform us, and cut out our organs.” ', 2013, 228), (1210, 33, None, 'The Great Butler', None, '“I just heard that… what was it, like seventy percent of new trainers never even make it to the Pokémon League, and ninety percent of them don’t collect more than seven Badges? Is that what he said?”<br /><br />“There have been more and more trainers washing up at Pokémon Centers in cities all over the place unable to continue going. Between the cost of healing their Pokémon, rooms and supplies, it’s no wonder so many don’t make it…” ', 2013, 279), (1211, 34, None, 'Sidewinder', None, None, 2013, None), (1212, 34, None, 'The Great Butler', None, None, 2013, None), (1213, 36, None, 'Knightfall', None, None, 2013, None), (1214, 39, None, 'The Great Butler', None, None, 2013, None), (1215, 5, None, 'Cassafrass1999', None, None, 2013, 309), (1216, 7, None, 'Knightfall', None, None, 2013, 232), (1217, 7, None, 'Cutlerine', None, None, 2013, 298), (1218, 41, None, 'Deadly.Braviary', None, None, 2013, 310), (1219, 8, None, 'Bulba the Great!', None, None, 2013, 284), (1220, 52, None, 'pokenutter', None, None, 2013, 247), (1221, 22, None, 'Bulba the Great!', None, 'Natalia', 2013, 284), (1222, 24, None, 'Bulba the Great!', None, 'Gabriel', 2013, 284), (1223, 36, None, 'Griff4815', None, None, 2013, None), (1224, 1, None, 'JX Valentine', None, None, 2013, 302), (1225, 2, None, 'Subzero Dragon', None, None, 2013, 311), (1226, 5, None, 'Knightfall', None, None, 2013, 232), (1227, 6, None, 'Phoenixsong', None, None, 2013, 297), (1228, 7, None, 'pokenutter', None, None, 2013, 312), (1229, 9, None, 'JX Valentine', None, None, 2013, 313), (1230, 21, None, 'Subzero Dragon', None, 'Jade', 2013, 311), (1231, 27, None, 'Subzero Dragon', None, 'Something was blocking his scans! It left him with a shiver that wasn\'t from the wind. He could only compare it to a black hole where there was usually sunshine. He\'d never felt anything like that before, and he didn\'t like it one bit. <i>“Jade....I sense something. I mean, I don\'t, but I...!”</i><br /><br />Jade nodded slowly, scanning the trees for the source. <i>“Its like a shadow. A darkness...and its getting closer. I have a bad feeling...a <strong>very</strong> bad feeling, Jake...!”</i><br /><br />Jake was genuinely afraid now. It took a lot to upset Jade, in spite of his tendency to whine and complain about everything. As Jake was contemplating simply running away in the opposite direction, a shape suddenly charged forward! Jake only had the time to scream before it emerged.<br /><br />It was a Lillipup.', 2013, 311), (1232, 29, None, 'JX Valentine', None, 'He stopped short once more. This time, it was because he wasn’t alone. In the doorway, a single person stood. A girl, actually—one no older than eleven. Her wide, dark eyes settled on Bill, and her face blanched. Bill shook at that point. He knew her. He knew this girl. He knew that the short, green hair was the exact color of her mother’s. He knew that the flower hair clips she wore to keep her bangs out of her face were given to her by her sister. He knew that the shade of pink that her shorts were happened to be her exact favorite color and that her boots were considered fashionable in her hometown. And he knew that she always wore Hello Skitty merchandise like her hooded sweatshirt because she adored those cartoons, even if she recently tried to insist that she was too old for them. He even knew that she was here because she wanted to go to Hoenn since she was eight, after she saw her first contest on television.<br /><br />And he knew all of this because he watched her grow up. Because he bought her those boots for Christmas. Because he sometimes watched Hello Skitty cartoons with her when he was bored. Because her sister wouldn’t stop rubbing in the fact that she got those hair clips for the birthday that he missed. Because one time, he let her choose that shade of pink for one of the wallpapers for the storage system.<br /><br />Because her mother was his.<br /><br />“Raye?” he whispered.', 2013, 302), (1233, 34, None, 'JX Valentine', None, None, 2013, None), (1234, 2, None, 'JX Valentine', None, None, 2013, 313), (1235, 5, None, 'diamondpearl876', None, None, 2013, 296), (1236, 8, None, 'The Great Butler', None, None, 2013, 279), (1237, 46, None, 'Brutaka', None, None, 2013, 301), (1238, 18, None, 'Poetry', None, None, 2013, 314), (1239, 24, None, 'The Great Butler', None, 'Ghetsis', 2013, 279), (1240, 29, None, 'The Great Butler', None, 'The dead silence between Matt and all the others besides Avril gave Olivia a strange chill.<br /><br />“…Avril’s lying, right?” Her voice was becoming influenced by the fear, and it was shaking.<br /><br />Still more silence.<br /><br />And then. Matt answered.<br /><br />“Avril’s telling you the truth.”', 2013, 279), (1241, 53, None, 'johno1995', None, None, 2013, 315), (1242, 53, None, 'GingerDixie', None, None, 2013, 316), (1243, 2, None, 'Psychic', None, None, 2013, 300), (1244, 40, None, 'Dr.Horrible117', None, None, 2013, 317), (1245, 4, None, 'Cyn', None, None, 2013, 274), (1246, 5, None, 'starliteevee', None, None, 2013, 318), (1247, 6, None, 'SilentMemento', None, None, 2013, 319), (1248, 48, None, 'Cutlerine', None, None, 2013, 298), (1249, 48, None, 'Praxiteles', None, None, 2013, 320), (1250, 7, None, 'GingerDixie', None, None, 2013, 316), (1251, 41, None, 'johno1995', None, None, 2013, 315), (1252, 41, None, 'gorgonfish', None, None, 2013, 321), (1253, 9, None, 'Phoenixsong', None, None, 2013, 297), (1254, 9, None, 'SilentMemento', None, None, 2013, 319), (1255, 50, None, 'Sidewinder', None, 'Dorian and Shelton', 2013, 228), (1256, 50, None, 'Subzero Dragon', None, 'Jake and Jade', 2013, 311), (1257, 10, None, 'elyvorg', None, 'Archopy', 2013, 19), (1258, 14, None, '33Whimsicott33', None, None, 2013, 322), (1259, 14, None, 'Dr.Horrible117', None, None, 2013, 317), (1260, 17, None, 'gorgonfish', None, None, 2013, 321), (1261, 17, None, 'johno1995', None, None, 2013, 315), (1262, 46, None, '33Whimsicott33', None, None, 2013, 322), (1263, 47, None, 'Deadly.Braviary', None, None, 2013, 310), (1264, 51, None, 'elyvorg', None, None, 2013, 19), (1265, 51, None, 'pokenutter', None, None, 2013, 305), (1266, 52, None, 'Brutaka', None, None, 2013, 246), (1267, 18, None, 'bobandbill', None, None, 2013, 323), (1268, 19, None, 'gorgonfish', None, None, 2013, 321), (1269, 20, None, 'gorgonfish', None, 'Red', 2013, 321), (1270, 20, None, 'Scaldaver', None, 'Edward', 2013, 259), (1271, 21, None, 'Brutaka', None, 'April', 2013, 230), (1273, 23, None, 'Scaldaver', None, 'Kirlia', 2013, 259), (1274, 23, None, 'Scaldaver', None, 'Celebi', 2013, 259), (1275, 26, None, 'Brutaka', None, 'Shane', 2013, 230), (1276, 26, None, 'Scaldaver', None, 'Celebi', 2013, 259), (1277, 27, None, 'Psychic', None, 'Writers, not knowing what to do, ran around like roosters with their heads chopped off, spewing random nonsense about tiaras, chicken flavoured dishwashers, Nicholas Cage, “THAT\'S MR. PSYCHIC!”, and other ridiculous-sounding things in the hopes of being funny and bringing laughter in their last moments. Indeed, each writer was laughing hysterically, but of course only at their own “jokes.” Everything else they heard was a bombardment of random, incomprehensible nonsense. Thankfully, the red light took them out of their confusion swiftly and silently, but for one unfortunate farting sound.', 2013, 300), (1278, 27, None, 'gorgonfish', None, 'dx_brown: Yes, basically. Clear has a working knowledge of the hardware and I am testing the network connectivity. Depending on how you fill out the feedback form it will be sent to one of us.<br /><br />dx_gray: Oh I thought grandpa would get those :/<br /><br />dx_clear: working knowledge of the hardware my *** i practically built the prototype<br /><br />dx_brown: C, she’s a kid! Watch your language!<br /><br />dx_gray: I’m 13 that’s not a kid<br /><br />dx_clear: he’s giving it out to teenagers now arceus<br /><br />dx_gray: Well grandpa handed 3 out to 11yo’s this morning xP<br /><br />dx_clear: bill it emotes burn it', 2013, 321), (1279, 28, None, '33Whimsicott33', None, 'Just as the digital clock turned to read 11:00, I heard a light, but sure sound of something tapping on glass. I turned my head, and was amazed to see that, right there on my windowsill, was the little rare Pokémon that I met at the park! I laid there staring at it for a moment; just making sure it was real. A small purple flame burned above it; bathing the glass in a pale glow; it looked just like a candle. The Pokémon continued to tap my window, looking at me endearingly with its button-like yellow eyes. As fast as I could, I got out of bed and opened the window.<br /><br />“I didn’t know you knew where I lived, ” I said weakly, but happily.<br /><br />The small, candle-like Pokémon hopped in my room, and squeaked in delight.<br /><br />“It’s nice to see you again… oh? You brought friends?” I watched as the Pokémon made a signal to the empty night outside, and one by one more of the same Pokémon appeared on my windowsill. They all hopped into my room, lighting it up with their pale, purple fires. My head was really hurting; the fever was really making me feel miserable. I tiredly made my way back to the bed, feeling more and more fatigued with each step. I really did need to rest…<br /><br />The Pokémon followed, hopping along onto the desk next to my bed. The other five or six of them did the same thing, all gathering around on opposite sides of my bed.<br /><br />“Oh, man… if I had my ball I could’ve caught you…” I said, remembering what I wanted to do earlier. The candle Pokémon didn’t seem to mind what I said, and continued to watch me with their button-like yellow eyes.<br /><br />“Mommy doesn’t like Pokémon, ” I continued to talk to them, “thinks they’re dangerous, even though all of my friends have one…”<br /><br />The candle Pokémon were paying close attention to me, and the flames on top of their heads grew even brighter. As the room got brighter, it began to spin, and the misery of my fever began to disappear…<br /><br />“I think she’s silly, ” I said, losing my breath. I was struggling to keep my voice steady, “I mean… just because… you can sometimes get burned or shocked… doesn’t mean they’re dangerous, right?”<br /><br />The rest of the room was just a hazy blur now… but the lights of the Pokémon remained. Glowing brightly, they were like guideposts to the growing darkness. Underneath the blankets, I felt my bones protruding. My arms and legs were shriveling, while my skin pulled back on my ribs. It pulled back on my face too; I felt the walls of my cheeks get thinner and thinner...<br /><br />I felt comfortable. Or maybe I didn’t… but I didn’t mind, because my entire body felt distant. All the pain of the fever was gone now, for some reason I felt free…<br /><br />The darkness around me was thick and vague, growing darker and darker as the lights that broke it grew brighter. And then it fell back, all to one large, distant light. It was like the light of the candles, but flared even brighter, and it beckoned me to come. All my feelings were detached now; the only thing I knew now was that I had to go to it- this one final light. I rose up slowly… a feeling of peace as I drifted towards it. Drawing closer and closer… until I became engulfed in-', 2013, 322), (1280, 29, None, 'bobandbill', None, '[i]“I need to go back,” I say to Mother. “I must.”[/i]<br /><br />[i]She sighs wearily. “How many times do I have to tell you? People are no good for you. They pull you out from the wild without a second thought! They don’t listen! Why else do you think I’m not keeping my promise to that excuse for a trainer?” She frowns as she recalls whatever she doesn’t want to think about any more or tell me about.[/i]<br /><br />[i]I shake my head. “Not true. Some may, but not everyone. Not Sally. And I fear that if I don’t go then something bad will happen.”[/i]<br /><br />[i]“Something bad?” she queries suddenly. “Well, that should be none of your concern.”[/i]<br /><br />[i]“What do you mean?” I say back quietly.[/i]<br /><br />[i]“Why, you think you can change the future now?” she says coldly.[/i]<br /><br /><br /><br />“Again? And there’s not much left,” the doctor pointed out as Sam scrolled down.<br /><br /><br /><br />[i]I watch her sleeping quietly and glance around. The night is still and there’s no wind, and nobody else around. I sigh a bit and then breathe deeply, preparing*[/i]<br /><br /><br /><br />[i]I float through the trees quickly. The grass[/i]<br /><br /><br /><br />[i]chase her through[/i]<br /><br /><br /><br />[i]Hard to breathe. Hurts so much. How could she do that?! My ow...<br />I hope she is okay. Machoke looks at...I tell them I don’t mean harm...<br />Heartbeat is so fast I cannot slow it down must help h[/i]<br /><br /><br />[i]Those were the most painful words. Said so quietly, so inn...<br />What to do?[/i]<br /><br /><br /><br /><br /><br /><br /><br />Sam swore quietly as they failed to find nothing more than more garbled text blocking out the rest of the remaining paragraphs.<br /><br />“Uh...I guess that is it,” said the doctor, leaning back in his chair. “Pity, I enjoyed reading all that.”', 2013, 323), (1281, 29, None, 'Blackjack Gabbiani', None, '<i>You’ve reached Lysandre; leave a message.</i><br /><br />\"…Lysandre, is something wrong? I don’t understand your Holo Caster message. You sound so fatalistic. It’s not like you. Call me back.\"<br /><br />***<br /><br /><i>You’ve reached Lysandre; leave a message.</i><br /><br />\"I’m headed to Geosenge as fast as I can. Don’t do anything stupid. Call me back.\"<br /><br />***<br /><br /><i>You’ve reached Lysandre; leave a message.</i><br /><br />\"Please, for the love of God, call me back. Please don’t be…Just call me back!\"<br /><br />***<br /><br /><i>You’ve reached Lysandre; leave a message.</i><br /><br />\"…I guess…I guess that’s it then. That’s what you meant all along, isn’t it? I wish I had known. I wish you had told me… C—…\"', 2013, 324), (1282, 44, None, 'moonlightning', None, 'An indigo blur erupted from the foliage, snapping branches and ripping vines. It flew, somersaulted and then stopped, floating above the tablet. It tilted its head; a large white bulbous protrusion came from its crown. Huge dark pupils examined Sarah as it levitated, legs crossed.<br /><br />There was no time for hesitation, Sarah tore forward, clapping her palms on each side of the Pokemon’s head. It reeled back, landing on its feet. The Fake Out technique momentarily stunned the fighting and psychic type Pokemon. It regained its composure and raised its guard.<br /><br />Kakari looked over at Denny, who was supremely jealous. Meditite is the pre-evolution of Medicham, his dream partner Pokemon.<br /><br />Both fighters rushed forward, arms and legs colliding in a series of flurries. Open handed strikes and blocks rang out through the clearing. Meditite’s small blue limbs moved quickly. Sarah was beginning to tire, she shuffled back, breaking the confrontation. Meditite sensed the weakness and capitalised, attacking even more furiously than before.<br /><br /><i>She’s very good. Her circular blocks conserve energy but the Meditite has incredible endurance. She reminds me of someone.</i><br /><br />The Pokemon drove Sarah back, step by step, closer to the edge with its onslaught of blows. A stray spinning kick caught her chin, jerking her head around. A smear of blood defiled the tablet. For a moment, it looked as though she was knocked out. The Meditite paused. It stopped attacking and watched the girl descend.<br /><br />Sarah’s eyes snapped open.<br /><br />Realising it had been fooled, the Meditite hastily prepared another kick, but Sarah had a plan. She bent both of her knees, took a deep breath and hooked an arm between the Pokemon’s legs. With an exhalation and a grunt she threw the Pokemon, overhead. Meditite landed hard sprawled a few metres away.<br /><br />“Nice throw…” Denny admitted, getting excited by the contest.<br /><br />Sensei watched, but wasn’t enthused like Denny.<br /><br /><i>If you’re so disinterested, why train Senshi? Wait a minute. . .</i><br /><br />The Meditite clambered up, Sarah was attacking again, using circular kicks and punches. Now it was Meditite who was on the back foot, always having to block, weave and duck. The Pokemon was getting angry, its eyes glowed bright blue.<br /><br />A strange force paralysed Sarah’s body, leaving her frozen in mid-kick, her leg awkwardly hanging in the air. The Meditite drew its hand back and struck with a snappy Force Palm that cracked the air. The girl gasped as she was ripped from the psychic bonds and tossed backward, winded by the technique.<br /><br />The girl wasn’t one to give up. The Meditite charged, a purple aura floating around its hand. It slashed at the defenceless girl, the Psycho Cut forced her bouncing along the tablet until her torso was hanging off the side. She opened her eyes, looking up at the smirking Pokemon approaching. Meditite was ready to finish the fight.<br /><br />“Get up!” Sensei yelled, suddenly engrossed in the action, “What are you prepared to give for your partner!?”<br /><br />The girl scrambled to her feet, her entire body heaving. The Meditite jumped, and bent its front knee, preparing for a High Jump Kick. Sarah, tucked her head in and clenched all of her muscles tightly. A faint white light coated her body at the moment of impact. The Meditite slipped around the barrier, landing awkwardly in a pile of leaves. Sarah glanced down at her defeated opponent and breathed a sigh of relief.<br /><br /><i>Protect! That’s an incredibly difficult technique! Who is this girl?</i><br /><br />Sarah had done it; she had secured her partner Pokemon.', 2013, 325), (1283, 45, None, 'Sidewinder', None, 'Shelton stopped her hand inches from the smooth surface of the water.*<br />She was far enough over the edge of the water that she was able to see her reflection. The face that stared back was not her own. The face she was observing was deeply tanned and the head was closely shaved. Thick black stubble lined the jaw and lips. Shelton reached up and ran a hand across her mouth, feeling the grainy texture of the hair. She blinked several times, trying in vain to convince herself that what she was seeing was an illusion. Her mouth dropped open out of shock and the reflection of Ethan’s did the same. She opened her mouth wider, daring Ethan’s reflection to do the same. It did.<br /><br />Shelton started screaming.', 2013, 228), (1284, 45, None, 'moonlightning', None, 'The poison type’s body compacted low, it’s thick legs taut and ready to explode. Kakari adjusted his assault and moved to sidestep. The attack was faster than the boy could have imagined, the red bladed finger homing in on his face. Kakari butchered his footwork, one leg moving over another in an attempt to block. It took both his arms to wrestle the punch to a stop.<br /><br />The Toxicroak’s eyes met Kakari’s: Yellow, uncaring eyes.<br /><br />The Poison Jab sunk into Kakari’s stomach.<br /><br />Stabbing bolts of pain.<br /><br />Bright yellow eyes.<br /><br />Bloody vomit.<br /><br /><i>I screwed up.</i>', 2013, 325), (1285, 35, None, 'johno1995', None, None, 2013, None), (1286, 35, None, 'Phoenixsong', None, None, 2013, None), (1287, 36, None, 'The Great Butler', None, None, 2013, None), (1288, 37, None, 'Brutaka', None, None, 2013, None), (1289, 38, None, 'Praxiteles', None, None, 2013, None), (1290, 38, None, 'Dragonfree', None, None, 2013, None), (1291, 39, None, 'Praxiteles', None, None, 2013, None), (1292, 1, None, 'EonMaster One', None, None, 2013, 326), (1293, 1, None, 'Mrs. Lovett', None, None, 2013, 143), (1294, 2, None, 'Brutaka', None, None, 2013, 301), (1295, 22, None, 'EonMaster One', None, 'Phineas', 2013, 326), (1296, 23, None, 'Mrs. Lovett', None, 'Ringo', 2013, 143), (1297, 49, None, 'EonMaster One', None, 'Dalton and Talia', 2013, 326), (1298, 50, None, 'Mrs. Lovett', None, 'Michael and Henry', 2013, 143), (1299, 34, None, 'Mrs. Lovett', None, None, 2013, None), (1300, 1, None, 'diamondpearl876', None, None, 2013, 236), (1301, 53, None, 'Praxiteles', None, None, 2013, 327), (1302, 4, None, 'JX Valentine', None, None, 2013, 302), (1303, 5, None, 'ChloboShoka', None, None, 2013, 229), (1304, 6, None, 'diamondpearl876', None, None, 2013, 236), (1305, 48, None, 'Phoenixsong', None, None, 2013, 297), (1306, 7, None, 'Sid87', None, None, 2013, 224), (1307, 41, None, 'Mrs. Lovett', None, None, 2013, 143), (1308, 8, None, 'diamondpearl876', None, None, 2013, 236), (1309, 50, None, 'starliteevee', None, 'Sarah and Maressa', 2013, 318), (1310, 16, None, 'Sid87', None, None, 2013, 224), (1311, 17, None, 'diamondpearl876', None, None, 2013, 236), (1312, 51, None, 'JX Valentine', None, None, 2013, 302), (1313, 52, None, 'Brutaka', None, None, 2013, 328), (1314, 18, None, 'ChloboShoka', None, None, 2013, 229), (1315, 20, None, 'Sid87', None, 'Sam', 2013, 224), (1316, 21, None, 'ChloboShoka', None, 'Matron Blissey', 2013, 229), (1317, 22, None, 'diamondpearl876', None, 'Sai', 2013, 236), (1318, 1, None, 'Bulba the Great!', None, None, 2013, 284), (1319, 53, None, 'NightmareHybrid', None, None, 2013, 329), (1320, 4, None, 'Avenger Angel', None, None, 2013, 330), (1321, 5, None, 'ShadedSkies', None, None, 2013, 243), (1322, 48, None, 'Bulba the Great!', None, None, 2013, 284), (1323, 45, None, 'Bulba the Great!', None, '“These two...quite dangerous people, I’m sure, at some point, ” Amy started, shaking her head at the injured old man and the scared blonde girl, her blue lips curling upward, “are part of Alec Gideon’s pathetic ‘guard’. He must be in the cave somewhere. If we removed the opposition and delivered the Wing to Gabriel, do you really think he would care if a few people died?” Logan was inching toward Preston, whose forehead was dripping, his eyes trained warily on the gun.<br /><br />“Look at her hands, ” he muttered to Logan, who seemed to find this an odd request. She looked all the same.<br /><br />The hand holding the gun was like the rest of Amy’s body, slender and dark. But the other hand was gloved in sleek forest-green leather. Logan frowned, looking at Preston, more than a little worried about his sanity in his present state. “Why does that matter -” she began, but she was interrupted.<br /><br />“Oh, shut UP, ” Amy said, her eyes rolling. The bare hand cocked the gun trained on Preston’s forehead. “If you must know, I only watched your wife’s torture. A shame, really. I would’ve liked to say I took part in the removal of both Prestons from our world.” She smiled at this prospect, finger tightening.<br /><br />Logan shouted, “NO!” but not before the woman pulled the trigger. Logan slammed her eyes shut just in time, the last image burned in her brain Preston’s weary face frozen in disbelief. She heard the body hit the ground with a sickening crash.', 2013, 284), (1324, 53, None, 'JX Valentine', None, None, 2013, 302), (1325, 5, None, 'Negrek', None, None, 2013, 288), (1326, 8, None, 'Knightfall', None, None, 2013, 232), (1327, 50, None, 'diamondpearl876', None, 'Ezrem and Kuiora', 2013, 236), (1328, 16, None, 'Bulba the Great!', None, None, 2013, 284), (1329, 17, None, 'Shadow Lucario', None, None, 2013, 331), (1330, 47, None, 'Missingno. Master', None, None, 2013, 332), (1331, 21, None, 'JX Valentine', None, 'Adam', 2013, 302), (1332, 26, None, 'Bulba the Great!', None, 'Logan', 2013, 284), (1333, 34, None, 'Dragonfree', None, None, 2013, None), (1334, 36, None, 'FlamingRuby', None, None, 2013, None), (1335, 39, None, 'Glover', None, None, 2013, None), (1336, 53, None, 'moonlightning', None, None, 2013, 325), (1337, 7, None, 'Rediamond', None, None, 2013, 333), (1338, 52, None, 'ChaosCaptain', None, None, 2013, 299), (1339, 18, None, 'GingerDixie', None, None, 2013, 316), (1340, 50, None, 'Sid87', None, 'Sammy and Tommy', 2013, 224), (1341, 36, None, 'Cutlerine', None, None, 2013, None), (1342, 36, None, 'Ysavvryl', None, None, 2013, None), (1343, 23, None, 'Sidewinder', None, 'The voices', 2013, 228)]
# username, approved, year
voters = [('. IC Ghost .', 1, 2010), ('5221A', 1, 2012), ('848', 1, 2010), ('Agent Tectonic', 1, 2012), ('Agent Tectonic', 1, 2013), ('Air Dragon', 1, 2008), ('Air Dragon', 1, 2009), ('Air Dragon', 1, 2010), ('Air Dragon', 1, 2011), ('armaldo', 1, 2008), ('Articuno_rocks', 1, 2011), ('asdgawek;fgbq;wjke', 0, 2012), ('atlantis_kid99', 1, 2008), ('aura master', 1, 2008), ('Bay', 1, 2008), ('Bay', 1, 2009), ('bobandbill', 1, 2008), ('bobandbill', 1, 2010), ('bobandbill', 1, 2011), ('bobandbill', 1, 2012), ('Breezy', 1, 2009), ('Breezy', 1, 2010), ('Breezy', 1, 2011), ('Brutaka', 1, 2012), ('Brutaka', 1, 2013), ('Buraddo_Aipom', 1, 2008), ('Buraddo_Aipom', 1, 2009), ('Buraddo_Aipom', 1, 2010), ('ChaosCaptain', 1, 2012), ('Chapter of Charizard', 1, 2012), ('Charizard-Fan', 1, 2012), ('Chloboshoka', 1, 2012), ('chosen_one386', 1, 2008), ('chosen_one386', 1, 2009), ('chosen_one386', 1, 2011), ('CloseCombat', 1, 2011), ('DarkPersian479', 1, 2008), ('daveshan', 1, 2009), ('Deadly.Braviary', 1, 2012), ('Delongbi', 1, 2008), ('diamondpearl876', 1, 2012), ('diamondpearl876', 1, 2013), ('Diddy', 1, 2008), ('Diddy', 1, 2009), ('Diddy', 1, 2011), ('Divinity_123', 1, 2008), ('Divinity_123', 1, 2009), ('Dormant', 1, 2012), ('Draco Malfoy', 1, 2010), ('Dragonfree', 0, 2011), ('Dragonfree', 0, 2012), ('Dragonfree', 0, 2013), ('duncan', 1, 2008), ('elyvorg', 1, 2012), ('Ememew', 1, 2011), ('Ememew', 1, 2012), ('ESPNfanatic35', 1, 2010), ('ESPNfanatic35', 1, 2011), ('EternalSnowman', 1, 2013), ('Felly', 1, 2009), ('fixthe_fernback', 1, 2010), ('GalladeRocks', 1, 2009), ('GalladeRocks', 1, 2010), ('GalladeRocks', 1, 2011), ('GastlyMan', 1, 2010), ('Gelatino95', 1, 2011), ('GingerDixie', 1, 2013), ('Giratina!', 1, 2009), ('gmoyes', 1, 2010), ('gmoyes', 1, 2011), ('Golden', 1, 2009), ('gorgonfish', 1, 2012), ('gorgonfish', 1, 2013), ('Griff4815', 1, 2008), ('Griff4815', 1, 2009), ('Griff4815', 1, 2010), ('Griff4815', 1, 2011), ('Griff4815', 1, 2012), ('Griff4815', 1, 2013), ('hailflameblast', 1, 2009), ('handymankg2', 1, 2008), ('handymankg2', 1, 2009), ('harryheart', 1, 2008), ('harryheart', 0, 2009), ('harryheart', 1, 2010), ('harryheart', 1, 2011), ('Hilijix', 1, 2011), ('hol123', 1, 2008), ('Hoshi', 1, 2011), ('Hotshot', 1, 2009), ('IanDonyer', 1, 2010), ('Infernalmonk', 1, 2010), ('Iota', 1, 2012), ('ITOMARU', 1, 2009), ('JammyU', 1, 2008), ('Jason-Kun', 1, 2008), ('Jerichi', 1, 2008), ('jireh the provider', 1, 2012), ('joey1234', 1, 2012), ('joey1234', 1, 2013), ('JX Valentine', 1, 2009), ('JX Valentine', 1, 2010), ('JX Valentine', 1, 2011), ('JX Valentine', 1, 2012), ('JX Valentine', 1, 2013), ('katiekitten', 1, 2008), ('Keldminrachi91', 1, 2012), ('Kevmysta', 1, 2009), ('KingT', 1, 2008), ('Kissmygrass96', 1, 2010), ('Kissmygrass96', 1, 2011), ('kjt', 1, 2010), ('knightfall', 1, 2011), ('Knightfall', 1, 2012), ('Knightfall', 1, 2013), ('Llama_Guy', 1, 2009), ('Lorde', 1, 2013), ('Lucario Hero', 0, 2008), ('mageslayer99', 1, 2009), ('Mallymkun', 1, 2010), ('manaphyman', 1, 2008), ('manaphyman', 1, 2009), ('manaphyman', 1, 2010), ('MarshtompMan', 1, 2008), ('MarshtompMan', 1, 2009), ('Matori', 1, 2013), ('mattman324', 1, 2009), ('Metal Bagon', 1, 2011), ('miler567', 1, 2008), ('Missingno. Master', 1, 2011), ('Missingno. Master', 1, 2012), ('Mogar', 1, 2013), ('moonlightning', 1, 2010), ('moonlightning', 1, 2011), ('morningsun', 1, 2012), ('Morpher01', 1, 2008), ('Mrs. Lovett', 1, 2009), ('Mrs. Lovett', 1, 2010), ('NACHOE!', 1, 2011), ('Negrek', 1, 2013), ('OceanicLanturn', 1, 2012), ('Osha Say What?', 1, 2011), ('PerseusRad', 1, 2011), ('PhalanxSigil', 1, 2013), ('pin', 1, 2013), ('Pink Harzard', 1, 2013), ('Pink Parka Girl', 1, 2008), ('PiplupKing', 1, 2008), ('Pkmn Breeder Jack', 1, 2008), ('Pkmn Breeder Jack', 1, 2009), ('PocketmonMaster', 1, 2008), ('pokeking325', 1, 2008), ('PRINCIA RAMODE', 1, 2012), ('Psychic', 1, 2012), ('quazar197', 0, 2009), ('Raptor ruler', 1, 2008), ('Rebel.JPEG', 1, 2012), ('Rediamond', 1, 2010), ('Rediamond', 1, 2013), ('Reisude', 0, 2012), ('repoman', 1, 2010), ('Resident evil', 1, 2010), ('Rixec', 1, 2008), ('rokettololi', 1, 2008), ('rokettololi', 1, 2009), ('rokettololi', 1, 2011), ('Scizor King', 1, 2008), ('scizorstrike', 1, 2010), ('scizorstrike', 1, 2011), ('scizorstrike', 1, 2012), ('SerenadeSP', 1, 2010), ('SerenadeSP', 1, 2011), ('Shadow Lucario', 1, 2009), ('Shadow Lucario', 1, 2010), ('Shadow Lucario', 1, 2012), ('Shadow Lucario 50', 1, 2012), ('Shadow XD001', 1, 2009), ('Shadow XD001', 1, 2010), ('shadow_wolf', 0, 2008), ('shale', 1, 2011), ('shiny gible', 1, 2009), ('Shymain', 1, 2012), ('Sid87', 1, 2012), ('Sid87', 1, 2013), ('Sidewinder', 1, 2012), ('Sidewinder', 1, 2013), ('Sike Saner', 1, 2008), ('Silawen', 1, 2008), ('SilentMemento', 1, 2011), ('SilentMemento', 1, 2012), ('Silver Dawn', 1, 2010), ('Sinnohdragon', 1, 2009), ('SneaselClaw', 1, 2011), ('SneaselFTW', 0, 2012), ('solovino', 1, 2009), ('Son_of_Shadows', 1, 2009), ('SpiffThis', 1, 2009), ('Stoc15', 1, 2008), ('storymasterb', 1, 2008), ('storymasterb', 1, 2010), ('Subzero Dragon', 1, 2013), ('T-Bolt', 1, 2012), ('T-Bolt', 1, 2013), ('The 4th KIRA', 1, 2010), ('The Doctor', 1, 2008), ('The Great Butler', 1, 2009), ('The Great Butler', 1, 2011), ('The Meddler', 1, 2013), ('TheCharredDragon', 1, 2013), ('TheDarkKnightFalls', 1, 2012), ('TheSirPeras', 1, 2012), ('Tropius07', 0, 2011), ('trufflesbaby', 1, 2011), ('Tyranidos', 1, 2008), ('Umbreon Ruler', 1, 2008), ('Venomfrog', 1, 2009), ('Volcer', 1, 2013), ('Volt Trainer', 1, 2011), ('Xragon', 1, 2012), ('Yonowaru in Chaos', 1, 2009), ('Ysavvryl', 1, 2008), ('Ysavvryl', 1, 2009), ('Ysavvryl', 1, 2010), ('Z-nogyroP', 1, 2012), ('Zadros', 1, 2008), ('Zadros', 1, 2009), ('Zadros', 1, 2011), ('Zbger', 1, 2013), ('Zephyr Soul', 1, 2008), ('Zincspider', 1, 2008), ('[Imaginative]:[Clockwork]', 1, 2010), ('[Imaginative]:[Clockwork]', 1, 2011), ('~Platinum~', 1, 2010)]
# username, vote, cat, year
votes = [('. IC Ghost .', 318, 1, 2010), ('. IC Ghost .', 324, 2, 2010), ('. IC Ghost .', 359, 6, 2010), ('. IC Ghost .', 348, 7, 2010), ('. IC Ghost .', 374, 8, 2010), ('. IC Ghost .', 378, 9, 2010), ('. IC Ghost .', 388, 16, 2010), ('. IC Ghost .', 391, 17, 2010), ('. IC Ghost .', 416, 18, 2010), ('. IC Ghost .', 418, 19, 2010), ('. IC Ghost .', 422, 20, 2010), ('. IC Ghost .', 428, 21, 2010), ('. IC Ghost .', 440, 22, 2010), ('. IC Ghost .', 444, 23, 2010), ('. IC Ghost .', 450, 24, 2010), ('. IC Ghost .', 461, 26, 2010), ('. IC Ghost .', 470, 27, 2010), ('. IC Ghost .', 488, 28, 2010), ('. IC Ghost .', 494, 29, 2010), ('. IC Ghost .', 499, 30, 2010), ('. IC Ghost .', 478, 33, 2010), ('. IC Ghost .', 508, 34, 2010), ('. IC Ghost .', 515, 35, 2010), ('. IC Ghost .', 519, 36, 2010), ('. IC Ghost .', 525, 37, 2010), ('. IC Ghost .', 530, 38, 2010), ('. IC Ghost .', 537, 39, 2010), ('. IC Ghost .', 364, 41, 2010), ('. IC Ghost .', 452, 43, 2010), ('. IC Ghost .', 482, 44, 2010), ('. IC Ghost .', 466, 45, 2010), ('. IC Ghost .', 400, 46, 2010), ('. IC Ghost .', 407, 47, 2010), ('5221A', 1044, 1, 2012), ('5221A', 927, 2, 2012), ('5221A', 820, 4, 2012), ('5221A', 1084, 6, 2012), ('5221A', 788, 7, 2012), ('5221A', 808, 8, 2012), ('5221A', 807, 9, 2012), ('5221A', 943, 14, 2012), ('5221A', 954, 19, 2012), ('5221A', 1075, 20, 2012), ('5221A', 1076, 21, 2012), ('5221A', 882, 27, 2012), ('5221A', 1008, 29, 2012), ('5221A', 967, 30, 2012), ('5221A', 924, 34, 2012), ('5221A', 925, 35, 2012), ('5221A', 972, 36, 2012), ('5221A', 938, 41, 2012), ('5221A', 1105, 42, 2012), ('5221A', 1089, 43, 2012), ('5221A', 1063, 46, 2012), ('5221A', 948, 47, 2012), ('5221A', 832, 52, 2012), ('848', 314, 1, 2010), ('848', 330, 4, 2010), ('848', 341, 5, 2010), ('848', 354, 6, 2010), ('848', 371, 8, 2010), ('848', 384, 10, 2010), ('848', 390, 16, 2010), ('848', 391, 17, 2010), ('848', 424, 20, 2010), ('848', 429, 21, 2010), ('848', 434, 22, 2010), ('848', 444, 23, 2010), ('848', 448, 24, 2010), ('848', 461, 26, 2010), ('848', 471, 27, 2010), ('848', 486, 28, 2010), ('848', 495, 29, 2010), ('848', 500, 30, 2010), ('848', 509, 34, 2010), ('848', 520, 36, 2010), ('848', 525, 37, 2010), ('848', 528, 38, 2010), ('848', 540, 39, 2010), ('848', 456, 42, 2010), ('848', 453, 43, 2010), ('848', 485, 44, 2010), ('848', 407, 47, 2010), ('Agent Tectonic', 912, 1, 2012), ('Agent Tectonic', 1224, 1, 2013), ('Agent Tectonic', 928, 2, 2012), ('Agent Tectonic', 1294, 2, 2013), ('Agent Tectonic', 863, 3, 2012), ('Agent Tectonic', 864, 4, 2012), ('Agent Tectonic', 1320, 4, 2013), ('Agent Tectonic', 1080, 5, 2012), ('Agent Tectonic', 1128, 5, 2013), ('Agent Tectonic', 868, 6, 2012), ('Agent Tectonic', 1304, 6, 2013), ('Agent Tectonic', 937, 7, 2012), ('Agent Tectonic', 1216, 7, 2013), ('Agent Tectonic', 1101, 8, 2012), ('Agent Tectonic', 1308, 8, 2013), ('Agent Tectonic', 996, 9, 2012), ('Agent Tectonic', 1133, 9, 2013), ('Agent Tectonic', 1049, 10, 2012), ('Agent Tectonic', 1173, 10, 2013), ('Agent Tectonic', 1088, 14, 2012), ('Agent Tectonic', 1137, 14, 2013), ('Agent Tectonic', 1022, 16, 2012), ('Agent Tectonic', 1175, 17, 2013), ('Agent Tectonic', 812, 18, 2012), ('Agent Tectonic', 1339, 18, 2013), ('Agent Tectonic', 954, 19, 2012), ('Agent Tectonic', 1180, 19, 2013), ('Agent Tectonic', 1075, 20, 2012), ('Agent Tectonic', 1182, 20, 2013), ('Agent Tectonic', 1076, 21, 2012), ('Agent Tectonic', 1184, 21, 2013), ('Agent Tectonic', 1185, 22, 2013), ('Agent Tectonic', 815, 23, 2012), ('Agent Tectonic', 1186, 23, 2013), ('Agent Tectonic', 1188, 24, 2013), ('Agent Tectonic', 1079, 26, 2012), ('Agent Tectonic', 1152, 26, 2013), ('Agent Tectonic', 882, 27, 2012), ('Agent Tectonic', 965, 28, 2012), ('Agent Tectonic', 1154, 28, 2013), ('Agent Tectonic', 1092, 29, 2012), ('Agent Tectonic', 845, 30, 2012), ('Agent Tectonic', 1081, 33, 2012), ('Agent Tectonic', 1193, 33, 2013), ('Agent Tectonic', 907, 34, 2012), ('Agent Tectonic', 1194, 34, 2013), ('Agent Tectonic', 925, 35, 2012), ('Agent Tectonic', 972, 36, 2012), ('Agent Tectonic', 1341, 36, 2013), ('Agent Tectonic', 890, 37, 2012), ('Agent Tectonic', 1288, 37, 2013), ('Agent Tectonic', 793, 38, 2012), ('Agent Tectonic', 1162, 38, 2013), ('Agent Tectonic', 794, 39, 2012), ('Agent Tectonic', 1163, 39, 2013), ('Agent Tectonic', 913, 40, 2012), ('Agent Tectonic', 1048, 41, 2012), ('Agent Tectonic', 1105, 42, 2012), ('Agent Tectonic', 1052, 43, 2012), ('Agent Tectonic', 1189, 43, 2013), ('Agent Tectonic', 884, 44, 2012), ('Agent Tectonic', 1192, 45, 2013), ('Agent Tectonic', 1139, 46, 2013), ('Agent Tectonic', 917, 47, 2012), ('Agent Tectonic', 1140, 47, 2013), ('Agent Tectonic', 936, 48, 2012), ('Agent Tectonic', 1203, 48, 2013), ('Agent Tectonic', 1110, 50, 2012), ('Agent Tectonic', 1172, 50, 2013), ('Agent Tectonic', 918, 51, 2012), ('Agent Tectonic', 1176, 51, 2013), ('Agent Tectonic', 832, 52, 2012), ('Agent Tectonic', 1178, 52, 2013), ('Agent Tectonic', 1324, 53, 2013), ('Air Dragon', 5, 1, 2008), ('Air Dragon', 261, 1, 2009), ('Air Dragon', 321, 1, 2010), ('Air Dragon', 548, 1, 2011), ('Air Dragon', 208, 2, 2009), ('Air Dragon', 322, 2, 2010), ('Air Dragon', 14, 3, 2008), ('Air Dragon', 328, 3, 2010), ('Air Dragon', 24, 4, 2008), ('Air Dragon', 330, 4, 2010), ('Air Dragon', 584, 4, 2011), ('Air Dragon', 30, 5, 2008), ('Air Dragon', 160, 5, 2009), ('Air Dragon', 593, 5, 2011), ('Air Dragon', 33, 6, 2008), ('Air Dragon', 210, 6, 2009), ('Air Dragon', 363, 6, 2010), ('Air Dragon', 600, 6, 2011), ('Air Dragon', 351, 7, 2010), ('Air Dragon', 610, 7, 2011), ('Air Dragon', 282, 8, 2009), ('Air Dragon', 374, 8, 2010), ('Air Dragon', 620, 8, 2011), ('Air Dragon', 641, 10, 2011), ('Air Dragon', 50, 11, 2008), ('Air Dragon', 52, 12, 2008), ('Air Dragon', 59, 13, 2008), ('Air Dragon', 272, 13, 2009), ('Air Dragon', 246, 14, 2009), ('Air Dragon', 63, 15, 2008), ('Air Dragon', 66, 16, 2008), ('Air Dragon', 267, 16, 2009), ('Air Dragon', 387, 16, 2010), ('Air Dragon', 643, 16, 2011), ('Air Dragon', 67, 17, 2008), ('Air Dragon', 262, 17, 2009), ('Air Dragon', 391, 17, 2010), ('Air Dragon', 653, 17, 2011), ('Air Dragon', 203, 18, 2009), ('Air Dragon', 417, 19, 2010), ('Air Dragon', 683, 19, 2011), ('Air Dragon', 81, 20, 2008), ('Air Dragon', 425, 20, 2010), ('Air Dragon', 694, 20, 2011), ('Air Dragon', 85, 21, 2008), ('Air Dragon', 440, 22, 2010), ('Air Dragon', 709, 22, 2011), ('Air Dragon', 90, 23, 2008), ('Air Dragon', 248, 23, 2009), ('Air Dragon', 442, 23, 2010), ('Air Dragon', 92, 24, 2008), ('Air Dragon', 98, 26, 2008), ('Air Dragon', 263, 26, 2009), ('Air Dragon', 464, 26, 2010), ('Air Dragon', 732, 26, 2011), ('Air Dragon', 469, 27, 2010), ('Air Dragon', 737, 27, 2011), ('Air Dragon', 740, 28, 2011), ('Air Dragon', 744, 29, 2011), ('Air Dragon', 107, 30, 2008), ('Air Dragon', 500, 30, 2010), ('Air Dragon', 109, 31, 2008), ('Air Dragon', 306, 32, 2009), ('Air Dragon', 113, 33, 2008), ('Air Dragon', 181, 33, 2009), ('Air Dragon', 475, 33, 2010), ('Air Dragon', 754, 33, 2011), ('Air Dragon', 116, 34, 2008), ('Air Dragon', 251, 34, 2009), ('Air Dragon', 758, 34, 2011), ('Air Dragon', 119, 35, 2008), ('Air Dragon', 125, 36, 2008), ('Air Dragon', 297, 36, 2009), ('Air Dragon', 520, 36, 2010), ('Air Dragon', 770, 36, 2011), ('Air Dragon', 132, 37, 2008), ('Air Dragon', 202, 37, 2009), ('Air Dragon', 525, 37, 2010), ('Air Dragon', 277, 38, 2009), ('Air Dragon', 530, 38, 2010), ('Air Dragon', 777, 38, 2011), ('Air Dragon', 139, 39, 2008), ('Air Dragon', 544, 39, 2010), ('Air Dragon', 779, 39, 2011), ('Air Dragon', 329, 40, 2010), ('Air Dragon', 575, 40, 2011), ('Air Dragon', 365, 41, 2010), ('Air Dragon', 613, 41, 2011), ('Air Dragon', 726, 42, 2011), ('Air Dragon', 265, 43, 2009), ('Air Dragon', 725, 43, 2011), ('Air Dragon', 307, 44, 2009), ('Air Dragon', 749, 44, 2011), ('Air Dragon', 467, 45, 2010), ('Air Dragon', 752, 45, 2011), ('Air Dragon', 664, 46, 2011), ('Air Dragon', 411, 47, 2010), ('Air Dragon', 606, 48, 2011), ('Air Dragon', 632, 49, 2011), ('Air Dragon', 636, 50, 2011), ('Air Dragon', 676, 51, 2011), ('armaldo', 6, 1, 2008), ('armaldo', 10, 2, 2008), ('armaldo', 22, 4, 2008), ('armaldo', 25, 5, 2008), ('armaldo', 33, 6, 2008), ('armaldo', 41, 8, 2008), ('armaldo', 44, 9, 2008), ('armaldo', 54, 12, 2008), ('armaldo', 60, 14, 2008), ('armaldo', 64, 16, 2008), ('armaldo', 68, 17, 2008), ('armaldo', 71, 18, 2008), ('armaldo', 76, 20, 2008), ('armaldo', 83, 21, 2008), ('armaldo', 88, 23, 2008), ('armaldo', 93, 24, 2008), ('armaldo', 97, 26, 2008), ('armaldo', 102, 27, 2008), ('armaldo', 114, 34, 2008), ('armaldo', 123, 35, 2008), ('armaldo', 125, 36, 2008), ('armaldo', 127, 37, 2008), ('armaldo', 136, 38, 2008), ('armaldo', 137, 39, 2008), ('Articuno_rocks', 552, 1, 2011), ('Articuno_rocks', 567, 2, 2011), ('Articuno_rocks', 573, 3, 2011), ('Articuno_rocks', 578, 4, 2011), ('Articuno_rocks', 587, 5, 2011), ('Articuno_rocks', 599, 6, 2011), ('Articuno_rocks', 611, 7, 2011), ('Articuno_rocks', 618, 8, 2011), ('Articuno_rocks', 628, 9, 2011), ('Articuno_rocks', 641, 10, 2011), ('Articuno_rocks', 645, 14, 2011), ('Articuno_rocks', 644, 16, 2011), ('Articuno_rocks', 654, 17, 2011), ('Articuno_rocks', 677, 18, 2011), ('Articuno_rocks', 680, 19, 2011), ('Articuno_rocks', 685, 20, 2011), ('Articuno_rocks', 702, 21, 2011), ('Articuno_rocks', 704, 22, 2011), ('Articuno_rocks', 712, 23, 2011), ('Articuno_rocks', 716, 24, 2011), ('Articuno_rocks', 729, 26, 2011), ('Articuno_rocks', 737, 27, 2011), ('Articuno_rocks', 740, 28, 2011), ('Articuno_rocks', 744, 29, 2011), ('Articuno_rocks', 746, 30, 2011), ('Articuno_rocks', 754, 33, 2011), ('Articuno_rocks', 756, 34, 2011), ('Articuno_rocks', 766, 35, 2011), ('Articuno_rocks', 769, 36, 2011), ('Articuno_rocks', 771, 37, 2011), ('Articuno_rocks', 776, 38, 2011), ('Articuno_rocks', 779, 39, 2011), ('Articuno_rocks', 575, 40, 2011), ('Articuno_rocks', 614, 41, 2011), ('Articuno_rocks', 726, 42, 2011), ('Articuno_rocks', 722, 43, 2011), ('Articuno_rocks', 749, 44, 2011), ('Articuno_rocks', 752, 45, 2011), ('Articuno_rocks', 661, 46, 2011), ('Articuno_rocks', 668, 47, 2011), ('Articuno_rocks', 605, 48, 2011), ('Articuno_rocks', 633, 49, 2011), ('Articuno_rocks', 636, 50, 2011), ('Articuno_rocks', 676, 51, 2011), ('asdgawek;fgbq;wjke', 860, 1, 2012), ('asdgawek;fgbq;wjke', 928, 2, 2012), ('asdgawek;fgbq;wjke', 1045, 4, 2012), ('asdgawek;fgbq;wjke', 983, 5, 2012), ('asdgawek;fgbq;wjke', 855, 6, 2012), ('asdgawek;fgbq;wjke', 788, 7, 2012), ('asdgawek;fgbq;wjke', 996, 9, 2012), ('asdgawek;fgbq;wjke', 1049, 10, 2012), ('asdgawek;fgbq;wjke', 828, 14, 2012), ('asdgawek;fgbq;wjke', 873, 17, 2012), ('asdgawek;fgbq;wjke', 811, 18, 2012), ('asdgawek;fgbq;wjke', 954, 19, 2012), ('asdgawek;fgbq;wjke', 1075, 20, 2012), ('asdgawek;fgbq;wjke', 1076, 21, 2012), ('asdgawek;fgbq;wjke', 1077, 22, 2012), ('asdgawek;fgbq;wjke', 878, 23, 2012), ('asdgawek;fgbq;wjke', 881, 26, 2012), ('asdgawek;fgbq;wjke', 964, 27, 2012), ('asdgawek;fgbq;wjke', 801, 28, 2012), ('asdgawek;fgbq;wjke', 844, 29, 2012), ('asdgawek;fgbq;wjke', 967, 30, 2012), ('asdgawek;fgbq;wjke', 1053, 33, 2012), ('asdgawek;fgbq;wjke', 858, 34, 2012), ('asdgawek;fgbq;wjke', 974, 38, 2012), ('asdgawek;fgbq;wjke', 1085, 41, 2012), ('asdgawek;fgbq;wjke', 962, 42, 2012), ('asdgawek;fgbq;wjke', 968, 44, 2012), ('asdgawek;fgbq;wjke', 885, 45, 2012), ('asdgawek;fgbq;wjke', 946, 46, 2012), ('asdgawek;fgbq;wjke', 792, 47, 2012), ('asdgawek;fgbq;wjke', 789, 49, 2012), ('asdgawek;fgbq;wjke', 805, 50, 2012), ('atlantis_kid99', 1, 1, 2008), ('atlantis_kid99', 9, 2, 2008), ('atlantis_kid99', 19, 4, 2008), ('atlantis_kid99', 25, 5, 2008), ('atlantis_kid99', 41, 8, 2008), ('atlantis_kid99', 48, 10, 2008), ('atlantis_kid99', 50, 11, 2008), ('atlantis_kid99', 55, 12, 2008), ('atlantis_kid99', 61, 14, 2008), ('atlantis_kid99', 67, 17, 2008), ('atlantis_kid99', 74, 19, 2008), ('atlantis_kid99', 77, 20, 2008), ('atlantis_kid99', 83, 21, 2008), ('atlantis_kid99', 92, 24, 2008), ('atlantis_kid99', 104, 27, 2008), ('atlantis_kid99', 105, 28, 2008), ('atlantis_kid99', 106, 29, 2008), ('atlantis_kid99', 107, 30, 2008), ('atlantis_kid99', 110, 32, 2008), ('atlantis_kid99', 113, 33, 2008), ('atlantis_kid99', 116, 34, 2008), ('atlantis_kid99', 119, 35, 2008), ('atlantis_kid99', 125, 36, 2008), ('atlantis_kid99', 130, 37, 2008), ('atlantis_kid99', 136, 38, 2008), ('aura master', 5, 1, 2008), ('aura master', 20, 4, 2008), ('aura master', 33, 6, 2008), ('aura master', 52, 12, 2008), ('aura master', 64, 16, 2008), ('aura master', 67, 17, 2008), ('aura master', 77, 20, 2008), ('aura master', 92, 24, 2008), ('aura master', 100, 26, 2008), ('aura master', 102, 27, 2008), ('aura master', 106, 29, 2008), ('aura master', 107, 30, 2008), ('aura master', 108, 31, 2008), ('aura master', 113, 33, 2008), ('aura master', 116, 34, 2008), ('aura master', 122, 35, 2008), ('aura master', 125, 36, 2008), ('aura master', 131, 37, 2008), ('aura master', 136, 38, 2008), ('aura master', 137, 39, 2008), ('Bay', 4, 1, 2008), ('Bay', 177, 1, 2009), ('Bay', 10, 2, 2008), ('Bay', 208, 2, 2009), ('Bay', 209, 3, 2009), ('Bay', 20, 4, 2008), ('Bay', 159, 4, 2009), ('Bay', 26, 5, 2008), ('Bay', 36, 6, 2008), ('Bay', 210, 6, 2009), ('Bay', 184, 7, 2009), ('Bay', 40, 8, 2008), ('Bay', 215, 8, 2009), ('Bay', 46, 9, 2008), ('Bay', 167, 9, 2009), ('Bay', 165, 10, 2009), ('Bay', 50, 11, 2008), ('Bay', 55, 12, 2008), ('Bay', 185, 12, 2009), ('Bay', 59, 13, 2008), ('Bay', 272, 13, 2009), ('Bay', 60, 14, 2008), ('Bay', 246, 14, 2009), ('Bay', 63, 15, 2008), ('Bay', 259, 15, 2009), ('Bay', 66, 16, 2008), ('Bay', 283, 16, 2009), ('Bay', 68, 17, 2008), ('Bay', 216, 17, 2009), ('Bay', 71, 18, 2008), ('Bay', 203, 18, 2009), ('Bay', 256, 19, 2009), ('Bay', 79, 20, 2008), ('Bay', 240, 20, 2009), ('Bay', 86, 21, 2008), ('Bay', 87, 22, 2008), ('Bay', 187, 22, 2009), ('Bay', 90, 23, 2008), ('Bay', 248, 23, 2009), ('Bay', 91, 24, 2008), ('Bay', 175, 24, 2009), ('Bay', 98, 26, 2008), ('Bay', 226, 26, 2009), ('Bay', 104, 27, 2008), ('Bay', 236, 27, 2009), ('Bay', 105, 28, 2008), ('Bay', 107, 30, 2008), ('Bay', 108, 31, 2008), ('Bay', 306, 32, 2009), ('Bay', 181, 33, 2009), ('Bay', 115, 34, 2008), ('Bay', 251, 34, 2009), ('Bay', 120, 35, 2008), ('Bay', 204, 35, 2009), ('Bay', 125, 36, 2008), ('Bay', 179, 36, 2009), ('Bay', 127, 37, 2008), ('Bay', 202, 37, 2009), ('Bay', 133, 38, 2008), ('Bay', 277, 38, 2009), ('Bay', 137, 39, 2008), ('Bay', 296, 39, 2009), ('Bay', 211, 41, 2009), ('Bay', 303, 42, 2009), ('Bay', 265, 43, 2009), ('bobandbill', 1, 1, 2008), ('bobandbill', 316, 1, 2010), ('bobandbill', 555, 1, 2011), ('bobandbill', 818, 1, 2012), ('bobandbill', 10, 2, 2008), ('bobandbill', 571, 2, 2011), ('bobandbill', 928, 2, 2012), ('bobandbill', 328, 3, 2010), ('bobandbill', 573, 3, 2011), ('bobandbill', 986, 3, 2012), ('bobandbill', 23, 4, 2008), ('bobandbill', 585, 4, 2011), ('bobandbill', 864, 4, 2012), ('bobandbill', 29, 5, 2008), ('bobandbill', 342, 5, 2010), ('bobandbill', 932, 5, 2012), ('bobandbill', 359, 6, 2010), ('bobandbill', 1084, 6, 2012), ('bobandbill', 348, 7, 2010), ('bobandbill', 1060, 7, 2012), ('bobandbill', 618, 8, 2011), ('bobandbill', 1061, 8, 2012), ('bobandbill', 46, 9, 2008), ('bobandbill', 378, 9, 2010), ('bobandbill', 631, 9, 2011), ('bobandbill', 996, 9, 2012), ('bobandbill', 48, 10, 2008), ('bobandbill', 381, 10, 2010), ('bobandbill', 641, 10, 2011), ('bobandbill', 1021, 10, 2012), ('bobandbill', 50, 11, 2008), ('bobandbill', 60, 14, 2008), ('bobandbill', 651, 14, 2011), ('bobandbill', 943, 14, 2012), ('bobandbill', 63, 15, 2008), ('bobandbill', 66, 16, 2008), ('bobandbill', 390, 16, 2010), ('bobandbill', 642, 16, 2011), ('bobandbill', 1120, 16, 2012), ('bobandbill', 68, 17, 2008), ('bobandbill', 395, 17, 2010), ('bobandbill', 660, 17, 2011), ('bobandbill', 944, 17, 2012), ('bobandbill', 72, 18, 2008), ('bobandbill', 412, 18, 2010), ('bobandbill', 677, 18, 2011), ('bobandbill', 833, 18, 2012), ('bobandbill', 419, 19, 2010), ('bobandbill', 954, 19, 2012), ('bobandbill', 79, 20, 2008), ('bobandbill', 426, 20, 2010), ('bobandbill', 1102, 20, 2012), ('bobandbill', 698, 21, 2011), ('bobandbill', 836, 21, 2012), ('bobandbill', 87, 22, 2008), ('bobandbill', 711, 22, 2011), ('bobandbill', 88, 23, 2008), ('bobandbill', 93, 24, 2008), ('bobandbill', 720, 24, 2011), ('bobandbill', 473, 27, 2010), ('bobandbill', 882, 27, 2012), ('bobandbill', 486, 28, 2010), ('bobandbill', 741, 28, 2011), ('bobandbill', 1006, 28, 2012), ('bobandbill', 493, 29, 2010), ('bobandbill', 743, 29, 2011), ('bobandbill', 966, 29, 2012), ('bobandbill', 107, 30, 2008), ('bobandbill', 748, 30, 2011), ('bobandbill', 967, 30, 2012), ('bobandbill', 109, 31, 2008), ('bobandbill', 886, 33, 2012), ('bobandbill', 505, 34, 2010), ('bobandbill', 758, 34, 2011), ('bobandbill', 970, 34, 2012), ('bobandbill', 120, 35, 2008), ('bobandbill', 511, 35, 2010), ('bobandbill', 763, 35, 2011), ('bobandbill', 1012, 35, 2012), ('bobandbill', 519, 36, 2010), ('bobandbill', 767, 36, 2011), ('bobandbill', 972, 36, 2012), ('bobandbill', 130, 37, 2008), ('bobandbill', 528, 38, 2010), ('bobandbill', 776, 38, 2011), ('bobandbill', 793, 38, 2012), ('bobandbill', 137, 39, 2008), ('bobandbill', 537, 39, 2010), ('bobandbill', 779, 39, 2011), ('bobandbill', 575, 40, 2011), ('bobandbill', 913, 40, 2012), ('bobandbill', 1085, 41, 2012), ('bobandbill', 458, 42, 2010), ('bobandbill', 452, 43, 2010), ('bobandbill', 725, 43, 2011), ('bobandbill', 879, 43, 2012), ('bobandbill', 483, 44, 2010), ('bobandbill', 1093, 45, 2012), ('bobandbill', 402, 46, 2010), ('bobandbill', 665, 46, 2011), ('bobandbill', 1063, 46, 2012), ('bobandbill', 411, 47, 2010), ('bobandbill', 609, 48, 2011), ('bobandbill', 1108, 48, 2012), ('bobandbill', 632, 49, 2011), ('bobandbill', 1020, 49, 2012), ('bobandbill', 790, 50, 2012), ('bobandbill', 676, 51, 2011), ('bobandbill', 1000, 51, 2012), ('Breezy', 305, 1, 2009), ('Breezy', 315, 1, 2010), ('Breezy', 555, 1, 2011), ('Breezy', 280, 2, 2009), ('Breezy', 324, 2, 2010), ('Breezy', 570, 2, 2011), ('Breezy', 268, 3, 2009), ('Breezy', 328, 3, 2010), ('Breezy', 159, 4, 2009), ('Breezy', 336, 4, 2010), ('Breezy', 243, 5, 2009), ('Breezy', 344, 5, 2010), ('Breezy', 594, 5, 2011), ('Breezy', 210, 6, 2009), ('Breezy', 359, 6, 2010), ('Breezy', 603, 6, 2011), ('Breezy', 184, 7, 2009), ('Breezy', 350, 7, 2010), ('Breezy', 163, 8, 2009), ('Breezy', 374, 8, 2010), ('Breezy', 622, 8, 2011), ('Breezy', 378, 9, 2010), ('Breezy', 630, 9, 2011), ('Breezy', 165, 10, 2009), ('Breezy', 641, 10, 2011), ('Breezy', 205, 12, 2009), ('Breezy', 650, 14, 2011), ('Breezy', 259, 15, 2009), ('Breezy', 283, 16, 2009), ('Breezy', 388, 16, 2010), ('Breezy', 642, 16, 2011), ('Breezy', 262, 17, 2009), ('Breezy', 395, 17, 2010), ('Breezy', 657, 17, 2011), ('Breezy', 203, 18, 2009), ('Breezy', 414, 18, 2010), ('Breezy', 256, 19, 2009), ('Breezy', 420, 19, 2010), ('Breezy', 684, 19, 2011), ('Breezy', 182, 20, 2009), ('Breezy', 426, 20, 2010), ('Breezy', 693, 20, 2011), ('Breezy', 710, 22, 2011), ('Breezy', 248, 23, 2009), ('Breezy', 241, 24, 2009), ('Breezy', 188, 26, 2009), ('Breezy', 460, 26, 2010), ('Breezy', 236, 27, 2009), ('Breezy', 472, 27, 2010), ('Breezy', 487, 28, 2010), ('Breezy', 740, 28, 2011), ('Breezy', 493, 29, 2010), ('Breezy', 743, 29, 2011), ('Breezy', 499, 30, 2010), ('Breezy', 747, 30, 2011), ('Breezy', 181, 33, 2009), ('Breezy', 476, 33, 2010), ('Breezy', 274, 34, 2009), ('Breezy', 508, 34, 2010), ('Breezy', 760, 34, 2011), ('Breezy', 204, 35, 2009), ('Breezy', 514, 35, 2010), ('Breezy', 765, 35, 2011), ('Breezy', 169, 36, 2009), ('Breezy', 519, 36, 2010), ('Breezy', 770, 36, 2011), ('Breezy', 293, 37, 2009), ('Breezy', 525, 37, 2010), ('Breezy', 170, 38, 2009), ('Breezy', 532, 38, 2010), ('Breezy', 774, 38, 2011), ('Breezy', 296, 39, 2009), ('Breezy', 540, 39, 2010), ('Breezy', 782, 39, 2011), ('Breezy', 329, 40, 2010), ('Breezy', 161, 41, 2009), ('Breezy', 368, 41, 2010), ('Breezy', 615, 41, 2011), ('Breezy', 265, 43, 2009), ('Breezy', 485, 44, 2010), ('Breezy', 750, 44, 2011), ('Breezy', 466, 45, 2010), ('Breezy', 402, 46, 2010), ('Breezy', 664, 46, 2011), ('Breezy', 409, 47, 2010), ('Breezy', 607, 48, 2011), ('Breezy', 640, 50, 2011), ('Breezy', 676, 51, 2011), ('Brutaka', 912, 1, 2012), ('Brutaka', 1224, 1, 2013), ('Brutaka', 1234, 2, 2013), ('Brutaka', 863, 3, 2012), ('Brutaka', 820, 4, 2012), ('Brutaka', 1302, 4, 2013), ('Brutaka', 914, 5, 2012), ('Brutaka', 1226, 5, 2013), ('Brutaka', 915, 6, 2012), ('Brutaka', 1227, 6, 2013), ('Brutaka', 1047, 7, 2012), ('Brutaka', 1216, 7, 2013), ('Brutaka', 1101, 8, 2012), ('Brutaka', 1326, 8, 2013), ('Brutaka', 1229, 9, 2013), ('Brutaka', 1173, 10, 2013), ('Brutaka', 1022, 16, 2012), ('Brutaka', 1136, 16, 2013), ('Brutaka', 873, 17, 2012), ('Brutaka', 1138, 17, 2013), ('Brutaka', 812, 18, 2012), ('Brutaka', 1143, 18, 2013), ('Brutaka', 1180, 19, 2013), ('Brutaka', 813, 20, 2012), ('Brutaka', 1182, 20, 2013), ('Brutaka', 920, 21, 2012), ('Brutaka', 814, 22, 2012), ('Brutaka', 815, 23, 2012), ('Brutaka', 1186, 23, 2013), ('Brutaka', 1188, 24, 2013), ('Brutaka', 921, 26, 2012), ('Brutaka', 1231, 27, 2013), ('Brutaka', 1154, 28, 2013), ('Brutaka', 1232, 29, 2013), ('Brutaka', 1191, 30, 2013), ('Brutaka', 1081, 33, 2012), ('Brutaka', 1193, 33, 2013), ('Brutaka', 797, 34, 2012), ('Brutaka', 1233, 34, 2013), ('Brutaka', 925, 35, 2012), ('Brutaka', 1286, 35, 2013), ('Brutaka', 849, 36, 2012), ('Brutaka', 1213, 36, 2013), ('Brutaka', 793, 38, 2012), ('Brutaka', 1162, 38, 2013), ('Brutaka', 892, 39, 2012), ('Brutaka', 1163, 39, 2013), ('Brutaka', 913, 40, 2012), ('Brutaka', 1199, 40, 2013), ('Brutaka', 1218, 41, 2013), ('Brutaka', 841, 42, 2012), ('Brutaka', 1151, 42, 2013), ('Brutaka', 1190, 43, 2013), ('Brutaka', 1192, 45, 2013), ('Brutaka', 792, 47, 2012), ('Brutaka', 1263, 47, 2013), ('Brutaka', 804, 48, 2012), ('Brutaka', 1203, 48, 2013), ('Brutaka', 916, 49, 2012), ('Brutaka', 1256, 50, 2013), ('Brutaka', 918, 51, 2012), ('Brutaka', 1312, 51, 2013), ('Brutaka', 832, 52, 2012), ('Brutaka', 1324, 53, 2013), ('Buraddo_Aipom', 1, 1, 2008), ('Buraddo_Aipom', 194, 1, 2009), ('Buraddo_Aipom', 313, 1, 2010), ('Buraddo_Aipom', 12, 2, 2008), ('Buraddo_Aipom', 281, 2, 2009), ('Buraddo_Aipom', 322, 2, 2010), ('Buraddo_Aipom', 14, 3, 2008), ('Buraddo_Aipom', 328, 3, 2010), ('Buraddo_Aipom', 20, 4, 2008), ('Buraddo_Aipom', 224, 4, 2009), ('Buraddo_Aipom', 335, 4, 2010), ('Buraddo_Aipom', 160, 5, 2009), ('Buraddo_Aipom', 339, 5, 2010), ('Buraddo_Aipom', 269, 6, 2009), ('Buraddo_Aipom', 356, 6, 2010), ('Buraddo_Aipom', 235, 7, 2009), ('Buraddo_Aipom', 348, 7, 2010), ('Buraddo_Aipom', 214, 8, 2009), ('Buraddo_Aipom', 45, 9, 2008), ('Buraddo_Aipom', 167, 9, 2009), ('Buraddo_Aipom', 378, 9, 2010), ('Buraddo_Aipom', 48, 10, 2008), ('Buraddo_Aipom', 197, 10, 2009), ('Buraddo_Aipom', 381, 10, 2010), ('Buraddo_Aipom', 50, 11, 2008), ('Buraddo_Aipom', 55, 12, 2008), ('Buraddo_Aipom', 59, 13, 2008), ('Buraddo_Aipom', 61, 14, 2008), ('Buraddo_Aipom', 63, 15, 2008), ('Buraddo_Aipom', 271, 15, 2009), ('Buraddo_Aipom', 65, 16, 2008), ('Buraddo_Aipom', 284, 16, 2009), ('Buraddo_Aipom', 387, 16, 2010), ('Buraddo_Aipom', 68, 17, 2008), ('Buraddo_Aipom', 399, 17, 2010), ('Buraddo_Aipom', 416, 18, 2010), ('Buraddo_Aipom', 74, 19, 2008), ('Buraddo_Aipom', 417, 19, 2010), ('Buraddo_Aipom', 199, 20, 2009), ('Buraddo_Aipom', 423, 20, 2010), ('Buraddo_Aipom', 85, 21, 2008), ('Buraddo_Aipom', 429, 21, 2010), ('Buraddo_Aipom', 87, 22, 2008), ('Buraddo_Aipom', 439, 22, 2010), ('Buraddo_Aipom', 88, 23, 2008), ('Buraddo_Aipom', 441, 23, 2010), ('Buraddo_Aipom', 93, 24, 2008), ('Buraddo_Aipom', 200, 24, 2009), ('Buraddo_Aipom', 100, 26, 2008), ('Buraddo_Aipom', 102, 27, 2008), ('Buraddo_Aipom', 236, 27, 2009), ('Buraddo_Aipom', 471, 27, 2010), ('Buraddo_Aipom', 487, 28, 2010), ('Buraddo_Aipom', 106, 29, 2008), ('Buraddo_Aipom', 493, 29, 2010), ('Buraddo_Aipom', 502, 30, 2010), ('Buraddo_Aipom', 109, 31, 2008), ('Buraddo_Aipom', 113, 33, 2008), ('Buraddo_Aipom', 478, 33, 2010), ('Buraddo_Aipom', 117, 34, 2008), ('Buraddo_Aipom', 201, 34, 2009), ('Buraddo_Aipom', 505, 34, 2010), ('Buraddo_Aipom', 120, 35, 2008), ('Buraddo_Aipom', 204, 35, 2009), ('Buraddo_Aipom', 510, 35, 2010), ('Buraddo_Aipom', 124, 36, 2008), ('Buraddo_Aipom', 169, 36, 2009), ('Buraddo_Aipom', 521, 36, 2010), ('Buraddo_Aipom', 131, 37, 2008), ('Buraddo_Aipom', 293, 37, 2009), ('Buraddo_Aipom', 525, 37, 2010), ('Buraddo_Aipom', 136, 38, 2008), ('Buraddo_Aipom', 277, 38, 2009), ('Buraddo_Aipom', 528, 38, 2010), ('Buraddo_Aipom', 139, 39, 2008), ('Buraddo_Aipom', 189, 39, 2009), ('Buraddo_Aipom', 537, 39, 2010), ('Buraddo_Aipom', 329, 40, 2010), ('Buraddo_Aipom', 172, 41, 2009), ('Buraddo_Aipom', 364, 41, 2010), ('Buraddo_Aipom', 456, 42, 2010), ('Buraddo_Aipom', 451, 43, 2010), ('Buraddo_Aipom', 307, 44, 2009), ('Buraddo_Aipom', 482, 44, 2010), ('Buraddo_Aipom', 466, 45, 2010), ('Buraddo_Aipom', 402, 46, 2010), ('Buraddo_Aipom', 406, 47, 2010), ('ChaosCaptain', 912, 1, 2012), ('ChaosCaptain', 862, 2, 2012), ('ChaosCaptain', 863, 3, 2012), ('ChaosCaptain', 820, 4, 2012), ('ChaosCaptain', 914, 5, 2012), ('ChaosCaptain', 868, 6, 2012), ('ChaosCaptain', 823, 7, 2012), ('ChaosCaptain', 1101, 8, 2012), ('ChaosCaptain', 1022, 16, 2012), ('ChaosCaptain', 812, 18, 2012), ('ChaosCaptain', 813, 20, 2012), ('ChaosCaptain', 920, 21, 2012), ('ChaosCaptain', 814, 22, 2012), ('ChaosCaptain', 815, 23, 2012), ('ChaosCaptain', 921, 26, 2012), ('ChaosCaptain', 1005, 27, 2012), ('ChaosCaptain', 1007, 28, 2012), ('ChaosCaptain', 802, 30, 2012), ('ChaosCaptain', 1081, 33, 2012), ('ChaosCaptain', 925, 35, 2012), ('ChaosCaptain', 849, 36, 2012), ('ChaosCaptain', 890, 37, 2012), ('ChaosCaptain', 1054, 38, 2012), ('ChaosCaptain', 975, 39, 2012), ('ChaosCaptain', 1105, 42, 2012), ('ChaosCaptain', 804, 48, 2012), ('ChaosCaptain', 916, 49, 2012), ('ChaosCaptain', 826, 50, 2012), ('ChaosCaptain', 918, 51, 2012), ('ChaosCaptain', 832, 52, 2012), ('Chapter of Charizard', 1017, 1, 2012), ('Chapter of Charizard', 902, 2, 2012), ('Chapter of Charizard', 903, 4, 2012), ('Chapter of Charizard', 854, 5, 2012), ('Chapter of Charizard', 822, 6, 2012), ('Chapter of Charizard', 788, 7, 2012), ('Chapter of Charizard', 1109, 9, 2012), ('Chapter of Charizard', 1049, 10, 2012), ('Chapter of Charizard', 998, 16, 2012), ('Chapter of Charizard', 873, 17, 2012), ('Chapter of Charizard', 857, 20, 2012), ('Chapter of Charizard', 1097, 21, 2012), ('Chapter of Charizard', 797, 34, 2012), ('Chapter of Charizard', 1043, 36, 2012), ('Chapter of Charizard', 890, 37, 2012), ('Chapter of Charizard', 816, 38, 2012), ('Chapter of Charizard', 975, 39, 2012), ('Chapter of Charizard', 913, 40, 2012), ('Chapter of Charizard', 1035, 41, 2012), ('Chapter of Charizard', 1063, 46, 2012), ('Chapter of Charizard', 792, 47, 2012), ('Chapter of Charizard', 1108, 48, 2012), ('Chapter of Charizard', 789, 49, 2012), ('Chapter of Charizard', 949, 52, 2012), ('Charizard-Fan', 853, 1, 2012), ('Charizard-Fan', 902, 2, 2012), ('Charizard-Fan', 929, 3, 2012), ('Charizard-Fan', 1073, 4, 2012), ('Charizard-Fan', 1082, 5, 2012), ('Charizard-Fan', 1034, 6, 2012), ('Charizard-Fan', 1047, 7, 2012), ('Charizard-Fan', 1101, 8, 2012), ('Charizard-Fan', 1087, 9, 2012), ('Charizard-Fan', 1049, 10, 2012), ('Charizard-Fan', 943, 14, 2012), ('Charizard-Fan', 998, 16, 2012), ('Charizard-Fan', 856, 17, 2012), ('Charizard-Fan', 811, 18, 2012), ('Charizard-Fan', 953, 19, 2012), ('Charizard-Fan', 857, 20, 2012), ('Charizard-Fan', 1067, 21, 2012), ('Charizard-Fan', 1104, 23, 2012), ('Charizard-Fan', 1079, 26, 2012), ('Charizard-Fan', 1065, 27, 2012), ('Charizard-Fan', 1007, 28, 2012), ('Charizard-Fan', 966, 29, 2012), ('Charizard-Fan', 906, 30, 2012), ('Charizard-Fan', 969, 33, 2012), ('Charizard-Fan', 797, 34, 2012), ('Charizard-Fan', 901, 35, 2012), ('Charizard-Fan', 1043, 36, 2012), ('Charizard-Fan', 982, 37, 2012), ('Charizard-Fan', 793, 38, 2012), ('Charizard-Fan', 910, 39, 2012), ('Charizard-Fan', 913, 40, 2012), ('Charizard-Fan', 938, 41, 2012), ('Charizard-Fan', 1033, 42, 2012), ('Charizard-Fan', 960, 43, 2012), ('Charizard-Fan', 846, 44, 2012), ('Charizard-Fan', 885, 45, 2012), ('Charizard-Fan', 946, 46, 2012), ('Charizard-Fan', 874, 47, 2012), ('Charizard-Fan', 993, 48, 2012), ('Charizard-Fan', 1020, 49, 2012), ('Charizard-Fan', 997, 50, 2012), ('Charizard-Fan', 1025, 51, 2012), ('Charizard-Fan', 919, 52, 2012), ('Chloboshoka', 818, 1, 2012), ('Chloboshoka', 928, 2, 2012), ('Chloboshoka', 863, 3, 2012), ('Chloboshoka', 1045, 4, 2012), ('Chloboshoka', 932, 5, 2012), ('Chloboshoka', 822, 6, 2012), ('Chloboshoka', 870, 8, 2012), ('Chloboshoka', 807, 9, 2012), ('Chloboshoka', 1049, 10, 2012), ('Chloboshoka', 1120, 16, 2012), ('Chloboshoka', 856, 17, 2012), ('Chloboshoka', 833, 18, 2012), ('Chloboshoka', 953, 19, 2012), ('Chloboshoka', 956, 20, 2012), ('Chloboshoka', 877, 22, 2012), ('Chloboshoka', 959, 23, 2012), ('Chloboshoka', 839, 24, 2012), ('Chloboshoka', 1079, 26, 2012), ('Chloboshoka', 964, 27, 2012), ('Chloboshoka', 1007, 28, 2012), ('Chloboshoka', 1092, 29, 2012), ('Chloboshoka', 845, 30, 2012), ('Chloboshoka', 1053, 33, 2012), ('Chloboshoka', 924, 34, 2012), ('Chloboshoka', 1116, 35, 2012), ('Chloboshoka', 1030, 36, 2012), ('Chloboshoka', 973, 37, 2012), ('Chloboshoka', 817, 38, 2012), ('Chloboshoka', 794, 39, 2012), ('Chloboshoka', 913, 40, 2012), ('Chloboshoka', 938, 41, 2012), ('Chloboshoka', 880, 42, 2012), ('Chloboshoka', 879, 43, 2012), ('Chloboshoka', 846, 44, 2012), ('Chloboshoka', 1093, 45, 2012), ('Chloboshoka', 947, 46, 2012), ('Chloboshoka', 874, 47, 2012), ('Chloboshoka', 992, 48, 2012), ('Chloboshoka', 941, 49, 2012), ('Chloboshoka', 871, 50, 2012), ('Chloboshoka', 1000, 51, 2012), ('Chloboshoka', 950, 52, 2012), ('chosen_one386', 6, 1, 2008), ('chosen_one386', 183, 1, 2009), ('chosen_one386', 553, 1, 2011), ('chosen_one386', 11, 2, 2008), ('chosen_one386', 572, 2, 2011), ('chosen_one386', 14, 3, 2008), ('chosen_one386', 573, 3, 2011), ('chosen_one386', 20, 4, 2008), ('chosen_one386', 577, 4, 2011), ('chosen_one386', 29, 5, 2008), ('chosen_one386', 587, 5, 2011), ('chosen_one386', 33, 6, 2008), ('chosen_one386', 600, 6, 2011), ('chosen_one386', 38, 7, 2008), ('chosen_one386', 611, 7, 2011), ('chosen_one386', 40, 8, 2008), ('chosen_one386', 163, 8, 2009), ('chosen_one386', 623, 8, 2011), ('chosen_one386', 46, 9, 2008), ('chosen_one386', 626, 9, 2011), ('chosen_one386', 49, 10, 2008), ('chosen_one386', 641, 10, 2011), ('chosen_one386', 50, 11, 2008), ('chosen_one386', 52, 12, 2008), ('chosen_one386', 59, 13, 2008), ('chosen_one386', 62, 14, 2008), ('chosen_one386', 647, 14, 2011), ('chosen_one386', 63, 15, 2008), ('chosen_one386', 64, 16, 2008), ('chosen_one386', 267, 16, 2009), ('chosen_one386', 644, 16, 2011), ('chosen_one386', 68, 17, 2008), ('chosen_one386', 262, 17, 2009), ('chosen_one386', 654, 17, 2011), ('chosen_one386', 73, 18, 2008), ('chosen_one386', 677, 18, 2011), ('chosen_one386', 74, 19, 2008), ('chosen_one386', 681, 19, 2011), ('chosen_one386', 80, 20, 2008), ('chosen_one386', 240, 20, 2009), ('chosen_one386', 687, 20, 2011), ('chosen_one386', 84, 21, 2008), ('chosen_one386', 289, 21, 2009), ('chosen_one386', 697, 21, 2011), ('chosen_one386', 87, 22, 2008), ('chosen_one386', 187, 22, 2009), ('chosen_one386', 88, 23, 2008), ('chosen_one386', 248, 23, 2009), ('chosen_one386', 712, 23, 2011), ('chosen_one386', 92, 24, 2008), ('chosen_one386', 241, 24, 2009), ('chosen_one386', 717, 24, 2011), ('chosen_one386', 98, 26, 2008), ('chosen_one386', 226, 26, 2009), ('chosen_one386', 728, 26, 2011), ('chosen_one386', 104, 27, 2008), ('chosen_one386', 229, 27, 2009), ('chosen_one386', 737, 27, 2011), ('chosen_one386', 105, 28, 2008), ('chosen_one386', 739, 28, 2011), ('chosen_one386', 106, 29, 2008), ('chosen_one386', 743, 29, 2011), ('chosen_one386', 107, 30, 2008), ('chosen_one386', 747, 30, 2011), ('chosen_one386', 108, 31, 2008), ('chosen_one386', 110, 32, 2008), ('chosen_one386', 306, 32, 2009), ('chosen_one386', 113, 33, 2008), ('chosen_one386', 181, 33, 2009), ('chosen_one386', 754, 33, 2011), ('chosen_one386', 117, 34, 2008), ('chosen_one386', 274, 34, 2009), ('chosen_one386', 756, 34, 2011), ('chosen_one386', 120, 35, 2008), ('chosen_one386', 766, 35, 2011), ('chosen_one386', 126, 36, 2008), ('chosen_one386', 169, 36, 2009), ('chosen_one386', 770, 36, 2011), ('chosen_one386', 128, 37, 2008), ('chosen_one386', 772, 37, 2011), ('chosen_one386', 136, 38, 2008), ('chosen_one386', 295, 38, 2009), ('chosen_one386', 774, 38, 2011), ('chosen_one386', 137, 39, 2008), ('chosen_one386', 296, 39, 2009), ('chosen_one386', 781, 39, 2011), ('chosen_one386', 575, 40, 2011), ('chosen_one386', 614, 41, 2011), ('chosen_one386', 303, 42, 2009), ('chosen_one386', 726, 42, 2011), ('chosen_one386', 265, 43, 2009), ('chosen_one386', 724, 43, 2011), ('chosen_one386', 307, 44, 2009), ('chosen_one386', 750, 44, 2011), ('chosen_one386', 663, 46, 2011), ('chosen_one386', 673, 47, 2011), ('chosen_one386', 607, 48, 2011), ('chosen_one386', 634, 49, 2011), ('chosen_one386', 636, 50, 2011), ('chosen_one386', 676, 51, 2011), ('CloseCombat', 551, 1, 2011), ('CloseCombat', 568, 2, 2011), ('CloseCombat', 578, 4, 2011), ('CloseCombat', 587, 5, 2011), ('CloseCombat', 597, 6, 2011), ('CloseCombat', 611, 7, 2011), ('CloseCombat', 631, 9, 2011), ('CloseCombat', 641, 10, 2011), ('CloseCombat', 652, 14, 2011), ('CloseCombat', 659, 17, 2011), ('CloseCombat', 678, 18, 2011), ('CloseCombat', 681, 19, 2011), ('CloseCombat', 697, 21, 2011), ('CloseCombat', 704, 22, 2011), ('CloseCombat', 712, 23, 2011), ('CloseCombat', 716, 24, 2011), ('CloseCombat', 729, 26, 2011), ('CloseCombat', 737, 27, 2011), ('CloseCombat', 741, 28, 2011), ('CloseCombat', 754, 33, 2011), ('CloseCombat', 758, 34, 2011), ('CloseCombat', 763, 35, 2011), ('CloseCombat', 769, 36, 2011), ('CloseCombat', 771, 37, 2011), ('CloseCombat', 775, 38, 2011), ('CloseCombat', 779, 39, 2011), ('CloseCombat', 575, 40, 2011), ('CloseCombat', 614, 41, 2011), ('CloseCombat', 726, 42, 2011), ('CloseCombat', 662, 46, 2011), ('CloseCombat', 668, 47, 2011), ('CloseCombat', 633, 49, 2011), ('CloseCombat', 637, 50, 2011), ('CloseCombat', 676, 51, 2011), ('DarkPersian479', 1, 1, 2008), ('DarkPersian479', 12, 2, 2008), ('DarkPersian479', 21, 4, 2008), ('DarkPersian479', 27, 5, 2008), ('DarkPersian479', 33, 6, 2008), ('DarkPersian479', 38, 7, 2008), ('DarkPersian479', 42, 8, 2008), ('DarkPersian479', 48, 10, 2008), ('DarkPersian479', 54, 12, 2008), ('DarkPersian479', 65, 16, 2008), ('DarkPersian479', 74, 19, 2008), ('DarkPersian479', 81, 20, 2008), ('DarkPersian479', 86, 21, 2008), ('DarkPersian479', 87, 22, 2008), ('DarkPersian479', 88, 23, 2008), ('DarkPersian479', 91, 24, 2008), ('DarkPersian479', 97, 26, 2008), ('DarkPersian479', 102, 27, 2008), ('DarkPersian479', 113, 33, 2008), ('DarkPersian479', 117, 34, 2008), ('DarkPersian479', 120, 35, 2008), ('DarkPersian479', 126, 36, 2008), ('DarkPersian479', 132, 37, 2008), ('DarkPersian479', 136, 38, 2008), ('DarkPersian479', 137, 39, 2008), ('daveshan', 261, 1, 2009), ('daveshan', 253, 2, 2009), ('daveshan', 268, 3, 2009), ('daveshan', 159, 4, 2009), ('daveshan', 250, 5, 2009), ('daveshan', 232, 6, 2009), ('daveshan', 247, 7, 2009), ('daveshan', 230, 8, 2009), ('daveshan', 167, 9, 2009), ('daveshan', 165, 10, 2009), ('daveshan', 185, 12, 2009), ('daveshan', 272, 13, 2009), ('daveshan', 246, 14, 2009), ('daveshan', 259, 15, 2009), ('daveshan', 267, 16, 2009), ('daveshan', 158, 17, 2009), ('daveshan', 203, 18, 2009), ('daveshan', 256, 19, 2009), ('daveshan', 240, 20, 2009), ('daveshan', 238, 21, 2009), ('daveshan', 173, 22, 2009), ('daveshan', 248, 23, 2009), ('daveshan', 200, 24, 2009), ('daveshan', 188, 26, 2009), ('daveshan', 229, 27, 2009), ('daveshan', 306, 32, 2009), ('daveshan', 181, 33, 2009), ('daveshan', 251, 34, 2009), ('daveshan', 275, 35, 2009), ('daveshan', 252, 36, 2009), ('daveshan', 293, 37, 2009), ('daveshan', 300, 38, 2009), ('daveshan', 222, 39, 2009), ('daveshan', 255, 40, 2009), ('daveshan', 161, 41, 2009), ('daveshan', 303, 42, 2009), ('daveshan', 265, 43, 2009), ('Deadly.Braviary', 1044, 1, 2012), ('Deadly.Braviary', 985, 2, 2012), ('Deadly.Braviary', 863, 3, 2012), ('Deadly.Braviary', 1073, 4, 2012), ('Deadly.Braviary', 1080, 5, 2012), ('Deadly.Braviary', 822, 6, 2012), ('Deadly.Braviary', 1047, 7, 2012), ('Deadly.Braviary', 1100, 8, 2012), ('Deadly.Braviary', 996, 9, 2012), ('Deadly.Braviary', 1049, 10, 2012), ('Deadly.Braviary', 1023, 14, 2012), ('Deadly.Braviary', 1120, 16, 2012), ('Deadly.Braviary', 1050, 17, 2012), ('Deadly.Braviary', 833, 18, 2012), ('Deadly.Braviary', 834, 19, 2012), ('Deadly.Braviary', 1074, 20, 2012), ('Deadly.Braviary', 1051, 21, 2012), ('Deadly.Braviary', 1123, 22, 2012), ('Deadly.Braviary', 959, 23, 2012), ('Deadly.Braviary', 921, 26, 2012), ('Deadly.Braviary', 1005, 27, 2012), ('Deadly.Braviary', 965, 28, 2012), ('Deadly.Braviary', 966, 29, 2012), ('Deadly.Braviary', 967, 30, 2012), ('Deadly.Braviary', 1053, 33, 2012), ('Deadly.Braviary', 970, 34, 2012), ('Deadly.Braviary', 1116, 35, 2012), ('Deadly.Braviary', 972, 36, 2012), ('Deadly.Braviary', 1117, 37, 2012), ('Deadly.Braviary', 793, 38, 2012), ('Deadly.Braviary', 1016, 39, 2012), ('Deadly.Braviary', 824, 41, 2012), ('Deadly.Braviary', 880, 42, 2012), ('Deadly.Braviary', 1052, 43, 2012), ('Deadly.Braviary', 968, 44, 2012), ('Deadly.Braviary', 847, 45, 2012), ('Deadly.Braviary', 1063, 46, 2012), ('Deadly.Braviary', 1037, 47, 2012), ('Deadly.Braviary', 789, 49, 2012), ('Deadly.Braviary', 790, 50, 2012), ('Deadly.Braviary', 1000, 51, 2012), ('Deadly.Braviary', 832, 52, 2012), ('Delongbi', 3, 1, 2008), ('Delongbi', 13, 2, 2008), ('Delongbi', 21, 4, 2008), ('Delongbi', 36, 6, 2008), ('Delongbi', 47, 9, 2008), ('Delongbi', 48, 10, 2008), ('Delongbi', 50, 11, 2008), ('Delongbi', 54, 12, 2008), ('Delongbi', 59, 13, 2008), ('Delongbi', 63, 15, 2008), ('Delongbi', 74, 19, 2008), ('Delongbi', 78, 20, 2008), ('Delongbi', 87, 22, 2008), ('Delongbi', 94, 24, 2008), ('Delongbi', 100, 26, 2008), ('Delongbi', 102, 27, 2008), ('Delongbi', 105, 28, 2008), ('Delongbi', 106, 29, 2008), ('Delongbi', 107, 30, 2008), ('Delongbi', 113, 33, 2008), ('Delongbi', 116, 34, 2008), ('Delongbi', 123, 35, 2008), ('Delongbi', 125, 36, 2008), ('Delongbi', 133, 38, 2008), ('diamondpearl876', 984, 1, 2012), ('diamondpearl876', 1197, 1, 2013), ('diamondpearl876', 927, 2, 2012), ('diamondpearl876', 1234, 2, 2013), ('diamondpearl876', 986, 3, 2012), ('diamondpearl876', 931, 4, 2012), ('diamondpearl876', 1127, 4, 2013), ('diamondpearl876', 989, 5, 2012), ('diamondpearl876', 1303, 5, 2013), ('diamondpearl876', 1019, 6, 2012), ('diamondpearl876', 1202, 6, 2013), ('diamondpearl876', 1099, 7, 2012), ('diamondpearl876', 1131, 7, 2013), ('diamondpearl876', 870, 8, 2012), ('diamondpearl876', 1236, 8, 2013), ('diamondpearl876', 996, 9, 2012), ('diamondpearl876', 1229, 9, 2013), ('diamondpearl876', 1257, 10, 2013), ('diamondpearl876', 943, 14, 2012), ('diamondpearl876', 1137, 14, 2013), ('diamondpearl876', 998, 16, 2012), ('diamondpearl876', 1136, 16, 2013), ('diamondpearl876', 1032, 17, 2012), ('diamondpearl876', 1138, 17, 2013), ('diamondpearl876', 812, 18, 2012), ('diamondpearl876', 1314, 18, 2013), ('diamondpearl876', 954, 19, 2012), ('diamondpearl876', 1206, 19, 2013), ('diamondpearl876', 1001, 20, 2012), ('diamondpearl876', 1207, 20, 2013), ('diamondpearl876', 1002, 21, 2012), ('diamondpearl876', 1316, 21, 2013), ('diamondpearl876', 877, 22, 2012), ('diamondpearl876', 1147, 22, 2013), ('diamondpearl876', 1104, 23, 2012), ('diamondpearl876', 1343, 23, 2013), ('diamondpearl876', 839, 24, 2012), ('diamondpearl876', 1149, 24, 2013), ('diamondpearl876', 1090, 26, 2012), ('diamondpearl876', 1208, 26, 2013), ('diamondpearl876', 1005, 27, 2012), ('diamondpearl876', 1277, 27, 2013), ('diamondpearl876', 1006, 28, 2012), ('diamondpearl876', 1279, 28, 2013), ('diamondpearl876', 966, 29, 2012), ('diamondpearl876', 1281, 29, 2013), ('diamondpearl876', 967, 30, 2012), ('diamondpearl876', 1081, 33, 2012), ('diamondpearl876', 1210, 33, 2013), ('diamondpearl876', 924, 34, 2012), ('diamondpearl876', 1233, 34, 2013), ('diamondpearl876', 798, 35, 2012), ('diamondpearl876', 1159, 35, 2013), ('diamondpearl876', 1013, 36, 2012), ('diamondpearl876', 1213, 36, 2013), ('diamondpearl876', 973, 37, 2012), ('diamondpearl876', 1196, 37, 2013), ('diamondpearl876', 793, 38, 2012), ('diamondpearl876', 1289, 38, 2013), ('diamondpearl876', 800, 39, 2012), ('diamondpearl876', 1214, 39, 2013), ('diamondpearl876', 1199, 40, 2013), ('diamondpearl876', 994, 41, 2012), ('diamondpearl876', 1204, 41, 2013), ('diamondpearl876', 1033, 42, 2012), ('diamondpearl876', 1151, 42, 2013), ('diamondpearl876', 840, 43, 2012), ('diamondpearl876', 1009, 44, 2012), ('diamondpearl876', 1282, 44, 2013), ('diamondpearl876', 1093, 45, 2012), ('diamondpearl876', 1283, 45, 2013), ('diamondpearl876', 830, 46, 2012), ('diamondpearl876', 1139, 46, 2013), ('diamondpearl876', 948, 47, 2012), ('diamondpearl876', 1330, 47, 2013), ('diamondpearl876', 796, 48, 2012), ('diamondpearl876', 1249, 48, 2013), ('diamondpearl876', 1020, 49, 2012), ('diamondpearl876', 1134, 49, 2013), ('diamondpearl876', 826, 50, 2012), ('diamondpearl876', 1255, 50, 2013), ('diamondpearl876', 1025, 51, 2012), ('diamondpearl876', 1264, 51, 2013), ('diamondpearl876', 832, 52, 2012), ('diamondpearl876', 1178, 52, 2013), ('diamondpearl876', 1324, 53, 2013), ('Diddy', 5, 1, 2008), ('Diddy', 308, 1, 2009), ('Diddy', 557, 1, 2011), ('Diddy', 13, 2, 2008), ('Diddy', 281, 2, 2009), ('Diddy', 563, 2, 2011), ('Diddy', 14, 3, 2008), ('Diddy', 209, 3, 2009), ('Diddy', 20, 4, 2008), ('Diddy', 159, 4, 2009), ('Diddy', 585, 4, 2011), ('Diddy', 29, 5, 2008), ('Diddy', 160, 5, 2009), ('Diddy', 586, 5, 2011), ('Diddy', 34, 6, 2008), ('Diddy', 210, 6, 2009), ('Diddy', 595, 6, 2011), ('Diddy', 39, 7, 2008), ('Diddy', 235, 7, 2009), ('Diddy', 610, 7, 2011), ('Diddy', 163, 8, 2009), ('Diddy', 621, 8, 2011), ('Diddy', 167, 9, 2009), ('Diddy', 625, 9, 2011), ('Diddy', 165, 10, 2009), ('Diddy', 641, 10, 2011), ('Diddy', 50, 11, 2008), ('Diddy', 55, 12, 2008), ('Diddy', 185, 12, 2009), ('Diddy', 246, 14, 2009), ('Diddy', 271, 15, 2009), ('Diddy', 66, 16, 2008), ('Diddy', 237, 16, 2009), ('Diddy', 642, 16, 2011), ('Diddy', 67, 17, 2008), ('Diddy', 158, 17, 2009), ('Diddy', 660, 17, 2011), ('Diddy', 72, 18, 2008), ('Diddy', 203, 18, 2009), ('Diddy', 677, 18, 2011), ('Diddy', 256, 19, 2009), ('Diddy', 684, 19, 2011), ('Diddy', 79, 20, 2008), ('Diddy', 199, 20, 2009), ('Diddy', 694, 20, 2011), ('Diddy', 85, 21, 2008), ('Diddy', 289, 21, 2009), ('Diddy', 700, 21, 2011), ('Diddy', 187, 22, 2009), ('Diddy', 707, 22, 2011), ('Diddy', 248, 23, 2009), ('Diddy', 93, 24, 2008), ('Diddy', 168, 24, 2009), ('Diddy', 721, 24, 2011), ('Diddy', 97, 26, 2008), ('Diddy', 226, 26, 2009), ('Diddy', 730, 26, 2011), ('Diddy', 102, 27, 2008), ('Diddy', 236, 27, 2009), ('Diddy', 735, 27, 2011), ('Diddy', 740, 28, 2011), ('Diddy', 744, 29, 2011), ('Diddy', 748, 30, 2011), ('Diddy', 109, 31, 2008), ('Diddy', 306, 32, 2009), ('Diddy', 181, 33, 2009), ('Diddy', 755, 33, 2011), ('Diddy', 117, 34, 2008), ('Diddy', 251, 34, 2009), ('Diddy', 760, 34, 2011), ('Diddy', 120, 35, 2008), ('Diddy', 275, 35, 2009), ('Diddy', 763, 35, 2011), ('Diddy', 125, 36, 2008), ('Diddy', 169, 36, 2009), ('Diddy', 770, 36, 2011), ('Diddy', 131, 37, 2008), ('Diddy', 133, 38, 2008), ('Diddy', 170, 38, 2009), ('Diddy', 774, 38, 2011), ('Diddy', 137, 39, 2008), ('Diddy', 222, 39, 2009), ('Diddy', 782, 39, 2011), ('Diddy', 255, 40, 2009), ('Diddy', 161, 41, 2009), ('Diddy', 617, 41, 2011), ('Diddy', 303, 42, 2009), ('Diddy', 265, 43, 2009), ('Diddy', 307, 44, 2009), ('Diddy', 664, 46, 2011), ('Diddy', 667, 47, 2011), ('Diddy', 606, 48, 2011), ('Diddy', 636, 50, 2011), ('Diddy', 676, 51, 2011), ('Divinity_123', 5, 1, 2008), ('Divinity_123', 183, 1, 2009), ('Divinity_123', 14, 3, 2008), ('Divinity_123', 18, 4, 2008), ('Divinity_123', 224, 4, 2009), ('Divinity_123', 33, 6, 2008), ('Divinity_123', 38, 7, 2008), ('Divinity_123', 235, 7, 2009), ('Divinity_123', 215, 8, 2009), ('Divinity_123', 45, 9, 2008), ('Divinity_123', 48, 10, 2008), ('Divinity_123', 197, 10, 2009), ('Divinity_123', 54, 12, 2008), ('Divinity_123', 185, 12, 2009), ('Divinity_123', 59, 13, 2008), ('Divinity_123', 272, 13, 2009), ('Divinity_123', 64, 16, 2008), ('Divinity_123', 267, 16, 2009), ('Divinity_123', 67, 17, 2008), ('Divinity_123', 234, 17, 2009), ('Divinity_123', 77, 20, 2008), ('Divinity_123', 199, 20, 2009), ('Divinity_123', 85, 21, 2008), ('Divinity_123', 187, 22, 2009), ('Divinity_123', 88, 23, 2008), ('Divinity_123', 91, 24, 2008), ('Divinity_123', 168, 24, 2009), ('Divinity_123', 97, 26, 2008), ('Divinity_123', 188, 26, 2009), ('Divinity_123', 102, 27, 2008), ('Divinity_123', 236, 27, 2009), ('Divinity_123', 117, 34, 2008), ('Divinity_123', 251, 34, 2009), ('Divinity_123', 120, 35, 2008), ('Divinity_123', 125, 36, 2008), ('Divinity_123', 179, 36, 2009), ('Divinity_123', 127, 37, 2008), ('Divinity_123', 293, 37, 2009), ('Divinity_123', 133, 38, 2008), ('Divinity_123', 277, 38, 2009), ('Divinity_123', 137, 39, 2008), ('Divinity_123', 222, 39, 2009), ('Divinity_123', 265, 43, 2009), ('Divinity_123', 307, 44, 2009), ('Dormant', 1044, 1, 2012), ('Dormant', 927, 2, 2012), ('Dormant', 1045, 4, 2012), ('Dormant', 866, 5, 2012), ('Dormant', 1019, 6, 2012), ('Dormant', 788, 7, 2012), ('Dormant', 1101, 8, 2012), ('Dormant', 807, 9, 2012), ('Dormant', 1049, 10, 2012), ('Dormant', 943, 14, 2012), ('Dormant', 1022, 16, 2012), ('Dormant', 856, 17, 2012), ('Dormant', 1075, 20, 2012), ('Dormant', 1076, 21, 2012), ('Dormant', 1077, 22, 2012), ('Dormant', 815, 23, 2012), ('Dormant', 963, 26, 2012), ('Dormant', 964, 27, 2012), ('Dormant', 1006, 28, 2012), ('Dormant', 966, 29, 2012), ('Dormant', 906, 30, 2012), ('Dormant', 923, 33, 2012), ('Dormant', 970, 34, 2012), ('Dormant', 925, 35, 2012), ('Dormant', 1043, 36, 2012), ('Dormant', 890, 37, 2012), ('Dormant', 1054, 38, 2012), ('Dormant', 910, 39, 2012), ('Dormant', 938, 41, 2012), ('Dormant', 962, 42, 2012), ('Dormant', 1052, 43, 2012), ('Dormant', 1009, 44, 2012), ('Dormant', 885, 45, 2012), ('Dormant', 1063, 46, 2012), ('Dormant', 948, 47, 2012), ('Dormant', 804, 48, 2012), ('Dormant', 789, 49, 2012), ('Dormant', 832, 52, 2012), ('Draco Malfoy', 320, 1, 2010), ('Draco Malfoy', 338, 4, 2010), ('Draco Malfoy', 363, 6, 2010), ('Draco Malfoy', 348, 7, 2010), ('Draco Malfoy', 378, 9, 2010), ('Draco Malfoy', 388, 16, 2010), ('Draco Malfoy', 391, 17, 2010), ('Draco Malfoy', 417, 19, 2010), ('Draco Malfoy', 440, 22, 2010), ('Draco Malfoy', 441, 23, 2010), ('Draco Malfoy', 486, 28, 2010), ('Draco Malfoy', 490, 29, 2010), ('Draco Malfoy', 477, 33, 2010), ('Draco Malfoy', 505, 34, 2010), ('Draco Malfoy', 520, 36, 2010), ('Draco Malfoy', 527, 37, 2010), ('Draco Malfoy', 529, 38, 2010), ('Draco Malfoy', 537, 39, 2010), ('Draco Malfoy', 365, 41, 2010), ('Draco Malfoy', 456, 42, 2010), ('Draco Malfoy', 402, 46, 2010), ('Draco Malfoy', 407, 47, 2010), ('Dragonfree', 547, 1, 2011), ('Dragonfree', 1106, 1, 2012), ('Dragonfree', 1164, 1, 2013), ('Dragonfree', 563, 2, 2011), ('Dragonfree', 985, 2, 2012), ('Dragonfree', 1234, 2, 2013), ('Dragonfree', 573, 3, 2011), ('Dragonfree', 576, 4, 2011), ('Dragonfree', 1107, 4, 2012), ('Dragonfree', 1127, 4, 2013), ('Dragonfree', 586, 5, 2011), ('Dragonfree', 1083, 5, 2012), ('Dragonfree', 1325, 5, 2013), ('Dragonfree', 595, 6, 2011), ('Dragonfree', 1019, 6, 2012), ('Dragonfree', 1168, 6, 2013), ('Dragonfree', 610, 7, 2011), ('Dragonfree', 1170, 7, 2013), ('Dragonfree', 618, 8, 2011), ('Dragonfree', 1100, 8, 2012), ('Dragonfree', 1326, 8, 2013), ('Dragonfree', 624, 9, 2011), ('Dragonfree', 1109, 9, 2012), ('Dragonfree', 1229, 9, 2013), ('Dragonfree', 641, 10, 2011), ('Dragonfree', 1257, 10, 2013), ('Dragonfree', 645, 14, 2011), ('Dragonfree', 1023, 14, 2012), ('Dragonfree', 1258, 14, 2013), ('Dragonfree', 642, 16, 2011), ('Dragonfree', 827, 16, 2012), ('Dragonfree', 1136, 16, 2013), ('Dragonfree', 653, 17, 2011), ('Dragonfree', 1050, 17, 2012), ('Dragonfree', 1138, 17, 2013), ('Dragonfree', 677, 18, 2011), ('Dragonfree', 833, 18, 2012), ('Dragonfree', 1267, 18, 2013), ('Dragonfree', 679, 19, 2011), ('Dragonfree', 954, 19, 2012), ('Dragonfree', 1144, 19, 2013), ('Dragonfree', 685, 20, 2011), ('Dragonfree', 1112, 20, 2012), ('Dragonfree', 1270, 20, 2013), ('Dragonfree', 696, 21, 2011), ('Dragonfree', 1051, 21, 2012), ('Dragonfree', 1183, 21, 2013), ('Dragonfree', 703, 22, 2011), ('Dragonfree', 958, 22, 2012), ('Dragonfree', 1147, 22, 2013), ('Dragonfree', 712, 23, 2011), ('Dragonfree', 959, 23, 2012), ('Dragonfree', 1187, 23, 2013), ('Dragonfree', 716, 24, 2011), ('Dragonfree', 1149, 24, 2013), ('Dragonfree', 727, 26, 2011), ('Dragonfree', 1113, 26, 2012), ('Dragonfree', 1276, 26, 2013), ('Dragonfree', 733, 27, 2011), ('Dragonfree', 882, 27, 2012), ('Dragonfree', 1209, 27, 2013), ('Dragonfree', 739, 28, 2011), ('Dragonfree', 1006, 28, 2012), ('Dragonfree', 1154, 28, 2013), ('Dragonfree', 743, 29, 2011), ('Dragonfree', 1008, 29, 2012), ('Dragonfree', 1281, 29, 2013), ('Dragonfree', 745, 30, 2011), ('Dragonfree', 845, 30, 2012), ('Dragonfree', 1191, 30, 2013), ('Dragonfree', 753, 33, 2011), ('Dragonfree', 1193, 33, 2013), ('Dragonfree', 756, 34, 2011), ('Dragonfree', 1115, 34, 2012), ('Dragonfree', 1195, 34, 2013), ('Dragonfree', 761, 35, 2011), ('Dragonfree', 1116, 35, 2012), ('Dragonfree', 1286, 35, 2013), ('Dragonfree', 767, 36, 2011), ('Dragonfree', 889, 36, 2012), ('Dragonfree', 1334, 36, 2013), ('Dragonfree', 771, 37, 2011), ('Dragonfree', 1117, 37, 2012), ('Dragonfree', 1196, 37, 2013), ('Dragonfree', 774, 38, 2011), ('Dragonfree', 793, 38, 2012), ('Dragonfree', 1162, 38, 2013), ('Dragonfree', 779, 39, 2011), ('Dragonfree', 910, 39, 2012), ('Dragonfree', 1214, 39, 2013), ('Dragonfree', 575, 40, 2011), ('Dragonfree', 613, 41, 2011), ('Dragonfree', 1085, 41, 2012), ('Dragonfree', 1252, 41, 2013), ('Dragonfree', 726, 42, 2011), ('Dragonfree', 1151, 42, 2013), ('Dragonfree', 722, 43, 2011), ('Dragonfree', 961, 43, 2012), ('Dragonfree', 1190, 43, 2013), ('Dragonfree', 749, 44, 2011), ('Dragonfree', 1114, 44, 2012), ('Dragonfree', 1282, 44, 2013), ('Dragonfree', 752, 45, 2011), ('Dragonfree', 1283, 45, 2013), ('Dragonfree', 661, 46, 2011), ('Dragonfree', 1063, 46, 2012), ('Dragonfree', 1139, 46, 2013), ('Dragonfree', 667, 47, 2011), ('Dragonfree', 874, 47, 2012), ('Dragonfree', 1140, 47, 2013), ('Dragonfree', 604, 48, 2011), ('Dragonfree', 1108, 48, 2012), ('Dragonfree', 1169, 48, 2013), ('Dragonfree', 632, 49, 2011), ('Dragonfree', 1134, 49, 2013), ('Dragonfree', 636, 50, 2011), ('Dragonfree', 1111, 50, 2012), ('Dragonfree', 1255, 50, 2013), ('Dragonfree', 676, 51, 2011), ('Dragonfree', 1264, 51, 2013), ('Dragonfree', 1338, 52, 2013), ('Dragonfree', 1242, 53, 2013), ('duncan', 5, 1, 2008), ('duncan', 10, 2, 2008), ('duncan', 16, 3, 2008), ('duncan', 29, 5, 2008), ('duncan', 36, 6, 2008), ('duncan', 39, 7, 2008), ('duncan', 42, 8, 2008), ('duncan', 47, 9, 2008), ('duncan', 48, 10, 2008), ('duncan', 50, 11, 2008), ('duncan', 55, 12, 2008), ('duncan', 59, 13, 2008), ('duncan', 60, 14, 2008), ('duncan', 63, 15, 2008), ('duncan', 67, 17, 2008), ('duncan', 73, 18, 2008), ('duncan', 74, 19, 2008), ('duncan', 79, 20, 2008), ('duncan', 84, 21, 2008), ('duncan', 87, 22, 2008), ('duncan', 88, 23, 2008), ('duncan', 97, 26, 2008), ('duncan', 103, 27, 2008), ('duncan', 105, 28, 2008), ('duncan', 106, 29, 2008), ('duncan', 107, 30, 2008), ('duncan', 109, 31, 2008), ('duncan', 115, 34, 2008), ('duncan', 120, 35, 2008), ('duncan', 125, 36, 2008), ('duncan', 128, 37, 2008), ('duncan', 136, 38, 2008), ('elyvorg', 795, 1, 2012), ('elyvorg', 927, 2, 2012), ('elyvorg', 820, 4, 2012), ('elyvorg', 1083, 5, 2012), ('elyvorg', 1084, 6, 2012), ('elyvorg', 1099, 7, 2012), ('elyvorg', 1100, 8, 2012), ('elyvorg', 807, 9, 2012), ('elyvorg', 1021, 10, 2012), ('elyvorg', 943, 14, 2012), ('elyvorg', 1022, 16, 2012), ('elyvorg', 1050, 17, 2012), ('elyvorg', 951, 18, 2012), ('elyvorg', 954, 19, 2012), ('elyvorg', 1102, 20, 2012), ('elyvorg', 1103, 22, 2012), ('elyvorg', 1104, 23, 2012), ('elyvorg', 839, 24, 2012), ('elyvorg', 1090, 26, 2012), ('elyvorg', 1006, 28, 2012), ('elyvorg', 966, 29, 2012), ('elyvorg', 967, 30, 2012), ('elyvorg', 1029, 33, 2012), ('elyvorg', 797, 34, 2012), ('elyvorg', 798, 35, 2012), ('elyvorg', 972, 36, 2012), ('elyvorg', 1117, 37, 2012), ('elyvorg', 793, 38, 2012), ('elyvorg', 794, 39, 2012), ('elyvorg', 1085, 41, 2012), ('elyvorg', 1105, 42, 2012), ('elyvorg', 846, 44, 2012), ('elyvorg', 1093, 45, 2012), ('elyvorg', 874, 47, 2012), ('elyvorg', 1020, 49, 2012), ('elyvorg', 826, 50, 2012), ('elyvorg', 1000, 51, 2012), ('elyvorg', 832, 52, 2012), ('Ememew', 555, 1, 2011), ('Ememew', 1017, 1, 2012), ('Ememew', 563, 2, 2011), ('Ememew', 985, 2, 2012), ('Ememew', 929, 3, 2012), ('Ememew', 580, 4, 2011), ('Ememew', 785, 4, 2012), ('Ememew', 594, 5, 2011), ('Ememew', 1082, 5, 2012), ('Ememew', 597, 6, 2011), ('Ememew', 1084, 6, 2012), ('Ememew', 610, 7, 2011), ('Ememew', 823, 7, 2012), ('Ememew', 621, 8, 2011), ('Ememew', 808, 8, 2012), ('Ememew', 628, 9, 2011), ('Ememew', 1087, 9, 2012), ('Ememew', 641, 10, 2011), ('Ememew', 1021, 10, 2012), ('Ememew', 649, 14, 2011), ('Ememew', 1088, 14, 2012), ('Ememew', 644, 16, 2011), ('Ememew', 1022, 16, 2012), ('Ememew', 656, 17, 2011), ('Ememew', 1024, 17, 2012), ('Ememew', 677, 18, 2011), ('Ememew', 952, 18, 2012), ('Ememew', 683, 19, 2011), ('Ememew', 954, 19, 2012), ('Ememew', 695, 20, 2011), ('Ememew', 1102, 20, 2012), ('Ememew', 698, 21, 2011), ('Ememew', 1076, 21, 2012), ('Ememew', 706, 22, 2011), ('Ememew', 1103, 22, 2012), ('Ememew', 715, 23, 2011), ('Ememew', 1104, 23, 2012), ('Ememew', 719, 24, 2011), ('Ememew', 839, 24, 2012), ('Ememew', 730, 26, 2011), ('Ememew', 1091, 26, 2012), ('Ememew', 735, 27, 2011), ('Ememew', 964, 27, 2012), ('Ememew', 740, 28, 2011), ('Ememew', 965, 28, 2012), ('Ememew', 744, 29, 2011), ('Ememew', 966, 29, 2012), ('Ememew', 746, 30, 2011), ('Ememew', 845, 30, 2012), ('Ememew', 755, 33, 2011), ('Ememew', 1029, 33, 2012), ('Ememew', 760, 34, 2011), ('Ememew', 797, 34, 2012), ('Ememew', 763, 35, 2011), ('Ememew', 1012, 35, 2012), ('Ememew', 767, 36, 2011), ('Ememew', 972, 36, 2012), ('Ememew', 773, 37, 2011), ('Ememew', 973, 37, 2012), ('Ememew', 974, 38, 2012), ('Ememew', 1016, 39, 2012), ('Ememew', 575, 40, 2011), ('Ememew', 913, 40, 2012), ('Ememew', 613, 41, 2011), ('Ememew', 1085, 41, 2012), ('Ememew', 880, 42, 2012), ('Ememew', 724, 43, 2011), ('Ememew', 1089, 43, 2012), ('Ememew', 1009, 44, 2012), ('Ememew', 752, 45, 2011), ('Ememew', 1093, 45, 2012), ('Ememew', 665, 46, 2011), ('Ememew', 1063, 46, 2012), ('Ememew', 667, 47, 2011), ('Ememew', 1037, 47, 2012), ('Ememew', 606, 48, 2011), ('Ememew', 796, 48, 2012), ('Ememew', 632, 49, 2011), ('Ememew', 941, 49, 2012), ('Ememew', 636, 50, 2011), ('Ememew', 871, 50, 2012), ('Ememew', 676, 51, 2011), ('Ememew', 1000, 51, 2012), ('Ememew', 832, 52, 2012), ('ESPNfanatic35', 316, 1, 2010), ('ESPNfanatic35', 553, 1, 2011), ('ESPNfanatic35', 322, 2, 2010), ('ESPNfanatic35', 569, 2, 2011), ('ESPNfanatic35', 328, 3, 2010), ('ESPNfanatic35', 331, 4, 2010), ('ESPNfanatic35', 578, 4, 2011), ('ESPNfanatic35', 341, 5, 2010), ('ESPNfanatic35', 587, 5, 2011), ('ESPNfanatic35', 356, 6, 2010), ('ESPNfanatic35', 598, 6, 2011), ('ESPNfanatic35', 349, 7, 2010), ('ESPNfanatic35', 610, 7, 2011), ('ESPNfanatic35', 372, 8, 2010), ('ESPNfanatic35', 379, 9, 2010), ('ESPNfanatic35', 631, 9, 2011), ('ESPNfanatic35', 382, 10, 2010), ('ESPNfanatic35', 641, 10, 2011), ('ESPNfanatic35', 390, 16, 2010), ('ESPNfanatic35', 642, 16, 2011), ('ESPNfanatic35', 392, 17, 2010), ('ESPNfanatic35', 654, 17, 2011), ('ESPNfanatic35', 416, 18, 2010), ('ESPNfanatic35', 417, 19, 2010), ('ESPNfanatic35', 681, 19, 2011), ('ESPNfanatic35', 424, 20, 2010), ('ESPNfanatic35', 687, 20, 2011), ('ESPNfanatic35', 429, 21, 2010), ('ESPNfanatic35', 433, 22, 2010), ('ESPNfanatic35', 703, 22, 2011), ('ESPNfanatic35', 441, 23, 2010), ('ESPNfanatic35', 716, 24, 2011), ('ESPNfanatic35', 460, 26, 2010), ('ESPNfanatic35', 728, 26, 2011), ('ESPNfanatic35', 469, 27, 2010), ('ESPNfanatic35', 733, 27, 2011), ('ESPNfanatic35', 486, 28, 2010), ('ESPNfanatic35', 490, 29, 2010), ('ESPNfanatic35', 500, 30, 2010), ('ESPNfanatic35', 745, 30, 2011), ('ESPNfanatic35', 478, 33, 2010), ('ESPNfanatic35', 754, 33, 2011), ('ESPNfanatic35', 504, 34, 2010), ('ESPNfanatic35', 760, 34, 2011), ('ESPNfanatic35', 511, 35, 2010), ('ESPNfanatic35', 762, 35, 2011), ('ESPNfanatic35', 519, 36, 2010), ('ESPNfanatic35', 769, 36, 2011), ('ESPNfanatic35', 525, 37, 2010), ('ESPNfanatic35', 529, 38, 2010), ('ESPNfanatic35', 774, 38, 2011), ('ESPNfanatic35', 536, 39, 2010), ('ESPNfanatic35', 781, 39, 2011), ('ESPNfanatic35', 329, 40, 2010), ('ESPNfanatic35', 575, 40, 2011), ('ESPNfanatic35', 364, 41, 2010), ('ESPNfanatic35', 614, 41, 2011), ('ESPNfanatic35', 726, 42, 2011), ('ESPNfanatic35', 453, 43, 2010), ('ESPNfanatic35', 480, 44, 2010), ('ESPNfanatic35', 465, 45, 2010), ('ESPNfanatic35', 752, 45, 2011), ('ESPNfanatic35', 404, 46, 2010), ('ESPNfanatic35', 665, 46, 2011), ('ESPNfanatic35', 406, 47, 2010), ('ESPNfanatic35', 669, 47, 2011), ('ESPNfanatic35', 604, 48, 2011), ('ESPNfanatic35', 632, 49, 2011), ('ESPNfanatic35', 638, 50, 2011), ('ESPNfanatic35', 676, 51, 2011), ('EternalSnowman', 1124, 1, 2013), ('EternalSnowman', 1127, 4, 2013), ('EternalSnowman', 1321, 5, 2013), ('EternalSnowman', 1168, 6, 2013), ('EternalSnowman', 1228, 7, 2013), ('EternalSnowman', 1326, 8, 2013), ('EternalSnowman', 1171, 9, 2013), ('EternalSnowman', 1173, 10, 2013), ('EternalSnowman', 1258, 14, 2013), ('EternalSnowman', 1136, 16, 2013), ('EternalSnowman', 1261, 17, 2013), ('EternalSnowman', 1314, 18, 2013), ('EternalSnowman', 1145, 20, 2013), ('EternalSnowman', 1316, 21, 2013), ('EternalSnowman', 1147, 22, 2013), ('EternalSnowman', 1148, 23, 2013), ('EternalSnowman', 1149, 24, 2013), ('EternalSnowman', 1208, 26, 2013), ('EternalSnowman', 1209, 27, 2013), ('EternalSnowman', 1154, 28, 2013), ('EternalSnowman', 1155, 29, 2013), ('EternalSnowman', 1191, 30, 2013), ('EternalSnowman', 1194, 34, 2013), ('EternalSnowman', 1159, 35, 2013), ('EternalSnowman', 1341, 36, 2013), ('EternalSnowman', 1196, 37, 2013), ('EternalSnowman', 1251, 41, 2013), ('EternalSnowman', 1150, 43, 2013), ('EternalSnowman', 1282, 44, 2013), ('EternalSnowman', 1192, 45, 2013), ('EternalSnowman', 1262, 46, 2013), ('EternalSnowman', 1330, 47, 2013), ('EternalSnowman', 1203, 48, 2013), ('EternalSnowman', 1297, 49, 2013), ('EternalSnowman', 1255, 50, 2013), ('EternalSnowman', 1264, 51, 2013), ('EternalSnowman', 1266, 52, 2013), ('EternalSnowman', 1165, 53, 2013), ('Felly', 177, 1, 2009), ('Felly', 281, 2, 2009), ('Felly', 254, 3, 2009), ('Felly', 224, 4, 2009), ('Felly', 160, 5, 2009), ('Felly', 232, 6, 2009), ('Felly', 184, 7, 2009), ('Felly', 215, 8, 2009), ('Felly', 167, 9, 2009), ('Felly', 165, 10, 2009), ('Felly', 185, 12, 2009), ('Felly', 272, 13, 2009), ('Felly', 246, 14, 2009), ('Felly', 259, 15, 2009), ('Felly', 284, 16, 2009), ('Felly', 242, 17, 2009), ('Felly', 203, 18, 2009), ('Felly', 288, 20, 2009), ('Felly', 238, 21, 2009), ('Felly', 187, 22, 2009), ('Felly', 248, 23, 2009), ('Felly', 175, 24, 2009), ('Felly', 226, 26, 2009), ('Felly', 229, 27, 2009), ('Felly', 306, 32, 2009), ('Felly', 181, 33, 2009), ('Felly', 251, 34, 2009), ('Felly', 204, 35, 2009), ('Felly', 179, 36, 2009), ('Felly', 294, 37, 2009), ('Felly', 277, 38, 2009), ('Felly', 189, 39, 2009), ('Felly', 255, 40, 2009), ('Felly', 161, 41, 2009), ('Felly', 303, 42, 2009), ('Felly', 265, 43, 2009), ('Felly', 307, 44, 2009), ('fixthe_fernback', 314, 1, 2010), ('fixthe_fernback', 325, 2, 2010), ('fixthe_fernback', 330, 4, 2010), ('fixthe_fernback', 341, 5, 2010), ('fixthe_fernback', 363, 6, 2010), ('fixthe_fernback', 348, 7, 2010), ('fixthe_fernback', 375, 8, 2010), ('fixthe_fernback', 376, 9, 2010), ('fixthe_fernback', 383, 10, 2010), ('fixthe_fernback', 387, 16, 2010), ('fixthe_fernback', 397, 17, 2010), ('fixthe_fernback', 412, 18, 2010), ('fixthe_fernback', 417, 19, 2010), ('fixthe_fernback', 429, 21, 2010), ('fixthe_fernback', 432, 22, 2010), ('fixthe_fernback', 448, 24, 2010), ('fixthe_fernback', 460, 26, 2010), ('fixthe_fernback', 474, 27, 2010), ('fixthe_fernback', 486, 28, 2010), ('fixthe_fernback', 497, 29, 2010), ('fixthe_fernback', 502, 30, 2010), ('fixthe_fernback', 504, 34, 2010), ('fixthe_fernback', 510, 35, 2010), ('fixthe_fernback', 520, 36, 2010), ('fixthe_fernback', 532, 38, 2010), ('fixthe_fernback', 539, 39, 2010), ('fixthe_fernback', 364, 41, 2010), ('fixthe_fernback', 457, 42, 2010), ('fixthe_fernback', 452, 43, 2010), ('fixthe_fernback', 481, 44, 2010), ('fixthe_fernback', 466, 45, 2010), ('fixthe_fernback', 401, 46, 2010), ('fixthe_fernback', 406, 47, 2010), ('GalladeRocks', 194, 1, 2009), ('GalladeRocks', 313, 1, 2010), ('GalladeRocks', 548, 1, 2011), ('GalladeRocks', 208, 2, 2009), ('GalladeRocks', 322, 2, 2010), ('GalladeRocks', 565, 2, 2011), ('GalladeRocks', 224, 4, 2009), ('GalladeRocks', 337, 4, 2010), ('GalladeRocks', 577, 4, 2011), ('GalladeRocks', 341, 5, 2010), ('GalladeRocks', 588, 5, 2011), ('GalladeRocks', 598, 6, 2011), ('GalladeRocks', 196, 7, 2009), ('GalladeRocks', 349, 7, 2010), ('GalladeRocks', 610, 7, 2011), ('GalladeRocks', 163, 8, 2009), ('GalladeRocks', 375, 8, 2010), ('GalladeRocks', 379, 9, 2010), ('GalladeRocks', 624, 9, 2011), ('GalladeRocks', 381, 10, 2010), ('GalladeRocks', 641, 10, 2011), ('GalladeRocks', 205, 12, 2009), ('GalladeRocks', 272, 13, 2009), ('GalladeRocks', 246, 14, 2009), ('GalladeRocks', 649, 14, 2011), ('GalladeRocks', 304, 15, 2009), ('GalladeRocks', 386, 16, 2010), ('GalladeRocks', 391, 17, 2010), ('GalladeRocks', 653, 17, 2011), ('GalladeRocks', 203, 18, 2009), ('GalladeRocks', 677, 18, 2011), ('GalladeRocks', 256, 19, 2009), ('GalladeRocks', 420, 19, 2010), ('GalladeRocks', 682, 19, 2011), ('GalladeRocks', 182, 20, 2009), ('GalladeRocks', 423, 20, 2010), ('GalladeRocks', 695, 20, 2011), ('GalladeRocks', 431, 21, 2010), ('GalladeRocks', 702, 21, 2011), ('GalladeRocks', 173, 22, 2009), ('GalladeRocks', 434, 22, 2010), ('GalladeRocks', 705, 22, 2011), ('GalladeRocks', 248, 23, 2009), ('GalladeRocks', 447, 23, 2010), ('GalladeRocks', 715, 23, 2011), ('GalladeRocks', 175, 24, 2009), ('GalladeRocks', 716, 24, 2011), ('GalladeRocks', 226, 26, 2009), ('GalladeRocks', 464, 26, 2010), ('GalladeRocks', 732, 26, 2011), ('GalladeRocks', 229, 27, 2009), ('GalladeRocks', 474, 27, 2010), ('GalladeRocks', 736, 27, 2011), ('GalladeRocks', 486, 28, 2010), ('GalladeRocks', 741, 28, 2011), ('GalladeRocks', 496, 29, 2010), ('GalladeRocks', 743, 29, 2011), ('GalladeRocks', 502, 30, 2010), ('GalladeRocks', 747, 30, 2011), ('GalladeRocks', 306, 32, 2009), ('GalladeRocks', 181, 33, 2009), ('GalladeRocks', 478, 33, 2010), ('GalladeRocks', 755, 33, 2011), ('GalladeRocks', 274, 34, 2009), ('GalladeRocks', 504, 34, 2010), ('GalladeRocks', 758, 34, 2011), ('GalladeRocks', 204, 35, 2009), ('GalladeRocks', 512, 35, 2010), ('GalladeRocks', 765, 35, 2011), ('GalladeRocks', 169, 36, 2009), ('GalladeRocks', 519, 36, 2010), ('GalladeRocks', 769, 36, 2011), ('GalladeRocks', 771, 37, 2011), ('GalladeRocks', 535, 38, 2010), ('GalladeRocks', 776, 38, 2011), ('GalladeRocks', 538, 39, 2010), ('GalladeRocks', 779, 39, 2011), ('GalladeRocks', 575, 40, 2011), ('GalladeRocks', 172, 41, 2009), ('GalladeRocks', 614, 41, 2011), ('GalladeRocks', 303, 42, 2009), ('GalladeRocks', 458, 42, 2010), ('GalladeRocks', 726, 42, 2011), ('GalladeRocks', 265, 43, 2009), ('GalladeRocks', 454, 43, 2010), ('GalladeRocks', 483, 44, 2010), ('GalladeRocks', 750, 44, 2011), ('GalladeRocks', 752, 45, 2011), ('GalladeRocks', 404, 46, 2010), ('GalladeRocks', 663, 46, 2011), ('GalladeRocks', 406, 47, 2010), ('GalladeRocks', 674, 47, 2011), ('GalladeRocks', 604, 48, 2011), ('GalladeRocks', 632, 49, 2011), ('GalladeRocks', 638, 50, 2011), ('GalladeRocks', 676, 51, 2011), ('GastlyMan', 317, 1, 2010), ('GastlyMan', 322, 2, 2010), ('GastlyMan', 334, 4, 2010), ('GastlyMan', 346, 5, 2010), ('GastlyMan', 357, 6, 2010), ('GastlyMan', 352, 7, 2010), ('GastlyMan', 374, 8, 2010), ('GastlyMan', 379, 9, 2010), ('GastlyMan', 384, 10, 2010), ('GastlyMan', 390, 16, 2010), ('GastlyMan', 397, 17, 2010), ('GastlyMan', 416, 18, 2010), ('GastlyMan', 423, 20, 2010), ('GastlyMan', 430, 21, 2010), ('GastlyMan', 437, 22, 2010), ('GastlyMan', 444, 23, 2010), ('GastlyMan', 450, 24, 2010), ('GastlyMan', 462, 26, 2010), ('GastlyMan', 473, 27, 2010), ('GastlyMan', 488, 28, 2010), ('GastlyMan', 494, 29, 2010), ('GastlyMan', 546, 30, 2010), ('GastlyMan', 478, 33, 2010), ('GastlyMan', 509, 34, 2010), ('GastlyMan', 512, 35, 2010), ('GastlyMan', 522, 36, 2010), ('GastlyMan', 526, 37, 2010), ('GastlyMan', 533, 38, 2010), ('GastlyMan', 542, 39, 2010), ('GastlyMan', 457, 42, 2010), ('GastlyMan', 485, 44, 2010), ('GastlyMan', 467, 45, 2010), ('GastlyMan', 404, 46, 2010), ('GastlyMan', 410, 47, 2010), ('Gelatino95', 551, 1, 2011), ('Gelatino95', 565, 2, 2011), ('Gelatino95', 580, 4, 2011), ('Gelatino95', 597, 6, 2011), ('Gelatino95', 611, 7, 2011), ('Gelatino95', 626, 9, 2011), ('Gelatino95', 641, 10, 2011), ('Gelatino95', 649, 14, 2011), ('Gelatino95', 642, 16, 2011), ('Gelatino95', 659, 17, 2011), ('Gelatino95', 678, 18, 2011), ('Gelatino95', 679, 19, 2011), ('Gelatino95', 695, 20, 2011), ('Gelatino95', 701, 21, 2011), ('Gelatino95', 704, 22, 2011), ('Gelatino95', 712, 23, 2011), ('Gelatino95', 716, 24, 2011), ('Gelatino95', 729, 26, 2011), ('Gelatino95', 758, 34, 2011), ('Gelatino95', 763, 35, 2011), ('Gelatino95', 769, 36, 2011), ('Gelatino95', 774, 38, 2011), ('Gelatino95', 782, 39, 2011), ('Gelatino95', 726, 42, 2011), ('Gelatino95', 661, 46, 2011), ('Gelatino95', 668, 47, 2011), ('Gelatino95', 632, 49, 2011), ('Gelatino95', 637, 50, 2011), ('Gelatino95', 676, 51, 2011), ('GingerDixie', 1164, 1, 2013), ('GingerDixie', 1294, 2, 2013), ('GingerDixie', 1320, 4, 2013), ('GingerDixie', 1303, 5, 2013), ('GingerDixie', 1168, 6, 2013), ('GingerDixie', 1131, 7, 2013), ('GingerDixie', 1326, 8, 2013), ('GingerDixie', 1133, 9, 2013), ('GingerDixie', 1257, 10, 2013), ('GingerDixie', 1137, 14, 2013), ('GingerDixie', 1136, 16, 2013), ('GingerDixie', 1175, 17, 2013), ('GingerDixie', 1143, 18, 2013), ('GingerDixie', 1145, 20, 2013), ('GingerDixie', 1316, 21, 2013), ('GingerDixie', 1185, 22, 2013), ('GingerDixie', 1274, 23, 2013), ('GingerDixie', 1149, 24, 2013), ('GingerDixie', 1152, 26, 2013), ('GingerDixie', 1277, 27, 2013), ('GingerDixie', 1279, 28, 2013), ('GingerDixie', 1155, 29, 2013), ('GingerDixie', 1191, 30, 2013), ('GingerDixie', 1193, 33, 2013), ('GingerDixie', 1194, 34, 2013), ('GingerDixie', 1213, 36, 2013), ('GingerDixie', 1288, 37, 2013), ('GingerDixie', 1162, 38, 2013), ('GingerDixie', 1163, 39, 2013), ('GingerDixie', 1244, 40, 2013), ('GingerDixie', 1282, 44, 2013), ('GingerDixie', 1262, 46, 2013), ('GingerDixie', 1140, 47, 2013), ('GingerDixie', 1249, 48, 2013), ('GingerDixie', 1134, 49, 2013), ('GingerDixie', 1255, 50, 2013), ('GingerDixie', 1141, 51, 2013), ('GingerDixie', 1313, 52, 2013), ('GingerDixie', 1165, 53, 2013), ('Giratina!', 305, 1, 2009), ('Giratina!', 208, 2, 2009), ('Giratina!', 193, 3, 2009), ('Giratina!', 224, 4, 2009), ('Giratina!', 196, 7, 2009), ('Giratina!', 163, 8, 2009), ('Giratina!', 167, 9, 2009), ('Giratina!', 165, 10, 2009), ('Giratina!', 205, 12, 2009), ('Giratina!', 272, 13, 2009), ('Giratina!', 246, 14, 2009), ('Giratina!', 283, 16, 2009), ('Giratina!', 216, 17, 2009), ('Giratina!', 256, 19, 2009), ('Giratina!', 182, 20, 2009), ('Giratina!', 238, 21, 2009), ('Giratina!', 173, 22, 2009), ('Giratina!', 233, 24, 2009), ('Giratina!', 263, 26, 2009), ('Giratina!', 229, 27, 2009), ('Giratina!', 181, 33, 2009), ('Giratina!', 251, 34, 2009), ('Giratina!', 204, 35, 2009), ('Giratina!', 179, 36, 2009), ('Giratina!', 170, 38, 2009), ('Giratina!', 189, 39, 2009), ('Giratina!', 172, 41, 2009), ('Giratina!', 265, 43, 2009), ('Giratina!', 307, 44, 2009), ('gmoyes', 318, 1, 2010), ('gmoyes', 549, 1, 2011), ('gmoyes', 322, 2, 2010), ('gmoyes', 563, 2, 2011), ('gmoyes', 580, 4, 2011), ('gmoyes', 587, 5, 2011), ('gmoyes', 356, 6, 2010), ('gmoyes', 597, 6, 2011), ('gmoyes', 611, 7, 2011), ('gmoyes', 374, 8, 2010), ('gmoyes', 379, 9, 2010), ('gmoyes', 624, 9, 2011), ('gmoyes', 381, 10, 2010), ('gmoyes', 641, 10, 2011), ('gmoyes', 648, 14, 2011), ('gmoyes', 390, 16, 2010), ('gmoyes', 642, 16, 2011), ('gmoyes', 392, 17, 2010), ('gmoyes', 656, 17, 2011), ('gmoyes', 412, 18, 2010), ('gmoyes', 677, 18, 2011), ('gmoyes', 679, 19, 2011), ('gmoyes', 424, 20, 2010), ('gmoyes', 695, 20, 2011), ('gmoyes', 700, 21, 2011), ('gmoyes', 439, 22, 2010), ('gmoyes', 704, 22, 2011), ('gmoyes', 444, 23, 2010), ('gmoyes', 715, 23, 2011), ('gmoyes', 717, 24, 2011), ('gmoyes', 461, 26, 2010), ('gmoyes', 731, 26, 2011), ('gmoyes', 473, 27, 2010), ('gmoyes', 738, 27, 2011), ('gmoyes', 489, 28, 2010), ('gmoyes', 740, 28, 2011), ('gmoyes', 495, 29, 2010), ('gmoyes', 500, 30, 2010), ('gmoyes', 747, 30, 2011), ('gmoyes', 478, 33, 2010), ('gmoyes', 754, 33, 2011), ('gmoyes', 503, 34, 2010), ('gmoyes', 760, 34, 2011), ('gmoyes', 763, 35, 2011), ('gmoyes', 520, 36, 2010), ('gmoyes', 769, 36, 2011), ('gmoyes', 772, 37, 2011), ('gmoyes', 774, 38, 2011), ('gmoyes', 782, 39, 2011), ('gmoyes', 614, 41, 2011), ('gmoyes', 726, 42, 2011), ('gmoyes', 451, 43, 2010), ('gmoyes', 724, 43, 2011), ('gmoyes', 485, 44, 2010), ('gmoyes', 467, 45, 2010), ('gmoyes', 404, 46, 2010), ('gmoyes', 665, 46, 2011), ('gmoyes', 406, 47, 2010), ('gmoyes', 669, 47, 2011), ('gmoyes', 604, 48, 2011), ('gmoyes', 637, 50, 2011), ('gmoyes', 676, 51, 2011), ('Golden', 194, 1, 2009), ('Golden', 208, 2, 2009), ('Golden', 254, 3, 2009), ('Golden', 224, 4, 2009), ('Golden', 243, 5, 2009), ('Golden', 210, 6, 2009), ('Golden', 196, 7, 2009), ('Golden', 163, 8, 2009), ('Golden', 239, 9, 2009), ('Golden', 197, 10, 2009), ('Golden', 185, 12, 2009), ('Golden', 272, 13, 2009), ('Golden', 246, 14, 2009), ('Golden', 271, 15, 2009), ('Golden', 267, 16, 2009), ('Golden', 216, 17, 2009), ('Golden', 203, 18, 2009), ('Golden', 256, 19, 2009), ('Golden', 199, 20, 2009), ('Golden', 289, 21, 2009), ('Golden', 187, 22, 2009), ('Golden', 248, 23, 2009), ('Golden', 168, 24, 2009), ('Golden', 226, 26, 2009), ('Golden', 229, 27, 2009), ('Golden', 306, 32, 2009), ('Golden', 181, 33, 2009), ('Golden', 251, 34, 2009), ('Golden', 204, 35, 2009), ('Golden', 169, 36, 2009), ('Golden', 293, 37, 2009), ('Golden', 277, 38, 2009), ('Golden', 189, 39, 2009), ('Golden', 255, 40, 2009), ('Golden', 161, 41, 2009), ('Golden', 303, 42, 2009), ('Golden', 265, 43, 2009), ('Golden', 307, 44, 2009), ('gorgonfish', 1017, 1, 2012), ('gorgonfish', 1224, 1, 2013), ('gorgonfish', 985, 2, 2012), ('gorgonfish', 1126, 2, 2013), ('gorgonfish', 986, 3, 2012), ('gorgonfish', 1056, 4, 2012), ('gorgonfish', 1302, 4, 2013), ('gorgonfish', 1082, 5, 2012), ('gorgonfish', 1246, 5, 2013), ('gorgonfish', 1019, 6, 2012), ('gorgonfish', 1227, 6, 2013), ('gorgonfish', 1060, 7, 2012), ('gorgonfish', 1306, 7, 2013), ('gorgonfish', 1061, 8, 2012), ('gorgonfish', 1308, 8, 2013), ('gorgonfish', 1109, 9, 2012), ('gorgonfish', 1253, 9, 2013), ('gorgonfish', 1021, 10, 2012), ('gorgonfish', 1173, 10, 2013), ('gorgonfish', 828, 14, 2012), ('gorgonfish', 1259, 14, 2013), ('gorgonfish', 998, 16, 2012), ('gorgonfish', 1310, 16, 2013), ('gorgonfish', 1024, 17, 2012), ('gorgonfish', 1311, 17, 2013), ('gorgonfish', 812, 18, 2012), ('gorgonfish', 1339, 18, 2013), ('gorgonfish', 834, 19, 2012), ('gorgonfish', 1144, 19, 2013), ('gorgonfish', 1112, 20, 2012), ('gorgonfish', 1182, 20, 2013), ('gorgonfish', 1076, 21, 2012), ('gorgonfish', 1271, 21, 2013), ('gorgonfish', 877, 22, 2012), ('gorgonfish', 1317, 22, 2013), ('gorgonfish', 815, 23, 2012), ('gorgonfish', 1296, 23, 2013), ('gorgonfish', 1188, 24, 2013), ('gorgonfish', 1091, 26, 2012), ('gorgonfish', 1152, 26, 2013), ('gorgonfish', 1277, 27, 2013), ('gorgonfish', 1006, 28, 2012), ('gorgonfish', 1154, 28, 2013), ('gorgonfish', 1008, 29, 2012), ('gorgonfish', 1232, 29, 2013), ('gorgonfish', 967, 30, 2012), ('gorgonfish', 1191, 30, 2013), ('gorgonfish', 1053, 33, 2012), ('gorgonfish', 1210, 33, 2013), ('gorgonfish', 797, 34, 2012), ('gorgonfish', 1233, 34, 2013), ('gorgonfish', 1012, 35, 2012), ('gorgonfish', 1286, 35, 2013), ('gorgonfish', 1070, 36, 2012), ('gorgonfish', 1334, 36, 2013), ('gorgonfish', 890, 37, 2012), ('gorgonfish', 1288, 37, 2013), ('gorgonfish', 793, 38, 2012), ('gorgonfish', 1162, 38, 2013), ('gorgonfish', 910, 39, 2012), ('gorgonfish', 1291, 39, 2013), ('gorgonfish', 1244, 40, 2013), ('gorgonfish', 1086, 41, 2012), ('gorgonfish', 1307, 41, 2013), ('gorgonfish', 1105, 42, 2012), ('gorgonfish', 1151, 42, 2013), ('gorgonfish', 1190, 43, 2013), ('gorgonfish', 1282, 44, 2013), ('gorgonfish', 1093, 45, 2012), ('gorgonfish', 1156, 45, 2013), ('gorgonfish', 1063, 46, 2012), ('gorgonfish', 1139, 46, 2013), ('gorgonfish', 874, 47, 2012), ('gorgonfish', 1140, 47, 2013), ('gorgonfish', 796, 48, 2012), ('gorgonfish', 1305, 48, 2013), ('gorgonfish', 1020, 49, 2012), ('gorgonfish', 1134, 49, 2013), ('gorgonfish', 790, 50, 2012), ('gorgonfish', 1172, 50, 2013), ('gorgonfish', 1000, 51, 2012), ('gorgonfish', 1312, 51, 2013), ('gorgonfish', 832, 52, 2012), ('gorgonfish', 1313, 52, 2013), ('gorgonfish', 1165, 53, 2013), ('Griff4815', 6, 1, 2008), ('Griff4815', 223, 1, 2009), ('Griff4815', 549, 1, 2011), ('Griff4815', 1017, 1, 2012), ('Griff4815', 1300, 1, 2013), ('Griff4815', 12, 2, 2008), ('Griff4815', 281, 2, 2009), ('Griff4815', 325, 2, 2010), ('Griff4815', 563, 2, 2011), ('Griff4815', 1234, 2, 2013), ('Griff4815', 16, 3, 2008), ('Griff4815', 193, 3, 2009), ('Griff4815', 328, 3, 2010), ('Griff4815', 573, 3, 2011), ('Griff4815', 22, 4, 2008), ('Griff4815', 224, 4, 2009), ('Griff4815', 988, 4, 2012), ('Griff4815', 1302, 4, 2013), ('Griff4815', 29, 5, 2008), ('Griff4815', 160, 5, 2009), ('Griff4815', 345, 5, 2010), ('Griff4815', 592, 5, 2011), ('Griff4815', 787, 5, 2012), ('Griff4815', 1235, 5, 2013), ('Griff4815', 33, 6, 2008), ('Griff4815', 269, 6, 2009), ('Griff4815', 356, 6, 2010), ('Griff4815', 595, 6, 2011), ('Griff4815', 822, 6, 2012), ('Griff4815', 1167, 6, 2013), ('Griff4815', 38, 7, 2008), ('Griff4815', 235, 7, 2009), ('Griff4815', 352, 7, 2010), ('Griff4815', 610, 7, 2011), ('Griff4815', 1046, 7, 2012), ('Griff4815', 1217, 7, 2013), ('Griff4815', 42, 8, 2008), ('Griff4815', 374, 8, 2010), ('Griff4815', 618, 8, 2011), ('Griff4815', 1308, 8, 2013), ('Griff4815', 45, 9, 2008), ('Griff4815', 239, 9, 2009), ('Griff4815', 624, 9, 2011), ('Griff4815', 1229, 9, 2013), ('Griff4815', 48, 10, 2008), ('Griff4815', 197, 10, 2009), ('Griff4815', 381, 10, 2010), ('Griff4815', 641, 10, 2011), ('Griff4815', 1021, 10, 2012), ('Griff4815', 1257, 10, 2013), ('Griff4815', 50, 11, 2008), ('Griff4815', 54, 12, 2008), ('Griff4815', 185, 12, 2009), ('Griff4815', 272, 13, 2009), ('Griff4815', 62, 14, 2008), ('Griff4815', 246, 14, 2009), ('Griff4815', 645, 14, 2011), ('Griff4815', 1023, 14, 2012), ('Griff4815', 1258, 14, 2013), ('Griff4815', 63, 15, 2008), ('Griff4815', 271, 15, 2009), ('Griff4815', 64, 16, 2008), ('Griff4815', 284, 16, 2009), ('Griff4815', 387, 16, 2010), ('Griff4815', 644, 16, 2011), ('Griff4815', 1120, 16, 2012), ('Griff4815', 1174, 16, 2013), ('Griff4815', 68, 17, 2008), ('Griff4815', 242, 17, 2009), ('Griff4815', 394, 17, 2010), ('Griff4815', 944, 17, 2012), ('Griff4815', 1311, 17, 2013), ('Griff4815', 72, 18, 2008), ('Griff4815', 203, 18, 2009), ('Griff4815', 413, 18, 2010), ('Griff4815', 677, 18, 2011), ('Griff4815', 833, 18, 2012), ('Griff4815', 1267, 18, 2013), ('Griff4815', 74, 19, 2008), ('Griff4815', 256, 19, 2009), ('Griff4815', 679, 19, 2011), ('Griff4815', 954, 19, 2012), ('Griff4815', 1180, 19, 2013), ('Griff4815', 79, 20, 2008), ('Griff4815', 288, 20, 2009), ('Griff4815', 424, 20, 2010), ('Griff4815', 1102, 20, 2012), ('Griff4815', 1182, 20, 2013), ('Griff4815', 82, 21, 2008), ('Griff4815', 238, 21, 2009), ('Griff4815', 430, 21, 2010), ('Griff4815', 702, 21, 2011), ('Griff4815', 1076, 21, 2012), ('Griff4815', 87, 22, 2008), ('Griff4815', 187, 22, 2009), ('Griff4815', 438, 22, 2010), ('Griff4815', 705, 22, 2011), ('Griff4815', 1077, 22, 2012), ('Griff4815', 1317, 22, 2013), ('Griff4815', 248, 23, 2009), ('Griff4815', 444, 23, 2010), ('Griff4815', 714, 23, 2011), ('Griff4815', 1104, 23, 2012), ('Griff4815', 92, 24, 2008), ('Griff4815', 200, 24, 2009), ('Griff4815', 717, 24, 2011), ('Griff4815', 96, 26, 2008), ('Griff4815', 461, 26, 2010), ('Griff4815', 731, 26, 2011), ('Griff4815', 102, 27, 2008), ('Griff4815', 236, 27, 2009), ('Griff4815', 473, 27, 2010), ('Griff4815', 735, 27, 2011), ('Griff4815', 964, 27, 2012), ('Griff4815', 1153, 27, 2013), ('Griff4815', 105, 28, 2008), ('Griff4815', 489, 28, 2010), ('Griff4815', 965, 28, 2012), ('Griff4815', 106, 29, 2008), ('Griff4815', 495, 29, 2010), ('Griff4815', 966, 29, 2012), ('Griff4815', 1280, 29, 2013), ('Griff4815', 107, 30, 2008), ('Griff4815', 500, 30, 2010), ('Griff4815', 745, 30, 2011), ('Griff4815', 845, 30, 2012), ('Griff4815', 1191, 30, 2013), ('Griff4815', 110, 32, 2008), ('Griff4815', 306, 32, 2009), ('Griff4815', 113, 33, 2008), ('Griff4815', 181, 33, 2009), ('Griff4815', 478, 33, 2010), ('Griff4815', 886, 33, 2012), ('Griff4815', 1157, 33, 2013), ('Griff4815', 114, 34, 2008), ('Griff4815', 274, 34, 2009), ('Griff4815', 508, 34, 2010), ('Griff4815', 756, 34, 2011), ('Griff4815', 924, 34, 2012), ('Griff4815', 1333, 34, 2013), ('Griff4815', 120, 35, 2008), ('Griff4815', 275, 35, 2009), ('Griff4815', 514, 35, 2010), ('Griff4815', 765, 35, 2011), ('Griff4815', 901, 35, 2012), ('Griff4815', 1159, 35, 2013), ('Griff4815', 125, 36, 2008), ('Griff4815', 179, 36, 2009), ('Griff4815', 520, 36, 2010), ('Griff4815', 769, 36, 2011), ('Griff4815', 129, 37, 2008), ('Griff4815', 294, 37, 2009), ('Griff4815', 525, 37, 2010), ('Griff4815', 773, 37, 2011), ('Griff4815', 850, 37, 2012), ('Griff4815', 136, 38, 2008), ('Griff4815', 174, 38, 2009), ('Griff4815', 532, 38, 2010), ('Griff4815', 774, 38, 2011), ('Griff4815', 799, 38, 2012), ('Griff4815', 1162, 38, 2013), ('Griff4815', 137, 39, 2008), ('Griff4815', 222, 39, 2009), ('Griff4815', 540, 39, 2010), ('Griff4815', 779, 39, 2011), ('Griff4815', 852, 39, 2012), ('Griff4815', 1214, 39, 2013), ('Griff4815', 255, 40, 2009), ('Griff4815', 329, 40, 2010), ('Griff4815', 575, 40, 2011), ('Griff4815', 913, 40, 2012), ('Griff4815', 270, 41, 2009), ('Griff4815', 614, 41, 2011), ('Griff4815', 938, 41, 2012), ('Griff4815', 1204, 41, 2013), ('Griff4815', 303, 42, 2009), ('Griff4815', 455, 42, 2010), ('Griff4815', 726, 42, 2011), ('Griff4815', 962, 42, 2012), ('Griff4815', 1151, 42, 2013), ('Griff4815', 452, 43, 2010), ('Griff4815', 1089, 43, 2012), ('Griff4815', 301, 44, 2009), ('Griff4815', 481, 44, 2010), ('Griff4815', 884, 44, 2012), ('Griff4815', 1282, 44, 2013), ('Griff4815', 467, 45, 2010), ('Griff4815', 752, 45, 2011), ('Griff4815', 1093, 45, 2012), ('Griff4815', 1063, 46, 2012), ('Griff4815', 1139, 46, 2013), ('Griff4815', 408, 47, 2010), ('Griff4815', 667, 47, 2011), ('Griff4815', 948, 47, 2012), ('Griff4815', 1140, 47, 2013), ('Griff4815', 604, 48, 2011), ('Griff4815', 1108, 48, 2012), ('Griff4815', 1248, 48, 2013), ('Griff4815', 632, 49, 2011), ('Griff4815', 1020, 49, 2012), ('Griff4815', 826, 50, 2012), ('Griff4815', 1256, 50, 2013), ('Griff4815', 676, 51, 2011), ('Griff4815', 1000, 51, 2012), ('Griff4815', 1264, 51, 2013), ('Griff4815', 950, 52, 2012), ('Griff4815', 1125, 53, 2013), ('hailflameblast', 194, 1, 2009), ('hailflameblast', 280, 2, 2009), ('hailflameblast', 209, 3, 2009), ('hailflameblast', 191, 4, 2009), ('hailflameblast', 243, 5, 2009), ('hailflameblast', 196, 7, 2009), ('hailflameblast', 163, 8, 2009), ('hailflameblast', 239, 9, 2009), ('hailflameblast', 197, 10, 2009), ('hailflameblast', 205, 12, 2009), ('hailflameblast', 304, 15, 2009), ('hailflameblast', 284, 16, 2009), ('hailflameblast', 216, 17, 2009), ('hailflameblast', 203, 18, 2009), ('hailflameblast', 182, 20, 2009), ('hailflameblast', 173, 22, 2009), ('hailflameblast', 248, 23, 2009), ('hailflameblast', 263, 26, 2009), ('hailflameblast', 229, 27, 2009), ('hailflameblast', 181, 33, 2009), ('hailflameblast', 274, 34, 2009), ('hailflameblast', 292, 35, 2009), ('hailflameblast', 169, 36, 2009), ('hailflameblast', 222, 39, 2009), ('hailflameblast', 298, 40, 2009), ('hailflameblast', 161, 41, 2009), ('hailflameblast', 303, 42, 2009), ('hailflameblast', 265, 43, 2009), ('hailflameblast', 301, 44, 2009), ('handymankg2', 1, 1, 2008), ('handymankg2', 194, 1, 2009), ('handymankg2', 15, 3, 2008), ('handymankg2', 193, 3, 2009), ('handymankg2', 21, 4, 2008), ('handymankg2', 30, 5, 2008), ('handymankg2', 36, 6, 2008), ('handymankg2', 196, 7, 2009), ('handymankg2', 45, 9, 2008), ('handymankg2', 48, 10, 2008), ('handymankg2', 50, 11, 2008), ('handymankg2', 57, 12, 2008), ('handymankg2', 205, 12, 2009), ('handymankg2', 59, 13, 2008), ('handymankg2', 272, 13, 2009), ('handymankg2', 62, 14, 2008), ('handymankg2', 246, 14, 2009), ('handymankg2', 304, 15, 2009), ('handymankg2', 65, 16, 2008), ('handymankg2', 69, 17, 2008), ('handymankg2', 234, 17, 2009), ('handymankg2', 203, 18, 2009), ('handymankg2', 74, 19, 2008), ('handymankg2', 256, 19, 2009), ('handymankg2', 80, 20, 2008), ('handymankg2', 82, 21, 2008), ('handymankg2', 87, 22, 2008), ('handymankg2', 173, 22, 2009), ('handymankg2', 88, 23, 2008), ('handymankg2', 248, 23, 2009), ('handymankg2', 100, 26, 2008), ('handymankg2', 101, 27, 2008), ('handymankg2', 229, 27, 2009), ('handymankg2', 105, 28, 2008), ('handymankg2', 106, 29, 2008), ('handymankg2', 107, 30, 2008), ('handymankg2', 306, 32, 2009), ('handymankg2', 113, 33, 2008), ('handymankg2', 181, 33, 2009), ('handymankg2', 114, 34, 2008), ('handymankg2', 274, 34, 2009), ('handymankg2', 122, 35, 2008), ('handymankg2', 124, 36, 2008), ('handymankg2', 169, 36, 2009), ('handymankg2', 202, 37, 2009), ('handymankg2', 136, 38, 2008), ('handymankg2', 277, 38, 2009), ('handymankg2', 137, 39, 2008), ('handymankg2', 296, 39, 2009), ('handymankg2', 172, 41, 2009), ('handymankg2', 303, 42, 2009), ('handymankg2', 265, 43, 2009), ('harryheart', 1, 1, 2008), ('harryheart', 194, 1, 2009), ('harryheart', 313, 1, 2010), ('harryheart', 561, 1, 2011), ('harryheart', 13, 2, 2008), ('harryheart', 323, 2, 2010), ('harryheart', 14, 3, 2008), ('harryheart', 209, 3, 2009), ('harryheart', 328, 3, 2010), ('harryheart', 20, 4, 2008), ('harryheart', 224, 4, 2009), ('harryheart', 338, 4, 2010), ('harryheart', 582, 4, 2011), ('harryheart', 29, 5, 2008), ('harryheart', 250, 5, 2009), ('harryheart', 340, 5, 2010), ('harryheart', 591, 5, 2011), ('harryheart', 33, 6, 2008), ('harryheart', 363, 6, 2010), ('harryheart', 600, 6, 2011), ('harryheart', 39, 7, 2008), ('harryheart', 196, 7, 2009), ('harryheart', 349, 7, 2010), ('harryheart', 612, 7, 2011), ('harryheart', 41, 8, 2008), ('harryheart', 215, 8, 2009), ('harryheart', 369, 8, 2010), ('harryheart', 619, 8, 2011), ('harryheart', 46, 9, 2008), ('harryheart', 167, 9, 2009), ('harryheart', 629, 9, 2011), ('harryheart', 49, 10, 2008), ('harryheart', 380, 10, 2010), ('harryheart', 50, 11, 2008), ('harryheart', 52, 12, 2008), ('harryheart', 258, 12, 2009), ('harryheart', 59, 13, 2008), ('harryheart', 272, 13, 2009), ('harryheart', 60, 14, 2008), ('harryheart', 246, 14, 2009), ('harryheart', 648, 14, 2011), ('harryheart', 63, 15, 2008), ('harryheart', 271, 15, 2009), ('harryheart', 64, 16, 2008), ('harryheart', 237, 16, 2009), ('harryheart', 643, 16, 2011), ('harryheart', 69, 17, 2008), ('harryheart', 198, 17, 2009), ('harryheart', 393, 17, 2010), ('harryheart', 658, 17, 2011), ('harryheart', 73, 18, 2008), ('harryheart', 415, 18, 2010), ('harryheart', 74, 19, 2008), ('harryheart', 256, 19, 2009), ('harryheart', 417, 19, 2010), ('harryheart', 199, 20, 2009), ('harryheart', 422, 20, 2010), ('harryheart', 690, 20, 2011), ('harryheart', 83, 21, 2008), ('harryheart', 427, 21, 2010), ('harryheart', 699, 21, 2011), ('harryheart', 87, 22, 2008), ('harryheart', 432, 22, 2010), ('harryheart', 708, 22, 2011), ('harryheart', 88, 23, 2008), ('harryheart', 248, 23, 2009), ('harryheart', 441, 23, 2010), ('harryheart', 713, 23, 2011), ('harryheart', 93, 24, 2008), ('harryheart', 241, 24, 2009), ('harryheart', 448, 24, 2010), ('harryheart', 718, 24, 2011), ('harryheart', 96, 26, 2008), ('harryheart', 459, 26, 2010), ('harryheart', 732, 26, 2011), ('harryheart', 471, 27, 2010), ('harryheart', 105, 28, 2008), ('harryheart', 487, 28, 2010), ('harryheart', 106, 29, 2008), ('harryheart', 490, 29, 2010), ('harryheart', 107, 30, 2008), ('harryheart', 498, 30, 2010), ('harryheart', 110, 32, 2008), ('harryheart', 220, 32, 2009), ('harryheart', 113, 33, 2008), ('harryheart', 181, 33, 2009), ('harryheart', 475, 33, 2010), ('harryheart', 116, 34, 2008), ('harryheart', 251, 34, 2009), ('harryheart', 503, 34, 2010), ('harryheart', 759, 34, 2011), ('harryheart', 122, 35, 2008), ('harryheart', 510, 35, 2010), ('harryheart', 763, 35, 2011), ('harryheart', 126, 36, 2008), ('harryheart', 252, 36, 2009), ('harryheart', 517, 36, 2010), ('harryheart', 767, 36, 2011), ('harryheart', 202, 37, 2009), ('harryheart', 524, 37, 2010), ('harryheart', 773, 37, 2011), ('harryheart', 133, 38, 2008), ('harryheart', 528, 38, 2010), ('harryheart', 777, 38, 2011), ('harryheart', 138, 39, 2008), ('harryheart', 536, 39, 2010), ('harryheart', 781, 39, 2011), ('harryheart', 255, 40, 2009), ('harryheart', 329, 40, 2010), ('harryheart', 364, 41, 2010), ('harryheart', 616, 41, 2011), ('harryheart', 260, 42, 2009), ('harryheart', 455, 42, 2010), ('harryheart', 451, 43, 2010), ('harryheart', 723, 43, 2011), ('harryheart', 485, 44, 2010), ('harryheart', 749, 44, 2011), ('harryheart', 465, 45, 2010), ('harryheart', 752, 45, 2011), ('harryheart', 408, 47, 2010), ('harryheart', 671, 47, 2011), ('harryheart', 606, 48, 2011), ('harryheart', 639, 50, 2011), ('Hilijix', 559, 1, 2011), ('Hilijix', 565, 2, 2011), ('Hilijix', 578, 4, 2011), ('Hilijix', 589, 5, 2011), ('Hilijix', 597, 6, 2011), ('Hilijix', 626, 9, 2011), ('Hilijix', 641, 10, 2011), ('Hilijix', 644, 16, 2011), ('Hilijix', 659, 17, 2011), ('Hilijix', 678, 18, 2011), ('Hilijix', 681, 19, 2011), ('Hilijix', 688, 20, 2011), ('Hilijix', 701, 21, 2011), ('Hilijix', 704, 22, 2011), ('Hilijix', 716, 24, 2011), ('Hilijix', 731, 26, 2011), ('Hilijix', 735, 27, 2011), ('Hilijix', 740, 28, 2011), ('Hilijix', 745, 30, 2011), ('Hilijix', 754, 33, 2011), ('Hilijix', 760, 34, 2011), ('Hilijix', 763, 35, 2011), ('Hilijix', 769, 36, 2011), ('Hilijix', 772, 37, 2011), ('Hilijix', 778, 38, 2011), ('Hilijix', 782, 39, 2011), ('Hilijix', 614, 41, 2011), ('Hilijix', 726, 42, 2011), ('Hilijix', 722, 43, 2011), ('Hilijix', 661, 46, 2011), ('Hilijix', 668, 47, 2011), ('Hilijix', 604, 48, 2011), ('Hilijix', 632, 49, 2011), ('Hilijix', 637, 50, 2011), ('Hilijix', 676, 51, 2011), ('hol123', 4, 1, 2008), ('hol123', 13, 2, 2008), ('hol123', 16, 3, 2008), ('hol123', 21, 4, 2008), ('hol123', 30, 5, 2008), ('hol123', 33, 6, 2008), ('hol123', 39, 7, 2008), ('hol123', 40, 8, 2008), ('hol123', 44, 9, 2008), ('hol123', 48, 10, 2008), ('hol123', 50, 11, 2008), ('hol123', 52, 12, 2008), ('hol123', 59, 13, 2008), ('hol123', 60, 14, 2008), ('hol123', 63, 15, 2008), ('hol123', 64, 16, 2008), ('hol123', 68, 17, 2008), ('hol123', 71, 18, 2008), ('hol123', 74, 19, 2008), ('hol123', 80, 20, 2008), ('hol123', 86, 21, 2008), ('hol123', 87, 22, 2008), ('hol123', 88, 23, 2008), ('hol123', 91, 24, 2008), ('hol123', 98, 26, 2008), ('hol123', 104, 27, 2008), ('hol123', 105, 28, 2008), ('hol123', 106, 29, 2008), ('hol123', 107, 30, 2008), ('hol123', 109, 31, 2008), ('hol123', 110, 32, 2008), ('hol123', 113, 33, 2008), ('hol123', 116, 34, 2008), ('hol123', 119, 35, 2008), ('hol123', 124, 36, 2008), ('hol123', 127, 37, 2008), ('Hoshi', 563, 2, 2011), ('Hoshi', 586, 5, 2011), ('Hoshi', 595, 6, 2011), ('Hoshi', 630, 9, 2011), ('Hoshi', 641, 10, 2011), ('Hoshi', 648, 14, 2011), ('Hoshi', 642, 16, 2011), ('Hoshi', 653, 17, 2011), ('Hoshi', 679, 19, 2011), ('Hoshi', 690, 20, 2011), ('Hoshi', 700, 21, 2011), ('Hoshi', 710, 22, 2011), ('Hoshi', 719, 24, 2011), ('Hoshi', 730, 26, 2011), ('Hoshi', 738, 27, 2011), ('Hoshi', 745, 30, 2011), ('Hoshi', 760, 34, 2011), ('Hoshi', 767, 36, 2011), ('Hoshi', 774, 38, 2011), ('Hoshi', 782, 39, 2011), ('Hoshi', 614, 41, 2011), ('Hoshi', 726, 42, 2011), ('Hoshi', 665, 46, 2011), ('Hoshi', 667, 47, 2011), ('Hoshi', 640, 50, 2011), ('Hoshi', 676, 51, 2011), ('Hotshot', 223, 1, 2009), ('Hotshot', 208, 2, 2009), ('Hotshot', 159, 4, 2009), ('Hotshot', 282, 8, 2009), ('Hotshot', 197, 10, 2009), ('Hotshot', 185, 12, 2009), ('Hotshot', 272, 13, 2009), ('Hotshot', 246, 14, 2009), ('Hotshot', 304, 15, 2009), ('Hotshot', 203, 18, 2009), ('Hotshot', 256, 19, 2009), ('Hotshot', 182, 20, 2009), ('Hotshot', 238, 21, 2009), ('Hotshot', 187, 22, 2009), ('Hotshot', 248, 23, 2009), ('Hotshot', 241, 24, 2009), ('Hotshot', 263, 26, 2009), ('Hotshot', 229, 27, 2009), ('Hotshot', 306, 32, 2009), ('Hotshot', 181, 33, 2009), ('Hotshot', 274, 34, 2009), ('Hotshot', 292, 35, 2009), ('Hotshot', 169, 36, 2009), ('Hotshot', 222, 39, 2009), ('Hotshot', 303, 42, 2009), ('Hotshot', 265, 43, 2009), ('IanDonyer', 313, 1, 2010), ('IanDonyer', 322, 2, 2010), ('IanDonyer', 341, 5, 2010), ('IanDonyer', 354, 6, 2010), ('IanDonyer', 375, 8, 2010), ('IanDonyer', 376, 9, 2010), ('IanDonyer', 380, 10, 2010), ('IanDonyer', 388, 16, 2010), ('IanDonyer', 391, 17, 2010), ('IanDonyer', 429, 21, 2010), ('IanDonyer', 440, 22, 2010), ('IanDonyer', 447, 23, 2010), ('IanDonyer', 461, 26, 2010), ('IanDonyer', 474, 27, 2010), ('IanDonyer', 498, 30, 2010), ('IanDonyer', 479, 33, 2010), ('IanDonyer', 528, 38, 2010), ('IanDonyer', 537, 39, 2010), ('IanDonyer', 329, 40, 2010), ('IanDonyer', 367, 41, 2010), ('IanDonyer', 458, 42, 2010), ('IanDonyer', 453, 43, 2010), ('IanDonyer', 404, 46, 2010), ('IanDonyer', 407, 47, 2010), ('Infernalmonk', 327, 2, 2010), ('Infernalmonk', 328, 3, 2010), ('Infernalmonk', 334, 4, 2010), ('Infernalmonk', 358, 6, 2010), ('Infernalmonk', 353, 7, 2010), ('Infernalmonk', 416, 18, 2010), ('Infernalmonk', 420, 19, 2010), ('Infernalmonk', 422, 20, 2010), ('Infernalmonk', 431, 21, 2010), ('Infernalmonk', 440, 22, 2010), ('Infernalmonk', 494, 29, 2010), ('Infernalmonk', 477, 33, 2010), ('Infernalmonk', 509, 34, 2010), ('Infernalmonk', 516, 35, 2010), ('Infernalmonk', 522, 36, 2010), ('Infernalmonk', 525, 37, 2010), ('Infernalmonk', 534, 38, 2010), ('Infernalmonk', 544, 39, 2010), ('Infernalmonk', 329, 40, 2010), ('Infernalmonk', 467, 45, 2010), ('Iota', 861, 1, 2012), ('Iota', 927, 2, 2012), ('Iota', 986, 3, 2012), ('Iota', 1045, 4, 2012), ('Iota', 854, 5, 2012), ('Iota', 855, 6, 2012), ('Iota', 806, 7, 2012), ('Iota', 995, 8, 2012), ('Iota', 825, 9, 2012), ('Iota', 1049, 10, 2012), ('Iota', 828, 14, 2012), ('Iota', 872, 16, 2012), ('Iota', 856, 17, 2012), ('Iota', 951, 18, 2012), ('Iota', 954, 19, 2012), ('Iota', 857, 20, 2012), ('Iota', 1028, 23, 2012), ('Iota', 839, 24, 2012), ('Iota', 881, 26, 2012), ('Iota', 1005, 27, 2012), ('Iota', 1007, 28, 2012), ('Iota', 844, 29, 2012), ('Iota', 845, 30, 2012), ('Iota', 1053, 33, 2012), ('Iota', 924, 34, 2012), ('Iota', 925, 35, 2012), ('Iota', 889, 36, 2012), ('Iota', 1014, 37, 2012), ('Iota', 799, 38, 2012), ('Iota', 975, 39, 2012), ('Iota', 913, 40, 2012), ('Iota', 1035, 41, 2012), ('Iota', 962, 42, 2012), ('Iota', 1089, 43, 2012), ('Iota', 846, 44, 2012), ('Iota', 1093, 45, 2012), ('Iota', 1063, 46, 2012), ('Iota', 792, 47, 2012), ('Iota', 992, 48, 2012), ('Iota', 916, 49, 2012), ('Iota', 805, 50, 2012), ('Iota', 1025, 51, 2012), ('Iota', 950, 52, 2012), ('ITOMARU', 183, 1, 2009), ('ITOMARU', 280, 2, 2009), ('ITOMARU', 209, 3, 2009), ('ITOMARU', 191, 4, 2009), ('ITOMARU', 243, 5, 2009), ('ITOMARU', 269, 6, 2009), ('ITOMARU', 249, 7, 2009), ('ITOMARU', 230, 8, 2009), ('ITOMARU', 239, 9, 2009), ('ITOMARU', 165, 10, 2009), ('ITOMARU', 185, 12, 2009), ('ITOMARU', 272, 13, 2009), ('ITOMARU', 246, 14, 2009), ('ITOMARU', 304, 15, 2009), ('ITOMARU', 267, 16, 2009), ('ITOMARU', 262, 17, 2009), ('ITOMARU', 203, 18, 2009), ('ITOMARU', 256, 19, 2009), ('ITOMARU', 182, 20, 2009), ('ITOMARU', 289, 21, 2009), ('ITOMARU', 173, 22, 2009), ('ITOMARU', 248, 23, 2009), ('ITOMARU', 175, 24, 2009), ('ITOMARU', 226, 26, 2009), ('ITOMARU', 229, 27, 2009), ('ITOMARU', 306, 32, 2009), ('ITOMARU', 181, 33, 2009), ('ITOMARU', 274, 34, 2009), ('ITOMARU', 275, 35, 2009), ('ITOMARU', 169, 36, 2009), ('ITOMARU', 202, 37, 2009), ('ITOMARU', 277, 38, 2009), ('ITOMARU', 222, 39, 2009), ('ITOMARU', 255, 40, 2009), ('ITOMARU', 161, 41, 2009), ('ITOMARU', 303, 42, 2009), ('ITOMARU', 307, 44, 2009), ('JammyU', 1, 1, 2008), ('JammyU', 21, 4, 2008), ('JammyU', 31, 5, 2008), ('JammyU', 32, 6, 2008), ('JammyU', 41, 8, 2008), ('JammyU', 48, 10, 2008), ('JammyU', 53, 12, 2008), ('JammyU', 61, 14, 2008), ('JammyU', 86, 21, 2008), ('JammyU', 94, 24, 2008), ('JammyU', 99, 26, 2008), ('JammyU', 101, 27, 2008), ('JammyU', 110, 32, 2008), ('JammyU', 112, 33, 2008), ('JammyU', 114, 34, 2008), ('JammyU', 119, 35, 2008), ('JammyU', 124, 36, 2008), ('JammyU', 135, 38, 2008), ('JammyU', 138, 39, 2008), ('Jason-Kun', 7, 1, 2008), ('Jason-Kun', 16, 3, 2008), ('Jason-Kun', 24, 4, 2008), ('Jason-Kun', 25, 5, 2008), ('Jason-Kun', 38, 7, 2008), ('Jason-Kun', 41, 8, 2008), ('Jason-Kun', 49, 10, 2008), ('Jason-Kun', 51, 12, 2008), ('Jason-Kun', 62, 14, 2008), ('Jason-Kun', 63, 15, 2008), ('Jason-Kun', 66, 16, 2008), ('Jason-Kun', 70, 17, 2008), ('Jason-Kun', 73, 18, 2008), ('Jason-Kun', 74, 19, 2008), ('Jason-Kun', 79, 20, 2008), ('Jason-Kun', 84, 21, 2008), ('Jason-Kun', 87, 22, 2008), ('Jason-Kun', 88, 23, 2008), ('Jason-Kun', 93, 24, 2008), ('Jason-Kun', 98, 26, 2008), ('Jason-Kun', 104, 27, 2008), ('Jason-Kun', 105, 28, 2008), ('Jason-Kun', 106, 29, 2008), ('Jason-Kun', 107, 30, 2008), ('Jason-Kun', 109, 31, 2008), ('Jason-Kun', 113, 33, 2008), ('Jason-Kun', 119, 35, 2008), ('Jason-Kun', 124, 36, 2008), ('Jason-Kun', 130, 37, 2008), ('Jerichi', 2, 1, 2008), ('Jerichi', 21, 4, 2008), ('Jerichi', 27, 5, 2008), ('Jerichi', 48, 10, 2008), ('Jerichi', 50, 11, 2008), ('Jerichi', 53, 12, 2008), ('Jerichi', 59, 13, 2008), ('Jerichi', 63, 15, 2008), ('Jerichi', 72, 18, 2008), ('Jerichi', 74, 19, 2008), ('Jerichi', 87, 22, 2008), ('Jerichi', 99, 26, 2008), ('Jerichi', 104, 27, 2008), ('Jerichi', 105, 28, 2008), ('Jerichi', 106, 29, 2008), ('Jerichi', 107, 30, 2008), ('Jerichi', 112, 33, 2008), ('Jerichi', 117, 34, 2008), ('Jerichi', 120, 35, 2008), ('Jerichi', 131, 37, 2008), ('Jerichi', 136, 38, 2008), ('Jerichi', 137, 39, 2008), ('jireh the provider', 912, 1, 2012), ('jireh the provider', 927, 2, 2012), ('jireh the provider', 863, 3, 2012), ('jireh the provider', 1055, 4, 2012), ('jireh the provider', 865, 5, 2012), ('jireh the provider', 1047, 7, 2012), ('jireh the provider', 808, 8, 2012), ('jireh the provider', 807, 9, 2012), ('jireh the provider', 828, 14, 2012), ('jireh the provider', 1022, 16, 2012), ('jireh the provider', 811, 18, 2012), ('jireh the provider', 813, 20, 2012), ('jireh the provider', 1097, 21, 2012), ('jireh the provider', 814, 22, 2012), ('jireh the provider', 815, 23, 2012), ('jireh the provider', 921, 26, 2012), ('jireh the provider', 964, 27, 2012), ('jireh the provider', 801, 28, 2012), ('jireh the provider', 966, 29, 2012), ('jireh the provider', 802, 30, 2012), ('jireh the provider', 803, 33, 2012), ('jireh the provider', 797, 34, 2012), ('jireh the provider', 925, 35, 2012), ('jireh the provider', 849, 36, 2012), ('jireh the provider', 890, 37, 2012), ('jireh the provider', 816, 38, 2012), ('jireh the provider', 910, 39, 2012), ('jireh the provider', 841, 42, 2012), ('jireh the provider', 846, 44, 2012), ('jireh the provider', 885, 45, 2012), ('jireh the provider', 804, 48, 2012), ('jireh the provider', 809, 49, 2012), ('jireh the provider', 805, 50, 2012), ('jireh the provider', 918, 51, 2012), ('jireh the provider', 810, 52, 2012), ('joey1234', 860, 1, 2012), ('joey1234', 1124, 1, 2013), ('joey1234', 1243, 2, 2013), ('joey1234', 1055, 4, 2012), ('joey1234', 1058, 5, 2012), ('joey1234', 1321, 5, 2013), ('joey1234', 1119, 6, 2012), ('joey1234', 1129, 6, 2013), ('joey1234', 1060, 7, 2012), ('joey1234', 1337, 7, 2013), ('joey1234', 1061, 8, 2012), ('joey1234', 1326, 8, 2013), ('joey1234', 1171, 9, 2013), ('joey1234', 1062, 16, 2012), ('joey1234', 1310, 16, 2013), ('joey1234', 856, 17, 2012), ('joey1234', 1175, 17, 2013), ('joey1234', 1064, 18, 2012), ('joey1234', 834, 19, 2012), ('joey1234', 1179, 19, 2013), ('joey1234', 857, 20, 2012), ('joey1234', 1181, 20, 2013), ('joey1234', 1067, 21, 2012), ('joey1234', 1271, 21, 2013), ('joey1234', 1295, 22, 2013), ('joey1234', 878, 23, 2012), ('joey1234', 1148, 23, 2013), ('joey1234', 1276, 26, 2013), ('joey1234', 922, 27, 2012), ('joey1234', 1155, 29, 2013), ('joey1234', 802, 30, 2012), ('joey1234', 1193, 33, 2013), ('joey1234', 887, 34, 2012), ('joey1234', 1299, 34, 2013), ('joey1234', 888, 35, 2012), ('joey1234', 1070, 36, 2012), ('joey1234', 1160, 36, 2013), ('joey1234', 982, 37, 2012), ('joey1234', 1288, 37, 2013), ('joey1234', 1290, 38, 2013), ('joey1234', 892, 39, 2012), ('joey1234', 1035, 41, 2012), ('joey1234', 1307, 41, 2013), ('joey1234', 1150, 43, 2013), ('joey1234', 885, 45, 2012), ('joey1234', 1192, 45, 2013), ('joey1234', 1330, 47, 2013), ('joey1234', 1203, 48, 2013), ('joey1234', 809, 49, 2012), ('joey1234', 1297, 49, 2013), ('joey1234', 1298, 50, 2013), ('joey1234', 1264, 51, 2013), ('joey1234', 810, 52, 2012), ('joey1234', 1142, 52, 2013), ('joey1234', 1125, 53, 2013), ('JX Valentine', 177, 1, 2009), ('JX Valentine', 320, 1, 2010), ('JX Valentine', 556, 1, 2011), ('JX Valentine', 795, 1, 2012), ('JX Valentine', 1197, 1, 2013), ('JX Valentine', 280, 2, 2009), ('JX Valentine', 325, 2, 2010), ('JX Valentine', 568, 2, 2011), ('JX Valentine', 928, 2, 2012), ('JX Valentine', 1126, 2, 2013), ('JX Valentine', 209, 3, 2009), ('JX Valentine', 328, 3, 2010), ('JX Valentine', 574, 3, 2011), ('JX Valentine', 929, 3, 2012), ('JX Valentine', 224, 4, 2009), ('JX Valentine', 336, 4, 2010), ('JX Valentine', 580, 4, 2011), ('JX Valentine', 931, 4, 2012), ('JX Valentine', 1127, 4, 2013), ('JX Valentine', 160, 5, 2009), ('JX Valentine', 344, 5, 2010), ('JX Valentine', 590, 5, 2011), ('JX Valentine', 932, 5, 2012), ('JX Valentine', 1128, 5, 2013), ('JX Valentine', 269, 6, 2009), ('JX Valentine', 359, 6, 2010), ('JX Valentine', 600, 6, 2011), ('JX Valentine', 934, 6, 2012), ('JX Valentine', 1168, 6, 2013), ('JX Valentine', 184, 7, 2009), ('JX Valentine', 353, 7, 2010), ('JX Valentine', 610, 7, 2011), ('JX Valentine', 823, 7, 2012), ('JX Valentine', 1250, 7, 2013), ('JX Valentine', 215, 8, 2009), ('JX Valentine', 374, 8, 2010), ('JX Valentine', 620, 8, 2011), ('JX Valentine', 940, 8, 2012), ('JX Valentine', 1236, 8, 2013), ('JX Valentine', 167, 9, 2009), ('JX Valentine', 378, 9, 2010), ('JX Valentine', 629, 9, 2011), ('JX Valentine', 807, 9, 2012), ('JX Valentine', 1257, 10, 2013), ('JX Valentine', 185, 12, 2009), ('JX Valentine', 272, 13, 2009), ('JX Valentine', 246, 14, 2009), ('JX Valentine', 647, 14, 2011), ('JX Valentine', 943, 14, 2012), ('JX Valentine', 1259, 14, 2013), ('JX Valentine', 259, 15, 2009), ('JX Valentine', 206, 16, 2009), ('JX Valentine', 386, 16, 2010), ('JX Valentine', 644, 16, 2011), ('JX Valentine', 942, 16, 2012), ('JX Valentine', 1136, 16, 2013), ('JX Valentine', 286, 17, 2009), ('JX Valentine', 391, 17, 2010), ('JX Valentine', 656, 17, 2011), ('JX Valentine', 1050, 17, 2012), ('JX Valentine', 1261, 17, 2013), ('JX Valentine', 244, 18, 2009), ('JX Valentine', 412, 18, 2010), ('JX Valentine', 677, 18, 2011), ('JX Valentine', 952, 18, 2012), ('JX Valentine', 1339, 18, 2013), ('JX Valentine', 256, 19, 2009), ('JX Valentine', 418, 19, 2010), ('JX Valentine', 683, 19, 2011), ('JX Valentine', 954, 19, 2012), ('JX Valentine', 1144, 19, 2013), ('JX Valentine', 199, 20, 2009), ('JX Valentine', 426, 20, 2010), ('JX Valentine', 689, 20, 2011), ('JX Valentine', 835, 20, 2012), ('JX Valentine', 1269, 20, 2013), ('JX Valentine', 289, 21, 2009), ('JX Valentine', 698, 21, 2011), ('JX Valentine', 957, 21, 2012), ('JX Valentine', 1271, 21, 2013), ('JX Valentine', 173, 22, 2009), ('JX Valentine', 436, 22, 2010), ('JX Valentine', 706, 22, 2011), ('JX Valentine', 958, 22, 2012), ('JX Valentine', 1147, 22, 2013), ('JX Valentine', 248, 23, 2009), ('JX Valentine', 442, 23, 2010), ('JX Valentine', 714, 23, 2011), ('JX Valentine', 959, 23, 2012), ('JX Valentine', 1274, 23, 2013), ('JX Valentine', 168, 24, 2009), ('JX Valentine', 448, 24, 2010), ('JX Valentine', 719, 24, 2011), ('JX Valentine', 839, 24, 2012), ('JX Valentine', 1149, 24, 2013), ('JX Valentine', 226, 26, 2009), ('JX Valentine', 730, 26, 2011), ('JX Valentine', 963, 26, 2012), ('JX Valentine', 1152, 26, 2013), ('JX Valentine', 236, 27, 2009), ('JX Valentine', 735, 27, 2011), ('JX Valentine', 964, 27, 2012), ('JX Valentine', 1278, 27, 2013), ('JX Valentine', 739, 28, 2011), ('JX Valentine', 965, 28, 2012), ('JX Valentine', 1279, 28, 2013), ('JX Valentine', 744, 29, 2011), ('JX Valentine', 1008, 29, 2012), ('JX Valentine', 1281, 29, 2013), ('JX Valentine', 499, 30, 2010), ('JX Valentine', 746, 30, 2011), ('JX Valentine', 967, 30, 2012), ('JX Valentine', 1191, 30, 2013), ('JX Valentine', 306, 32, 2009), ('JX Valentine', 181, 33, 2009), ('JX Valentine', 478, 33, 2010), ('JX Valentine', 755, 33, 2011), ('JX Valentine', 969, 33, 2012), ('JX Valentine', 1193, 33, 2013), ('JX Valentine', 251, 34, 2009), ('JX Valentine', 505, 34, 2010), ('JX Valentine', 756, 34, 2011), ('JX Valentine', 924, 34, 2012), ('JX Valentine', 1211, 34, 2013), ('JX Valentine', 292, 35, 2009), ('JX Valentine', 511, 35, 2010), ('JX Valentine', 765, 35, 2011), ('JX Valentine', 798, 35, 2012), ('JX Valentine', 1285, 35, 2013), ('JX Valentine', 179, 36, 2009), ('JX Valentine', 523, 36, 2010), ('JX Valentine', 769, 36, 2011), ('JX Valentine', 972, 36, 2012), ('JX Valentine', 1287, 36, 2013), ('JX Valentine', 293, 37, 2009), ('JX Valentine', 524, 37, 2010), ('JX Valentine', 771, 37, 2011), ('JX Valentine', 973, 37, 2012), ('JX Valentine', 1288, 37, 2013), ('JX Valentine', 295, 38, 2009), ('JX Valentine', 528, 38, 2010), ('JX Valentine', 776, 38, 2011), ('JX Valentine', 974, 38, 2012), ('JX Valentine', 1290, 38, 2013), ('JX Valentine', 222, 39, 2009), ('JX Valentine', 544, 39, 2010), ('JX Valentine', 779, 39, 2011), ('JX Valentine', 975, 39, 2012), ('JX Valentine', 1214, 39, 2013), ('JX Valentine', 255, 40, 2009), ('JX Valentine', 329, 40, 2010), ('JX Valentine', 575, 40, 2011), ('JX Valentine', 913, 40, 2012), ('JX Valentine', 1244, 40, 2013), ('JX Valentine', 245, 41, 2009), ('JX Valentine', 368, 41, 2010), ('JX Valentine', 614, 41, 2011), ('JX Valentine', 938, 41, 2012), ('JX Valentine', 1252, 41, 2013), ('JX Valentine', 303, 42, 2009), ('JX Valentine', 457, 42, 2010), ('JX Valentine', 962, 42, 2012), ('JX Valentine', 1151, 42, 2013), ('JX Valentine', 265, 43, 2009), ('JX Valentine', 452, 43, 2010), ('JX Valentine', 724, 43, 2011), ('JX Valentine', 960, 43, 2012), ('JX Valentine', 1189, 43, 2013), ('JX Valentine', 481, 44, 2010), ('JX Valentine', 749, 44, 2011), ('JX Valentine', 968, 44, 2012), ('JX Valentine', 1282, 44, 2013), ('JX Valentine', 467, 45, 2010), ('JX Valentine', 752, 45, 2011), ('JX Valentine', 847, 45, 2012), ('JX Valentine', 1283, 45, 2013), ('JX Valentine', 402, 46, 2010), ('JX Valentine', 662, 46, 2011), ('JX Valentine', 947, 46, 2012), ('JX Valentine', 1262, 46, 2013), ('JX Valentine', 411, 47, 2010), ('JX Valentine', 670, 47, 2011), ('JX Valentine', 948, 47, 2012), ('JX Valentine', 1140, 47, 2013), ('JX Valentine', 608, 48, 2011), ('JX Valentine', 936, 48, 2012), ('JX Valentine', 1249, 48, 2013), ('JX Valentine', 635, 49, 2011), ('JX Valentine', 941, 49, 2012), ('JX Valentine', 1134, 49, 2013), ('JX Valentine', 636, 50, 2011), ('JX Valentine', 826, 50, 2012), ('JX Valentine', 1340, 50, 2013), ('JX Valentine', 875, 51, 2012), ('JX Valentine', 1264, 51, 2013), ('JX Valentine', 949, 52, 2012), ('JX Valentine', 1266, 52, 2013), ('JX Valentine', 1241, 53, 2013), ('katiekitten', 7, 1, 2008), ('katiekitten', 10, 2, 2008), ('katiekitten', 14, 3, 2008), ('katiekitten', 20, 4, 2008), ('katiekitten', 26, 5, 2008), ('katiekitten', 39, 7, 2008), ('katiekitten', 40, 8, 2008), ('katiekitten', 44, 9, 2008), ('katiekitten', 48, 10, 2008), ('katiekitten', 53, 12, 2008), ('katiekitten', 59, 13, 2008), ('katiekitten', 60, 14, 2008), ('katiekitten', 64, 16, 2008), ('katiekitten', 71, 18, 2008), ('katiekitten', 74, 19, 2008), ('katiekitten', 80, 20, 2008), ('katiekitten', 83, 21, 2008), ('katiekitten', 87, 22, 2008), ('katiekitten', 92, 24, 2008), ('katiekitten', 99, 26, 2008), ('katiekitten', 103, 27, 2008), ('katiekitten', 105, 28, 2008), ('katiekitten', 106, 29, 2008), ('katiekitten', 109, 31, 2008), ('katiekitten', 110, 32, 2008), ('katiekitten', 112, 33, 2008), ('katiekitten', 115, 34, 2008), ('katiekitten', 119, 35, 2008), ('katiekitten', 126, 36, 2008), ('katiekitten', 131, 37, 2008), ('katiekitten', 137, 39, 2008), ('Keldminrachi91', 1044, 1, 2012), ('Keldminrachi91', 927, 2, 2012), ('Keldminrachi91', 986, 3, 2012), ('Keldminrachi91', 1094, 4, 2012), ('Keldminrachi91', 854, 5, 2012), ('Keldminrachi91', 915, 6, 2012), ('Keldminrachi91', 1046, 7, 2012), ('Keldminrachi91', 808, 8, 2012), ('Keldminrachi91', 807, 9, 2012), ('Keldminrachi91', 1049, 10, 2012), ('Keldminrachi91', 828, 14, 2012), ('Keldminrachi91', 827, 16, 2012), ('Keldminrachi91', 873, 17, 2012), ('Keldminrachi91', 811, 18, 2012), ('Keldminrachi91', 956, 20, 2012), ('Keldminrachi91', 1097, 21, 2012), ('Keldminrachi91', 1077, 22, 2012), ('Keldminrachi91', 878, 23, 2012), ('Keldminrachi91', 1078, 26, 2012), ('Keldminrachi91', 801, 28, 2012), ('Keldminrachi91', 844, 29, 2012), ('Keldminrachi91', 967, 30, 2012), ('Keldminrachi91', 1081, 33, 2012), ('Keldminrachi91', 970, 34, 2012), ('Keldminrachi91', 972, 36, 2012), ('Keldminrachi91', 793, 38, 2012), ('Keldminrachi91', 910, 39, 2012), ('Keldminrachi91', 1048, 41, 2012), ('Keldminrachi91', 962, 42, 2012), ('Keldminrachi91', 1052, 43, 2012), ('Keldminrachi91', 968, 44, 2012), ('Keldminrachi91', 885, 45, 2012), ('Keldminrachi91', 893, 47, 2012), ('Keldminrachi91', 804, 48, 2012), ('Keldminrachi91', 789, 49, 2012), ('Keldminrachi91', 805, 50, 2012), ('Keldminrachi91', 832, 52, 2012), ('Kevmysta', 305, 1, 2009), ('Kevmysta', 193, 3, 2009), ('Kevmysta', 224, 4, 2009), ('Kevmysta', 235, 7, 2009), ('Kevmysta', 282, 8, 2009), ('Kevmysta', 165, 10, 2009), ('Kevmysta', 185, 12, 2009), ('Kevmysta', 304, 15, 2009), ('Kevmysta', 206, 16, 2009), ('Kevmysta', 286, 17, 2009), ('Kevmysta', 203, 18, 2009), ('Kevmysta', 199, 20, 2009), ('Kevmysta', 289, 21, 2009), ('Kevmysta', 168, 24, 2009), ('Kevmysta', 226, 26, 2009), ('Kevmysta', 236, 27, 2009), ('Kevmysta', 274, 34, 2009), ('Kevmysta', 292, 35, 2009), ('Kevmysta', 169, 36, 2009), ('Kevmysta', 170, 38, 2009), ('Kevmysta', 222, 39, 2009), ('Kevmysta', 245, 41, 2009), ('Kevmysta', 265, 43, 2009), ('KingT', 5, 1, 2008), ('KingT', 12, 2, 2008), ('KingT', 14, 3, 2008), ('KingT', 18, 4, 2008), ('KingT', 29, 5, 2008), ('KingT', 36, 6, 2008), ('KingT', 38, 7, 2008), ('KingT', 50, 11, 2008), ('KingT', 51, 12, 2008), ('KingT', 59, 13, 2008), ('KingT', 67, 17, 2008), ('KingT', 78, 20, 2008), ('KingT', 101, 27, 2008), ('KingT', 113, 33, 2008), ('KingT', 116, 34, 2008), ('KingT', 119, 35, 2008), ('KingT', 125, 36, 2008), ('KingT', 136, 38, 2008), ('KingT', 139, 39, 2008), ('Kissmygrass96', 317, 1, 2010), ('Kissmygrass96', 549, 1, 2011), ('Kissmygrass96', 322, 2, 2010), ('Kissmygrass96', 567, 2, 2011), ('Kissmygrass96', 328, 3, 2010), ('Kissmygrass96', 574, 3, 2011), ('Kissmygrass96', 338, 4, 2010), ('Kissmygrass96', 578, 4, 2011), ('Kissmygrass96', 347, 5, 2010), ('Kissmygrass96', 588, 5, 2011), ('Kissmygrass96', 354, 6, 2010), ('Kissmygrass96', 598, 6, 2011), ('Kissmygrass96', 353, 7, 2010), ('Kissmygrass96', 610, 7, 2011), ('Kissmygrass96', 371, 8, 2010), ('Kissmygrass96', 622, 8, 2011), ('Kissmygrass96', 379, 9, 2010), ('Kissmygrass96', 628, 9, 2011), ('Kissmygrass96', 380, 10, 2010), ('Kissmygrass96', 641, 10, 2011), ('Kissmygrass96', 648, 14, 2011), ('Kissmygrass96', 389, 16, 2010), ('Kissmygrass96', 642, 16, 2011), ('Kissmygrass96', 398, 17, 2010), ('Kissmygrass96', 660, 17, 2011), ('Kissmygrass96', 415, 18, 2010), ('Kissmygrass96', 678, 18, 2011), ('Kissmygrass96', 420, 19, 2010), ('Kissmygrass96', 679, 19, 2011), ('Kissmygrass96', 426, 20, 2010), ('Kissmygrass96', 688, 20, 2011), ('Kissmygrass96', 429, 21, 2010), ('Kissmygrass96', 697, 21, 2011), ('Kissmygrass96', 433, 22, 2010), ('Kissmygrass96', 705, 22, 2011), ('Kissmygrass96', 441, 23, 2010), ('Kissmygrass96', 712, 23, 2011), ('Kissmygrass96', 448, 24, 2010), ('Kissmygrass96', 716, 24, 2011), ('Kissmygrass96', 462, 26, 2010), ('Kissmygrass96', 727, 26, 2011), ('Kissmygrass96', 474, 27, 2010), ('Kissmygrass96', 735, 27, 2011), ('Kissmygrass96', 739, 28, 2011), ('Kissmygrass96', 496, 29, 2010), ('Kissmygrass96', 743, 29, 2011), ('Kissmygrass96', 546, 30, 2010), ('Kissmygrass96', 746, 30, 2011), ('Kissmygrass96', 475, 33, 2010), ('Kissmygrass96', 754, 33, 2011), ('Kissmygrass96', 503, 34, 2010), ('Kissmygrass96', 756, 34, 2011), ('Kissmygrass96', 513, 35, 2010), ('Kissmygrass96', 766, 35, 2011), ('Kissmygrass96', 519, 36, 2010), ('Kissmygrass96', 769, 36, 2011), ('Kissmygrass96', 526, 37, 2010), ('Kissmygrass96', 773, 37, 2011), ('Kissmygrass96', 533, 38, 2010), ('Kissmygrass96', 775, 38, 2011), ('Kissmygrass96', 538, 39, 2010), ('Kissmygrass96', 780, 39, 2011), ('Kissmygrass96', 329, 40, 2010), ('Kissmygrass96', 575, 40, 2011), ('Kissmygrass96', 364, 41, 2010), ('Kissmygrass96', 614, 41, 2011), ('Kissmygrass96', 458, 42, 2010), ('Kissmygrass96', 726, 42, 2011), ('Kissmygrass96', 451, 43, 2010), ('Kissmygrass96', 725, 43, 2011), ('Kissmygrass96', 480, 44, 2010), ('Kissmygrass96', 751, 44, 2011), ('Kissmygrass96', 467, 45, 2010), ('Kissmygrass96', 752, 45, 2011), ('Kissmygrass96', 404, 46, 2010), ('Kissmygrass96', 662, 46, 2011), ('Kissmygrass96', 411, 47, 2010), ('Kissmygrass96', 667, 47, 2011), ('Kissmygrass96', 604, 48, 2011), ('Kissmygrass96', 635, 49, 2011), ('Kissmygrass96', 638, 50, 2011), ('Kissmygrass96', 676, 51, 2011), ('kjt', 313, 1, 2010), ('kjt', 327, 2, 2010), ('kjt', 328, 3, 2010), ('kjt', 334, 4, 2010), ('kjt', 341, 5, 2010), ('kjt', 358, 6, 2010), ('kjt', 353, 7, 2010), ('kjt', 379, 9, 2010), ('kjt', 390, 16, 2010), ('kjt', 391, 17, 2010), ('kjt', 416, 18, 2010), ('kjt', 417, 19, 2010), ('kjt', 422, 20, 2010), ('kjt', 431, 21, 2010), ('kjt', 440, 22, 2010), ('kjt', 442, 23, 2010), ('kjt', 460, 26, 2010), ('kjt', 470, 27, 2010), ('kjt', 494, 29, 2010), ('kjt', 546, 30, 2010), ('kjt', 477, 33, 2010), ('kjt', 505, 34, 2010), ('kjt', 510, 35, 2010), ('kjt', 522, 36, 2010), ('kjt', 526, 37, 2010), ('kjt', 528, 38, 2010), ('kjt', 544, 39, 2010), ('kjt', 329, 40, 2010), ('kjt', 365, 41, 2010), ('kjt', 458, 42, 2010), ('kjt', 454, 43, 2010), ('kjt', 480, 44, 2010), ('kjt', 467, 45, 2010), ('kjt', 400, 46, 2010), ('kjt', 406, 47, 2010), ('knightfall', 555, 1, 2011), ('Knightfall', 795, 1, 2012), ('Knightfall', 1197, 1, 2013), ('knightfall', 568, 2, 2011), ('Knightfall', 862, 2, 2012), ('Knightfall', 1234, 2, 2013), ('Knightfall', 863, 3, 2012), ('knightfall', 580, 4, 2011), ('Knightfall', 864, 4, 2012), ('Knightfall', 1166, 4, 2013), ('knightfall', 587, 5, 2011), ('Knightfall', 865, 5, 2012), ('Knightfall', 1235, 5, 2013), ('knightfall', 597, 6, 2011), ('Knightfall', 868, 6, 2012), ('Knightfall', 1129, 6, 2013), ('knightfall', 611, 7, 2011), ('Knightfall', 823, 7, 2012), ('Knightfall', 1131, 7, 2013), ('knightfall', 618, 8, 2011), ('Knightfall', 870, 8, 2012), ('Knightfall', 1132, 8, 2013), ('knightfall', 624, 9, 2011), ('Knightfall', 1109, 9, 2012), ('Knightfall', 1253, 9, 2013), ('knightfall', 641, 10, 2011), ('Knightfall', 1049, 10, 2012), ('Knightfall', 1173, 10, 2013), ('knightfall', 650, 14, 2011), ('Knightfall', 828, 14, 2012), ('knightfall', 642, 16, 2011), ('Knightfall', 1120, 16, 2012), ('Knightfall', 1310, 16, 2013), ('knightfall', 656, 17, 2011), ('Knightfall', 829, 17, 2012), ('Knightfall', 1138, 17, 2013), ('knightfall', 678, 18, 2011), ('Knightfall', 1064, 18, 2012), ('Knightfall', 1143, 18, 2013), ('knightfall', 681, 19, 2011), ('Knightfall', 954, 19, 2012), ('Knightfall', 1144, 19, 2013), ('knightfall', 688, 20, 2011), ('Knightfall', 835, 20, 2012), ('Knightfall', 1145, 20, 2013), ('knightfall', 698, 21, 2011), ('Knightfall', 876, 21, 2012), ('Knightfall', 1146, 21, 2013), ('knightfall', 704, 22, 2011), ('Knightfall', 877, 22, 2012), ('Knightfall', 1221, 22, 2013), ('knightfall', 712, 23, 2011), ('Knightfall', 1104, 23, 2012), ('Knightfall', 1148, 23, 2013), ('knightfall', 716, 24, 2011), ('Knightfall', 839, 24, 2012), ('Knightfall', 1149, 24, 2013), ('knightfall', 729, 26, 2011), ('Knightfall', 1079, 26, 2012), ('Knightfall', 1152, 26, 2013), ('knightfall', 737, 27, 2011), ('Knightfall', 882, 27, 2012), ('Knightfall', 1209, 27, 2013), ('knightfall', 740, 28, 2011), ('Knightfall', 843, 28, 2012), ('Knightfall', 1154, 28, 2013), ('knightfall', 743, 29, 2011), ('knightfall', 747, 30, 2011), ('Knightfall', 802, 30, 2012), ('Knightfall', 1191, 30, 2013), ('knightfall', 754, 33, 2011), ('Knightfall', 1029, 33, 2012), ('Knightfall', 1157, 33, 2013), ('knightfall', 756, 34, 2011), ('Knightfall', 970, 34, 2012), ('Knightfall', 1158, 34, 2013), ('knightfall', 763, 35, 2011), ('Knightfall', 888, 35, 2012), ('Knightfall', 1159, 35, 2013), ('knightfall', 769, 36, 2011), ('Knightfall', 889, 36, 2012), ('Knightfall', 1160, 36, 2013), ('knightfall', 772, 37, 2011), ('Knightfall', 890, 37, 2012), ('Knightfall', 1161, 37, 2013), ('knightfall', 775, 38, 2011), ('Knightfall', 891, 38, 2012), ('Knightfall', 1162, 38, 2013), ('knightfall', 779, 39, 2011), ('Knightfall', 892, 39, 2012), ('Knightfall', 1163, 39, 2013), ('Knightfall', 913, 40, 2012), ('knightfall', 614, 41, 2011), ('Knightfall', 1048, 41, 2012), ('Knightfall', 1218, 41, 2013), ('knightfall', 726, 42, 2011), ('Knightfall', 880, 42, 2012), ('Knightfall', 1151, 42, 2013), ('knightfall', 724, 43, 2011), ('Knightfall', 840, 43, 2012), ('Knightfall', 1150, 43, 2013), ('Knightfall', 1009, 44, 2012), ('knightfall', 752, 45, 2011), ('Knightfall', 885, 45, 2012), ('Knightfall', 1156, 45, 2013), ('knightfall', 664, 46, 2011), ('Knightfall', 830, 46, 2012), ('Knightfall', 1237, 46, 2013), ('knightfall', 673, 47, 2011), ('Knightfall', 917, 47, 2012), ('Knightfall', 1140, 47, 2013), ('Knightfall', 936, 48, 2012), ('Knightfall', 1322, 48, 2013), ('knightfall', 633, 49, 2011), ('Knightfall', 809, 49, 2012), ('Knightfall', 1134, 49, 2013), ('Knightfall', 871, 50, 2012), ('Knightfall', 1255, 50, 2013), ('knightfall', 676, 51, 2011), ('Knightfall', 1025, 51, 2012), ('Knightfall', 1141, 51, 2013), ('Knightfall', 919, 52, 2012), ('Knightfall', 1142, 52, 2013), ('Knightfall', 1165, 53, 2013), ('Llama_Guy', 194, 1, 2009), ('Llama_Guy', 208, 2, 2009), ('Llama_Guy', 224, 4, 2009), ('Llama_Guy', 243, 5, 2009), ('Llama_Guy', 232, 6, 2009), ('Llama_Guy', 196, 7, 2009), ('Llama_Guy', 214, 8, 2009), ('Llama_Guy', 167, 9, 2009), ('Llama_Guy', 165, 10, 2009), ('Llama_Guy', 185, 12, 2009), ('Llama_Guy', 271, 15, 2009), ('Llama_Guy', 284, 16, 2009), ('Llama_Guy', 216, 17, 2009), ('Llama_Guy', 203, 18, 2009), ('Llama_Guy', 240, 20, 2009), ('Llama_Guy', 238, 21, 2009), ('Llama_Guy', 187, 22, 2009), ('Llama_Guy', 200, 24, 2009), ('Llama_Guy', 263, 26, 2009), ('Llama_Guy', 229, 27, 2009), ('Llama_Guy', 181, 33, 2009), ('Llama_Guy', 251, 34, 2009), ('Llama_Guy', 292, 35, 2009), ('Llama_Guy', 169, 36, 2009), ('Llama_Guy', 277, 38, 2009), ('Llama_Guy', 301, 44, 2009), ('Lorde', 1198, 1, 2013), ('Lorde', 1243, 2, 2013), ('Lorde', 1320, 4, 2013), ('Lorde', 1226, 5, 2013), ('Lorde', 1247, 6, 2013), ('Lorde', 1250, 7, 2013), ('Lorde', 1236, 8, 2013), ('Lorde', 1171, 9, 2013), ('Lorde', 1257, 10, 2013), ('Lorde', 1137, 14, 2013), ('Lorde', 1310, 16, 2013), ('Lorde', 1175, 17, 2013), ('Lorde', 1267, 18, 2013), ('Lorde', 1180, 19, 2013), ('Lorde', 1269, 20, 2013), ('Lorde', 1230, 21, 2013), ('Lorde', 1221, 22, 2013), ('Lorde', 1187, 23, 2013), ('Lorde', 1188, 24, 2013), ('Lorde', 1276, 26, 2013), ('Lorde', 1209, 27, 2013), ('Lorde', 1279, 28, 2013), ('Lorde', 1193, 33, 2013), ('Lorde', 1333, 34, 2013), ('Lorde', 1285, 35, 2013), ('Lorde', 1334, 36, 2013), ('Lorde', 1161, 37, 2013), ('Lorde', 1290, 38, 2013), ('Lorde', 1214, 39, 2013), ('Lorde', 1199, 40, 2013), ('Lorde', 1307, 41, 2013), ('Lorde', 1151, 42, 2013), ('Lorde', 1189, 43, 2013), ('Lorde', 1283, 45, 2013), ('Lorde', 1262, 46, 2013), ('Lorde', 1322, 48, 2013), ('Lorde', 1134, 49, 2013), ('Lorde', 1172, 50, 2013), ('Lorde', 1264, 51, 2013), ('Lorde', 1178, 52, 2013), ('Lorde', 1324, 53, 2013), ('Lucario Hero', 2, 1, 2008), ('Lucario Hero', 13, 2, 2008), ('Lucario Hero', 20, 4, 2008), ('Lucario Hero', 25, 5, 2008), ('Lucario Hero', 42, 8, 2008), ('Lucario Hero', 44, 9, 2008), ('Lucario Hero', 49, 10, 2008), ('Lucario Hero', 54, 12, 2008), ('Lucario Hero', 59, 13, 2008), ('Lucario Hero', 62, 14, 2008), ('Lucario Hero', 63, 15, 2008), ('Lucario Hero', 66, 16, 2008), ('Lucario Hero', 67, 17, 2008), ('Lucario Hero', 72, 18, 2008), ('Lucario Hero', 77, 20, 2008), ('Lucario Hero', 83, 21, 2008), ('Lucario Hero', 87, 22, 2008), ('Lucario Hero', 88, 23, 2008), ('Lucario Hero', 92, 24, 2008), ('Lucario Hero', 100, 26, 2008), ('Lucario Hero', 102, 27, 2008), ('Lucario Hero', 105, 28, 2008), ('Lucario Hero', 106, 29, 2008), ('Lucario Hero', 107, 30, 2008), ('Lucario Hero', 108, 31, 2008), ('Lucario Hero', 110, 32, 2008), ('Lucario Hero', 112, 33, 2008), ('Lucario Hero', 115, 34, 2008), ('Lucario Hero', 120, 35, 2008), ('Lucario Hero', 124, 36, 2008), ('Lucario Hero', 132, 37, 2008), ('Lucario Hero', 133, 38, 2008), ('Lucario Hero', 137, 39, 2008), ('mageslayer99', 305, 1, 2009), ('mageslayer99', 280, 2, 2009), ('mageslayer99', 159, 4, 2009), ('mageslayer99', 184, 7, 2009), ('mageslayer99', 165, 10, 2009), ('mageslayer99', 185, 12, 2009), ('mageslayer99', 272, 13, 2009), ('mageslayer99', 246, 14, 2009), ('mageslayer99', 244, 18, 2009), ('mageslayer99', 256, 19, 2009), ('mageslayer99', 182, 20, 2009), ('mageslayer99', 233, 24, 2009), ('mageslayer99', 226, 26, 2009), ('mageslayer99', 236, 27, 2009), ('mageslayer99', 306, 32, 2009), ('mageslayer99', 181, 33, 2009), ('mageslayer99', 204, 35, 2009), ('mageslayer99', 170, 38, 2009), ('mageslayer99', 222, 39, 2009), ('mageslayer99', 245, 41, 2009), ('Mallymkun', 320, 1, 2010), ('Mallymkun', 324, 2, 2010), ('Mallymkun', 333, 4, 2010), ('Mallymkun', 341, 5, 2010), ('Mallymkun', 363, 6, 2010), ('Mallymkun', 376, 9, 2010), ('Mallymkun', 393, 17, 2010), ('Mallymkun', 429, 21, 2010), ('Mallymkun', 440, 22, 2010), ('Mallymkun', 441, 23, 2010), ('Mallymkun', 460, 26, 2010), ('Mallymkun', 470, 27, 2010), ('Mallymkun', 487, 28, 2010), ('Mallymkun', 494, 29, 2010), ('Mallymkun', 498, 30, 2010), ('Mallymkun', 508, 34, 2010), ('Mallymkun', 519, 36, 2010), ('Mallymkun', 528, 38, 2010), ('Mallymkun', 537, 39, 2010), ('Mallymkun', 365, 41, 2010), ('Mallymkun', 403, 46, 2010), ('Mallymkun', 406, 47, 2010), ('manaphyman', 5, 1, 2008), ('manaphyman', 194, 1, 2009), ('manaphyman', 313, 1, 2010), ('manaphyman', 13, 2, 2008), ('manaphyman', 14, 3, 2008), ('manaphyman', 20, 4, 2008), ('manaphyman', 224, 4, 2009), ('manaphyman', 331, 4, 2010), ('manaphyman', 29, 5, 2008), ('manaphyman', 160, 5, 2009), ('manaphyman', 339, 5, 2010), ('manaphyman', 34, 6, 2008), ('manaphyman', 210, 6, 2009), ('manaphyman', 355, 6, 2010), ('manaphyman', 38, 7, 2008), ('manaphyman', 196, 7, 2009), ('manaphyman', 349, 7, 2010), ('manaphyman', 42, 8, 2008), ('manaphyman', 214, 8, 2009), ('manaphyman', 373, 8, 2010), ('manaphyman', 47, 9, 2008), ('manaphyman', 167, 9, 2009), ('manaphyman', 378, 9, 2010), ('manaphyman', 49, 10, 2008), ('manaphyman', 197, 10, 2009), ('manaphyman', 381, 10, 2010), ('manaphyman', 55, 12, 2008), ('manaphyman', 185, 12, 2009), ('manaphyman', 59, 13, 2008), ('manaphyman', 62, 14, 2008), ('manaphyman', 246, 14, 2009), ('manaphyman', 304, 15, 2009), ('manaphyman', 64, 16, 2008), ('manaphyman', 267, 16, 2009), ('manaphyman', 386, 16, 2010), ('manaphyman', 67, 17, 2008), ('manaphyman', 198, 17, 2009), ('manaphyman', 392, 17, 2010), ('manaphyman', 72, 18, 2008), ('manaphyman', 203, 18, 2009), ('manaphyman', 74, 19, 2008), ('manaphyman', 256, 19, 2009), ('manaphyman', 77, 20, 2008), ('manaphyman', 199, 20, 2009), ('manaphyman', 86, 21, 2008), ('manaphyman', 289, 21, 2009), ('manaphyman', 87, 22, 2008), ('manaphyman', 187, 22, 2009), ('manaphyman', 436, 22, 2010), ('manaphyman', 88, 23, 2008), ('manaphyman', 248, 23, 2009), ('manaphyman', 442, 23, 2010), ('manaphyman', 93, 24, 2008), ('manaphyman', 168, 24, 2009), ('manaphyman', 100, 26, 2008), ('manaphyman', 226, 26, 2009), ('manaphyman', 463, 26, 2010), ('manaphyman', 101, 27, 2008), ('manaphyman', 236, 27, 2009), ('manaphyman', 470, 27, 2010), ('manaphyman', 105, 28, 2008), ('manaphyman', 486, 28, 2010), ('manaphyman', 106, 29, 2008), ('manaphyman', 490, 29, 2010), ('manaphyman', 546, 30, 2010), ('manaphyman', 109, 31, 2008), ('manaphyman', 111, 32, 2008), ('manaphyman', 306, 32, 2009), ('manaphyman', 112, 33, 2008), ('manaphyman', 181, 33, 2009), ('manaphyman', 117, 34, 2008), ('manaphyman', 251, 34, 2009), ('manaphyman', 509, 34, 2010), ('manaphyman', 120, 35, 2008), ('manaphyman', 292, 35, 2009), ('manaphyman', 510, 35, 2010), ('manaphyman', 126, 36, 2008), ('manaphyman', 169, 36, 2009), ('manaphyman', 519, 36, 2010), ('manaphyman', 131, 37, 2008), ('manaphyman', 202, 37, 2009), ('manaphyman', 133, 38, 2008), ('manaphyman', 277, 38, 2009), ('manaphyman', 528, 38, 2010), ('manaphyman', 137, 39, 2008), ('manaphyman', 189, 39, 2009), ('manaphyman', 537, 39, 2010), ('manaphyman', 172, 41, 2009), ('manaphyman', 364, 41, 2010), ('manaphyman', 303, 42, 2009), ('manaphyman', 455, 42, 2010), ('manaphyman', 265, 43, 2009), ('manaphyman', 452, 43, 2010), ('manaphyman', 307, 44, 2009), ('manaphyman', 482, 44, 2010), ('manaphyman', 465, 45, 2010), ('manaphyman', 404, 46, 2010), ('manaphyman', 407, 47, 2010), ('MarshtompMan', 4, 1, 2008), ('MarshtompMan', 177, 1, 2009), ('MarshtompMan', 280, 2, 2009), ('MarshtompMan', 209, 3, 2009), ('MarshtompMan', 22, 4, 2008), ('MarshtompMan', 224, 4, 2009), ('MarshtompMan', 25, 5, 2008), ('MarshtompMan', 250, 5, 2009), ('MarshtompMan', 196, 7, 2009), ('MarshtompMan', 41, 8, 2008), ('MarshtompMan', 47, 9, 2008), ('MarshtompMan', 167, 9, 2009), ('MarshtompMan', 48, 10, 2008), ('MarshtompMan', 197, 10, 2009), ('MarshtompMan', 57, 12, 2008), ('MarshtompMan', 205, 12, 2009), ('MarshtompMan', 272, 13, 2009), ('MarshtompMan', 246, 14, 2009), ('MarshtompMan', 63, 15, 2008), ('MarshtompMan', 304, 15, 2009), ('MarshtompMan', 65, 16, 2008), ('MarshtompMan', 206, 16, 2009), ('MarshtompMan', 69, 17, 2008), ('MarshtompMan', 234, 17, 2009), ('MarshtompMan', 203, 18, 2009), ('MarshtompMan', 256, 19, 2009), ('MarshtompMan', 79, 20, 2008), ('MarshtompMan', 199, 20, 2009), ('MarshtompMan', 83, 21, 2008), ('MarshtompMan', 238, 21, 2009), ('MarshtompMan', 187, 22, 2009), ('MarshtompMan', 88, 23, 2008), ('MarshtompMan', 248, 23, 2009), ('MarshtompMan', 91, 24, 2008), ('MarshtompMan', 233, 24, 2009), ('MarshtompMan', 100, 26, 2008), ('MarshtompMan', 226, 26, 2009), ('MarshtompMan', 101, 27, 2008), ('MarshtompMan', 229, 27, 2009), ('MarshtompMan', 106, 29, 2008), ('MarshtompMan', 107, 30, 2008), ('MarshtompMan', 110, 32, 2008), ('MarshtompMan', 306, 32, 2009), ('MarshtompMan', 113, 33, 2008), ('MarshtompMan', 181, 33, 2009), ('MarshtompMan', 274, 34, 2009), ('MarshtompMan', 119, 35, 2008), ('MarshtompMan', 124, 36, 2008), ('MarshtompMan', 169, 36, 2009), ('MarshtompMan', 127, 37, 2008), ('MarshtompMan', 202, 37, 2009), ('MarshtompMan', 135, 38, 2008), ('MarshtompMan', 295, 38, 2009), ('MarshtompMan', 138, 39, 2008), ('MarshtompMan', 189, 39, 2009), ('MarshtompMan', 172, 41, 2009), ('MarshtompMan', 303, 42, 2009), ('MarshtompMan', 265, 43, 2009), ('Matori', 1198, 1, 2013), ('Matori', 1234, 2, 2013), ('Matori', 1302, 4, 2013), ('Matori', 1201, 5, 2013), ('Matori', 1304, 6, 2013), ('Matori', 1236, 8, 2013), ('Matori', 1229, 9, 2013), ('Matori', 1173, 10, 2013), ('Matori', 1311, 17, 2013), ('Matori', 1238, 18, 2013), ('Matori', 1206, 19, 2013), ('Matori', 1207, 20, 2013), ('Matori', 1316, 21, 2013), ('Matori', 1317, 22, 2013), ('Matori', 1239, 24, 2013), ('Matori', 1277, 27, 2013), ('Matori', 1154, 28, 2013), ('Matori', 1240, 29, 2013), ('Matori', 1191, 30, 2013), ('Matori', 1210, 33, 2013), ('Matori', 1212, 34, 2013), ('Matori', 1286, 35, 2013), ('Matori', 1287, 36, 2013), ('Matori', 1162, 38, 2013), ('Matori', 1214, 39, 2013), ('Matori', 1204, 41, 2013), ('Matori', 1190, 43, 2013), ('Matori', 1139, 46, 2013), ('Matori', 1205, 50, 2013), ('Matori', 1312, 51, 2013), ('Matori', 1324, 53, 2013), ('mattman324', 223, 1, 2009), ('mattman324', 193, 3, 2009), ('mattman324', 250, 5, 2009), ('mattman324', 249, 7, 2009), ('mattman324', 230, 8, 2009), ('mattman324', 197, 10, 2009), ('mattman324', 192, 12, 2009), ('mattman324', 272, 13, 2009), ('mattman324', 246, 14, 2009), ('mattman324', 304, 15, 2009), ('mattman324', 286, 17, 2009), ('mattman324', 203, 18, 2009), ('mattman324', 256, 19, 2009), ('mattman324', 182, 20, 2009), ('mattman324', 289, 21, 2009), ('mattman324', 248, 23, 2009), ('mattman324', 233, 24, 2009), ('mattman324', 188, 26, 2009), ('mattman324', 229, 27, 2009), ('mattman324', 306, 32, 2009), ('mattman324', 181, 33, 2009), ('mattman324', 274, 34, 2009), ('mattman324', 292, 35, 2009), ('mattman324', 169, 36, 2009), ('mattman324', 202, 37, 2009), ('mattman324', 295, 38, 2009), ('mattman324', 296, 39, 2009), ('mattman324', 255, 40, 2009), ('mattman324', 303, 42, 2009), ('mattman324', 265, 43, 2009), ('Metal Bagon', 549, 1, 2011), ('Metal Bagon', 577, 4, 2011), ('Metal Bagon', 588, 5, 2011), ('Metal Bagon', 600, 6, 2011), ('Metal Bagon', 611, 7, 2011), ('Metal Bagon', 620, 8, 2011), ('Metal Bagon', 625, 9, 2011), ('Metal Bagon', 641, 10, 2011), ('Metal Bagon', 644, 16, 2011), ('Metal Bagon', 653, 17, 2011), ('Metal Bagon', 683, 19, 2011), ('Metal Bagon', 697, 21, 2011), ('Metal Bagon', 704, 22, 2011), ('Metal Bagon', 712, 23, 2011), ('Metal Bagon', 716, 24, 2011), ('Metal Bagon', 730, 26, 2011), ('Metal Bagon', 737, 27, 2011), ('Metal Bagon', 745, 30, 2011), ('Metal Bagon', 754, 33, 2011), ('Metal Bagon', 756, 34, 2011), ('Metal Bagon', 762, 35, 2011), ('Metal Bagon', 769, 36, 2011), ('Metal Bagon', 771, 37, 2011), ('Metal Bagon', 575, 40, 2011), ('Metal Bagon', 614, 41, 2011), ('Metal Bagon', 726, 42, 2011), ('Metal Bagon', 752, 45, 2011), ('Metal Bagon', 667, 47, 2011), ('Metal Bagon', 606, 48, 2011), ('Metal Bagon', 632, 49, 2011), ('Metal Bagon', 676, 51, 2011), ('miler567', 1, 1, 2008), ('miler567', 9, 2, 2008), ('miler567', 21, 4, 2008), ('miler567', 25, 5, 2008), ('miler567', 35, 6, 2008), ('miler567', 38, 7, 2008), ('miler567', 41, 8, 2008), ('miler567', 45, 9, 2008), ('miler567', 49, 10, 2008), ('miler567', 50, 11, 2008), ('miler567', 57, 12, 2008), ('miler567', 59, 13, 2008), ('miler567', 61, 14, 2008), ('miler567', 63, 15, 2008), ('miler567', 65, 16, 2008), ('miler567', 69, 17, 2008), ('miler567', 113, 33, 2008), ('miler567', 114, 34, 2008), ('miler567', 122, 35, 2008), ('miler567', 125, 36, 2008), ('miler567', 130, 37, 2008), ('miler567', 133, 38, 2008), ('miler567', 139, 39, 2008), ('Missingno. Master', 554, 1, 2011), ('Missingno. Master', 1071, 1, 2012), ('Missingno. Master', 566, 2, 2011), ('Missingno. Master', 579, 4, 2011), ('Missingno. Master', 1073, 4, 2012), ('Missingno. Master', 589, 5, 2011), ('Missingno. Master', 866, 5, 2012), ('Missingno. Master', 597, 6, 2011), ('Missingno. Master', 806, 7, 2012), ('Missingno. Master', 641, 10, 2011), ('Missingno. Master', 648, 14, 2011), ('Missingno. Master', 828, 14, 2012), ('Missingno. Master', 872, 16, 2012), ('Missingno. Master', 655, 17, 2011), ('Missingno. Master', 856, 17, 2012), ('Missingno. Master', 678, 18, 2011), ('Missingno. Master', 811, 18, 2012), ('Missingno. Master', 681, 19, 2011), ('Missingno. Master', 688, 20, 2011), ('Missingno. Master', 1074, 20, 2012), ('Missingno. Master', 697, 21, 2011), ('Missingno. Master', 1076, 21, 2012), ('Missingno. Master', 705, 22, 2011), ('Missingno. Master', 1077, 22, 2012), ('Missingno. Master', 715, 23, 2011), ('Missingno. Master', 717, 24, 2011), ('Missingno. Master', 731, 26, 2011), ('Missingno. Master', 1078, 26, 2012), ('Missingno. Master', 735, 27, 2011), ('Missingno. Master', 964, 27, 2012), ('Missingno. Master', 741, 28, 2011), ('Missingno. Master', 801, 28, 2012), ('Missingno. Master', 743, 29, 2011), ('Missingno. Master', 844, 29, 2012), ('Missingno. Master', 745, 30, 2011), ('Missingno. Master', 906, 30, 2012), ('Missingno. Master', 1081, 33, 2012), ('Missingno. Master', 756, 34, 2011), ('Missingno. Master', 858, 34, 2012), ('Missingno. Master', 763, 35, 2011), ('Missingno. Master', 767, 36, 2011), ('Missingno. Master', 972, 36, 2012), ('Missingno. Master', 772, 37, 2011), ('Missingno. Master', 775, 38, 2011), ('Missingno. Master', 1054, 38, 2012), ('Missingno. Master', 780, 39, 2011), ('Missingno. Master', 575, 40, 2011), ('Missingno. Master', 614, 41, 2011), ('Missingno. Master', 938, 41, 2012), ('Missingno. Master', 962, 42, 2012), ('Missingno. Master', 722, 43, 2011), ('Missingno. Master', 752, 45, 2011), ('Missingno. Master', 661, 46, 2011), ('Missingno. Master', 667, 47, 2011), ('Missingno. Master', 948, 47, 2012), ('Missingno. Master', 604, 48, 2011), ('Missingno. Master', 805, 50, 2012), ('Missingno. Master', 676, 51, 2011), ('Missingno. Master', 832, 52, 2012), ('Mogar', 1224, 1, 2013), ('Mogar', 1294, 2, 2013), ('Mogar', 1320, 4, 2013), ('Mogar', 1128, 5, 2013), ('Mogar', 1168, 6, 2013), ('Mogar', 1217, 7, 2013), ('Mogar', 1326, 8, 2013), ('Mogar', 1133, 9, 2013), ('Mogar', 1257, 10, 2013), ('Mogar', 1137, 14, 2013), ('Mogar', 1174, 16, 2013), ('Mogar', 1175, 17, 2013), ('Mogar', 1180, 19, 2013), ('Mogar', 1145, 20, 2013), ('Mogar', 1331, 21, 2013), ('Mogar', 1185, 22, 2013), ('Mogar', 1186, 23, 2013), ('Mogar', 1209, 27, 2013), ('Mogar', 1279, 28, 2013), ('Mogar', 1193, 33, 2013), ('Mogar', 1233, 34, 2013), ('Mogar', 1159, 35, 2013), ('Mogar', 1213, 36, 2013), ('Mogar', 1288, 37, 2013), ('Mogar', 1162, 38, 2013), ('Mogar', 1163, 39, 2013), ('Mogar', 1199, 40, 2013), ('Mogar', 1218, 41, 2013), ('Mogar', 1150, 43, 2013), ('Mogar', 1192, 45, 2013), ('Mogar', 1262, 46, 2013), ('Mogar', 1330, 47, 2013), ('Mogar', 1203, 48, 2013), ('Mogar', 1312, 51, 2013), ('Mogar', 1266, 52, 2013), ('Mogar', 1242, 53, 2013), ('moonlightning', 321, 1, 2010), ('moonlightning', 547, 1, 2011), ('moonlightning', 327, 2, 2010), ('moonlightning', 565, 2, 2011), ('moonlightning', 328, 3, 2010), ('moonlightning', 346, 5, 2010), ('moonlightning', 353, 7, 2010), ('moonlightning', 373, 8, 2010), ('moonlightning', 618, 8, 2011), ('moonlightning', 379, 9, 2010), ('moonlightning', 626, 9, 2011), ('moonlightning', 384, 10, 2010), ('moonlightning', 641, 10, 2011), ('moonlightning', 645, 14, 2011), ('moonlightning', 390, 16, 2010), ('moonlightning', 642, 16, 2011), ('moonlightning', 391, 17, 2010), ('moonlightning', 416, 18, 2010), ('moonlightning', 677, 18, 2011), ('moonlightning', 420, 19, 2010), ('moonlightning', 426, 20, 2010), ('moonlightning', 692, 20, 2011), ('moonlightning', 429, 21, 2010), ('moonlightning', 698, 21, 2011), ('moonlightning', 439, 22, 2010), ('moonlightning', 709, 22, 2011), ('moonlightning', 442, 23, 2010), ('moonlightning', 714, 23, 2011), ('moonlightning', 448, 24, 2010), ('moonlightning', 718, 24, 2011), ('moonlightning', 460, 26, 2010), ('moonlightning', 730, 26, 2011), ('moonlightning', 473, 27, 2010), ('moonlightning', 737, 27, 2011), ('moonlightning', 488, 28, 2010), ('moonlightning', 741, 28, 2011), ('moonlightning', 500, 30, 2010), ('moonlightning', 747, 30, 2011), ('moonlightning', 754, 33, 2011), ('moonlightning', 505, 34, 2010), ('moonlightning', 758, 34, 2011), ('moonlightning', 764, 35, 2011), ('moonlightning', 520, 36, 2010), ('moonlightning', 770, 36, 2011), ('moonlightning', 525, 37, 2010), ('moonlightning', 773, 37, 2011), ('moonlightning', 776, 38, 2011), ('moonlightning', 544, 39, 2010), ('moonlightning', 779, 39, 2011), ('moonlightning', 329, 40, 2010), ('moonlightning', 365, 41, 2010), ('moonlightning', 616, 41, 2011), ('moonlightning', 453, 43, 2010), ('moonlightning', 723, 43, 2011), ('moonlightning', 483, 44, 2010), ('moonlightning', 750, 44, 2011), ('moonlightning', 752, 45, 2011), ('moonlightning', 404, 46, 2010), ('moonlightning', 665, 46, 2011), ('moonlightning', 411, 47, 2010), ('moonlightning', 670, 47, 2011), ('morningsun', 853, 1, 2012), ('morningsun', 902, 2, 2012), ('morningsun', 903, 4, 2012), ('morningsun', 1018, 5, 2012), ('morningsun', 1019, 6, 2012), ('morningsun', 1087, 9, 2012), ('morningsun', 1021, 10, 2012), ('morningsun', 998, 16, 2012), ('morningsun', 856, 17, 2012), ('morningsun', 857, 20, 2012), ('morningsun', 1077, 22, 2012), ('morningsun', 1091, 26, 2012), ('morningsun', 1006, 28, 2012), ('morningsun', 906, 30, 2012), ('morningsun', 797, 34, 2012), ('morningsun', 859, 35, 2012), ('morningsun', 1043, 36, 2012), ('morningsun', 982, 37, 2012), ('morningsun', 793, 38, 2012), ('morningsun', 910, 39, 2012), ('morningsun', 913, 40, 2012), ('morningsun', 1035, 41, 2012), ('morningsun', 1093, 45, 2012), ('morningsun', 1063, 46, 2012), ('morningsun', 874, 47, 2012), ('morningsun', 1020, 49, 2012), ('morningsun', 1000, 51, 2012), ('Morpher01', 4, 1, 2008), ('Morpher01', 14, 3, 2008), ('Morpher01', 21, 4, 2008), ('Morpher01', 25, 5, 2008), ('Morpher01', 33, 6, 2008), ('Morpher01', 48, 10, 2008), ('Morpher01', 54, 12, 2008), ('Morpher01', 59, 13, 2008), ('Morpher01', 68, 17, 2008), ('Morpher01', 85, 21, 2008), ('Morpher01', 87, 22, 2008), ('Morpher01', 91, 24, 2008), ('Morpher01', 100, 26, 2008), ('Morpher01', 101, 27, 2008), ('Morpher01', 113, 33, 2008), ('Morpher01', 117, 34, 2008), ('Morpher01', 123, 35, 2008), ('Morpher01', 126, 36, 2008), ('Morpher01', 127, 37, 2008), ('Morpher01', 136, 38, 2008), ('Morpher01', 137, 39, 2008), ('Mrs. Lovett', 305, 1, 2009), ('Mrs. Lovett', 320, 1, 2010), ('Mrs. Lovett', 280, 2, 2009), ('Mrs. Lovett', 324, 2, 2010), ('Mrs. Lovett', 209, 3, 2009), ('Mrs. Lovett', 328, 3, 2010), ('Mrs. Lovett', 224, 4, 2009), ('Mrs. Lovett', 337, 4, 2010), ('Mrs. Lovett', 243, 5, 2009), ('Mrs. Lovett', 341, 5, 2010), ('Mrs. Lovett', 269, 6, 2009), ('Mrs. Lovett', 357, 6, 2010), ('Mrs. Lovett', 196, 7, 2009), ('Mrs. Lovett', 348, 7, 2010), ('Mrs. Lovett', 282, 8, 2009), ('Mrs. Lovett', 372, 8, 2010), ('Mrs. Lovett', 239, 9, 2009), ('Mrs. Lovett', 378, 9, 2010), ('Mrs. Lovett', 165, 10, 2009), ('Mrs. Lovett', 383, 10, 2010), ('Mrs. Lovett', 205, 12, 2009), ('Mrs. Lovett', 272, 13, 2009), ('Mrs. Lovett', 246, 14, 2009), ('Mrs. Lovett', 304, 15, 2009), ('Mrs. Lovett', 206, 16, 2009), ('Mrs. Lovett', 388, 16, 2010), ('Mrs. Lovett', 234, 17, 2009), ('Mrs. Lovett', 395, 17, 2010), ('Mrs. Lovett', 203, 18, 2009), ('Mrs. Lovett', 416, 18, 2010), ('Mrs. Lovett', 256, 19, 2009), ('Mrs. Lovett', 420, 19, 2010), ('Mrs. Lovett', 199, 20, 2009), ('Mrs. Lovett', 426, 20, 2010), ('Mrs. Lovett', 289, 21, 2009), ('Mrs. Lovett', 428, 21, 2010), ('Mrs. Lovett', 173, 22, 2009), ('Mrs. Lovett', 439, 22, 2010), ('Mrs. Lovett', 248, 23, 2009), ('Mrs. Lovett', 447, 23, 2010), ('Mrs. Lovett', 200, 24, 2009), ('Mrs. Lovett', 449, 24, 2010), ('Mrs. Lovett', 226, 26, 2009), ('Mrs. Lovett', 460, 26, 2010), ('Mrs. Lovett', 229, 27, 2009), ('Mrs. Lovett', 474, 27, 2010), ('Mrs. Lovett', 486, 28, 2010), ('Mrs. Lovett', 494, 29, 2010), ('Mrs. Lovett', 500, 30, 2010), ('Mrs. Lovett', 306, 32, 2009), ('Mrs. Lovett', 181, 33, 2009), ('Mrs. Lovett', 478, 33, 2010), ('Mrs. Lovett', 201, 34, 2009), ('Mrs. Lovett', 508, 34, 2010), ('Mrs. Lovett', 204, 35, 2009), ('Mrs. Lovett', 514, 35, 2010), ('Mrs. Lovett', 169, 36, 2009), ('Mrs. Lovett', 520, 36, 2010), ('Mrs. Lovett', 202, 37, 2009), ('Mrs. Lovett', 524, 37, 2010), ('Mrs. Lovett', 300, 38, 2009), ('Mrs. Lovett', 528, 38, 2010), ('Mrs. Lovett', 189, 39, 2009), ('Mrs. Lovett', 537, 39, 2010), ('Mrs. Lovett', 255, 40, 2009), ('Mrs. Lovett', 329, 40, 2010), ('Mrs. Lovett', 172, 41, 2009), ('Mrs. Lovett', 366, 41, 2010), ('Mrs. Lovett', 303, 42, 2009), ('Mrs. Lovett', 456, 42, 2010), ('Mrs. Lovett', 265, 43, 2009), ('Mrs. Lovett', 453, 43, 2010), ('Mrs. Lovett', 301, 44, 2009), ('Mrs. Lovett', 481, 44, 2010), ('Mrs. Lovett', 466, 45, 2010), ('Mrs. Lovett', 403, 46, 2010), ('Mrs. Lovett', 406, 47, 2010), ('NACHOE!', 561, 1, 2011), ('NACHOE!', 565, 2, 2011), ('NACHOE!', 577, 4, 2011), ('NACHOE!', 590, 5, 2011), ('NACHOE!', 600, 6, 2011), ('NACHOE!', 610, 7, 2011), ('NACHOE!', 621, 8, 2011), ('NACHOE!', 626, 9, 2011), ('NACHOE!', 649, 14, 2011), ('NACHOE!', 659, 17, 2011), ('NACHOE!', 684, 19, 2011), ('NACHOE!', 694, 20, 2011), ('NACHOE!', 701, 21, 2011), ('NACHOE!', 707, 22, 2011), ('NACHOE!', 732, 26, 2011), ('NACHOE!', 734, 27, 2011), ('NACHOE!', 739, 28, 2011), ('NACHOE!', 743, 29, 2011), ('NACHOE!', 753, 33, 2011), ('NACHOE!', 758, 34, 2011), ('NACHOE!', 765, 35, 2011), ('NACHOE!', 767, 36, 2011), ('NACHOE!', 776, 38, 2011), ('NACHOE!', 782, 39, 2011), ('NACHOE!', 613, 41, 2011), ('NACHOE!', 632, 49, 2011), ('NACHOE!', 637, 50, 2011), ('Negrek', 1126, 2, 2013), ('Negrek', 1166, 4, 2013), ('Negrek', 1128, 5, 2013), ('Negrek', 1168, 6, 2013), ('Negrek', 1337, 7, 2013), ('Negrek', 1253, 9, 2013), ('Negrek', 1138, 17, 2013), ('Negrek', 1339, 18, 2013), ('Negrek', 1144, 19, 2013), ('Negrek', 1315, 20, 2013), ('Negrek', 1208, 26, 2013), ('Negrek', 1278, 27, 2013), ('Negrek', 1154, 28, 2013), ('Negrek', 1281, 29, 2013), ('Negrek', 1191, 30, 2013), ('Negrek', 1233, 34, 2013), ('Negrek', 1286, 35, 2013), ('Negrek', 1341, 36, 2013), ('Negrek', 1290, 38, 2013), ('Negrek', 1291, 39, 2013), ('Negrek', 1151, 42, 2013), ('Negrek', 1189, 43, 2013), ('Negrek', 1282, 44, 2013), ('Negrek', 1284, 45, 2013), ('Negrek', 1130, 48, 2013), ('Negrek', 1340, 50, 2013), ('Negrek', 1312, 51, 2013), ('Negrek', 1338, 52, 2013), ('OceanicLanturn', 853, 1, 2012), ('OceanicLanturn', 927, 2, 2012), ('OceanicLanturn', 1094, 4, 2012), ('OceanicLanturn', 854, 5, 2012), ('OceanicLanturn', 1099, 7, 2012), ('OceanicLanturn', 808, 8, 2012), ('OceanicLanturn', 807, 9, 2012), ('OceanicLanturn', 828, 14, 2012), ('OceanicLanturn', 856, 17, 2012), ('OceanicLanturn', 811, 18, 2012), ('OceanicLanturn', 857, 20, 2012), ('OceanicLanturn', 1097, 21, 2012), ('OceanicLanturn', 815, 23, 2012), ('OceanicLanturn', 801, 28, 2012), ('OceanicLanturn', 966, 29, 2012), ('OceanicLanturn', 845, 30, 2012), ('OceanicLanturn', 797, 34, 2012), ('OceanicLanturn', 1012, 35, 2012), ('OceanicLanturn', 1043, 36, 2012), ('OceanicLanturn', 793, 38, 2012), ('OceanicLanturn', 910, 39, 2012), ('OceanicLanturn', 805, 50, 2012), ('OceanicLanturn', 810, 52, 2012), ('Osha Say What?', 551, 1, 2011), ('Osha Say What?', 578, 4, 2011), ('Osha Say What?', 587, 5, 2011), ('Osha Say What?', 597, 6, 2011), ('Osha Say What?', 611, 7, 2011), ('Osha Say What?', 641, 10, 2011), ('Osha Say What?', 642, 16, 2011), ('Osha Say What?', 654, 17, 2011), ('Osha Say What?', 678, 18, 2011), ('Osha Say What?', 686, 20, 2011), ('Osha Say What?', 700, 21, 2011), ('Osha Say What?', 704, 22, 2011), ('Osha Say What?', 712, 23, 2011), ('Osha Say What?', 716, 24, 2011), ('Osha Say What?', 729, 26, 2011), ('Osha Say What?', 737, 27, 2011), ('Osha Say What?', 754, 33, 2011), ('Osha Say What?', 760, 34, 2011), ('Osha Say What?', 763, 35, 2011), ('Osha Say What?', 769, 36, 2011), ('Osha Say What?', 775, 38, 2011), ('Osha Say What?', 780, 39, 2011), ('Osha Say What?', 614, 41, 2011), ('Osha Say What?', 726, 42, 2011), ('Osha Say What?', 724, 43, 2011), ('Osha Say What?', 665, 46, 2011), ('Osha Say What?', 669, 47, 2011), ('Osha Say What?', 633, 49, 2011), ('Osha Say What?', 676, 51, 2011), ('PerseusRad', 551, 1, 2011), ('PerseusRad', 578, 4, 2011), ('PerseusRad', 588, 5, 2011), ('PerseusRad', 611, 7, 2011), ('PerseusRad', 654, 17, 2011), ('PerseusRad', 704, 22, 2011), ('PerseusRad', 712, 23, 2011), ('PerseusRad', 716, 24, 2011), ('PerseusRad', 727, 26, 2011), ('PerseusRad', 737, 27, 2011), ('PerseusRad', 745, 30, 2011), ('PerseusRad', 754, 33, 2011), ('PerseusRad', 756, 34, 2011), ('PerseusRad', 762, 35, 2011), ('PerseusRad', 769, 36, 2011), ('PerseusRad', 771, 37, 2011), ('PerseusRad', 775, 38, 2011), ('PerseusRad', 780, 39, 2011), ('PerseusRad', 726, 42, 2011), ('PerseusRad', 724, 43, 2011), ('PerseusRad', 751, 44, 2011), ('PerseusRad', 752, 45, 2011), ('PerseusRad', 673, 47, 2011), ('PerseusRad', 633, 49, 2011), ('PerseusRad', 676, 51, 2011), ('PhalanxSigil', 1293, 1, 2013), ('PhalanxSigil', 1234, 2, 2013), ('PhalanxSigil', 1302, 4, 2013), ('PhalanxSigil', 1128, 5, 2013), ('PhalanxSigil', 1247, 6, 2013), ('PhalanxSigil', 1216, 7, 2013), ('PhalanxSigil', 1236, 8, 2013), ('PhalanxSigil', 1253, 9, 2013), ('PhalanxSigil', 1173, 10, 2013), ('PhalanxSigil', 1137, 14, 2013), ('PhalanxSigil', 1310, 16, 2013), ('PhalanxSigil', 1261, 17, 2013), ('PhalanxSigil', 1267, 18, 2013), ('PhalanxSigil', 1179, 19, 2013), ('PhalanxSigil', 1181, 20, 2013), ('PhalanxSigil', 1184, 21, 2013), ('PhalanxSigil', 1295, 22, 2013), ('PhalanxSigil', 1296, 23, 2013), ('PhalanxSigil', 1239, 24, 2013), ('PhalanxSigil', 1275, 26, 2013), ('PhalanxSigil', 1277, 27, 2013), ('PhalanxSigil', 1154, 28, 2013), ('PhalanxSigil', 1232, 29, 2013), ('PhalanxSigil', 1191, 30, 2013), ('PhalanxSigil', 1193, 33, 2013), ('PhalanxSigil', 1233, 34, 2013), ('PhalanxSigil', 1285, 35, 2013), ('PhalanxSigil', 1341, 36, 2013), ('PhalanxSigil', 1288, 37, 2013), ('PhalanxSigil', 1162, 38, 2013), ('PhalanxSigil', 1291, 39, 2013), ('PhalanxSigil', 1307, 41, 2013), ('PhalanxSigil', 1151, 42, 2013), ('PhalanxSigil', 1189, 43, 2013), ('PhalanxSigil', 1282, 44, 2013), ('PhalanxSigil', 1283, 45, 2013), ('PhalanxSigil', 1237, 46, 2013), ('PhalanxSigil', 1140, 47, 2013), ('PhalanxSigil', 1249, 48, 2013), ('PhalanxSigil', 1297, 49, 2013), ('PhalanxSigil', 1298, 50, 2013), ('PhalanxSigil', 1312, 51, 2013), ('PhalanxSigil', 1178, 52, 2013), ('PhalanxSigil', 1241, 53, 2013), ('pin', 1198, 1, 2013), ('pin', 1294, 2, 2013), ('pin', 1245, 4, 2013), ('pin', 1303, 5, 2013), ('pin', 1167, 6, 2013), ('pin', 1216, 7, 2013), ('pin', 1326, 8, 2013), ('pin', 1253, 9, 2013), ('pin', 1257, 10, 2013), ('pin', 1258, 14, 2013), ('pin', 1310, 16, 2013), ('pin', 1175, 17, 2013), ('pin', 1145, 20, 2013), ('pin', 1153, 27, 2013), ('pin', 1155, 29, 2013), ('pin', 1212, 34, 2013), ('pin', 1287, 36, 2013), ('pin', 1252, 41, 2013), ('pin', 1330, 47, 2013), ('pin', 1203, 48, 2013), ('pin', 1297, 49, 2013), ('pin', 1220, 52, 2013), ('pin', 1241, 53, 2013), ('Pink Harzard', 1318, 1, 2013), ('Pink Harzard', 1126, 2, 2013), ('Pink Harzard', 1320, 4, 2013), ('Pink Harzard', 1128, 5, 2013), ('Pink Harzard', 1168, 6, 2013), ('Pink Harzard', 1217, 7, 2013), ('Pink Harzard', 1219, 8, 2013), ('Pink Harzard', 1253, 9, 2013), ('Pink Harzard', 1173, 10, 2013), ('Pink Harzard', 1137, 14, 2013), ('Pink Harzard', 1328, 16, 2013), ('Pink Harzard', 1261, 17, 2013), ('Pink Harzard', 1314, 18, 2013), ('Pink Harzard', 1180, 19, 2013), ('Pink Harzard', 1181, 20, 2013), ('Pink Harzard', 1183, 21, 2013), ('Pink Harzard', 1147, 22, 2013), ('Pink Harzard', 1148, 23, 2013), ('Pink Harzard', 1222, 24, 2013), ('Pink Harzard', 1276, 26, 2013), ('Pink Harzard', 1209, 27, 2013), ('Pink Harzard', 1154, 28, 2013), ('Pink Harzard', 1281, 29, 2013), ('Pink Harzard', 1193, 33, 2013), ('Pink Harzard', 1158, 34, 2013), ('Pink Harzard', 1341, 36, 2013), ('Pink Harzard', 1288, 37, 2013), ('Pink Harzard', 1290, 38, 2013), ('Pink Harzard', 1335, 39, 2013), ('Pink Harzard', 1307, 41, 2013), ('Pink Harzard', 1189, 43, 2013), ('Pink Harzard', 1282, 44, 2013), ('Pink Harzard', 1323, 45, 2013), ('Pink Harzard', 1237, 46, 2013), ('Pink Harzard', 1140, 47, 2013), ('Pink Harzard', 1322, 48, 2013), ('Pink Harzard', 1172, 50, 2013), ('Pink Harzard', 1312, 51, 2013), ('Pink Harzard', 1266, 52, 2013), ('Pink Harzard', 1165, 53, 2013), ('Pink Parka Girl', 1, 1, 2008), ('Pink Parka Girl', 10, 2, 2008), ('Pink Parka Girl', 20, 4, 2008), ('Pink Parka Girl', 29, 5, 2008), ('Pink Parka Girl', 39, 7, 2008), ('Pink Parka Girl', 42, 8, 2008), ('Pink Parka Girl', 44, 9, 2008), ('Pink Parka Girl', 48, 10, 2008), ('Pink Parka Girl', 54, 12, 2008), ('Pink Parka Girl', 61, 14, 2008), ('Pink Parka Girl', 64, 16, 2008), ('Pink Parka Girl', 70, 17, 2008), ('Pink Parka Girl', 74, 19, 2008), ('Pink Parka Girl', 80, 20, 2008), ('Pink Parka Girl', 92, 24, 2008), ('Pink Parka Girl', 97, 26, 2008), ('Pink Parka Girl', 102, 27, 2008), ('Pink Parka Girl', 109, 31, 2008), ('Pink Parka Girl', 110, 32, 2008), ('Pink Parka Girl', 112, 33, 2008), ('Pink Parka Girl', 115, 34, 2008), ('Pink Parka Girl', 119, 35, 2008), ('Pink Parka Girl', 126, 36, 2008), ('Pink Parka Girl', 131, 37, 2008), ('Pink Parka Girl', 133, 38, 2008), ('Pink Parka Girl', 137, 39, 2008), ('PiplupKing', 6, 1, 2008), ('PiplupKing', 12, 2, 2008), ('PiplupKing', 16, 3, 2008), ('PiplupKing', 18, 4, 2008), ('PiplupKing', 28, 5, 2008), ('PiplupKing', 33, 6, 2008), ('PiplupKing', 39, 7, 2008), ('PiplupKing', 41, 8, 2008), ('PiplupKing', 45, 9, 2008), ('PiplupKing', 49, 10, 2008), ('PiplupKing', 50, 11, 2008), ('PiplupKing', 52, 12, 2008), ('PiplupKing', 62, 14, 2008), ('PiplupKing', 63, 15, 2008), ('PiplupKing', 64, 16, 2008), ('PiplupKing', 76, 20, 2008), ('PiplupKing', 86, 21, 2008), ('PiplupKing', 88, 23, 2008), ('PiplupKing', 98, 26, 2008), ('PiplupKing', 103, 27, 2008), ('PiplupKing', 107, 30, 2008), ('PiplupKing', 109, 31, 2008), ('PiplupKing', 110, 32, 2008), ('PiplupKing', 113, 33, 2008), ('PiplupKing', 116, 34, 2008), ('PiplupKing', 121, 35, 2008), ('PiplupKing', 126, 36, 2008), ('PiplupKing', 130, 37, 2008), ('PiplupKing', 135, 38, 2008), ('PiplupKing', 138, 39, 2008), ('Pkmn Breeder Jack', 280, 2, 2009), ('Pkmn Breeder Jack', 14, 3, 2008), ('Pkmn Breeder Jack', 209, 3, 2009), ('Pkmn Breeder Jack', 224, 4, 2009), ('Pkmn Breeder Jack', 160, 5, 2009), ('Pkmn Breeder Jack', 232, 6, 2009), ('Pkmn Breeder Jack', 38, 7, 2008), ('Pkmn Breeder Jack', 184, 7, 2009), ('Pkmn Breeder Jack', 215, 8, 2009), ('Pkmn Breeder Jack', 197, 10, 2009), ('Pkmn Breeder Jack', 50, 11, 2008), ('Pkmn Breeder Jack', 55, 12, 2008), ('Pkmn Breeder Jack', 185, 12, 2009), ('Pkmn Breeder Jack', 59, 13, 2008), ('Pkmn Breeder Jack', 272, 13, 2009), ('Pkmn Breeder Jack', 60, 14, 2008), ('Pkmn Breeder Jack', 246, 14, 2009), ('Pkmn Breeder Jack', 63, 15, 2008), ('Pkmn Breeder Jack', 259, 15, 2009), ('Pkmn Breeder Jack', 64, 16, 2008), ('Pkmn Breeder Jack', 67, 17, 2008), ('Pkmn Breeder Jack', 203, 18, 2009), ('Pkmn Breeder Jack', 74, 19, 2008), ('Pkmn Breeder Jack', 256, 19, 2009), ('Pkmn Breeder Jack', 78, 20, 2008), ('Pkmn Breeder Jack', 199, 20, 2009), ('Pkmn Breeder Jack', 238, 21, 2009), ('Pkmn Breeder Jack', 87, 22, 2008), ('Pkmn Breeder Jack', 187, 22, 2009), ('Pkmn Breeder Jack', 88, 23, 2008), ('Pkmn Breeder Jack', 248, 23, 2009), ('Pkmn Breeder Jack', 92, 24, 2008), ('Pkmn Breeder Jack', 168, 24, 2009), ('Pkmn Breeder Jack', 98, 26, 2008), ('Pkmn Breeder Jack', 226, 26, 2009), ('Pkmn Breeder Jack', 236, 27, 2009), ('Pkmn Breeder Jack', 105, 28, 2008), ('Pkmn Breeder Jack', 106, 29, 2008), ('Pkmn Breeder Jack', 107, 30, 2008), ('Pkmn Breeder Jack', 108, 31, 2008), ('Pkmn Breeder Jack', 110, 32, 2008), ('Pkmn Breeder Jack', 306, 32, 2009), ('Pkmn Breeder Jack', 112, 33, 2008), ('Pkmn Breeder Jack', 181, 33, 2009), ('Pkmn Breeder Jack', 116, 34, 2008), ('Pkmn Breeder Jack', 251, 34, 2009), ('Pkmn Breeder Jack', 204, 35, 2009), ('Pkmn Breeder Jack', 125, 36, 2008), ('Pkmn Breeder Jack', 179, 36, 2009), ('Pkmn Breeder Jack', 202, 37, 2009), ('Pkmn Breeder Jack', 136, 38, 2008), ('Pkmn Breeder Jack', 174, 38, 2009), ('Pkmn Breeder Jack', 139, 39, 2008), ('Pkmn Breeder Jack', 189, 39, 2009), ('Pkmn Breeder Jack', 255, 40, 2009), ('Pkmn Breeder Jack', 161, 41, 2009), ('Pkmn Breeder Jack', 303, 42, 2009), ('Pkmn Breeder Jack', 265, 43, 2009), ('Pkmn Breeder Jack', 307, 44, 2009), ('PocketmonMaster', 1, 1, 2008), ('PocketmonMaster', 10, 2, 2008), ('PocketmonMaster', 20, 4, 2008), ('PocketmonMaster', 36, 6, 2008), ('PocketmonMaster', 39, 7, 2008), ('PocketmonMaster', 41, 8, 2008), ('PocketmonMaster', 45, 9, 2008), ('PocketmonMaster', 50, 11, 2008), ('PocketmonMaster', 55, 12, 2008), ('PocketmonMaster', 59, 13, 2008), ('PocketmonMaster', 62, 14, 2008), ('PocketmonMaster', 63, 15, 2008), ('PocketmonMaster', 64, 16, 2008), ('PocketmonMaster', 68, 17, 2008), ('PocketmonMaster', 74, 19, 2008), ('PocketmonMaster', 77, 20, 2008), ('PocketmonMaster', 83, 21, 2008), ('PocketmonMaster', 87, 22, 2008), ('PocketmonMaster', 88, 23, 2008), ('PocketmonMaster', 92, 24, 2008), ('PocketmonMaster', 100, 26, 2008), ('PocketmonMaster', 102, 27, 2008), ('PocketmonMaster', 105, 28, 2008), ('PocketmonMaster', 106, 29, 2008), ('PocketmonMaster', 107, 30, 2008), ('PocketmonMaster', 113, 33, 2008), ('PocketmonMaster', 117, 34, 2008), ('PocketmonMaster', 122, 35, 2008), ('PocketmonMaster', 133, 38, 2008), ('PocketmonMaster', 137, 39, 2008), ('pokeking325', 4, 1, 2008), ('pokeking325', 13, 2, 2008), ('pokeking325', 15, 3, 2008), ('pokeking325', 20, 4, 2008), ('pokeking325', 28, 5, 2008), ('pokeking325', 33, 6, 2008), ('pokeking325', 38, 7, 2008), ('pokeking325', 40, 8, 2008), ('pokeking325', 45, 9, 2008), ('pokeking325', 49, 10, 2008), ('pokeking325', 50, 11, 2008), ('pokeking325', 54, 12, 2008), ('pokeking325', 59, 13, 2008), ('pokeking325', 60, 14, 2008), ('pokeking325', 63, 15, 2008), ('pokeking325', 64, 16, 2008), ('pokeking325', 69, 17, 2008), ('pokeking325', 72, 18, 2008), ('pokeking325', 74, 19, 2008), ('pokeking325', 80, 20, 2008), ('pokeking325', 83, 21, 2008), ('pokeking325', 87, 22, 2008), ('pokeking325', 88, 23, 2008), ('pokeking325', 92, 24, 2008), ('pokeking325', 100, 26, 2008), ('pokeking325', 101, 27, 2008), ('pokeking325', 105, 28, 2008), ('pokeking325', 106, 29, 2008), ('pokeking325', 107, 30, 2008), ('pokeking325', 109, 31, 2008), ('pokeking325', 110, 32, 2008), ('pokeking325', 112, 33, 2008), ('pokeking325', 116, 34, 2008), ('pokeking325', 119, 35, 2008), ('pokeking325', 124, 36, 2008), ('pokeking325', 127, 37, 2008), ('pokeking325', 133, 38, 2008), ('pokeking325', 139, 39, 2008), ('PRINCIA RAMODE', 860, 1, 2012), ('PRINCIA RAMODE', 819, 2, 2012), ('PRINCIA RAMODE', 1107, 4, 2012), ('PRINCIA RAMODE', 1083, 5, 2012), ('PRINCIA RAMODE', 1060, 7, 2012), ('PRINCIA RAMODE', 1101, 8, 2012), ('PRINCIA RAMODE', 1062, 16, 2012), ('PRINCIA RAMODE', 1064, 18, 2012), ('PRINCIA RAMODE', 834, 19, 2012), ('PRINCIA RAMODE', 835, 20, 2012), ('PRINCIA RAMODE', 1067, 21, 2012), ('PRINCIA RAMODE', 1123, 22, 2012), ('PRINCIA RAMODE', 878, 23, 2012), ('PRINCIA RAMODE', 839, 24, 2012), ('PRINCIA RAMODE', 921, 26, 2012), ('PRINCIA RAMODE', 1007, 28, 2012), ('PRINCIA RAMODE', 1081, 33, 2012), ('PRINCIA RAMODE', 887, 34, 2012), ('PRINCIA RAMODE', 925, 35, 2012), ('PRINCIA RAMODE', 849, 36, 2012), ('PRINCIA RAMODE', 817, 38, 2012), ('PRINCIA RAMODE', 1016, 39, 2012), ('PRINCIA RAMODE', 994, 41, 2012), ('PRINCIA RAMODE', 1033, 42, 2012), ('PRINCIA RAMODE', 961, 43, 2012), ('PRINCIA RAMODE', 885, 45, 2012), ('PRINCIA RAMODE', 947, 46, 2012), ('PRINCIA RAMODE', 992, 48, 2012), ('PRINCIA RAMODE', 832, 52, 2012), ('Psychic', 1044, 1, 2012), ('Psychic', 927, 2, 2012), ('Psychic', 1107, 4, 2012), ('Psychic', 787, 5, 2012), ('Psychic', 822, 6, 2012), ('Psychic', 823, 7, 2012), ('Psychic', 1061, 8, 2012), ('Psychic', 807, 9, 2012), ('Psychic', 1021, 10, 2012), ('Psychic', 943, 14, 2012), ('Psychic', 998, 16, 2012), ('Psychic', 944, 17, 2012), ('Psychic', 833, 18, 2012), ('Psychic', 834, 19, 2012), ('Psychic', 1051, 21, 2012), ('Psychic', 1104, 23, 2012), ('Psychic', 1090, 26, 2012), ('Psychic', 964, 27, 2012), ('Psychic', 1006, 28, 2012), ('Psychic', 966, 29, 2012), ('Psychic', 845, 30, 2012), ('Psychic', 970, 34, 2012), ('Psychic', 1030, 36, 2012), ('Psychic', 793, 38, 2012), ('Psychic', 1016, 39, 2012), ('Psychic', 1048, 41, 2012), ('Psychic', 1052, 43, 2012), ('Psychic', 1009, 44, 2012), ('Psychic', 1093, 45, 2012), ('Psychic', 830, 46, 2012), ('Psychic', 874, 47, 2012), ('Psychic', 1108, 48, 2012), ('Psychic', 871, 50, 2012), ('quazar197', 194, 1, 2009), ('quazar197', 208, 2, 2009), ('quazar197', 159, 4, 2009), ('quazar197', 160, 5, 2009), ('quazar197', 210, 6, 2009), ('quazar197', 196, 7, 2009), ('quazar197', 282, 8, 2009), ('quazar197', 205, 12, 2009), ('quazar197', 272, 13, 2009), ('quazar197', 246, 14, 2009), ('quazar197', 259, 15, 2009), ('quazar197', 267, 16, 2009), ('quazar197', 216, 17, 2009), ('quazar197', 203, 18, 2009), ('quazar197', 238, 21, 2009), ('quazar197', 248, 23, 2009), ('quazar197', 241, 24, 2009), ('quazar197', 229, 27, 2009), ('quazar197', 306, 32, 2009), ('quazar197', 181, 33, 2009), ('quazar197', 251, 34, 2009), ('quazar197', 277, 38, 2009), ('quazar197', 222, 39, 2009), ('quazar197', 255, 40, 2009), ('quazar197', 270, 41, 2009), ('quazar197', 303, 42, 2009), ('quazar197', 265, 43, 2009), ('Raptor ruler', 6, 1, 2008), ('Raptor ruler', 9, 2, 2008), ('Raptor ruler', 14, 3, 2008), ('Raptor ruler', 22, 4, 2008), ('Raptor ruler', 30, 5, 2008), ('Raptor ruler', 33, 6, 2008), ('Raptor ruler', 40, 8, 2008), ('Raptor ruler', 46, 9, 2008), ('Raptor ruler', 50, 11, 2008), ('Raptor ruler', 54, 12, 2008), ('Raptor ruler', 64, 16, 2008), ('Raptor ruler', 68, 17, 2008), ('Raptor ruler', 72, 18, 2008), ('Raptor ruler', 74, 19, 2008), ('Raptor ruler', 77, 20, 2008), ('Raptor ruler', 83, 21, 2008), ('Raptor ruler', 88, 23, 2008), ('Raptor ruler', 92, 24, 2008), ('Raptor ruler', 97, 26, 2008), ('Raptor ruler', 102, 27, 2008), ('Raptor ruler', 105, 28, 2008), ('Raptor ruler', 106, 29, 2008), ('Raptor ruler', 107, 30, 2008), ('Raptor ruler', 108, 31, 2008), ('Raptor ruler', 111, 32, 2008), ('Raptor ruler', 112, 33, 2008), ('Raptor ruler', 118, 34, 2008), ('Raptor ruler', 119, 35, 2008), ('Raptor ruler', 124, 36, 2008), ('Raptor ruler', 132, 37, 2008), ('Rebel.JPEG', 1044, 1, 2012), ('Rebel.JPEG', 864, 4, 2012), ('Rebel.JPEG', 787, 5, 2012), ('Rebel.JPEG', 915, 6, 2012), ('Rebel.JPEG', 1047, 7, 2012), ('Rebel.JPEG', 1101, 8, 2012), ('Rebel.JPEG', 1022, 16, 2012), ('Rebel.JPEG', 812, 18, 2012), ('Rebel.JPEG', 1075, 20, 2012), ('Rebel.JPEG', 1076, 21, 2012), ('Rebel.JPEG', 815, 23, 2012), ('Rebel.JPEG', 921, 26, 2012), ('Rebel.JPEG', 882, 27, 2012), ('Rebel.JPEG', 1081, 33, 2012), ('Rebel.JPEG', 970, 34, 2012), ('Rebel.JPEG', 925, 35, 2012), ('Rebel.JPEG', 972, 36, 2012), ('Rebel.JPEG', 1054, 38, 2012), ('Rebel.JPEG', 892, 39, 2012), ('Rebel.JPEG', 1048, 41, 2012), ('Rebel.JPEG', 1105, 42, 2012), ('Rebel.JPEG', 1089, 43, 2012), ('Rebel.JPEG', 1037, 47, 2012), ('Rebel.JPEG', 804, 48, 2012), ('Rebel.JPEG', 832, 52, 2012), ('Rediamond', 316, 1, 2010), ('Rediamond', 1124, 1, 2013), ('Rediamond', 322, 2, 2010), ('Rediamond', 1243, 2, 2013), ('Rediamond', 328, 3, 2010), ('Rediamond', 336, 4, 2010), ('Rediamond', 1302, 4, 2013), ('Rediamond', 340, 5, 2010), ('Rediamond', 1321, 5, 2013), ('Rediamond', 363, 6, 2010), ('Rediamond', 1168, 6, 2013), ('Rediamond', 353, 7, 2010), ('Rediamond', 1216, 7, 2013), ('Rediamond', 1326, 8, 2013), ('Rediamond', 379, 9, 2010), ('Rediamond', 1253, 9, 2013), ('Rediamond', 382, 10, 2010), ('Rediamond', 1173, 10, 2013), ('Rediamond', 387, 16, 2010), ('Rediamond', 1174, 16, 2013), ('Rediamond', 392, 17, 2010), ('Rediamond', 1175, 17, 2013), ('Rediamond', 420, 19, 2010), ('Rediamond', 1180, 19, 2013), ('Rediamond', 426, 20, 2010), ('Rediamond', 1182, 20, 2013), ('Rediamond', 429, 21, 2010), ('Rediamond', 1183, 21, 2013), ('Rediamond', 1185, 22, 2013), ('Rediamond', 1148, 23, 2013), ('Rediamond', 448, 24, 2010), ('Rediamond', 1222, 24, 2013), ('Rediamond', 460, 26, 2010), ('Rediamond', 1152, 26, 2013), ('Rediamond', 469, 27, 2010), ('Rediamond', 1277, 27, 2013), ('Rediamond', 486, 28, 2010), ('Rediamond', 1154, 28, 2013), ('Rediamond', 1155, 29, 2013), ('Rediamond', 546, 30, 2010), ('Rediamond', 478, 33, 2010), ('Rediamond', 1193, 33, 2013), ('Rediamond', 504, 34, 2010), ('Rediamond', 1194, 34, 2013), ('Rediamond', 523, 36, 2010), ('Rediamond', 1342, 36, 2013), ('Rediamond', 524, 37, 2010), ('Rediamond', 1196, 37, 2013), ('Rediamond', 528, 38, 2010), ('Rediamond', 1162, 38, 2013), ('Rediamond', 537, 39, 2010), ('Rediamond', 1214, 39, 2013), ('Rediamond', 329, 40, 2010), ('Rediamond', 365, 41, 2010), ('Rediamond', 453, 43, 2010), ('Rediamond', 1150, 43, 2013), ('Rediamond', 1192, 45, 2013), ('Rediamond', 404, 46, 2010), ('Rediamond', 1139, 46, 2013), ('Rediamond', 411, 47, 2010), ('Rediamond', 1140, 47, 2013), ('Rediamond', 1169, 48, 2013), ('Rediamond', 1172, 50, 2013), ('Rediamond', 1312, 51, 2013), ('Rediamond', 1178, 52, 2013), ('Rediamond', 1165, 53, 2013), ('Reisude', 861, 1, 2012), ('Reisude', 928, 2, 2012), ('Reisude', 863, 3, 2012), ('Reisude', 988, 4, 2012), ('Reisude', 932, 5, 2012), ('Reisude', 867, 6, 2012), ('Reisude', 1047, 7, 2012), ('Reisude', 1101, 8, 2012), ('Reisude', 996, 9, 2012), ('Reisude', 1049, 10, 2012), ('Reisude', 828, 14, 2012), ('Reisude', 827, 16, 2012), ('Reisude', 1050, 17, 2012), ('Reisude', 1064, 18, 2012), ('Reisude', 834, 19, 2012), ('Reisude', 1074, 20, 2012), ('Reisude', 1067, 21, 2012), ('Reisude', 837, 22, 2012), ('Reisude', 878, 23, 2012), ('Reisude', 839, 24, 2012), ('Reisude', 881, 26, 2012), ('Reisude', 1065, 27, 2012), ('Reisude', 965, 28, 2012), ('Reisude', 966, 29, 2012), ('Reisude', 1066, 33, 2012), ('Reisude', 1068, 34, 2012), ('Reisude', 925, 35, 2012), ('Reisude', 889, 36, 2012), ('Reisude', 850, 37, 2012), ('Reisude', 793, 38, 2012), ('Reisude', 910, 39, 2012), ('Reisude', 913, 40, 2012), ('Reisude', 994, 41, 2012), ('Reisude', 1033, 42, 2012), ('Reisude', 879, 43, 2012), ('Reisude', 1114, 44, 2012), ('Reisude', 885, 45, 2012), ('Reisude', 946, 46, 2012), ('Reisude', 1037, 47, 2012), ('Reisude', 936, 48, 2012), ('Reisude', 1110, 50, 2012), ('Reisude', 1000, 51, 2012), ('Reisude', 832, 52, 2012), ('repoman', 320, 1, 2010), ('repoman', 325, 2, 2010), ('repoman', 328, 3, 2010), ('repoman', 338, 4, 2010), ('repoman', 340, 5, 2010), ('repoman', 363, 6, 2010), ('repoman', 348, 7, 2010), ('repoman', 372, 8, 2010), ('repoman', 376, 9, 2010), ('repoman', 385, 10, 2010), ('repoman', 386, 16, 2010), ('repoman', 394, 17, 2010), ('repoman', 412, 18, 2010), ('repoman', 419, 19, 2010), ('repoman', 425, 20, 2010), ('repoman', 431, 21, 2010), ('repoman', 440, 22, 2010), ('repoman', 447, 23, 2010), ('repoman', 450, 24, 2010), ('repoman', 462, 26, 2010), ('repoman', 472, 27, 2010), ('repoman', 487, 28, 2010), ('repoman', 496, 29, 2010), ('repoman', 546, 30, 2010), ('repoman', 477, 33, 2010), ('repoman', 505, 34, 2010), ('repoman', 511, 35, 2010), ('repoman', 519, 36, 2010), ('repoman', 527, 37, 2010), ('repoman', 329, 40, 2010), ('repoman', 365, 41, 2010), ('repoman', 455, 42, 2010), ('repoman', 452, 43, 2010), ('repoman', 482, 44, 2010), ('repoman', 467, 45, 2010), ('repoman', 400, 46, 2010), ('repoman', 406, 47, 2010), ('Resident evil', 312, 1, 2010), ('Resident evil', 325, 2, 2010), ('Resident evil', 330, 4, 2010), ('Resident evil', 340, 5, 2010), ('Resident evil', 358, 6, 2010), ('Resident evil', 351, 7, 2010), ('Resident evil', 369, 8, 2010), ('Resident evil', 382, 10, 2010), ('Resident evil', 387, 16, 2010), ('Resident evil', 393, 17, 2010), ('Resident evil', 425, 20, 2010), ('Resident evil', 429, 21, 2010), ('Resident evil', 432, 22, 2010), ('Resident evil', 443, 23, 2010), ('Resident evil', 460, 26, 2010), ('Resident evil', 471, 27, 2010), ('Resident evil', 502, 30, 2010), ('Resident evil', 478, 33, 2010), ('Resident evil', 506, 34, 2010), ('Resident evil', 511, 35, 2010), ('Resident evil', 520, 36, 2010), ('Resident evil', 524, 37, 2010), ('Resident evil', 534, 38, 2010), ('Resident evil', 540, 39, 2010), ('Resident evil', 456, 42, 2010), ('Resident evil', 453, 43, 2010), ('Resident evil', 480, 44, 2010), ('Resident evil', 467, 45, 2010), ('Resident evil', 406, 47, 2010), ('Rixec', 4, 1, 2008), ('Rixec', 22, 4, 2008), ('Rixec', 28, 5, 2008), ('Rixec', 50, 11, 2008), ('Rixec', 52, 12, 2008), ('Rixec', 59, 13, 2008), ('Rixec', 63, 15, 2008), ('Rixec', 66, 16, 2008), ('Rixec', 68, 17, 2008), ('Rixec', 74, 19, 2008), ('Rixec', 78, 20, 2008), ('Rixec', 84, 21, 2008), ('Rixec', 87, 22, 2008), ('Rixec', 88, 23, 2008), ('Rixec', 91, 24, 2008), ('Rixec', 100, 26, 2008), ('Rixec', 102, 27, 2008), ('Rixec', 105, 28, 2008), ('Rixec', 106, 29, 2008), ('Rixec', 107, 30, 2008), ('Rixec', 108, 31, 2008), ('Rixec', 110, 32, 2008), ('Rixec', 113, 33, 2008), ('Rixec', 131, 37, 2008), ('rokettololi', 4, 1, 2008), ('rokettololi', 177, 1, 2009), ('rokettololi', 555, 1, 2011), ('rokettololi', 11, 2, 2008), ('rokettololi', 280, 2, 2009), ('rokettololi', 571, 2, 2011), ('rokettololi', 14, 3, 2008), ('rokettololi', 24, 4, 2008), ('rokettololi', 224, 4, 2009), ('rokettololi', 580, 4, 2011), ('rokettololi', 25, 5, 2008), ('rokettololi', 591, 5, 2011), ('rokettololi', 37, 6, 2008), ('rokettololi', 210, 6, 2009), ('rokettololi', 597, 6, 2011), ('rokettololi', 38, 7, 2008), ('rokettololi', 249, 7, 2009), ('rokettololi', 611, 7, 2011), ('rokettololi', 41, 8, 2008), ('rokettololi', 215, 8, 2009), ('rokettololi', 619, 8, 2011), ('rokettololi', 45, 9, 2008), ('rokettololi', 239, 9, 2009), ('rokettololi', 625, 9, 2011), ('rokettololi', 49, 10, 2008), ('rokettololi', 165, 10, 2009), ('rokettololi', 50, 11, 2008), ('rokettololi', 58, 12, 2008), ('rokettololi', 185, 12, 2009), ('rokettololi', 59, 13, 2008), ('rokettololi', 62, 14, 2008), ('rokettololi', 246, 14, 2009), ('rokettololi', 651, 14, 2011), ('rokettololi', 63, 15, 2008), ('rokettololi', 304, 15, 2009), ('rokettololi', 65, 16, 2008), ('rokettololi', 284, 16, 2009), ('rokettololi', 644, 16, 2011), ('rokettololi', 68, 17, 2008), ('rokettololi', 198, 17, 2009), ('rokettololi', 656, 17, 2011), ('rokettololi', 73, 18, 2008), ('rokettololi', 203, 18, 2009), ('rokettololi', 678, 18, 2011), ('rokettololi', 74, 19, 2008), ('rokettololi', 683, 19, 2011), ('rokettololi', 80, 20, 2008), ('rokettololi', 199, 20, 2009), ('rokettololi', 685, 20, 2011), ('rokettololi', 83, 21, 2008), ('rokettololi', 289, 21, 2009), ('rokettololi', 698, 21, 2011), ('rokettololi', 87, 22, 2008), ('rokettololi', 187, 22, 2009), ('rokettololi', 711, 22, 2011), ('rokettololi', 88, 23, 2008), ('rokettololi', 248, 23, 2009), ('rokettololi', 91, 24, 2008), ('rokettololi', 175, 24, 2009), ('rokettololi', 719, 24, 2011), ('rokettololi', 100, 26, 2008), ('rokettololi', 226, 26, 2009), ('rokettololi', 729, 26, 2011), ('rokettololi', 104, 27, 2008), ('rokettololi', 229, 27, 2009), ('rokettololi', 738, 27, 2011), ('rokettololi', 105, 28, 2008), ('rokettololi', 740, 28, 2011), ('rokettololi', 106, 29, 2008), ('rokettololi', 107, 30, 2008), ('rokettololi', 746, 30, 2011), ('rokettololi', 109, 31, 2008), ('rokettololi', 110, 32, 2008), ('rokettololi', 306, 32, 2009), ('rokettololi', 112, 33, 2008), ('rokettololi', 755, 33, 2011), ('rokettololi', 117, 34, 2008), ('rokettololi', 201, 34, 2009), ('rokettololi', 756, 34, 2011), ('rokettololi', 123, 35, 2008), ('rokettololi', 204, 35, 2009), ('rokettololi', 763, 35, 2011), ('rokettololi', 126, 36, 2008), ('rokettololi', 179, 36, 2009), ('rokettololi', 127, 37, 2008), ('rokettololi', 293, 37, 2009), ('rokettololi', 773, 37, 2011), ('rokettololi', 134, 38, 2008), ('rokettololi', 170, 38, 2009), ('rokettololi', 776, 38, 2011), ('rokettololi', 139, 39, 2008), ('rokettololi', 189, 39, 2009), ('rokettololi', 781, 39, 2011), ('rokettololi', 255, 40, 2009), ('rokettololi', 270, 41, 2009), ('rokettololi', 614, 41, 2011), ('rokettololi', 303, 42, 2009), ('rokettololi', 265, 43, 2009), ('rokettololi', 724, 43, 2011), ('rokettololi', 307, 44, 2009), ('rokettololi', 750, 44, 2011), ('rokettololi', 664, 46, 2011), ('rokettololi', 667, 47, 2011), ('rokettololi', 604, 48, 2011), ('rokettololi', 632, 49, 2011), ('rokettololi', 639, 50, 2011), ('Scizor King', 5, 1, 2008), ('Scizor King', 9, 2, 2008), ('Scizor King', 18, 4, 2008), ('Scizor King', 25, 5, 2008), ('Scizor King', 32, 6, 2008), ('Scizor King', 38, 7, 2008), ('Scizor King', 41, 8, 2008), ('Scizor King', 49, 10, 2008), ('Scizor King', 50, 11, 2008), ('Scizor King', 52, 12, 2008), ('Scizor King', 59, 13, 2008), ('Scizor King', 62, 14, 2008), ('Scizor King', 63, 15, 2008), ('Scizor King', 67, 17, 2008), ('Scizor King', 71, 18, 2008), ('Scizor King', 74, 19, 2008), ('Scizor King', 77, 20, 2008), ('Scizor King', 82, 21, 2008), ('Scizor King', 87, 22, 2008), ('Scizor King', 88, 23, 2008), ('Scizor King', 91, 24, 2008), ('Scizor King', 100, 26, 2008), ('Scizor King', 102, 27, 2008), ('Scizor King', 105, 28, 2008), ('Scizor King', 106, 29, 2008), ('Scizor King', 107, 30, 2008), ('Scizor King', 108, 31, 2008), ('Scizor King', 110, 32, 2008), ('Scizor King', 113, 33, 2008), ('Scizor King', 116, 34, 2008), ('Scizor King', 120, 35, 2008), ('Scizor King', 125, 36, 2008), ('Scizor King', 127, 37, 2008), ('Scizor King', 136, 38, 2008), ('Scizor King', 137, 39, 2008), ('scizorstrike', 319, 1, 2010), ('scizorstrike', 549, 1, 2011), ('scizorstrike', 861, 1, 2012), ('scizorstrike', 322, 2, 2010), ('scizorstrike', 565, 2, 2011), ('scizorstrike', 927, 2, 2012), ('scizorstrike', 328, 3, 2010), ('scizorstrike', 337, 4, 2010), ('scizorstrike', 578, 4, 2011), ('scizorstrike', 1045, 4, 2012), ('scizorstrike', 341, 5, 2010), ('scizorstrike', 587, 5, 2011), ('scizorstrike', 932, 5, 2012), ('scizorstrike', 356, 6, 2010), ('scizorstrike', 597, 6, 2011), ('scizorstrike', 867, 6, 2012), ('scizorstrike', 611, 7, 2011), ('scizorstrike', 788, 7, 2012), ('scizorstrike', 375, 8, 2010), ('scizorstrike', 808, 8, 2012), ('scizorstrike', 379, 9, 2010), ('scizorstrike', 626, 9, 2011), ('scizorstrike', 807, 9, 2012), ('scizorstrike', 383, 10, 2010), ('scizorstrike', 1049, 10, 2012), ('scizorstrike', 649, 14, 2011), ('scizorstrike', 943, 14, 2012), ('scizorstrike', 390, 16, 2010), ('scizorstrike', 827, 16, 2012), ('scizorstrike', 654, 17, 2011), ('scizorstrike', 873, 17, 2012), ('scizorstrike', 414, 18, 2010), ('scizorstrike', 678, 18, 2011), ('scizorstrike', 954, 19, 2012), ('scizorstrike', 423, 20, 2010), ('scizorstrike', 695, 20, 2011), ('scizorstrike', 1075, 20, 2012), ('scizorstrike', 428, 21, 2010), ('scizorstrike', 702, 21, 2011), ('scizorstrike', 1076, 21, 2012), ('scizorstrike', 439, 22, 2010), ('scizorstrike', 705, 22, 2011), ('scizorstrike', 1077, 22, 2012), ('scizorstrike', 447, 23, 2010), ('scizorstrike', 715, 23, 2011), ('scizorstrike', 448, 24, 2010), ('scizorstrike', 716, 24, 2011), ('scizorstrike', 461, 26, 2010), ('scizorstrike', 730, 26, 2011), ('scizorstrike', 963, 26, 2012), ('scizorstrike', 468, 27, 2010), ('scizorstrike', 1065, 27, 2012), ('scizorstrike', 497, 29, 2010), ('scizorstrike', 966, 29, 2012), ('scizorstrike', 502, 30, 2010), ('scizorstrike', 746, 30, 2011), ('scizorstrike', 967, 30, 2012), ('scizorstrike', 478, 33, 2010), ('scizorstrike', 754, 33, 2011), ('scizorstrike', 1053, 33, 2012), ('scizorstrike', 504, 34, 2010), ('scizorstrike', 756, 34, 2011), ('scizorstrike', 858, 34, 2012), ('scizorstrike', 763, 35, 2011), ('scizorstrike', 519, 36, 2010), ('scizorstrike', 769, 36, 2011), ('scizorstrike', 889, 36, 2012), ('scizorstrike', 850, 37, 2012), ('scizorstrike', 535, 38, 2010), ('scizorstrike', 817, 38, 2012), ('scizorstrike', 910, 39, 2012), ('scizorstrike', 329, 40, 2010), ('scizorstrike', 366, 41, 2010), ('scizorstrike', 614, 41, 2011), ('scizorstrike', 938, 41, 2012), ('scizorstrike', 458, 42, 2010), ('scizorstrike', 962, 42, 2012), ('scizorstrike', 453, 43, 2010), ('scizorstrike', 480, 44, 2010), ('scizorstrike', 884, 44, 2012), ('scizorstrike', 404, 46, 2010), ('scizorstrike', 661, 46, 2011), ('scizorstrike', 407, 47, 2010), ('scizorstrike', 674, 47, 2011), ('scizorstrike', 948, 47, 2012), ('scizorstrike', 604, 48, 2011), ('scizorstrike', 936, 48, 2012), ('scizorstrike', 919, 52, 2012), ('SerenadeSP', 319, 1, 2010), ('SerenadeSP', 555, 1, 2011), ('SerenadeSP', 325, 2, 2010), ('SerenadeSP', 565, 2, 2011), ('SerenadeSP', 328, 3, 2010), ('SerenadeSP', 573, 3, 2011), ('SerenadeSP', 337, 4, 2010), ('SerenadeSP', 580, 4, 2011), ('SerenadeSP', 345, 5, 2010), ('SerenadeSP', 590, 5, 2011), ('SerenadeSP', 362, 6, 2010), ('SerenadeSP', 600, 6, 2011), ('SerenadeSP', 373, 8, 2010), ('SerenadeSP', 383, 10, 2010), ('SerenadeSP', 649, 14, 2011), ('SerenadeSP', 396, 17, 2010), ('SerenadeSP', 656, 17, 2011), ('SerenadeSP', 677, 18, 2011), ('SerenadeSP', 417, 19, 2010), ('SerenadeSP', 681, 19, 2011), ('SerenadeSP', 423, 20, 2010), ('SerenadeSP', 695, 20, 2011), ('SerenadeSP', 428, 21, 2010), ('SerenadeSP', 702, 21, 2011), ('SerenadeSP', 436, 22, 2010), ('SerenadeSP', 708, 22, 2011), ('SerenadeSP', 443, 23, 2010), ('SerenadeSP', 717, 24, 2011), ('SerenadeSP', 460, 26, 2010), ('SerenadeSP', 729, 26, 2011), ('SerenadeSP', 470, 27, 2010), ('SerenadeSP', 490, 29, 2010), ('SerenadeSP', 546, 30, 2010), ('SerenadeSP', 754, 33, 2011), ('SerenadeSP', 504, 34, 2010), ('SerenadeSP', 760, 34, 2011), ('SerenadeSP', 763, 35, 2011), ('SerenadeSP', 522, 36, 2010), ('SerenadeSP', 769, 36, 2011), ('SerenadeSP', 525, 37, 2010), ('SerenadeSP', 772, 37, 2011), ('SerenadeSP', 774, 38, 2011), ('SerenadeSP', 779, 39, 2011), ('SerenadeSP', 575, 40, 2011), ('SerenadeSP', 365, 41, 2010), ('SerenadeSP', 613, 41, 2011), ('SerenadeSP', 726, 42, 2011), ('SerenadeSP', 453, 43, 2010), ('SerenadeSP', 484, 44, 2010), ('SerenadeSP', 665, 46, 2011), ('SerenadeSP', 406, 47, 2010), ('SerenadeSP', 668, 47, 2011), ('SerenadeSP', 606, 48, 2011), ('SerenadeSP', 676, 51, 2011), ('Shadow Lucario', 261, 1, 2009), ('Shadow Lucario', 317, 1, 2010), ('Shadow Lucario', 795, 1, 2012), ('Shadow Lucario', 280, 2, 2009), ('Shadow Lucario', 324, 2, 2010), ('Shadow Lucario', 902, 2, 2012), ('Shadow Lucario', 159, 4, 2009), ('Shadow Lucario', 931, 4, 2012), ('Shadow Lucario', 160, 5, 2009), ('Shadow Lucario', 340, 5, 2010), ('Shadow Lucario', 989, 5, 2012), ('Shadow Lucario', 232, 6, 2009), ('Shadow Lucario', 362, 6, 2010), ('Shadow Lucario', 235, 7, 2009), ('Shadow Lucario', 349, 7, 2010), ('Shadow Lucario', 1099, 7, 2012), ('Shadow Lucario', 215, 8, 2009), ('Shadow Lucario', 369, 8, 2010), ('Shadow Lucario', 808, 8, 2012), ('Shadow Lucario', 378, 9, 2010), ('Shadow Lucario', 807, 9, 2012), ('Shadow Lucario', 165, 10, 2009), ('Shadow Lucario', 384, 10, 2010), ('Shadow Lucario', 1021, 10, 2012), ('Shadow Lucario', 185, 12, 2009), ('Shadow Lucario', 272, 13, 2009), ('Shadow Lucario', 246, 14, 2009), ('Shadow Lucario', 1023, 14, 2012), ('Shadow Lucario', 259, 15, 2009), ('Shadow Lucario', 267, 16, 2009), ('Shadow Lucario', 389, 16, 2010), ('Shadow Lucario', 1120, 16, 2012), ('Shadow Lucario', 158, 17, 2009), ('Shadow Lucario', 397, 17, 2010), ('Shadow Lucario', 829, 17, 2012), ('Shadow Lucario', 203, 18, 2009), ('Shadow Lucario', 412, 18, 2010), ('Shadow Lucario', 256, 19, 2009), ('Shadow Lucario', 419, 19, 2010), ('Shadow Lucario', 288, 20, 2009), ('Shadow Lucario', 425, 20, 2010), ('Shadow Lucario', 835, 20, 2012), ('Shadow Lucario', 289, 21, 2009), ('Shadow Lucario', 427, 21, 2010), ('Shadow Lucario', 1002, 21, 2012), ('Shadow Lucario', 438, 22, 2010), ('Shadow Lucario', 1077, 22, 2012), ('Shadow Lucario', 248, 23, 2009), ('Shadow Lucario', 446, 23, 2010), ('Shadow Lucario', 1104, 23, 2012), ('Shadow Lucario', 168, 24, 2009), ('Shadow Lucario', 450, 24, 2010), ('Shadow Lucario', 839, 24, 2012), ('Shadow Lucario', 226, 26, 2009), ('Shadow Lucario', 461, 26, 2010), ('Shadow Lucario', 1090, 26, 2012), ('Shadow Lucario', 236, 27, 2009), ('Shadow Lucario', 469, 27, 2010), ('Shadow Lucario', 1005, 27, 2012), ('Shadow Lucario', 486, 28, 2010), ('Shadow Lucario', 1006, 28, 2012), ('Shadow Lucario', 491, 29, 2010), ('Shadow Lucario', 883, 29, 2012), ('Shadow Lucario', 502, 30, 2010), ('Shadow Lucario', 845, 30, 2012), ('Shadow Lucario', 306, 32, 2009), ('Shadow Lucario', 181, 33, 2009), ('Shadow Lucario', 478, 33, 2010), ('Shadow Lucario', 201, 34, 2009), ('Shadow Lucario', 509, 34, 2010), ('Shadow Lucario', 797, 34, 2012), ('Shadow Lucario', 204, 35, 2009), ('Shadow Lucario', 516, 35, 2010), ('Shadow Lucario', 798, 35, 2012), ('Shadow Lucario', 179, 36, 2009), ('Shadow Lucario', 520, 36, 2010), ('Shadow Lucario', 1030, 36, 2012), ('Shadow Lucario', 202, 37, 2009), ('Shadow Lucario', 524, 37, 2010), ('Shadow Lucario', 973, 37, 2012), ('Shadow Lucario', 170, 38, 2009), ('Shadow Lucario', 528, 38, 2010), ('Shadow Lucario', 799, 38, 2012), ('Shadow Lucario', 222, 39, 2009), ('Shadow Lucario', 540, 39, 2010), ('Shadow Lucario', 800, 39, 2012), ('Shadow Lucario', 270, 41, 2009), ('Shadow Lucario', 365, 41, 2010), ('Shadow Lucario', 1086, 41, 2012), ('Shadow Lucario', 303, 42, 2009), ('Shadow Lucario', 456, 42, 2010), ('Shadow Lucario', 880, 42, 2012), ('Shadow Lucario', 265, 43, 2009), ('Shadow Lucario', 452, 43, 2010), ('Shadow Lucario', 307, 44, 2009), ('Shadow Lucario', 485, 44, 2010), ('Shadow Lucario', 1009, 44, 2012), ('Shadow Lucario', 465, 45, 2010), ('Shadow Lucario', 1093, 45, 2012), ('Shadow Lucario', 402, 46, 2010), ('Shadow Lucario', 1063, 46, 2012), ('Shadow Lucario', 411, 47, 2010), ('Shadow Lucario', 796, 48, 2012), ('Shadow Lucario', 1020, 49, 2012), ('Shadow Lucario', 790, 50, 2012), ('Shadow Lucario', 1000, 51, 2012), ('Shadow Lucario 50', 912, 1, 2012), ('Shadow Lucario 50', 862, 2, 2012), ('Shadow Lucario 50', 863, 3, 2012), ('Shadow Lucario 50', 820, 4, 2012), ('Shadow Lucario 50', 1080, 5, 2012), ('Shadow Lucario 50', 915, 6, 2012), ('Shadow Lucario 50', 1047, 7, 2012), ('Shadow Lucario 50', 1101, 8, 2012), ('Shadow Lucario 50', 996, 9, 2012), ('Shadow Lucario 50', 1049, 10, 2012), ('Shadow Lucario 50', 1023, 14, 2012), ('Shadow Lucario 50', 1022, 16, 2012), ('Shadow Lucario 50', 1024, 17, 2012), ('Shadow Lucario 50', 812, 18, 2012), ('Shadow Lucario 50', 954, 19, 2012), ('Shadow Lucario 50', 857, 20, 2012), ('Shadow Lucario 50', 876, 21, 2012), ('Shadow Lucario 50', 877, 22, 2012), ('Shadow Lucario 50', 815, 23, 2012), ('Shadow Lucario 50', 839, 24, 2012), ('Shadow Lucario 50', 921, 26, 2012), ('Shadow Lucario 50', 882, 27, 2012), ('Shadow Lucario 50', 843, 28, 2012), ('Shadow Lucario 50', 966, 29, 2012), ('Shadow Lucario 50', 802, 30, 2012), ('Shadow Lucario 50', 1081, 33, 2012), ('Shadow Lucario 50', 797, 34, 2012), ('Shadow Lucario 50', 925, 35, 2012), ('Shadow Lucario 50', 849, 36, 2012), ('Shadow Lucario 50', 890, 37, 2012), ('Shadow Lucario 50', 817, 38, 2012), ('Shadow Lucario 50', 975, 39, 2012), ('Shadow Lucario 50', 913, 40, 2012), ('Shadow Lucario 50', 1035, 41, 2012), ('Shadow Lucario 50', 841, 42, 2012), ('Shadow Lucario 50', 840, 43, 2012), ('Shadow Lucario 50', 1009, 44, 2012), ('Shadow Lucario 50', 1093, 45, 2012), ('Shadow Lucario 50', 830, 46, 2012), ('Shadow Lucario 50', 1037, 47, 2012), ('Shadow Lucario 50', 804, 48, 2012), ('Shadow Lucario 50', 809, 49, 2012), ('Shadow Lucario 50', 871, 50, 2012), ('Shadow Lucario 50', 918, 51, 2012), ('Shadow Lucario 50', 832, 52, 2012), ('Shadow XD001', 194, 1, 2009), ('Shadow XD001', 316, 1, 2010), ('Shadow XD001', 328, 3, 2010), ('Shadow XD001', 191, 4, 2009), ('Shadow XD001', 333, 4, 2010), ('Shadow XD001', 352, 7, 2010), ('Shadow XD001', 371, 8, 2010), ('Shadow XD001', 380, 10, 2010), ('Shadow XD001', 192, 12, 2009), ('Shadow XD001', 272, 13, 2009), ('Shadow XD001', 246, 14, 2009), ('Shadow XD001', 267, 16, 2009), ('Shadow XD001', 286, 17, 2009), ('Shadow XD001', 396, 17, 2010), ('Shadow XD001', 203, 18, 2009), ('Shadow XD001', 256, 19, 2009), ('Shadow XD001', 422, 20, 2010), ('Shadow XD001', 289, 21, 2009), ('Shadow XD001', 173, 22, 2009), ('Shadow XD001', 433, 22, 2010), ('Shadow XD001', 248, 23, 2009), ('Shadow XD001', 175, 24, 2009), ('Shadow XD001', 448, 24, 2010), ('Shadow XD001', 226, 26, 2009), ('Shadow XD001', 229, 27, 2009), ('Shadow XD001', 468, 27, 2010), ('Shadow XD001', 500, 30, 2010), ('Shadow XD001', 306, 32, 2009), ('Shadow XD001', 181, 33, 2009), ('Shadow XD001', 479, 33, 2010), ('Shadow XD001', 251, 34, 2009), ('Shadow XD001', 505, 34, 2010), ('Shadow XD001', 292, 35, 2009), ('Shadow XD001', 516, 35, 2010), ('Shadow XD001', 297, 36, 2009), ('Shadow XD001', 518, 36, 2010), ('Shadow XD001', 202, 37, 2009), ('Shadow XD001', 525, 37, 2010), ('Shadow XD001', 277, 38, 2009), ('Shadow XD001', 528, 38, 2010), ('Shadow XD001', 537, 39, 2010), ('Shadow XD001', 329, 40, 2010), ('Shadow XD001', 480, 44, 2010), ('shadow_wolf', 1, 1, 2008), ('shadow_wolf', 9, 2, 2008), ('shadow_wolf', 24, 4, 2008), ('shadow_wolf', 25, 5, 2008), ('shadow_wolf', 36, 6, 2008), ('shadow_wolf', 38, 7, 2008), ('shadow_wolf', 42, 8, 2008), ('shadow_wolf', 44, 9, 2008), ('shadow_wolf', 49, 10, 2008), ('shadow_wolf', 50, 11, 2008), ('shadow_wolf', 57, 12, 2008), ('shadow_wolf', 59, 13, 2008), ('shadow_wolf', 61, 14, 2008), ('shadow_wolf', 63, 15, 2008), ('shadow_wolf', 65, 16, 2008), ('shadow_wolf', 70, 17, 2008), ('shadow_wolf', 73, 18, 2008), ('shadow_wolf', 74, 19, 2008), ('shadow_wolf', 80, 20, 2008), ('shadow_wolf', 83, 21, 2008), ('shadow_wolf', 87, 22, 2008), ('shadow_wolf', 88, 23, 2008), ('shadow_wolf', 94, 24, 2008), ('shadow_wolf', 96, 26, 2008), ('shadow_wolf', 101, 27, 2008), ('shadow_wolf', 105, 28, 2008), ('shadow_wolf', 109, 31, 2008), ('shadow_wolf', 110, 32, 2008), ('shadow_wolf', 114, 34, 2008), ('shadow_wolf', 123, 35, 2008), ('shadow_wolf', 125, 36, 2008), ('shadow_wolf', 130, 37, 2008), ('shadow_wolf', 133, 38, 2008), ('shadow_wolf', 139, 39, 2008), ('shale', 551, 1, 2011), ('shale', 569, 2, 2011), ('shale', 578, 4, 2011), ('shale', 587, 5, 2011), ('shale', 597, 6, 2011), ('shale', 611, 7, 2011), ('shale', 620, 8, 2011), ('shale', 641, 10, 2011), ('shale', 652, 14, 2011), ('shale', 642, 16, 2011), ('shale', 659, 17, 2011), ('shale', 678, 18, 2011), ('shale', 701, 21, 2011), ('shale', 704, 22, 2011), ('shale', 712, 23, 2011), ('shale', 716, 24, 2011), ('shale', 729, 26, 2011), ('shale', 741, 28, 2011), ('shale', 745, 30, 2011), ('shale', 755, 33, 2011), ('shale', 758, 34, 2011), ('shale', 762, 35, 2011), ('shale', 769, 36, 2011), ('shale', 771, 37, 2011), ('shale', 775, 38, 2011), ('shale', 779, 39, 2011), ('shale', 575, 40, 2011), ('shale', 613, 41, 2011), ('shale', 726, 42, 2011), ('shale', 662, 46, 2011), ('shale', 668, 47, 2011), ('shale', 604, 48, 2011), ('shale', 633, 49, 2011), ('shale', 676, 51, 2011), ('shiny gible', 261, 1, 2009), ('shiny gible', 280, 2, 2009), ('shiny gible', 191, 4, 2009), ('shiny gible', 232, 6, 2009), ('shiny gible', 235, 7, 2009), ('shiny gible', 163, 8, 2009), ('shiny gible', 165, 10, 2009), ('shiny gible', 185, 12, 2009), ('shiny gible', 272, 13, 2009), ('shiny gible', 246, 14, 2009), ('shiny gible', 304, 15, 2009), ('shiny gible', 267, 16, 2009), ('shiny gible', 158, 17, 2009), ('shiny gible', 203, 18, 2009), ('shiny gible', 256, 19, 2009), ('shiny gible', 168, 24, 2009), ('shiny gible', 226, 26, 2009), ('shiny gible', 236, 27, 2009), ('shiny gible', 201, 34, 2009), ('shiny gible', 204, 35, 2009), ('shiny gible', 297, 36, 2009), ('shiny gible', 202, 37, 2009), ('shiny gible', 170, 38, 2009), ('shiny gible', 222, 39, 2009), ('shiny gible', 303, 42, 2009), ('shiny gible', 265, 43, 2009), ('shiny gible', 307, 44, 2009), ('Shymain', 984, 1, 2012), ('Shymain', 1045, 4, 2012), ('Shymain', 983, 5, 2012), ('Shymain', 855, 6, 2012), ('Shymain', 788, 7, 2012), ('Shymain', 1101, 8, 2012), ('Shymain', 1049, 10, 2012), ('Shymain', 873, 17, 2012), ('Shymain', 1077, 22, 2012), ('Shymain', 881, 26, 2012), ('Shymain', 964, 27, 2012), ('Shymain', 843, 28, 2012), ('Shymain', 1053, 33, 2012), ('Shymain', 848, 34, 2012), ('Shymain', 925, 35, 2012), ('Shymain', 849, 36, 2012), ('Shymain', 974, 38, 2012), ('Shymain', 1016, 39, 2012), ('Shymain', 938, 41, 2012), ('Shymain', 830, 46, 2012), ('Shymain', 792, 47, 2012), ('Shymain', 789, 49, 2012), ('Shymain', 997, 50, 2012), ('Sid87', 818, 1, 2012), ('Sid87', 1300, 1, 2013), ('Sid87', 819, 2, 2012), ('Sid87', 931, 4, 2012), ('Sid87', 1127, 4, 2013), ('Sid87', 821, 5, 2012), ('Sid87', 1226, 5, 2013), ('Sid87', 915, 6, 2012), ('Sid87', 1304, 6, 2013), ('Sid87', 823, 7, 2012), ('Sid87', 940, 8, 2012), ('Sid87', 1219, 8, 2013), ('Sid87', 807, 9, 2012), ('Sid87', 1254, 9, 2013), ('Sid87', 1049, 10, 2012), ('Sid87', 1023, 14, 2012), ('Sid87', 827, 16, 2012), ('Sid87', 944, 17, 2012), ('Sid87', 833, 18, 2012), ('Sid87', 1314, 18, 2013), ('Sid87', 953, 19, 2012), ('Sid87', 1179, 19, 2013), ('Sid87', 835, 20, 2012), ('Sid87', 836, 21, 2012), ('Sid87', 1316, 21, 2013), ('Sid87', 837, 22, 2012), ('Sid87', 1147, 22, 2013), ('Sid87', 1104, 23, 2012), ('Sid87', 1343, 23, 2013), ('Sid87', 839, 24, 2012), ('Sid87', 1149, 24, 2013), ('Sid87', 842, 26, 2012), ('Sid87', 1332, 26, 2013), ('Sid87', 1209, 27, 2013), ('Sid87', 843, 28, 2012), ('Sid87', 844, 29, 2012), ('Sid87', 845, 30, 2012), ('Sid87', 1191, 30, 2013), ('Sid87', 1081, 33, 2012), ('Sid87', 924, 34, 2012), ('Sid87', 1211, 34, 2013), ('Sid87', 798, 35, 2012), ('Sid87', 889, 36, 2012), ('Sid87', 1213, 36, 2013), ('Sid87', 850, 37, 2012), ('Sid87', 1196, 37, 2013), ('Sid87', 851, 38, 2012), ('Sid87', 1162, 38, 2013), ('Sid87', 852, 39, 2012), ('Sid87', 824, 41, 2012), ('Sid87', 1033, 42, 2012), ('Sid87', 840, 43, 2012), ('Sid87', 1150, 43, 2013), ('Sid87', 846, 44, 2012), ('Sid87', 1282, 44, 2013), ('Sid87', 847, 45, 2012), ('Sid87', 830, 46, 2012), ('Sid87', 1139, 46, 2013), ('Sid87', 831, 47, 2012), ('Sid87', 992, 48, 2012), ('Sid87', 1203, 48, 2013), ('Sid87', 809, 49, 2012), ('Sid87', 1134, 49, 2013), ('Sid87', 1110, 50, 2012), ('Sid87', 1025, 51, 2012), ('Sid87', 1176, 51, 2013), ('Sid87', 832, 52, 2012), ('Sid87', 1178, 52, 2013), ('Sidewinder', 818, 1, 2012), ('Sidewinder', 1300, 1, 2013), ('Sidewinder', 985, 2, 2012), ('Sidewinder', 785, 4, 2012), ('Sidewinder', 1302, 4, 2013), ('Sidewinder', 1031, 5, 2012), ('Sidewinder', 1325, 5, 2013), ('Sidewinder', 822, 6, 2012), ('Sidewinder', 1304, 6, 2013), ('Sidewinder', 823, 7, 2012), ('Sidewinder', 1216, 7, 2013), ('Sidewinder', 870, 8, 2012), ('Sidewinder', 1308, 8, 2013), ('Sidewinder', 1109, 9, 2012), ('Sidewinder', 1021, 10, 2012), ('Sidewinder', 1173, 10, 2013), ('Sidewinder', 1023, 14, 2012), ('Sidewinder', 998, 16, 2012), ('Sidewinder', 1310, 16, 2013), ('Sidewinder', 944, 17, 2012), ('Sidewinder', 1329, 17, 2013), ('Sidewinder', 833, 18, 2012), ('Sidewinder', 954, 19, 2012), ('Sidewinder', 1268, 19, 2013), ('Sidewinder', 1001, 20, 2012), ('Sidewinder', 1182, 20, 2013), ('Sidewinder', 1026, 21, 2012), ('Sidewinder', 1331, 21, 2013), ('Sidewinder', 1027, 22, 2012), ('Sidewinder', 1317, 22, 2013), ('Sidewinder', 815, 23, 2012), ('Sidewinder', 1187, 23, 2013), ('Sidewinder', 1222, 24, 2013), ('Sidewinder', 881, 26, 2012), ('Sidewinder', 1332, 26, 2013), ('Sidewinder', 1005, 27, 2012), ('Sidewinder', 1153, 27, 2013), ('Sidewinder', 843, 28, 2012), ('Sidewinder', 1154, 28, 2013), ('Sidewinder', 1008, 29, 2012), ('Sidewinder', 1232, 29, 2013), ('Sidewinder', 845, 30, 2012), ('Sidewinder', 1191, 30, 2013), ('Sidewinder', 1029, 33, 2012), ('Sidewinder', 1157, 33, 2013), ('Sidewinder', 924, 34, 2012), ('Sidewinder', 1333, 34, 2013), ('Sidewinder', 925, 35, 2012), ('Sidewinder', 1030, 36, 2012), ('Sidewinder', 1334, 36, 2013), ('Sidewinder', 1014, 37, 2012), ('Sidewinder', 1196, 37, 2013), ('Sidewinder', 817, 38, 2012), ('Sidewinder', 1290, 38, 2013), ('Sidewinder', 852, 39, 2012), ('Sidewinder', 1335, 39, 2013), ('Sidewinder', 1086, 41, 2012), ('Sidewinder', 1204, 41, 2013), ('Sidewinder', 841, 42, 2012), ('Sidewinder', 1151, 42, 2013), ('Sidewinder', 840, 43, 2012), ('Sidewinder', 1190, 43, 2013), ('Sidewinder', 968, 44, 2012), ('Sidewinder', 1093, 45, 2012), ('Sidewinder', 1156, 45, 2013), ('Sidewinder', 830, 46, 2012), ('Sidewinder', 1139, 46, 2013), ('Sidewinder', 792, 47, 2012), ('Sidewinder', 1330, 47, 2013), ('Sidewinder', 804, 48, 2012), ('Sidewinder', 1203, 48, 2013), ('Sidewinder', 789, 49, 2012), ('Sidewinder', 790, 50, 2012), ('Sidewinder', 1172, 50, 2013), ('Sidewinder', 1025, 51, 2012), ('Sidewinder', 1312, 51, 2013), ('Sidewinder', 832, 52, 2012), ('Sidewinder', 1178, 52, 2013), ('Sidewinder', 1324, 53, 2013), ('Sike Saner', 7, 1, 2008), ('Sike Saner', 10, 2, 2008), ('Sike Saner', 14, 3, 2008), ('Sike Saner', 21, 4, 2008), ('Sike Saner', 29, 5, 2008), ('Sike Saner', 35, 6, 2008), ('Sike Saner', 39, 7, 2008), ('Sike Saner', 41, 8, 2008), ('Sike Saner', 44, 9, 2008), ('Sike Saner', 49, 10, 2008), ('Sike Saner', 50, 11, 2008), ('Sike Saner', 54, 12, 2008), ('Sike Saner', 59, 13, 2008), ('Sike Saner', 62, 14, 2008), ('Sike Saner', 63, 15, 2008), ('Sike Saner', 64, 16, 2008), ('Sike Saner', 70, 17, 2008), ('Sike Saner', 72, 18, 2008), ('Sike Saner', 74, 19, 2008), ('Sike Saner', 80, 20, 2008), ('Sike Saner', 82, 21, 2008), ('Sike Saner', 87, 22, 2008), ('Sike Saner', 88, 23, 2008), ('Sike Saner', 92, 24, 2008), ('Sike Saner', 97, 26, 2008), ('Sike Saner', 102, 27, 2008), ('Sike Saner', 105, 28, 2008), ('Sike Saner', 106, 29, 2008), ('Sike Saner', 107, 30, 2008), ('Sike Saner', 108, 31, 2008), ('Sike Saner', 110, 32, 2008), ('Sike Saner', 112, 33, 2008), ('Sike Saner', 118, 34, 2008), ('Sike Saner', 123, 35, 2008), ('Sike Saner', 125, 36, 2008), ('Sike Saner', 128, 37, 2008), ('Sike Saner', 133, 38, 2008), ('Sike Saner', 139, 39, 2008), ('Silawen', 1, 1, 2008), ('Silawen', 10, 2, 2008), ('Silawen', 21, 4, 2008), ('Silawen', 27, 5, 2008), ('Silawen', 35, 6, 2008), ('Silawen', 39, 7, 2008), ('Silawen', 42, 8, 2008), ('Silawen', 44, 9, 2008), ('Silawen', 48, 10, 2008), ('Silawen', 51, 12, 2008), ('Silawen', 59, 13, 2008), ('Silawen', 61, 14, 2008), ('Silawen', 65, 16, 2008), ('Silawen', 72, 18, 2008), ('Silawen', 76, 20, 2008), ('Silawen', 82, 21, 2008), ('Silawen', 87, 22, 2008), ('Silawen', 93, 24, 2008), ('Silawen', 96, 26, 2008), ('Silawen', 101, 27, 2008), ('Silawen', 105, 28, 2008), ('Silawen', 107, 30, 2008), ('Silawen', 110, 32, 2008), ('Silawen', 114, 34, 2008), ('Silawen', 123, 35, 2008), ('Silawen', 126, 36, 2008), ('Silawen', 128, 37, 2008), ('Silawen', 137, 39, 2008), ('SilentMemento', 561, 1, 2011), ('SilentMemento', 783, 1, 2012), ('SilentMemento', 568, 2, 2011), ('SilentMemento', 819, 2, 2012), ('SilentMemento', 863, 3, 2012), ('SilentMemento', 581, 4, 2011), ('SilentMemento', 864, 4, 2012), ('SilentMemento', 594, 5, 2011), ('SilentMemento', 865, 5, 2012), ('SilentMemento', 597, 6, 2011), ('SilentMemento', 1084, 6, 2012), ('SilentMemento', 1047, 7, 2012), ('SilentMemento', 940, 8, 2012), ('SilentMemento', 624, 9, 2011), ('SilentMemento', 996, 9, 2012), ('SilentMemento', 641, 10, 2011), ('SilentMemento', 1021, 10, 2012), ('SilentMemento', 650, 14, 2011), ('SilentMemento', 943, 14, 2012), ('SilentMemento', 642, 16, 2011), ('SilentMemento', 1022, 16, 2012), ('SilentMemento', 1032, 17, 2012), ('SilentMemento', 677, 18, 2011), ('SilentMemento', 833, 18, 2012), ('SilentMemento', 679, 19, 2011), ('SilentMemento', 953, 19, 2012), ('SilentMemento', 694, 20, 2011), ('SilentMemento', 835, 20, 2012), ('SilentMemento', 698, 21, 2011), ('SilentMemento', 1026, 21, 2012), ('SilentMemento', 705, 22, 2011), ('SilentMemento', 1103, 22, 2012), ('SilentMemento', 715, 23, 2011), ('SilentMemento', 1104, 23, 2012), ('SilentMemento', 719, 24, 2011), ('SilentMemento', 839, 24, 2012), ('SilentMemento', 731, 26, 2011), ('SilentMemento', 963, 26, 2012), ('SilentMemento', 1005, 27, 2012), ('SilentMemento', 739, 28, 2011), ('SilentMemento', 1006, 28, 2012), ('SilentMemento', 744, 29, 2011), ('SilentMemento', 1008, 29, 2012), ('SilentMemento', 747, 30, 2011), ('SilentMemento', 845, 30, 2012), ('SilentMemento', 1081, 33, 2012), ('SilentMemento', 970, 34, 2012), ('SilentMemento', 765, 35, 2011), ('SilentMemento', 1012, 35, 2012), ('SilentMemento', 770, 36, 2011), ('SilentMemento', 908, 36, 2012), ('SilentMemento', 890, 37, 2012), ('SilentMemento', 776, 38, 2011), ('SilentMemento', 974, 38, 2012), ('SilentMemento', 1016, 39, 2012), ('SilentMemento', 613, 41, 2011), ('SilentMemento', 1085, 41, 2012), ('SilentMemento', 962, 42, 2012), ('SilentMemento', 724, 43, 2011), ('SilentMemento', 1089, 43, 2012), ('SilentMemento', 750, 44, 2011), ('SilentMemento', 846, 44, 2012), ('SilentMemento', 1093, 45, 2012), ('SilentMemento', 662, 46, 2011), ('SilentMemento', 1063, 46, 2012), ('SilentMemento', 667, 47, 2011), ('SilentMemento', 948, 47, 2012), ('SilentMemento', 1108, 48, 2012), ('SilentMemento', 634, 49, 2011), ('SilentMemento', 941, 49, 2012), ('SilentMemento', 826, 50, 2012), ('SilentMemento', 676, 51, 2011), ('SilentMemento', 1000, 51, 2012), ('SilentMemento', 832, 52, 2012), ('Silver Dawn', 318, 1, 2010), ('Silver Dawn', 322, 2, 2010), ('Silver Dawn', 328, 3, 2010), ('Silver Dawn', 334, 4, 2010), ('Silver Dawn', 344, 5, 2010), ('Silver Dawn', 356, 6, 2010), ('Silver Dawn', 349, 7, 2010), ('Silver Dawn', 374, 8, 2010), ('Silver Dawn', 379, 9, 2010), ('Silver Dawn', 381, 10, 2010), ('Silver Dawn', 390, 16, 2010), ('Silver Dawn', 397, 17, 2010), ('Silver Dawn', 416, 18, 2010), ('Silver Dawn', 420, 19, 2010), ('Silver Dawn', 424, 20, 2010), ('Silver Dawn', 429, 21, 2010), ('Silver Dawn', 439, 22, 2010), ('Silver Dawn', 444, 23, 2010), ('Silver Dawn', 449, 24, 2010), ('Silver Dawn', 463, 26, 2010), ('Silver Dawn', 470, 27, 2010), ('Silver Dawn', 487, 28, 2010), ('Silver Dawn', 495, 29, 2010), ('Silver Dawn', 500, 30, 2010), ('Silver Dawn', 475, 33, 2010), ('Silver Dawn', 506, 34, 2010), ('Silver Dawn', 513, 35, 2010), ('Silver Dawn', 520, 36, 2010), ('Silver Dawn', 525, 37, 2010), ('Silver Dawn', 531, 38, 2010), ('Silver Dawn', 539, 39, 2010), ('Silver Dawn', 364, 41, 2010), ('Silver Dawn', 455, 42, 2010), ('Silver Dawn', 452, 43, 2010), ('Silver Dawn', 480, 44, 2010), ('Silver Dawn', 467, 45, 2010), ('Silver Dawn', 404, 46, 2010), ('Silver Dawn', 406, 47, 2010), ('Sinnohdragon', 223, 1, 2009), ('Sinnohdragon', 281, 2, 2009), ('Sinnohdragon', 224, 4, 2009), ('Sinnohdragon', 160, 5, 2009), ('Sinnohdragon', 235, 7, 2009), ('Sinnohdragon', 214, 8, 2009), ('Sinnohdragon', 197, 10, 2009), ('Sinnohdragon', 185, 12, 2009), ('Sinnohdragon', 272, 13, 2009), ('Sinnohdragon', 267, 16, 2009), ('Sinnohdragon', 286, 17, 2009), ('Sinnohdragon', 203, 18, 2009), ('Sinnohdragon', 199, 20, 2009), ('Sinnohdragon', 289, 21, 2009), ('Sinnohdragon', 187, 22, 2009), ('Sinnohdragon', 248, 23, 2009), ('Sinnohdragon', 200, 24, 2009), ('Sinnohdragon', 263, 26, 2009), ('Sinnohdragon', 229, 27, 2009), ('Sinnohdragon', 181, 33, 2009), ('Sinnohdragon', 274, 34, 2009), ('Sinnohdragon', 292, 35, 2009), ('Sinnohdragon', 169, 36, 2009), ('Sinnohdragon', 300, 38, 2009), ('Sinnohdragon', 189, 39, 2009), ('Sinnohdragon', 245, 41, 2009), ('SneaselClaw', 553, 1, 2011), ('SneaselClaw', 564, 2, 2011), ('SneaselClaw', 574, 3, 2011), ('SneaselClaw', 577, 4, 2011), ('SneaselClaw', 592, 5, 2011), ('SneaselClaw', 598, 6, 2011), ('SneaselClaw', 610, 7, 2011), ('SneaselClaw', 621, 8, 2011), ('SneaselClaw', 631, 9, 2011), ('SneaselClaw', 641, 10, 2011), ('SneaselClaw', 648, 14, 2011), ('SneaselClaw', 642, 16, 2011), ('SneaselClaw', 653, 17, 2011), ('SneaselClaw', 677, 18, 2011), ('SneaselClaw', 681, 19, 2011), ('SneaselClaw', 687, 20, 2011), ('SneaselClaw', 702, 21, 2011), ('SneaselClaw', 705, 22, 2011), ('SneaselClaw', 713, 23, 2011), ('SneaselClaw', 717, 24, 2011), ('SneaselClaw', 729, 26, 2011), ('SneaselClaw', 736, 27, 2011), ('SneaselClaw', 742, 28, 2011), ('SneaselClaw', 744, 29, 2011), ('SneaselClaw', 746, 30, 2011), ('SneaselClaw', 754, 33, 2011), ('SneaselClaw', 756, 34, 2011), ('SneaselClaw', 762, 35, 2011), ('SneaselClaw', 767, 36, 2011), ('SneaselClaw', 771, 37, 2011), ('SneaselClaw', 774, 38, 2011), ('SneaselClaw', 782, 39, 2011), ('SneaselClaw', 575, 40, 2011), ('SneaselClaw', 614, 41, 2011), ('SneaselClaw', 726, 42, 2011), ('SneaselClaw', 722, 43, 2011), ('SneaselClaw', 749, 44, 2011), ('SneaselClaw', 752, 45, 2011), ('SneaselClaw', 661, 46, 2011), ('SneaselClaw', 671, 47, 2011), ('SneaselClaw', 605, 48, 2011), ('SneaselClaw', 632, 49, 2011), ('SneaselClaw', 638, 50, 2011), ('SneaselClaw', 676, 51, 2011), ('SneaselFTW', 860, 1, 2012), ('SneaselFTW', 862, 2, 2012), ('SneaselFTW', 1118, 3, 2012), ('SneaselFTW', 1045, 4, 2012), ('SneaselFTW', 821, 5, 2012), ('SneaselFTW', 1019, 6, 2012), ('SneaselFTW', 806, 7, 2012), ('SneaselFTW', 1100, 8, 2012), ('SneaselFTW', 996, 9, 2012), ('SneaselFTW', 1021, 10, 2012), ('SneaselFTW', 1023, 14, 2012), ('SneaselFTW', 942, 16, 2012), ('SneaselFTW', 944, 17, 2012), ('SneaselFTW', 811, 18, 2012), ('SneaselFTW', 953, 19, 2012), ('SneaselFTW', 835, 20, 2012), ('SneaselFTW', 1067, 21, 2012), ('SneaselFTW', 1077, 22, 2012), ('SneaselFTW', 1003, 23, 2012), ('SneaselFTW', 1005, 27, 2012), ('SneaselFTW', 965, 28, 2012), ('SneaselFTW', 883, 29, 2012), ('SneaselFTW', 802, 30, 2012), ('SneaselFTW', 803, 33, 2012), ('SneaselFTW', 970, 34, 2012), ('SneaselFTW', 971, 35, 2012), ('SneaselFTW', 908, 36, 2012), ('SneaselFTW', 890, 37, 2012), ('SneaselFTW', 896, 38, 2012), ('SneaselFTW', 1016, 39, 2012), ('SneaselFTW', 913, 40, 2012), ('SneaselFTW', 939, 41, 2012), ('SneaselFTW', 1033, 42, 2012), ('SneaselFTW', 879, 43, 2012), ('SneaselFTW', 1009, 44, 2012), ('SneaselFTW', 1093, 45, 2012), ('SneaselFTW', 946, 46, 2012), ('SneaselFTW', 917, 47, 2012), ('SneaselFTW', 992, 48, 2012), ('SneaselFTW', 1020, 49, 2012), ('SneaselFTW', 1110, 50, 2012), ('SneaselFTW', 918, 51, 2012), ('SneaselFTW', 949, 52, 2012), ('solovino', 280, 2, 2009), ('solovino', 224, 4, 2009), ('solovino', 235, 7, 2009), ('solovino', 163, 8, 2009), ('solovino', 239, 9, 2009), ('solovino', 246, 14, 2009), ('solovino', 304, 15, 2009), ('solovino', 234, 17, 2009), ('solovino', 203, 18, 2009), ('solovino', 256, 19, 2009), ('solovino', 240, 20, 2009), ('solovino', 289, 21, 2009), ('solovino', 173, 22, 2009), ('solovino', 241, 24, 2009), ('solovino', 263, 26, 2009), ('solovino', 274, 34, 2009), ('solovino', 292, 35, 2009), ('solovino', 276, 36, 2009), ('solovino', 298, 40, 2009), ('solovino', 172, 41, 2009), ('solovino', 303, 42, 2009), ('solovino', 307, 44, 2009), ('Son_of_Shadows', 183, 1, 2009), ('Son_of_Shadows', 208, 2, 2009), ('Son_of_Shadows', 224, 4, 2009), ('Son_of_Shadows', 243, 5, 2009), ('Son_of_Shadows', 269, 6, 2009), ('Son_of_Shadows', 196, 7, 2009), ('Son_of_Shadows', 163, 8, 2009), ('Son_of_Shadows', 185, 12, 2009), ('Son_of_Shadows', 272, 13, 2009), ('Son_of_Shadows', 246, 14, 2009), ('Son_of_Shadows', 271, 15, 2009), ('Son_of_Shadows', 267, 16, 2009), ('Son_of_Shadows', 216, 17, 2009), ('Son_of_Shadows', 203, 18, 2009), ('Son_of_Shadows', 256, 19, 2009), ('Son_of_Shadows', 182, 20, 2009), ('Son_of_Shadows', 238, 21, 2009), ('Son_of_Shadows', 241, 24, 2009), ('Son_of_Shadows', 188, 26, 2009), ('Son_of_Shadows', 251, 34, 2009), ('Son_of_Shadows', 169, 36, 2009), ('Son_of_Shadows', 277, 38, 2009), ('Son_of_Shadows', 189, 39, 2009), ('Son_of_Shadows', 161, 41, 2009), ('SpiffThis', 177, 1, 2009), ('SpiffThis', 208, 2, 2009), ('SpiffThis', 209, 3, 2009), ('SpiffThis', 224, 4, 2009), ('SpiffThis', 250, 5, 2009), ('SpiffThis', 210, 6, 2009), ('SpiffThis', 249, 7, 2009), ('SpiffThis', 215, 8, 2009), ('SpiffThis', 167, 9, 2009), ('SpiffThis', 165, 10, 2009), ('SpiffThis', 205, 12, 2009), ('SpiffThis', 272, 13, 2009), ('SpiffThis', 304, 15, 2009), ('SpiffThis', 213, 16, 2009), ('SpiffThis', 158, 17, 2009), ('SpiffThis', 244, 18, 2009), ('SpiffThis', 199, 20, 2009), ('SpiffThis', 289, 21, 2009), ('SpiffThis', 175, 24, 2009), ('SpiffThis', 236, 27, 2009), ('SpiffThis', 306, 32, 2009), ('SpiffThis', 181, 33, 2009), ('SpiffThis', 179, 36, 2009), ('SpiffThis', 189, 39, 2009), ('SpiffThis', 161, 41, 2009), ('SpiffThis', 303, 42, 2009), ('SpiffThis', 265, 43, 2009), ('Stoc15', 14, 3, 2008), ('Stoc15', 17, 4, 2008), ('Stoc15', 25, 5, 2008), ('Stoc15', 32, 6, 2008), ('Stoc15', 39, 7, 2008), ('Stoc15', 40, 8, 2008), ('Stoc15', 54, 12, 2008), ('Stoc15', 59, 13, 2008), ('Stoc15', 62, 14, 2008), ('Stoc15', 63, 15, 2008), ('Stoc15', 66, 16, 2008), ('Stoc15', 69, 17, 2008), ('Stoc15', 72, 18, 2008), ('Stoc15', 74, 19, 2008), ('Stoc15', 79, 20, 2008), ('Stoc15', 82, 21, 2008), ('Stoc15', 87, 22, 2008), ('Stoc15', 88, 23, 2008), ('Stoc15', 91, 24, 2008), ('Stoc15', 100, 26, 2008), ('Stoc15', 104, 27, 2008), ('Stoc15', 105, 28, 2008), ('Stoc15', 106, 29, 2008), ('Stoc15', 109, 31, 2008), ('Stoc15', 110, 32, 2008), ('Stoc15', 113, 33, 2008), ('Stoc15', 114, 34, 2008), ('Stoc15', 119, 35, 2008), ('Stoc15', 124, 36, 2008), ('Stoc15', 129, 37, 2008), ('Stoc15', 133, 38, 2008), ('Stoc15', 138, 39, 2008), ('storymasterb', 6, 1, 2008), ('storymasterb', 315, 1, 2010), ('storymasterb', 9, 2, 2008), ('storymasterb', 322, 2, 2010), ('storymasterb', 14, 3, 2008), ('storymasterb', 328, 3, 2010), ('storymasterb', 22, 4, 2008), ('storymasterb', 330, 4, 2010), ('storymasterb', 30, 5, 2008), ('storymasterb', 341, 5, 2010), ('storymasterb', 33, 6, 2008), ('storymasterb', 356, 6, 2010), ('storymasterb', 38, 7, 2008), ('storymasterb', 349, 7, 2010), ('storymasterb', 369, 8, 2010), ('storymasterb', 45, 9, 2008), ('storymasterb', 379, 9, 2010), ('storymasterb', 48, 10, 2008), ('storymasterb', 381, 10, 2010), ('storymasterb', 50, 11, 2008), ('storymasterb', 54, 12, 2008), ('storymasterb', 61, 14, 2008), ('storymasterb', 65, 16, 2008), ('storymasterb', 387, 16, 2010), ('storymasterb', 69, 17, 2008), ('storymasterb', 393, 17, 2010), ('storymasterb', 414, 18, 2010), ('storymasterb', 419, 19, 2010), ('storymasterb', 79, 20, 2008), ('storymasterb', 423, 20, 2010), ('storymasterb', 83, 21, 2008), ('storymasterb', 429, 21, 2010), ('storymasterb', 437, 22, 2010), ('storymasterb', 444, 23, 2010), ('storymasterb', 93, 24, 2008), ('storymasterb', 448, 24, 2010), ('storymasterb', 97, 26, 2008), ('storymasterb', 462, 26, 2010), ('storymasterb', 104, 27, 2008), ('storymasterb', 470, 27, 2010), ('storymasterb', 486, 28, 2010), ('storymasterb', 495, 29, 2010), ('storymasterb', 546, 30, 2010), ('storymasterb', 113, 33, 2008), ('storymasterb', 478, 33, 2010), ('storymasterb', 114, 34, 2008), ('storymasterb', 504, 34, 2010), ('storymasterb', 122, 35, 2008), ('storymasterb', 513, 35, 2010), ('storymasterb', 124, 36, 2008), ('storymasterb', 521, 36, 2010), ('storymasterb', 524, 37, 2010), ('storymasterb', 528, 38, 2010), ('storymasterb', 539, 39, 2010), ('storymasterb', 365, 41, 2010), ('storymasterb', 456, 42, 2010), ('storymasterb', 453, 43, 2010), ('storymasterb', 485, 44, 2010), ('storymasterb', 465, 45, 2010), ('storymasterb', 403, 46, 2010), ('storymasterb', 406, 47, 2010), ('Subzero Dragon', 1224, 1, 2013), ('Subzero Dragon', 1302, 4, 2013), ('Subzero Dragon', 1303, 5, 2013), ('Subzero Dragon', 1168, 6, 2013), ('Subzero Dragon', 1131, 7, 2013), ('Subzero Dragon', 1326, 8, 2013), ('Subzero Dragon', 1171, 9, 2013), ('Subzero Dragon', 1173, 10, 2013), ('Subzero Dragon', 1137, 14, 2013), ('Subzero Dragon', 1328, 16, 2013), ('Subzero Dragon', 1175, 17, 2013), ('Subzero Dragon', 1314, 18, 2013), ('Subzero Dragon', 1180, 19, 2013), ('Subzero Dragon', 1145, 20, 2013), ('Subzero Dragon', 1316, 21, 2013), ('Subzero Dragon', 1185, 22, 2013), ('Subzero Dragon', 1343, 23, 2013), ('Subzero Dragon', 1222, 24, 2013), ('Subzero Dragon', 1152, 26, 2013), ('Subzero Dragon', 1154, 28, 2013), ('Subzero Dragon', 1281, 29, 2013), ('Subzero Dragon', 1157, 33, 2013), ('Subzero Dragon', 1194, 34, 2013), ('Subzero Dragon', 1342, 36, 2013), ('Subzero Dragon', 1288, 37, 2013), ('Subzero Dragon', 1162, 38, 2013), ('Subzero Dragon', 1163, 39, 2013), ('Subzero Dragon', 1190, 43, 2013), ('Subzero Dragon', 1323, 45, 2013), ('Subzero Dragon', 1139, 46, 2013), ('Subzero Dragon', 1140, 47, 2013), ('Subzero Dragon', 1322, 48, 2013), ('Subzero Dragon', 1134, 49, 2013), ('Subzero Dragon', 1312, 51, 2013), ('Subzero Dragon', 1313, 52, 2013), ('Subzero Dragon', 1165, 53, 2013), ('T-Bolt', 860, 1, 2012), ('T-Bolt', 1124, 1, 2013), ('T-Bolt', 927, 2, 2012), ('T-Bolt', 1243, 2, 2013), ('T-Bolt', 820, 4, 2012), ('T-Bolt', 1302, 4, 2013), ('T-Bolt', 1057, 5, 2012), ('T-Bolt', 1321, 5, 2013), ('T-Bolt', 1019, 6, 2012), ('T-Bolt', 1167, 6, 2013), ('T-Bolt', 1060, 7, 2012), ('T-Bolt', 1131, 7, 2013), ('T-Bolt', 1061, 8, 2012), ('T-Bolt', 1132, 8, 2013), ('T-Bolt', 807, 9, 2012), ('T-Bolt', 1173, 10, 2013), ('T-Bolt', 943, 14, 2012), ('T-Bolt', 1062, 16, 2012), ('T-Bolt', 1174, 16, 2013), ('T-Bolt', 1050, 17, 2012), ('T-Bolt', 1064, 18, 2012), ('T-Bolt', 1314, 18, 2013), ('T-Bolt', 954, 19, 2012), ('T-Bolt', 1180, 19, 2013), ('T-Bolt', 1102, 20, 2012), ('T-Bolt', 1181, 20, 2013), ('T-Bolt', 1067, 21, 2012), ('T-Bolt', 1331, 21, 2013), ('T-Bolt', 958, 22, 2012), ('T-Bolt', 959, 23, 2012), ('T-Bolt', 1148, 23, 2013), ('T-Bolt', 1113, 26, 2012), ('T-Bolt', 1152, 26, 2013), ('T-Bolt', 1065, 27, 2012), ('T-Bolt', 1277, 27, 2013), ('T-Bolt', 1006, 28, 2012), ('T-Bolt', 1154, 28, 2013), ('T-Bolt', 966, 29, 2012), ('T-Bolt', 1155, 29, 2013), ('T-Bolt', 967, 30, 2012), ('T-Bolt', 1081, 33, 2012), ('T-Bolt', 1157, 33, 2013), ('T-Bolt', 887, 34, 2012), ('T-Bolt', 1233, 34, 2013), ('T-Bolt', 925, 35, 2012), ('T-Bolt', 1285, 35, 2013), ('T-Bolt', 1070, 36, 2012), ('T-Bolt', 1342, 36, 2013), ('T-Bolt', 1288, 37, 2013), ('T-Bolt', 793, 38, 2012), ('T-Bolt', 1289, 38, 2013), ('T-Bolt', 892, 39, 2012), ('T-Bolt', 1163, 39, 2013), ('T-Bolt', 1048, 41, 2012), ('T-Bolt', 1307, 41, 2013), ('T-Bolt', 1105, 42, 2012), ('T-Bolt', 1052, 43, 2012), ('T-Bolt', 1189, 43, 2013), ('T-Bolt', 968, 44, 2012), ('T-Bolt', 885, 45, 2012), ('T-Bolt', 1063, 46, 2012), ('T-Bolt', 1237, 46, 2013), ('T-Bolt', 1037, 47, 2012), ('T-Bolt', 1263, 47, 2013), ('T-Bolt', 1059, 48, 2012), ('T-Bolt', 1203, 48, 2013), ('T-Bolt', 1297, 49, 2013), ('T-Bolt', 1111, 50, 2012), ('T-Bolt', 1172, 50, 2013), ('T-Bolt', 1000, 51, 2012), ('T-Bolt', 1312, 51, 2013), ('T-Bolt', 832, 52, 2012), ('T-Bolt', 1178, 52, 2013), ('T-Bolt', 1125, 53, 2013), ('The 4th KIRA', 313, 1, 2010), ('The 4th KIRA', 325, 2, 2010), ('The 4th KIRA', 328, 3, 2010), ('The 4th KIRA', 333, 4, 2010), ('The 4th KIRA', 344, 5, 2010), ('The 4th KIRA', 356, 6, 2010), ('The 4th KIRA', 348, 7, 2010), ('The 4th KIRA', 371, 8, 2010), ('The 4th KIRA', 376, 9, 2010), ('The 4th KIRA', 382, 10, 2010), ('The 4th KIRA', 390, 16, 2010), ('The 4th KIRA', 393, 17, 2010), ('The 4th KIRA', 412, 18, 2010), ('The 4th KIRA', 420, 19, 2010), ('The 4th KIRA', 424, 20, 2010), ('The 4th KIRA', 429, 21, 2010), ('The 4th KIRA', 433, 22, 2010), ('The 4th KIRA', 442, 23, 2010), ('The 4th KIRA', 448, 24, 2010), ('The 4th KIRA', 461, 26, 2010), ('The 4th KIRA', 470, 27, 2010), ('The 4th KIRA', 486, 28, 2010), ('The 4th KIRA', 493, 29, 2010), ('The 4th KIRA', 499, 30, 2010), ('The 4th KIRA', 475, 33, 2010), ('The 4th KIRA', 503, 34, 2010), ('The 4th KIRA', 510, 35, 2010), ('The 4th KIRA', 518, 36, 2010), ('The 4th KIRA', 525, 37, 2010), ('The 4th KIRA', 532, 38, 2010), ('The 4th KIRA', 538, 39, 2010), ('The 4th KIRA', 329, 40, 2010), ('The 4th KIRA', 365, 41, 2010), ('The 4th KIRA', 451, 43, 2010), ('The 4th KIRA', 483, 44, 2010), ('The 4th KIRA', 466, 45, 2010), ('The 4th KIRA', 400, 46, 2010), ('The 4th KIRA', 409, 47, 2010), ('The Doctor', 7, 1, 2008), ('The Doctor', 9, 2, 2008), ('The Doctor', 16, 3, 2008), ('The Doctor', 24, 4, 2008), ('The Doctor', 25, 5, 2008), ('The Doctor', 34, 6, 2008), ('The Doctor', 41, 8, 2008), ('The Doctor', 45, 9, 2008), ('The Doctor', 50, 11, 2008), ('The Doctor', 54, 12, 2008), ('The Doctor', 59, 13, 2008), ('The Doctor', 64, 16, 2008), ('The Doctor', 68, 17, 2008), ('The Doctor', 72, 18, 2008), ('The Doctor', 81, 20, 2008), ('The Doctor', 83, 21, 2008), ('The Doctor', 87, 22, 2008), ('The Doctor', 90, 23, 2008), ('The Doctor', 91, 24, 2008), ('The Doctor', 100, 26, 2008), ('The Doctor', 102, 27, 2008), ('The Doctor', 107, 30, 2008), ('The Doctor', 109, 31, 2008), ('The Doctor', 110, 32, 2008), ('The Doctor', 113, 33, 2008), ('The Doctor', 118, 34, 2008), ('The Doctor', 120, 35, 2008), ('The Doctor', 126, 36, 2008), ('The Doctor', 127, 37, 2008), ('The Doctor', 133, 38, 2008), ('The Doctor', 139, 39, 2008), ('The Great Butler', 305, 1, 2009), ('The Great Butler', 549, 1, 2011), ('The Great Butler', 253, 2, 2009), ('The Great Butler', 570, 2, 2011), ('The Great Butler', 254, 3, 2009), ('The Great Butler', 224, 4, 2009), ('The Great Butler', 577, 4, 2011), ('The Great Butler', 160, 5, 2009), ('The Great Butler', 591, 5, 2011), ('The Great Butler', 232, 6, 2009), ('The Great Butler', 598, 6, 2011), ('The Great Butler', 196, 7, 2009), ('The Great Butler', 610, 7, 2011), ('The Great Butler', 163, 8, 2009), ('The Great Butler', 239, 9, 2009), ('The Great Butler', 629, 9, 2011), ('The Great Butler', 165, 10, 2009), ('The Great Butler', 641, 10, 2011), ('The Great Butler', 185, 12, 2009), ('The Great Butler', 272, 13, 2009), ('The Great Butler', 246, 14, 2009), ('The Great Butler', 648, 14, 2011), ('The Great Butler', 271, 15, 2009), ('The Great Butler', 284, 16, 2009), ('The Great Butler', 642, 16, 2011), ('The Great Butler', 286, 17, 2009), ('The Great Butler', 658, 17, 2011), ('The Great Butler', 203, 18, 2009), ('The Great Butler', 677, 18, 2011), ('The Great Butler', 682, 19, 2011), ('The Great Butler', 199, 20, 2009), ('The Great Butler', 690, 20, 2011), ('The Great Butler', 289, 21, 2009), ('The Great Butler', 700, 21, 2011), ('The Great Butler', 187, 22, 2009), ('The Great Butler', 710, 22, 2011), ('The Great Butler', 248, 23, 2009), ('The Great Butler', 715, 23, 2011), ('The Great Butler', 168, 24, 2009), ('The Great Butler', 717, 24, 2011), ('The Great Butler', 226, 26, 2009), ('The Great Butler', 731, 26, 2011), ('The Great Butler', 229, 27, 2009), ('The Great Butler', 733, 27, 2011), ('The Great Butler', 744, 29, 2011), ('The Great Butler', 745, 30, 2011), ('The Great Butler', 755, 33, 2011), ('The Great Butler', 201, 34, 2009), ('The Great Butler', 760, 34, 2011), ('The Great Butler', 204, 35, 2009), ('The Great Butler', 763, 35, 2011), ('The Great Butler', 276, 36, 2009), ('The Great Butler', 769, 36, 2011), ('The Great Butler', 293, 37, 2009), ('The Great Butler', 773, 37, 2011), ('The Great Butler', 170, 38, 2009), ('The Great Butler', 774, 38, 2011), ('The Great Butler', 189, 39, 2009), ('The Great Butler', 782, 39, 2011), ('The Great Butler', 255, 40, 2009), ('The Great Butler', 270, 41, 2009), ('The Great Butler', 616, 41, 2011), ('The Great Butler', 303, 42, 2009), ('The Great Butler', 265, 43, 2009), ('The Great Butler', 307, 44, 2009), ('The Great Butler', 749, 44, 2011), ('The Great Butler', 665, 46, 2011), ('The Great Butler', 667, 47, 2011), ('The Great Butler', 606, 48, 2011), ('The Great Butler', 632, 49, 2011), ('The Great Butler', 640, 50, 2011), ('The Great Butler', 676, 51, 2011), ('The Meddler', 1197, 1, 2013), ('The Meddler', 1294, 2, 2013), ('The Meddler', 1127, 4, 2013), ('The Meddler', 1201, 5, 2013), ('The Meddler', 1202, 6, 2013), ('The Meddler', 1217, 7, 2013), ('The Meddler', 1132, 8, 2013), ('The Meddler', 1229, 9, 2013), ('The Meddler', 1257, 10, 2013), ('The Meddler', 1137, 14, 2013), ('The Meddler', 1136, 16, 2013), ('The Meddler', 1238, 18, 2013), ('The Meddler', 1179, 19, 2013), ('The Meddler', 1145, 20, 2013), ('The Meddler', 1183, 21, 2013), ('The Meddler', 1147, 22, 2013), ('The Meddler', 1343, 23, 2013), ('The Meddler', 1149, 24, 2013), ('The Meddler', 1208, 26, 2013), ('The Meddler', 1277, 27, 2013), ('The Meddler', 1279, 28, 2013), ('The Meddler', 1281, 29, 2013), ('The Meddler', 1191, 30, 2013), ('The Meddler', 1193, 33, 2013), ('The Meddler', 1211, 34, 2013), ('The Meddler', 1286, 35, 2013), ('The Meddler', 1342, 36, 2013), ('The Meddler', 1196, 37, 2013), ('The Meddler', 1290, 38, 2013), ('The Meddler', 1214, 39, 2013), ('The Meddler', 1199, 40, 2013), ('The Meddler', 1307, 41, 2013), ('The Meddler', 1151, 42, 2013), ('The Meddler', 1150, 43, 2013), ('The Meddler', 1282, 44, 2013), ('The Meddler', 1283, 45, 2013), ('The Meddler', 1237, 46, 2013), ('The Meddler', 1140, 47, 2013), ('The Meddler', 1248, 48, 2013), ('The Meddler', 1297, 49, 2013), ('The Meddler', 1255, 50, 2013), ('The Meddler', 1176, 51, 2013), ('The Meddler', 1178, 52, 2013), ('The Meddler', 1165, 53, 2013), ('TheCharredDragon', 1318, 1, 2013), ('TheCharredDragon', 1225, 2, 2013), ('TheCharredDragon', 1302, 4, 2013), ('TheCharredDragon', 1128, 5, 2013), ('TheCharredDragon', 1129, 6, 2013), ('TheCharredDragon', 1216, 7, 2013), ('TheCharredDragon', 1219, 8, 2013), ('TheCharredDragon', 1253, 9, 2013), ('TheCharredDragon', 1259, 14, 2013), ('TheCharredDragon', 1328, 16, 2013), ('TheCharredDragon', 1261, 17, 2013), ('TheCharredDragon', 1339, 18, 2013), ('TheCharredDragon', 1268, 19, 2013), ('TheCharredDragon', 1269, 20, 2013), ('TheCharredDragon', 1230, 21, 2013), ('TheCharredDragon', 1221, 22, 2013), ('TheCharredDragon', 1186, 23, 2013), ('TheCharredDragon', 1222, 24, 2013), ('TheCharredDragon', 1152, 26, 2013), ('TheCharredDragon', 1231, 27, 2013), ('TheCharredDragon', 1193, 33, 2013), ('TheCharredDragon', 1333, 34, 2013), ('TheCharredDragon', 1159, 35, 2013), ('TheCharredDragon', 1213, 36, 2013), ('TheCharredDragon', 1196, 37, 2013), ('TheCharredDragon', 1162, 38, 2013), ('TheCharredDragon', 1163, 39, 2013), ('TheCharredDragon', 1244, 40, 2013), ('TheCharredDragon', 1252, 41, 2013), ('TheCharredDragon', 1192, 45, 2013), ('TheCharredDragon', 1237, 46, 2013), ('TheCharredDragon', 1140, 47, 2013), ('TheCharredDragon', 1203, 48, 2013), ('TheCharredDragon', 1134, 49, 2013), ('TheCharredDragon', 1256, 50, 2013), ('TheCharredDragon', 1141, 51, 2013), ('TheCharredDragon', 1178, 52, 2013), ('TheCharredDragon', 1242, 53, 2013), ('TheDarkKnightFalls', 1044, 1, 2012), ('TheDarkKnightFalls', 985, 2, 2012), ('TheDarkKnightFalls', 929, 3, 2012), ('TheDarkKnightFalls', 864, 4, 2012), ('TheDarkKnightFalls', 787, 5, 2012), ('TheDarkKnightFalls', 1084, 6, 2012), ('TheDarkKnightFalls', 788, 7, 2012), ('TheDarkKnightFalls', 1100, 8, 2012), ('TheDarkKnightFalls', 1109, 9, 2012), ('TheDarkKnightFalls', 1049, 10, 2012), ('TheDarkKnightFalls', 1023, 14, 2012), ('TheDarkKnightFalls', 998, 16, 2012), ('TheDarkKnightFalls', 873, 17, 2012), ('TheDarkKnightFalls', 833, 18, 2012), ('TheDarkKnightFalls', 954, 19, 2012), ('TheDarkKnightFalls', 1075, 20, 2012), ('TheDarkKnightFalls', 1076, 21, 2012), ('TheDarkKnightFalls', 1077, 22, 2012), ('TheDarkKnightFalls', 959, 23, 2012), ('TheDarkKnightFalls', 1113, 26, 2012), ('TheDarkKnightFalls', 882, 27, 2012), ('TheDarkKnightFalls', 1006, 28, 2012), ('TheDarkKnightFalls', 966, 29, 2012), ('TheDarkKnightFalls', 845, 30, 2012), ('TheDarkKnightFalls', 886, 33, 2012), ('TheDarkKnightFalls', 970, 34, 2012), ('TheDarkKnightFalls', 1116, 35, 2012), ('TheDarkKnightFalls', 972, 36, 2012), ('TheDarkKnightFalls', 973, 37, 2012), ('TheDarkKnightFalls', 793, 38, 2012), ('TheDarkKnightFalls', 910, 39, 2012), ('TheDarkKnightFalls', 1048, 41, 2012), ('TheDarkKnightFalls', 962, 42, 2012), ('TheDarkKnightFalls', 960, 43, 2012), ('TheDarkKnightFalls', 968, 44, 2012), ('TheDarkKnightFalls', 1093, 45, 2012), ('TheDarkKnightFalls', 1063, 46, 2012), ('TheDarkKnightFalls', 1037, 47, 2012), ('TheDarkKnightFalls', 804, 48, 2012), ('TheDarkKnightFalls', 789, 49, 2012), ('TheDarkKnightFalls', 1111, 50, 2012), ('TheDarkKnightFalls', 918, 51, 2012), ('TheDarkKnightFalls', 810, 52, 2012), ('TheSirPeras', 853, 1, 2012), ('TheSirPeras', 902, 2, 2012), ('TheSirPeras', 903, 4, 2012), ('TheSirPeras', 854, 5, 2012), ('TheSirPeras', 1095, 6, 2012), ('TheSirPeras', 1096, 7, 2012), ('TheSirPeras', 943, 14, 2012), ('TheSirPeras', 856, 17, 2012), ('TheSirPeras', 811, 18, 2012), ('TheSirPeras', 857, 20, 2012), ('TheSirPeras', 815, 23, 2012), ('TheSirPeras', 1091, 26, 2012), ('TheSirPeras', 797, 34, 2012), ('TheSirPeras', 859, 35, 2012), ('TheSirPeras', 1043, 36, 2012), ('TheSirPeras', 982, 37, 2012), ('TheSirPeras', 793, 38, 2012), ('TheSirPeras', 910, 39, 2012), ('TheSirPeras', 1035, 41, 2012), ('TheSirPeras', 981, 47, 2012), ('TheSirPeras', 796, 48, 2012), ('Tropius07', 547, 1, 2011), ('Tropius07', 563, 2, 2011), ('Tropius07', 580, 4, 2011), ('Tropius07', 586, 5, 2011), ('Tropius07', 595, 6, 2011), ('Tropius07', 641, 10, 2011), ('Tropius07', 647, 14, 2011), ('Tropius07', 642, 16, 2011), ('Tropius07', 656, 17, 2011), ('Tropius07', 677, 18, 2011), ('Tropius07', 679, 19, 2011), ('Tropius07', 739, 28, 2011), ('Tropius07', 744, 29, 2011), ('Tropius07', 760, 34, 2011), ('Tropius07', 773, 37, 2011), ('Tropius07', 774, 38, 2011), ('Tropius07', 779, 39, 2011), ('Tropius07', 575, 40, 2011), ('Tropius07', 616, 41, 2011), ('Tropius07', 662, 46, 2011), ('Tropius07', 667, 47, 2011), ('Tropius07', 606, 48, 2011), ('Tropius07', 635, 49, 2011), ('Tropius07', 640, 50, 2011), ('Tropius07', 676, 51, 2011), ('trufflesbaby', 555, 1, 2011), ('trufflesbaby', 565, 2, 2011), ('trufflesbaby', 573, 3, 2011), ('trufflesbaby', 580, 4, 2011), ('trufflesbaby', 600, 6, 2011), ('trufflesbaby', 625, 9, 2011), ('trufflesbaby', 641, 10, 2011), ('trufflesbaby', 649, 14, 2011), ('trufflesbaby', 656, 17, 2011), ('trufflesbaby', 683, 19, 2011), ('trufflesbaby', 694, 20, 2011), ('trufflesbaby', 698, 21, 2011), ('trufflesbaby', 704, 22, 2011), ('trufflesbaby', 734, 27, 2011), ('trufflesbaby', 744, 29, 2011), ('trufflesbaby', 754, 33, 2011), ('trufflesbaby', 764, 35, 2011), ('trufflesbaby', 769, 36, 2011), ('trufflesbaby', 575, 40, 2011), ('trufflesbaby', 726, 42, 2011), ('trufflesbaby', 752, 45, 2011), ('trufflesbaby', 668, 47, 2011), ('trufflesbaby', 636, 50, 2011), ('trufflesbaby', 676, 51, 2011), ('Tyranidos', 2, 1, 2008), ('Tyranidos', 9, 2, 2008), ('Tyranidos', 16, 3, 2008), ('Tyranidos', 21, 4, 2008), ('Tyranidos', 25, 5, 2008), ('Tyranidos', 33, 6, 2008), ('Tyranidos', 45, 9, 2008), ('Tyranidos', 48, 10, 2008), ('Tyranidos', 53, 12, 2008), ('Tyranidos', 62, 14, 2008), ('Tyranidos', 99, 26, 2008), ('Tyranidos', 103, 27, 2008), ('Tyranidos', 105, 28, 2008), ('Tyranidos', 106, 29, 2008), ('Tyranidos', 107, 30, 2008), ('Tyranidos', 109, 31, 2008), ('Tyranidos', 110, 32, 2008), ('Tyranidos', 112, 33, 2008), ('Tyranidos', 114, 34, 2008), ('Tyranidos', 126, 36, 2008), ('Umbreon Ruler', 7, 1, 2008), ('Umbreon Ruler', 14, 3, 2008), ('Umbreon Ruler', 18, 4, 2008), ('Umbreon Ruler', 25, 5, 2008), ('Umbreon Ruler', 50, 11, 2008), ('Umbreon Ruler', 54, 12, 2008), ('Umbreon Ruler', 59, 13, 2008), ('Umbreon Ruler', 63, 15, 2008), ('Umbreon Ruler', 68, 17, 2008), ('Umbreon Ruler', 74, 19, 2008), ('Umbreon Ruler', 87, 22, 2008), ('Umbreon Ruler', 93, 24, 2008), ('Umbreon Ruler', 100, 26, 2008), ('Umbreon Ruler', 103, 27, 2008), ('Umbreon Ruler', 105, 28, 2008), ('Umbreon Ruler', 106, 29, 2008), ('Umbreon Ruler', 107, 30, 2008), ('Umbreon Ruler', 113, 33, 2008), ('Umbreon Ruler', 117, 34, 2008), ('Umbreon Ruler', 120, 35, 2008), ('Umbreon Ruler', 125, 36, 2008), ('Umbreon Ruler', 127, 37, 2008), ('Umbreon Ruler', 133, 38, 2008), ('Umbreon Ruler', 139, 39, 2008), ('Venomfrog', 223, 1, 2009), ('Venomfrog', 208, 2, 2009), ('Venomfrog', 268, 3, 2009), ('Venomfrog', 191, 4, 2009), ('Venomfrog', 160, 5, 2009), ('Venomfrog', 210, 6, 2009), ('Venomfrog', 196, 7, 2009), ('Venomfrog', 282, 8, 2009), ('Venomfrog', 239, 9, 2009), ('Venomfrog', 197, 10, 2009), ('Venomfrog', 185, 12, 2009), ('Venomfrog', 272, 13, 2009), ('Venomfrog', 246, 14, 2009), ('Venomfrog', 259, 15, 2009), ('Venomfrog', 284, 16, 2009), ('Venomfrog', 262, 17, 2009), ('Venomfrog', 244, 18, 2009), ('Venomfrog', 256, 19, 2009), ('Venomfrog', 288, 20, 2009), ('Venomfrog', 289, 21, 2009), ('Venomfrog', 187, 22, 2009), ('Venomfrog', 248, 23, 2009), ('Venomfrog', 168, 24, 2009), ('Venomfrog', 263, 26, 2009), ('Venomfrog', 229, 27, 2009), ('Venomfrog', 306, 32, 2009), ('Venomfrog', 181, 33, 2009), ('Venomfrog', 251, 34, 2009), ('Venomfrog', 276, 36, 2009), ('Venomfrog', 299, 37, 2009), ('Venomfrog', 277, 38, 2009), ('Venomfrog', 222, 39, 2009), ('Venomfrog', 298, 40, 2009), ('Venomfrog', 172, 41, 2009), ('Venomfrog', 303, 42, 2009), ('Venomfrog', 265, 43, 2009), ('Venomfrog', 301, 44, 2009), ('Volcer', 1293, 1, 2013), ('Volcer', 1243, 2, 2013), ('Volcer', 1166, 4, 2013), ('Volcer', 1303, 5, 2013), ('Volcer', 1168, 6, 2013), ('Volcer', 1131, 7, 2013), ('Volcer', 1326, 8, 2013), ('Volcer', 1229, 9, 2013), ('Volcer', 1174, 16, 2013), ('Volcer', 1175, 17, 2013), ('Volcer', 1238, 18, 2013), ('Volcer', 1179, 19, 2013), ('Volcer', 1270, 20, 2013), ('Volcer', 1184, 21, 2013), ('Volcer', 1185, 22, 2013), ('Volcer', 1343, 23, 2013), ('Volcer', 1152, 26, 2013), ('Volcer', 1278, 27, 2013), ('Volcer', 1232, 29, 2013), ('Volcer', 1191, 30, 2013), ('Volcer', 1193, 33, 2013), ('Volcer', 1158, 34, 2013), ('Volcer', 1159, 35, 2013), ('Volcer', 1342, 36, 2013), ('Volcer', 1288, 37, 2013), ('Volcer', 1289, 38, 2013), ('Volcer', 1291, 39, 2013), ('Volcer', 1244, 40, 2013), ('Volcer', 1218, 41, 2013), ('Volcer', 1151, 42, 2013), ('Volcer', 1189, 43, 2013), ('Volcer', 1282, 44, 2013), ('Volcer', 1283, 45, 2013), ('Volcer', 1263, 47, 2013), ('Volcer', 1340, 50, 2013), ('Volcer', 1178, 52, 2013), ('Volcer', 1165, 53, 2013), ('Volt Trainer', 555, 1, 2011), ('Volt Trainer', 566, 2, 2011), ('Volt Trainer', 580, 4, 2011), ('Volt Trainer', 588, 5, 2011), ('Volt Trainer', 597, 6, 2011), ('Volt Trainer', 611, 7, 2011), ('Volt Trainer', 648, 14, 2011), ('Volt Trainer', 654, 17, 2011), ('Volt Trainer', 678, 18, 2011), ('Volt Trainer', 681, 19, 2011), ('Volt Trainer', 698, 21, 2011), ('Volt Trainer', 708, 22, 2011), ('Volt Trainer', 712, 23, 2011), ('Volt Trainer', 716, 24, 2011), ('Volt Trainer', 729, 26, 2011), ('Volt Trainer', 734, 27, 2011), ('Volt Trainer', 754, 33, 2011), ('Volt Trainer', 763, 35, 2011), ('Volt Trainer', 769, 36, 2011), ('Volt Trainer', 773, 37, 2011), ('Volt Trainer', 616, 41, 2011), ('Volt Trainer', 724, 43, 2011), ('Volt Trainer', 668, 47, 2011), ('Volt Trainer', 633, 49, 2011), ('Volt Trainer', 637, 50, 2011), ('Xragon', 853, 1, 2012), ('Xragon', 928, 2, 2012), ('Xragon', 977, 5, 2012), ('Xragon', 1095, 6, 2012), ('Xragon', 1096, 7, 2012), ('Xragon', 856, 17, 2012), ('Xragon', 905, 20, 2012), ('Xragon', 920, 21, 2012), ('Xragon', 877, 22, 2012), ('Xragon', 843, 28, 2012), ('Xragon', 1092, 29, 2012), ('Xragon', 906, 30, 2012), ('Xragon', 1053, 33, 2012), ('Xragon', 1012, 35, 2012), ('Xragon', 1043, 36, 2012), ('Xragon', 982, 37, 2012), ('Xragon', 974, 38, 2012), ('Xragon', 910, 39, 2012), ('Xragon', 968, 44, 2012), ('Xragon', 1093, 45, 2012), ('Xragon', 981, 47, 2012), ('Xragon', 796, 48, 2012), ('Yonowaru in Chaos', 308, 1, 2009), ('Yonowaru in Chaos', 253, 2, 2009), ('Yonowaru in Chaos', 254, 3, 2009), ('Yonowaru in Chaos', 160, 5, 2009), ('Yonowaru in Chaos', 185, 12, 2009), ('Yonowaru in Chaos', 272, 13, 2009), ('Yonowaru in Chaos', 246, 14, 2009), ('Yonowaru in Chaos', 271, 15, 2009), ('Yonowaru in Chaos', 203, 18, 2009), ('Yonowaru in Chaos', 256, 19, 2009), ('Yonowaru in Chaos', 173, 22, 2009), ('Yonowaru in Chaos', 229, 27, 2009), ('Yonowaru in Chaos', 251, 34, 2009), ('Yonowaru in Chaos', 169, 36, 2009), ('Yonowaru in Chaos', 277, 38, 2009), ('Yonowaru in Chaos', 189, 39, 2009), ('Yonowaru in Chaos', 255, 40, 2009), ('Yonowaru in Chaos', 172, 41, 2009), ('Yonowaru in Chaos', 303, 42, 2009), ('Ysavvryl', 2, 1, 2008), ('Ysavvryl', 308, 1, 2009), ('Ysavvryl', 312, 1, 2010), ('Ysavvryl', 10, 2, 2008), ('Ysavvryl', 208, 2, 2009), ('Ysavvryl', 324, 2, 2010), ('Ysavvryl', 328, 3, 2010), ('Ysavvryl', 17, 4, 2008), ('Ysavvryl', 224, 4, 2009), ('Ysavvryl', 332, 4, 2010), ('Ysavvryl', 25, 5, 2008), ('Ysavvryl', 250, 5, 2009), ('Ysavvryl', 343, 5, 2010), ('Ysavvryl', 32, 6, 2008), ('Ysavvryl', 210, 6, 2009), ('Ysavvryl', 359, 6, 2010), ('Ysavvryl', 247, 7, 2009), ('Ysavvryl', 350, 7, 2010), ('Ysavvryl', 41, 8, 2008), ('Ysavvryl', 163, 8, 2009), ('Ysavvryl', 369, 8, 2010), ('Ysavvryl', 239, 9, 2009), ('Ysavvryl', 377, 9, 2010), ('Ysavvryl', 49, 10, 2008), ('Ysavvryl', 165, 10, 2009), ('Ysavvryl', 380, 10, 2010), ('Ysavvryl', 51, 12, 2008), ('Ysavvryl', 205, 12, 2009), ('Ysavvryl', 272, 13, 2009), ('Ysavvryl', 246, 14, 2009), ('Ysavvryl', 259, 15, 2009), ('Ysavvryl', 65, 16, 2008), ('Ysavvryl', 237, 16, 2009), ('Ysavvryl', 388, 16, 2010), ('Ysavvryl', 69, 17, 2008), ('Ysavvryl', 242, 17, 2009), ('Ysavvryl', 397, 17, 2010), ('Ysavvryl', 72, 18, 2008), ('Ysavvryl', 244, 18, 2009), ('Ysavvryl', 413, 18, 2010), ('Ysavvryl', 256, 19, 2009), ('Ysavvryl', 419, 19, 2010), ('Ysavvryl', 80, 20, 2008), ('Ysavvryl', 240, 20, 2009), ('Ysavvryl', 424, 20, 2010), ('Ysavvryl', 238, 21, 2009), ('Ysavvryl', 427, 21, 2010), ('Ysavvryl', 435, 22, 2010), ('Ysavvryl', 248, 23, 2009), ('Ysavvryl', 442, 23, 2010), ('Ysavvryl', 91, 24, 2008), ('Ysavvryl', 233, 24, 2009), ('Ysavvryl', 448, 24, 2010), ('Ysavvryl', 97, 26, 2008), ('Ysavvryl', 188, 26, 2009), ('Ysavvryl', 460, 26, 2010), ('Ysavvryl', 471, 27, 2010), ('Ysavvryl', 487, 28, 2010), ('Ysavvryl', 492, 29, 2010), ('Ysavvryl', 499, 30, 2010), ('Ysavvryl', 113, 33, 2008), ('Ysavvryl', 181, 33, 2009), ('Ysavvryl', 475, 33, 2010), ('Ysavvryl', 117, 34, 2008), ('Ysavvryl', 251, 34, 2009), ('Ysavvryl', 507, 34, 2010), ('Ysavvryl', 292, 35, 2009), ('Ysavvryl', 514, 35, 2010), ('Ysavvryl', 252, 36, 2009), ('Ysavvryl', 517, 36, 2010), ('Ysavvryl', 128, 37, 2008), ('Ysavvryl', 202, 37, 2009), ('Ysavvryl', 524, 37, 2010), ('Ysavvryl', 135, 38, 2008), ('Ysavvryl', 300, 38, 2009), ('Ysavvryl', 528, 38, 2010), ('Ysavvryl', 137, 39, 2008), ('Ysavvryl', 296, 39, 2009), ('Ysavvryl', 539, 39, 2010), ('Ysavvryl', 329, 40, 2010), ('Ysavvryl', 245, 41, 2009), ('Ysavvryl', 366, 41, 2010), ('Ysavvryl', 303, 42, 2009), ('Ysavvryl', 455, 42, 2010), ('Ysavvryl', 265, 43, 2009), ('Ysavvryl', 452, 43, 2010), ('Ysavvryl', 482, 44, 2010), ('Ysavvryl', 466, 45, 2010), ('Ysavvryl', 400, 46, 2010), ('Ysavvryl', 406, 47, 2010), ('Z-nogyroP', 860, 1, 2012), ('Z-nogyroP', 927, 2, 2012), ('Z-nogyroP', 1045, 4, 2012), ('Z-nogyroP', 854, 5, 2012), ('Z-nogyroP', 1119, 6, 2012), ('Z-nogyroP', 788, 7, 2012), ('Z-nogyroP', 808, 8, 2012), ('Z-nogyroP', 807, 9, 2012), ('Z-nogyroP', 1049, 10, 2012), ('Z-nogyroP', 1088, 14, 2012), ('Z-nogyroP', 998, 16, 2012), ('Z-nogyroP', 1032, 17, 2012), ('Z-nogyroP', 951, 18, 2012), ('Z-nogyroP', 954, 19, 2012), ('Z-nogyroP', 1075, 20, 2012), ('Z-nogyroP', 1076, 21, 2012), ('Z-nogyroP', 877, 22, 2012), ('Z-nogyroP', 959, 23, 2012), ('Z-nogyroP', 1078, 26, 2012), ('Z-nogyroP', 1065, 27, 2012), ('Z-nogyroP', 1006, 28, 2012), ('Z-nogyroP', 966, 29, 2012), ('Z-nogyroP', 967, 30, 2012), ('Z-nogyroP', 1053, 33, 2012), ('Z-nogyroP', 907, 34, 2012), ('Z-nogyroP', 1070, 36, 2012), ('Z-nogyroP', 1014, 37, 2012), ('Z-nogyroP', 793, 38, 2012), ('Z-nogyroP', 1086, 41, 2012), ('Z-nogyroP', 1033, 42, 2012), ('Z-nogyroP', 879, 43, 2012), ('Z-nogyroP', 1063, 46, 2012), ('Z-nogyroP', 792, 47, 2012), ('Z-nogyroP', 789, 49, 2012), ('Z-nogyroP', 805, 50, 2012), ('Zadros', 6, 1, 2008), ('Zadros', 183, 1, 2009), ('Zadros', 549, 1, 2011), ('Zadros', 13, 2, 2008), ('Zadros', 281, 2, 2009), ('Zadros', 567, 2, 2011), ('Zadros', 14, 3, 2008), ('Zadros', 268, 3, 2009), ('Zadros', 22, 4, 2008), ('Zadros', 224, 4, 2009), ('Zadros', 584, 4, 2011), ('Zadros', 29, 5, 2008), ('Zadros', 160, 5, 2009), ('Zadros', 591, 5, 2011), ('Zadros', 36, 6, 2008), ('Zadros', 601, 6, 2011), ('Zadros', 39, 7, 2008), ('Zadros', 184, 7, 2009), ('Zadros', 40, 8, 2008), ('Zadros', 214, 8, 2009), ('Zadros', 47, 9, 2008), ('Zadros', 167, 9, 2009), ('Zadros', 48, 10, 2008), ('Zadros', 197, 10, 2009), ('Zadros', 54, 12, 2008), ('Zadros', 185, 12, 2009), ('Zadros', 59, 13, 2008), ('Zadros', 272, 13, 2009), ('Zadros', 61, 14, 2008), ('Zadros', 651, 14, 2011), ('Zadros', 64, 16, 2008), ('Zadros', 267, 16, 2009), ('Zadros', 69, 17, 2008), ('Zadros', 262, 17, 2009), ('Zadros', 660, 17, 2011), ('Zadros', 73, 18, 2008), ('Zadros', 78, 20, 2008), ('Zadros', 199, 20, 2009), ('Zadros', 83, 21, 2008), ('Zadros', 289, 21, 2009), ('Zadros', 187, 22, 2009), ('Zadros', 705, 22, 2011), ('Zadros', 90, 23, 2008), ('Zadros', 93, 24, 2008), ('Zadros', 200, 24, 2009), ('Zadros', 720, 24, 2011), ('Zadros', 97, 26, 2008), ('Zadros', 188, 26, 2009), ('Zadros', 731, 26, 2011), ('Zadros', 102, 27, 2008), ('Zadros', 229, 27, 2009), ('Zadros', 745, 30, 2011), ('Zadros', 109, 31, 2008), ('Zadros', 110, 32, 2008), ('Zadros', 117, 34, 2008), ('Zadros', 251, 34, 2009), ('Zadros', 756, 34, 2011), ('Zadros', 120, 35, 2008), ('Zadros', 204, 35, 2009), ('Zadros', 124, 36, 2008), ('Zadros', 169, 36, 2009), ('Zadros', 770, 36, 2011), ('Zadros', 127, 37, 2008), ('Zadros', 293, 37, 2009), ('Zadros', 773, 37, 2011), ('Zadros', 136, 38, 2008), ('Zadros', 174, 38, 2009), ('Zadros', 776, 38, 2011), ('Zadros', 137, 39, 2008), ('Zadros', 189, 39, 2009), ('Zadros', 779, 39, 2011), ('Zadros', 211, 41, 2009), ('Zadros', 614, 41, 2011), ('Zadros', 265, 43, 2009), ('Zadros', 724, 43, 2011), ('Zadros', 751, 44, 2011), ('Zadros', 752, 45, 2011), ('Zadros', 667, 47, 2011), ('Zadros', 604, 48, 2011), ('Zbger', 1293, 1, 2013), ('Zbger', 1243, 2, 2013), ('Zbger', 1127, 4, 2013), ('Zbger', 1325, 5, 2013), ('Zbger', 1131, 7, 2013), ('Zbger', 1253, 9, 2013), ('Zbger', 1257, 10, 2013), ('Zbger', 1258, 14, 2013), ('Zbger', 1310, 16, 2013), ('Zbger', 1138, 17, 2013), ('Zbger', 1314, 18, 2013), ('Zbger', 1179, 19, 2013), ('Zbger', 1181, 20, 2013), ('Zbger', 1316, 21, 2013), ('Zbger', 1221, 22, 2013), ('Zbger', 1296, 23, 2013), ('Zbger', 1239, 24, 2013), ('Zbger', 1276, 26, 2013), ('Zbger', 1278, 27, 2013), ('Zbger', 1154, 28, 2013), ('Zbger', 1280, 29, 2013), ('Zbger', 1191, 30, 2013), ('Zbger', 1193, 33, 2013), ('Zbger', 1299, 34, 2013), ('Zbger', 1213, 36, 2013), ('Zbger', 1288, 37, 2013), ('Zbger', 1290, 38, 2013), ('Zbger', 1291, 39, 2013), ('Zbger', 1307, 41, 2013), ('Zbger', 1151, 42, 2013), ('Zbger', 1150, 43, 2013), ('Zbger', 1282, 44, 2013), ('Zbger', 1284, 45, 2013), ('Zbger', 1139, 46, 2013), ('Zbger', 1330, 47, 2013), ('Zbger', 1134, 49, 2013), ('Zbger', 1298, 50, 2013), ('Zbger', 1264, 51, 2013), ('Zbger', 1266, 52, 2013), ('Zbger', 1165, 53, 2013), ('Zephyr Soul', 6, 1, 2008), ('Zephyr Soul', 9, 2, 2008), ('Zephyr Soul', 23, 4, 2008), ('Zephyr Soul', 29, 5, 2008), ('Zephyr Soul', 33, 6, 2008), ('Zephyr Soul', 45, 9, 2008), ('Zephyr Soul', 49, 10, 2008), ('Zephyr Soul', 50, 11, 2008), ('Zephyr Soul', 54, 12, 2008), ('Zephyr Soul', 62, 14, 2008), ('Zephyr Soul', 68, 17, 2008), ('Zephyr Soul', 77, 20, 2008), ('Zephyr Soul', 82, 21, 2008), ('Zephyr Soul', 89, 23, 2008), ('Zephyr Soul', 97, 26, 2008), ('Zephyr Soul', 104, 27, 2008), ('Zephyr Soul', 105, 28, 2008), ('Zephyr Soul', 106, 29, 2008), ('Zephyr Soul', 107, 30, 2008), ('Zephyr Soul', 115, 34, 2008), ('Zephyr Soul', 119, 35, 2008), ('Zephyr Soul', 124, 36, 2008), ('Zephyr Soul', 133, 38, 2008), ('Zephyr Soul', 137, 39, 2008), ('Zincspider', 14, 3, 2008), ('Zincspider', 25, 5, 2008), ('Zincspider', 38, 7, 2008), ('Zincspider', 54, 12, 2008), ('Zincspider', 59, 13, 2008), ('Zincspider', 74, 19, 2008), ('Zincspider', 86, 21, 2008), ('Zincspider', 102, 27, 2008), ('Zincspider', 105, 28, 2008), ('Zincspider', 106, 29, 2008), ('Zincspider', 107, 30, 2008), ('Zincspider', 108, 31, 2008), ('Zincspider', 110, 32, 2008), ('Zincspider', 113, 33, 2008), ('Zincspider', 117, 34, 2008), ('Zincspider', 119, 35, 2008), ('Zincspider', 124, 36, 2008), ('Zincspider', 133, 38, 2008), ('Zincspider', 137, 39, 2008), ('[Imaginative]:[Clockwork]', 313, 1, 2010), ('[Imaginative]:[Clockwork]', 548, 1, 2011), ('[Imaginative]:[Clockwork]', 324, 2, 2010), ('[Imaginative]:[Clockwork]', 563, 2, 2011), ('[Imaginative]:[Clockwork]', 328, 3, 2010), ('[Imaginative]:[Clockwork]', 338, 4, 2010), ('[Imaginative]:[Clockwork]', 586, 5, 2011), ('[Imaginative]:[Clockwork]', 354, 6, 2010), ('[Imaginative]:[Clockwork]', 600, 6, 2011), ('[Imaginative]:[Clockwork]', 349, 7, 2010), ('[Imaginative]:[Clockwork]', 369, 8, 2010), ('[Imaginative]:[Clockwork]', 626, 9, 2011), ('[Imaginative]:[Clockwork]', 641, 10, 2011), ('[Imaginative]:[Clockwork]', 646, 14, 2011), ('[Imaginative]:[Clockwork]', 388, 16, 2010), ('[Imaginative]:[Clockwork]', 391, 17, 2010), ('[Imaginative]:[Clockwork]', 653, 17, 2011), ('[Imaginative]:[Clockwork]', 419, 19, 2010), ('[Imaginative]:[Clockwork]', 679, 19, 2011), ('[Imaginative]:[Clockwork]', 426, 20, 2010), ('[Imaginative]:[Clockwork]', 685, 20, 2011), ('[Imaginative]:[Clockwork]', 696, 21, 2011), ('[Imaginative]:[Clockwork]', 487, 28, 2010), ('[Imaginative]:[Clockwork]', 753, 33, 2011), ('[Imaginative]:[Clockwork]', 505, 34, 2010), ('[Imaginative]:[Clockwork]', 758, 34, 2011), ('[Imaginative]:[Clockwork]', 763, 35, 2011), ('[Imaginative]:[Clockwork]', 525, 37, 2010), ('[Imaginative]:[Clockwork]', 528, 38, 2010), ('[Imaginative]:[Clockwork]', 774, 38, 2011), ('[Imaginative]:[Clockwork]', 537, 39, 2010), ('[Imaginative]:[Clockwork]', 782, 39, 2011), ('[Imaginative]:[Clockwork]', 329, 40, 2010), ('[Imaginative]:[Clockwork]', 575, 40, 2011), ('[Imaginative]:[Clockwork]', 364, 41, 2010), ('[Imaginative]:[Clockwork]', 613, 41, 2011), ('[Imaginative]:[Clockwork]', 726, 42, 2011), ('[Imaginative]:[Clockwork]', 752, 45, 2011), ('[Imaginative]:[Clockwork]', 403, 46, 2010), ('[Imaginative]:[Clockwork]', 411, 47, 2010), ('[Imaginative]:[Clockwork]', 636, 50, 2011), ('[Imaginative]:[Clockwork]', 676, 51, 2011), ('~Platinum~', 310, 1, 2010), ('~Platinum~', 324, 2, 2010), ('~Platinum~', 338, 4, 2010), ('~Platinum~', 346, 5, 2010), ('~Platinum~', 358, 6, 2010), ('~Platinum~', 372, 8, 2010), ('~Platinum~', 380, 10, 2010), ('~Platinum~', 386, 16, 2010), ('~Platinum~', 417, 19, 2010), ('~Platinum~', 429, 21, 2010), ('~Platinum~', 434, 22, 2010), ('~Platinum~', 441, 23, 2010), ('~Platinum~', 448, 24, 2010), ('~Platinum~', 460, 26, 2010), ('~Platinum~', 470, 27, 2010), ('~Platinum~', 486, 28, 2010), ('~Platinum~', 494, 29, 2010), ('~Platinum~', 475, 33, 2010), ('~Platinum~', 507, 34, 2010), ('~Platinum~', 522, 36, 2010), ('~Platinum~', 528, 38, 2010), ('~Platinum~', 537, 39, 2010), ('~Platinum~', 364, 41, 2010), ('~Platinum~', 453, 43, 2010), ('~Platinum~', 400, 46, 2010), ('~Platinum~', 406, 47, 2010)]