01-memes.sql2436 lines · main
| 1 | -- We apply our test seedings to template1 so every new created db will have the same structure |
| 2 | \c template1 |
| 3 | |
| 4 | CREATE TABLE public.category ( |
| 5 | id serial NOT NULL PRIMARY KEY, |
| 6 | name text NOT NULL |
| 7 | ); |
| 8 | |
| 9 | -- Fake policies |
| 10 | grant select, update(name) |
| 11 | on category |
| 12 | to postgres; |
| 13 | |
| 14 | create policy categories_update_policy |
| 15 | on category for update |
| 16 | to postgres |
| 17 | using(current_setting('my.username') IN (name)); |
| 18 | |
| 19 | INSERT INTO public.category (id, name) VALUES |
| 20 | (1, 'Funny'), |
| 21 | (2, 'Weird'), |
| 22 | (3, 'Dumb'), |
| 23 | (4, 'Cute'), |
| 24 | (5, 'Interesting'); |
| 25 | |
| 26 | CREATE TYPE meme_status AS ENUM ('new', 'old', 'retired'); |
| 27 | |
| 28 | CREATE TABLE public.memes ( |
| 29 | id serial NOT NULL PRIMARY KEY, |
| 30 | name text NOT NULL, |
| 31 | category INTEGER REFERENCES category(id), |
| 32 | metadata jsonb, |
| 33 | created_at TIMESTAMP NOT NULL, |
| 34 | status meme_status DEFAULT 'old' |
| 35 | ); |
| 36 | |
| 37 | INSERT INTO public.memes (name, category, created_at) VALUES |
| 38 | ('NO. Rage Face', 5, NOW()), |
| 39 | ('"Not Bad" Obama Face', 5, NOW()), |
| 40 | ('You Know I Had to Do It to Em', 5, NOW()), |
| 41 | ('Rage Comics', 1, NOW()), |
| 42 | ('Okay Guy', 4, NOW()), |
| 43 | ('Derp', 2, NOW()), |
| 44 | ('Jessi Slaughter', 2, NOW()), |
| 45 | ('Brazzers', 3, NOW()), |
| 46 | ('Dat Boi', 1, NOW()), |
| 47 | ('Bad Luck Brian', 4, NOW()), |
| 48 | ('Lemon Party', 1, NOW()), |
| 49 | ('Philosoraptor', 4, NOW()), |
| 50 | ('Fuck Yea', 3, NOW()), |
| 51 | ('Harambe the Gorilla', 4, NOW()), |
| 52 | ('Press F to Pay Respects', 1, NOW()), |
| 53 | ('GamerGate', 4, NOW()), |
| 54 | ('60''s Spider-Man', 1, NOW()), |
| 55 | ('MonkaS', 2, NOW()), |
| 56 | ('Dick Butt', 3, NOW()), |
| 57 | ('Rage Guy (FFFFFUUUUUUUU-)', 4, NOW()), |
| 58 | ('Blue Whale Challenge', 5, NOW()), |
| 59 | ('Ricardo Milos', 3, NOW()), |
| 60 | ('[10] Guy', 1, NOW()), |
| 61 | ('Wat', 3, NOW()), |
| 62 | ('Big Chungus', 1, NOW()), |
| 63 | ('Haters Gonna Hate', 3, NOW()), |
| 64 | ('Do You Even Lift?', 1, NOW()), |
| 65 | ('Kappa', 5, NOW()), |
| 66 | ('Sad Keanu', 5, NOW()), |
| 67 | ('"You Are Already Dead" / "Omae Wa Mou Shindeiru"', 1, NOW()), |
| 68 | ('Mega Milk / Titty Monster', 4, NOW()), |
| 69 | ('Annoying Facebook Girl', 3, NOW()), |
| 70 | ('Raise Your Dongers', 3, NOW()), |
| 71 | ('Successful Black Man', 5, NOW()), |
| 72 | ('Bear Grylls / Better Drink My Own Piss', 4, NOW()), |
| 73 | ('Fight Club: 5/7 Movie', 5, NOW()), |
| 74 | ('друг', 3, NOW()), |
| 75 | ('Reaction Images', 2, NOW()), |
| 76 | ('I Hope Senpai Will Notice Me', 1, NOW()), |
| 77 | ('Cereal Guy', 4, NOW()), |
| 78 | ('Serbia Strong / Remove Kebab', 3, NOW()), |
| 79 | ('High Expectations Asian Father', 4, NOW()), |
| 80 | ('PTSD Clarinet Boy', 2, NOW()), |
| 81 | ('Homophobic Seal', 4, NOW()), |
| 82 | ('Fus Ro Dah', 4, NOW()), |
| 83 | ('Zalgo', 3, NOW()), |
| 84 | ('Aww Yea Guy', 2, NOW()), |
| 85 | ('Copypasta', 5, NOW()), |
| 86 | ('Futurama Fry / Not Sure If', 2, NOW()), |
| 87 | ('I Sexually Identify as an Attack Helicopter', 1, NOW()), |
| 88 | ('Are You Serious Face / Seriously?', 4, NOW()), |
| 89 | ('One Does Not Simply Walk into Mordor', 4, NOW()), |
| 90 | ('Gangnam Style', 1, NOW()), |
| 91 | ('Cool Story, Bro', 2, NOW()), |
| 92 | ('True Story', 2, NOW()), |
| 93 | ('Sweet Brown / Ain''t Nobody Got Time for That', 4, NOW()), |
| 94 | ('Darude - Sandstorm', 4, NOW()), |
| 95 | ('Creepypasta', 2, NOW()), |
| 96 | ('Fuck Her Right in the Pussy / FHRITP', 2, NOW()), |
| 97 | ('Based God', 3, NOW()), |
| 98 | ('All the Things', 4, NOW()), |
| 99 | ('Kek', 1, NOW()), |
| 100 | ('Meatspin', 5, NOW()), |
| 101 | ('Waifu', 3, NOW()), |
| 102 | ('Belle Delphine', 5, NOW()), |
| 103 | ('Facepalm', 5, NOW()), |
| 104 | ('If You Know What I Mean', 4, NOW()), |
| 105 | ('Bye Felicia', 3, NOW()), |
| 106 | ('Emergence (Metamorphosis)', 3, NOW()), |
| 107 | ('Hide The Pain Harold', 2, NOW()), |
| 108 | ('Rule 63', 3, NOW()), |
| 109 | ('I Know That Feel Bro', 2, NOW()), |
| 110 | ('Cash Me Ousside / Howbow Dah', 2, NOW()), |
| 111 | ('Deal With It', 3, NOW()), |
| 112 | ('Momo Challenge', 1, NOW()), |
| 113 | ('Socially Awkward Penguin', 2, NOW()), |
| 114 | ('Nope! Chuck Testa', 3, NOW()), |
| 115 | ('To Be Fair, You Have To Have a Very High IQ to Understand Rick and Morty', 5, NOW()), |
| 116 | ('First World Problems', 2, NOW()), |
| 117 | ('Fap', 4, NOW()), |
| 118 | ('That Really Rustled My Jimmies', 1, NOW()), |
| 119 | ('Moon Moon', 4, NOW()), |
| 120 | ('The Most Interesting Man in the World', 5, NOW()), |
| 121 | ('Dank Memes', 5, NOW()), |
| 122 | ('Challenge Accepted', 3, NOW()), |
| 123 | ('Xzibit Yo Dawg', 4, NOW()), |
| 124 | ('Ayy LMAO', 5, NOW()), |
| 125 | ('Grumpy Cat', 1, NOW()), |
| 126 | ('Nyan Cat', 2, NOW()), |
| 127 | ('''Dat Ass', 5, NOW()), |
| 128 | ('Boxxy', 3, NOW()), |
| 129 | ('2 Girls 1 Cup', 2, NOW()), |
| 130 | ('Mr. Hands', 1, NOW()), |
| 131 | ('Joseph Ducreux / Archaic Rap', 1, NOW()), |
| 132 | ('Harlem Shake', 1, NOW()), |
| 133 | ('Oh Crap / OMG Rage Face', 5, NOW()), |
| 134 | ('Shrek Is Love, Shrek Is Life', 3, NOW()), |
| 135 | ('Delete System32', 1, NOW()), |
| 136 | ('Musically Oblivious 8th Grader', 2, NOW()), |
| 137 | ('2/10 Would Not Bang', 5, NOW()), |
| 138 | ('Insanity Wolf', 2, NOW()), |
| 139 | ('Mocking SpongeBob', 4, NOW()), |
| 140 | ('Success Kid / I Hate Sandcastles', 2, NOW()), |
| 141 | ('JoJo''s Bizarre Adventure', 3, NOW()), |
| 142 | ('The Tragedy of Darth Plagueis The Wise', 2, NOW()), |
| 143 | ('What People Think I Do / What I Really Do', 2, NOW()), |
| 144 | ('Rebecca Black - Friday', 3, NOW()), |
| 145 | ('Tide POD Challenge', 2, NOW()), |
| 146 | ('Look At All The Fucks I Give', 2, NOW()), |
| 147 | ('U WOT M8', 4, NOW()), |
| 148 | ('Tubgirl', 3, NOW()), |
| 149 | ('Smile.jpg', 2, NOW()), |
| 150 | ('Dafuq', 3, NOW()), |
| 151 | ('Yaranaika? (やらないか)', 2, NOW()), |
| 152 | ('The Fappening / Celebgate', 3, NOW()), |
| 153 | ('That''s Racist!', 4, NOW()), |
| 154 | ('Genius', 5, NOW()), |
| 155 | ('I See What You Did There', 5, NOW()), |
| 156 | ('Roll Safe', 3, NOW()), |
| 157 | ('Rape Sloth', 3, NOW()), |
| 158 | ('PewDiePie', 4, NOW()), |
| 159 | ('Weird Flex But Ok', 3, NOW()), |
| 160 | ('My Body Is Ready', 1, NOW()), |
| 161 | ('Billy Herrington / Gachimuchi', 2, NOW()), |
| 162 | ('Don''t Talk To Me Or My Son Ever Again', 2, NOW()), |
| 163 | ('Disaster Girl', 3, NOW()), |
| 164 | ('Cheeki Breeki', 1, NOW()), |
| 165 | ('That Escalated Quickly', 5, NOW()), |
| 166 | ('Son, I Am Disappoint', 5, NOW()), |
| 167 | ('Nyannyancosplay / Hit or Miss', 3, NOW()), |
| 168 | ('Jet Fuel Can''t Melt Steel Beams', 4, NOW()), |
| 169 | ('Your Argument Is Invalid', 5, NOW()), |
| 170 | ('B Button Emoji 🅱', 5, NOW()), |
| 171 | ('Chubby Bubbles Girl', 3, NOW()), |
| 172 | ('Miley Cyrus Sex Tape Facebook Scams', 1, NOW()), |
| 173 | ('Homestuck', 2, NOW()), |
| 174 | ('This Is So Sad Alexa Play Despacito', 3, NOW()), |
| 175 | ('Majora''s Mask Creepypasta (BEN DROWNED)', 1, NOW()), |
| 176 | ('Sweet Jesus Face', 2, NOW()), |
| 177 | ('Come At Me Bro', 5, NOW()), |
| 178 | ('Inglip', 5, NOW()), |
| 179 | ('Swag', 2, NOW()), |
| 180 | ('I Have No Idea What I''m Doing', 1, NOW()), |
| 181 | ('Shut Up And Take My Money!', 2, NOW()), |
| 182 | ('Neil deGrasse Tyson Reaction', 2, NOW()), |
| 183 | ('"Y U NO" Guy', 4, NOW()), |
| 184 | ('Rule 34', 5, NOW()), |
| 185 | ('Overly Attached Girlfriend', 2, NOW()), |
| 186 | ('Scumbag Steve', 2, NOW()), |
| 187 | ('I Took an Arrow in the Knee', 1, NOW()), |
| 188 | ('Rules of the Internet', 2, NOW()), |
| 189 | ('You Don''t Say?', 1, NOW()), |
| 190 | ('The Mandela Effect', 4, NOW()), |
| 191 | ('Woman Yelling at a Cat', 2, NOW()), |
| 192 | ('Good Guy Greg', 2, NOW()), |
| 193 | ('ಠ_ಠ Look of Disapproval', 1, NOW()), |
| 194 | ('Pepe the Frog', 5, NOW()), |
| 195 | ('Ridiculously Photogenic Guy', 3, NOW()), |
| 196 | ('Ancient Aliens', 1, NOW()), |
| 197 | ('Has Anyone Really Been Far Even as Decided to Use Even Go Want to do Look More Like?', 5, NOW()), |
| 198 | ('Slender Man', 2, NOW()), |
| 199 | ('Doge', 1, NOW()), |
| 200 | ('( ͡° ͜ʖ ͡°) / Lenny Face', 1, NOW()), |
| 201 | ('Navy Seal Copypasta', 2, NOW()), |
| 202 | ('Forever Alone', 4, NOW()), |
| 203 | ('Zerg Rush', 2, NOW()), |
| 204 | ('Trollface', 3, NOW()), |
| 205 | ('My Little Pony: Friendship is Magic', 4, NOW()), |
| 206 | ('Me Gusta', 5, NOW()), |
| 207 | ('Do A Barrel Roll', 5, NOW()), |
| 208 | ('Flipping Tables / (╯°□°)╯︵ ┻━┻', 2, NOW()), |
| 209 | ('Ermahgerd', 4, NOW()), |
| 210 | ('Loss', 2, NOW()), |
| 211 | ('Dolan', 4, NOW()), |
| 212 | ('Ugandan Knuckles', 4, NOW()), |
| 213 | ('Yao Ming Face / Bitch Please', 1, NOW()), |
| 214 | ('Duck Face', 3, NOW()), |
| 215 | ('Boku no Pico', 2, NOW()), |
| 216 | ('Senor Chang''s "Ha, Gay!"', 2, NOW()), |
| 217 | ('Rickroll', 5, NOW()), |
| 218 | ('Bowsette', 3, NOW()), |
| 219 | ('Poker Face', 3, NOW()), |
| 220 | ('And Not a Single Fuck Was Given That Day', 3, NOW()), |
| 221 | ('Twitch Plays Pokemon', 3, NOW()), |
| 222 | ('Desu', 3, NOW()), |
| 223 | ('What Are Those?', 3, NOW()), |
| 224 | ('TheLegend27', 5, NOW()), |
| 225 | ('Karen', 5, NOW()), |
| 226 | ('Keep Calm and Carry On', 5, NOW()), |
| 227 | ('Katy t3h PeNgU1N oF d00m', 2, NOW()), |
| 228 | ('Oh God Why', 2, NOW()), |
| 229 | ('Polandball', 4, NOW()), |
| 230 | ('Ahegaokin - アヘ顔菌', 4, NOW()), |
| 231 | ('Slowpoke', 2, NOW()), |
| 232 | ('Stonks', 5, NOW()), |
| 233 | ('Instagram Quote Rebuttals / Hipster Edits', 3, NOW()), |
| 234 | ('Shock Sites', 1, NOW()), |
| 235 | ('Shoop Da Whoop', 4, NOW()), |
| 236 | ('I Can Count to Potato', 2, NOW()), |
| 237 | ('Spaghetti Stories', 3, NOW()), |
| 238 | ('Advice Dog', 5, NOW()), |
| 239 | ('420 Blaze It', 5, NOW()), |
| 240 | ('James Doakes'' "Surprise Motherfucker"', 1, NOW()), |
| 241 | ('Business Cat', 3, NOW()), |
| 242 | ('Trolling', 5, NOW()), |
| 243 | ('Side Eyeing Chloe', 5, NOW()), |
| 244 | ('Tendies Stories', 3, NOW()), |
| 245 | ('What Is This I Don''t Even', 2, NOW()), |
| 246 | ('I''m Twelve Years Old and What is This?', 2, NOW()), |
| 247 | ('This Is Fine', 3, NOW()), |
| 248 | ('The Narwhal Bacons at Midnight', 4, NOW()), |
| 249 | ('Mother of God', 2, NOW()), |
| 250 | ('''Murica', 1, NOW()), |
| 251 | ('I Came', 4, NOW()), |
| 252 | ('ME!ME!ME!', 5, NOW()), |
| 253 | ('Draw Me Like One of Your French Girls', 1, NOW()), |
| 254 | ('Virgin vs. Chad', 2, NOW()), |
| 255 | ('Ahegao', 5, NOW()), |
| 256 | ('Are You A Wizard', 5, NOW()), |
| 257 | ('Feels', 1, NOW()), |
| 258 | ('Pokémon', 5, NOW()), |
| 259 | ('Strutting Leo', 4, NOW()), |
| 260 | ('Troll Science / Troll Physics', 5, NOW()), |
| 261 | ('Sanic Hegehog', 4, NOW()), |
| 262 | ('Kekistan', 2, NOW()), |
| 263 | ('Mom''s Spaghetti', 2, NOW()), |
| 264 | ('I Lied', 2, NOW()), |
| 265 | ('Freddie Mercury Rage Pose', 2, NOW()), |
| 266 | ('Conspiracy Keanu', 1, NOW()), |
| 267 | ('Five Nights at Freddy''s', 1, NOW()), |
| 268 | ('Indestructible Nokia 3310', 4, NOW()), |
| 269 | ('Distracted Boyfriend', 4, NOW()), |
| 270 | ('Piper Perri Surrounded', 3, NOW()), |
| 271 | ('Shadman / Shadbase', 1, NOW()), |
| 272 | ('LOL Guy', 4, NOW()), |
| 273 | ('It''s A Trap!', 1, NOW()), |
| 274 | ('Staredad', 3, NOW()), |
| 275 | ('Feels Good Man', 3, NOW()), |
| 276 | ('ZONE-sama', 1, NOW()), |
| 277 | ('Me and the Boys', 4, NOW()), |
| 278 | ('Trap', 1, NOW()), |
| 279 | ('Confused Black Girl', 5, NOW()), |
| 280 | ('WE WUZ KINGS', 4, NOW()), |
| 281 | ('Ryan Gosling', 4, NOW()), |
| 282 | ('Notices Bulge / OwO What''s This?', 5, NOW()), |
| 283 | ('???? PROFIT!!!!', 4, NOW()), |
| 284 | ('30-Year-Old Boomer', 4, NOW()), |
| 285 | ('Galaxy Brain', 4, NOW()), |
| 286 | ('Idiot Nerd Girl', 1, NOW()), |
| 287 | ('Pool''s Closed', 4, NOW()), |
| 288 | ('Kony 2012', 2, NOW()), |
| 289 | ('Video 1444', 1, NOW()), |
| 290 | ('Pepega', 3, NOW()), |
| 291 | ('Huahuehuahue', 1, NOW()), |
| 292 | ('O RLY?', 2, NOW()), |
| 293 | ('Feel Like a Sir', 2, NOW()), |
| 294 | ('Absolute Unit', 3, NOW()), |
| 295 | ('An Hero', 5, NOW()), |
| 296 | ('SOON', 1, NOW()), |
| 297 | ('Stahp', 5, NOW()), |
| 298 | ('Weeaboo', 3, NOW()), |
| 299 | ('The Cake Is a Lie', 2, NOW()), |
| 300 | ('Lord Marquaad E', 5, NOW()), |
| 301 | ('"Miracles" / Fucking Magnets, How Do They Work?', 2, NOW()), |
| 302 | ('THEN WHO WAS PHONE?', 2, NOW()), |
| 303 | ('Work-Safe Porn', 1, NOW()), |
| 304 | ('Logan Paul''s Suicide Forest Video', 2, NOW()), |
| 305 | ('Yes, This is Dog', 1, NOW()), |
| 306 | ('Chris-Chan / CWC / Christian Weston Chandler', 4, NOW()), |
| 307 | ('REEEEEEE', 5, NOW()), |
| 308 | ('Honey Badger', 3, NOW()), |
| 309 | ('Tree Fiddy', 2, NOW()), |
| 310 | ('Greentext Stories', 3, NOW()), |
| 311 | ('Minecraft Creeper', 1, NOW()), |
| 312 | ('Surprised Pikachu', 1, NOW()), |
| 313 | ('Big Smoke''s Order', 3, NOW()), |
| 314 | ('College Freshman', 4, NOW()), |
| 315 | ('All Your Base Are Belong to Us', 1, NOW()), |
| 316 | ('Like A Boss', 3, NOW()), |
| 317 | ('Jeff the Killer', 1, NOW()), |
| 318 | ('I Herd U Liek Mudkips', 1, NOW()), |
| 319 | ('Thicc', 4, NOW()), |
| 320 | ('Hover Hand', 3, NOW()), |
| 321 | ('The Bongcheon-Dong Ghost', 2, NOW()), |
| 322 | ('Lavender Town Syndrome Creepypasta', 2, NOW()), |
| 323 | ('Foul Bachelor Frog', 1, NOW()), |
| 324 | ('John is Kill', 1, NOW()), |
| 325 | ('College Liberal', 2, NOW()), |
| 326 | ('Impossibru', 4, NOW()), |
| 327 | ('I Accidentally', 2, NOW()), |
| 328 | ('U MAD?', 4, NOW()), |
| 329 | ('It''s Over 9000!', 5, NOW()), |
| 330 | ('Ligma', 5, NOW()), |
| 331 | ('Newfags Can''t Triforce', 3, NOW()), |
| 332 | ('He Protec but He Also Attac', 1, NOW()), |
| 333 | ('Feels Bad Man / Sad Frog', 2, NOW()), |
| 334 | ('Are You Fucking Kidding Me?', 5, NOW()), |
| 335 | ('Leeroy Jenkins', 2, NOW()), |
| 336 | ('I Don''t Want to Live on This Planet Anymore', 2, NOW()), |
| 337 | ('Courage Wolf', 1, NOW()), |
| 338 | ('Cinnamon Challenge', 5, NOW()), |
| 339 | ('But That''s None of My Business', 1, NOW()), |
| 340 | ('Goatse', 3, NOW()), |
| 341 | ('4chan', 1, NOW()), |
| 342 | ('241543903 / Heads In Freezers', 1, NOW()), |
| 343 | ('Half-Life 3 Confirmed', 4, NOW()), |
| 344 | ('Antoine Dodson / Bed Intruder', 5, NOW()), |
| 345 | ('9GAG', 4, NOW()), |
| 346 | ('Bobs and Vegana', 1, NOW()), |
| 347 | ('The Circle Game', 2, NOW()), |
| 348 | ('Is This a Pigeon?', 3, NOW()), |
| 349 | ('Good Luck, I''m Behind 7 Proxies', 3, NOW()), |
| 350 | ('FAIL / Epic Fail', 2, NOW()), |
| 351 | ('Hey Girls, Did You Know...', 5, NOW()), |
| 352 | ('Virgin-Killing Sweater', 4, NOW()), |
| 353 | ('NPC Wojak', 3, NOW()), |
| 354 | ('Deez Nuts', 4, NOW()), |
| 355 | ('Handsome Face', 1, NOW()), |
| 356 | ('Reaction Guys / Gaijin 4Koma', 2, NOW()), |
| 357 | ('In Soviet Russia...', 5, NOW()), |
| 358 | ('Scumbag Stacy', 1, NOW()), |
| 359 | ('Moth Lamp', 1, NOW()), |
| 360 | ('OK Symbol 👌', 1, NOW()), |
| 361 | ('Cuck', 1, NOW()), |
| 362 | ('Lazy College Senior', 1, NOW()), |
| 363 | ('T-Pose', 3, NOW()), |
| 364 | ('Filthy Frank', 3, NOW()), |
| 365 | ('My Brain is Full of Fuck', 1, NOW()), |
| 366 | ('Third World Success', 1, NOW()), |
| 367 | ('Rain Drop Drop Top', 3, NOW()), |
| 368 | ('Scarlett Johansson Leaked Nudes', 3, NOW()), |
| 369 | ('Hugh Mungus', 3, NOW()), |
| 370 | ('Hentai Quotes', 4, NOW()), |
| 371 | ('Trigger', 2, NOW()), |
| 372 | ('Technoviking', 5, NOW()), |
| 373 | ('YOLO', 5, NOW()), |
| 374 | ('They Don''t Think It Be Like It Is But It Do', 5, NOW()), |
| 375 | ('I Came Out to Have a Good Time and I''m Honestly Feeling So Attacked Right Now', 1, NOW()), |
| 376 | ('Condescending Wonka / Creepy Wonka', 1, NOW()), |
| 377 | ('Trash Doves', 2, NOW()), |
| 378 | ('Wojak / Feels Guy', 1, NOW()), |
| 379 | ('Electric Boogaloo', 3, NOW()), |
| 380 | ('*Tips Fedora*', 3, NOW()), |
| 381 | ('I''m Already Tracer', 4, NOW()), |
| 382 | ('Epic Sax Guy', 2, NOW()), |
| 383 | ('Yes - Roundabout / To Be Continued', 2, NOW()), |
| 384 | ('How Is Babby Formed?', 4, NOW()), |
| 385 | ('POMF =3', 5, NOW()), |
| 386 | ('Some Men Just Want to Watch the World Burn', 4, NOW()), |
| 387 | ('Minecraft', 1, NOW()), |
| 388 | ('Honey Boo Boo Child', 3, NOW()), |
| 389 | ('I Dunno LOL ¯\(°_o)/¯', 2, NOW()), |
| 390 | ('Spider-Man Pointing at Spider-Man', 4, NOW()), |
| 391 | ('Zyzz', 4, NOW()), |
| 392 | ('Wood Sitting on a Bed', 2, NOW()), |
| 393 | ('X, X Everywhere', 3, NOW()), |
| 394 | ('Clown Pepe / Honk Honk / Clown World', 2, NOW()), |
| 395 | ('Computer Reaction Faces', 2, NOW()), |
| 396 | ('Git Gud', 1, NOW()), |
| 397 | ('He-Man Sings / HEYYEYAAEYAAAEYAEYAA', 5, NOW()), |
| 398 | ('Ultra Instinct Shaggy', 2, NOW()), |
| 399 | ('Za Warudo / WRYYYYY', 5, NOW()), |
| 400 | ('Ruined Childhood', 1, NOW()), |
| 401 | ('fsjal', 5, NOW()), |
| 402 | ('Giovanna Plowman / Tampon Girl', 3, NOW()), |
| 403 | ('Steven Crowder''s "Change My Mind" Campus Sign', 4, NOW()), |
| 404 | ('Tumblr', 5, NOW()), |
| 405 | ('Jesus is a Jerk', 5, NOW()), |
| 406 | ('Wombo Combo', 2, NOW()), |
| 407 | ('Yee', 5, NOW()), |
| 408 | ('This Kills The Crab', 4, NOW()), |
| 409 | ('BME Pain Olympics', 1, NOW()), |
| 410 | ('Crying Cat', 2, NOW()), |
| 411 | ('Trypophobia', 2, NOW()), |
| 412 | ('Brent Rambo', 3, NOW()), |
| 413 | ('Tenso', 5, NOW()), |
| 414 | ('Duwang', 3, NOW()), |
| 415 | ('Johny Johny Yes Papa', 1, NOW()), |
| 416 | ('Thot', 3, NOW()), |
| 417 | ('Butthurt Dweller / Gordo Granudo', 3, NOW()), |
| 418 | ('Didn''t Read LOL', 4, NOW()), |
| 419 | ('Russian Sleep Experiment', 3, NOW()), |
| 420 | ('Trigglypuff', 4, NOW()), |
| 421 | ('Puking Rainbows', 3, NOW()), |
| 422 | ('Coldsteel The Hedgeheg', 3, NOW()), |
| 423 | ('Moon Man', 3, NOW()), |
| 424 | ('Wingboner & Clopping', 2, NOW()), |
| 425 | ('Sharkeisha Fight Video', 2, NOW()), |
| 426 | ('In This Moment I Am Euphoric', 1, NOW()), |
| 427 | ('This Isn''t Even My Final Form', 4, NOW()), |
| 428 | ('Dashcon', 3, NOW()), |
| 429 | ('Vivian James', 4, NOW()), |
| 430 | ('Squidward''s Suicide', 2, NOW()), |
| 431 | ('Hail Hydra', 5, NOW()), |
| 432 | ('Mormon Porn / Bubble Porn', 4, NOW()), |
| 433 | ('Vengeance Dad', 4, NOW()), |
| 434 | ('Everybody Walk the Dinosaur', 1, NOW()), |
| 435 | ('Puts On Sunglasses / YEEEEAAAHHH', 5, NOW()), |
| 436 | ('Casually Pepper Spray Everything Cop', 3, NOW()), |
| 437 | ('The Dab', 1, NOW()), |
| 438 | ('Carl!', 3, NOW()), |
| 439 | ('You Must Construct Additional Pylons!', 2, NOW()), |
| 440 | ('Expand Dong', 4, NOW()), |
| 441 | ('1 Guy 1 Jar', 2, NOW()), |
| 442 | ('PROTIP', 1, NOW()), |
| 443 | ('Longcat', 5, NOW()), |
| 444 | ('Thanks, Obama!', 2, NOW()), |
| 445 | ('Shooting Stars', 4, NOW()), |
| 446 | ('Ash Pedreiro / Dat Ash', 2, NOW()), |
| 447 | ('Awesome Face / Epic Smiley', 1, NOW()), |
| 448 | ('My Immortal / The Worst Fanfiction Ever', 2, NOW()), |
| 449 | ('Almost Politically Correct Redneck', 3, NOW()), |
| 450 | ('Overly Manly Man', 2, NOW()), |
| 451 | ('Natalia Poklonskaya', 3, NOW()), |
| 452 | ('Coomer', 5, NOW()), |
| 453 | ('CSI 4 Pane Comics', 2, NOW()), |
| 454 | ('Skull Trumpet / Doot Doot', 5, NOW()), |
| 455 | ('SpongeGar / Primitive Sponge / Caveman Spongebob', 3, NOW()), |
| 456 | ('Confused Nick Young', 1, NOW()), |
| 457 | ('Gamer Joker / Gamers Rise Up / We Live in a Society', 1, NOW()), |
| 458 | ('Prepare Your Anus', 3, NOW()), |
| 459 | ('Creepy Chan (Allison Harvard)', 1, NOW()), |
| 460 | ('Nothing To Do Here / Jet Pack Guy', 3, NOW()), |
| 461 | ('Pretty Cool Guy', 2, NOW()), |
| 462 | ('Zoë Quinn', 3, NOW()), |
| 463 | ('Mr. Bones'' Wild Ride', 1, NOW()), |
| 464 | ('Hitler''s "Downfall" Parodies', 5, NOW()), |
| 465 | ('Divide By Zero', 1, NOW()), |
| 466 | ('48÷2(9+3) = ?', 3, NOW()), |
| 467 | ('Baneposting', 2, NOW()), |
| 468 | ('The Grifter', 5, NOW()), |
| 469 | ('Unexpected John Cena / And His Name is John Cena', 2, NOW()), |
| 470 | ('Check Your Privilege', 2, NOW()), |
| 471 | ('It Is Wednesday My Dudes', 3, NOW()), |
| 472 | ('We Live In a Society Social Media Reactions', 5, NOW()), |
| 473 | ('Friendship Ended With Mudasir', 3, NOW()), |
| 474 | ('Neckbeard', 5, NOW()), |
| 475 | ('tl;dr', 4, NOW()), |
| 476 | ('Trololo Guy', 2, NOW()), |
| 477 | ('Hentai Woody / 変態ウッディー', 2, NOW()), |
| 478 | ('Cupcakes', 3, NOW()), |
| 479 | ('OP is a Faggot', 3, NOW()), |
| 480 | ('Cats', 3, NOW()), |
| 481 | ('Super Smash Brothers', 4, NOW()), |
| 482 | ('Earth-chan', 1, NOW()), |
| 483 | ('Derpy Hooves', 3, NOW()), |
| 484 | ('Unhelpful High School Teacher', 5, NOW()), |
| 485 | ('Nicolas Cage', 1, NOW()), |
| 486 | ('Dubs Guy / “Check ’Em”', 5, NOW()), |
| 487 | ('Burger King Foot Lettuce', 5, NOW()), |
| 488 | ('Brian Peppers', 2, NOW()), |
| 489 | ('Arthur''s Fist', 1, NOW()), |
| 490 | ('Horse Head Mask', 2, NOW()), |
| 491 | ('Deus Vult', 3, NOW()), |
| 492 | ('Smudge the Cat', 2, NOW()), |
| 493 | ('You Know Nothing, Jon Snow', 3, NOW()), |
| 494 | ('The Rake', 3, NOW()), |
| 495 | ('Herobrine', 3, NOW()), |
| 496 | ('Salt Bae', 3, NOW()), |
| 497 | ('Horrifying House-guest / Shadowlurker', 1, NOW()), |
| 498 | ('Caught Me Sleeping / Bae Caught Me Slippin', 4, NOW()), |
| 499 | ('Math Lady / Confused Lady', 4, NOW()), |
| 500 | ('KEKW', 4, NOW()), |
| 501 | ('Shitposting', 2, NOW()), |
| 502 | ('Warlizard Gaming Forum', 4, NOW()), |
| 503 | ('It Was Me, Dio!', 3, NOW()), |
| 504 | ('Blue Waffle', 5, NOW()), |
| 505 | ('Memes', 1, NOW()), |
| 506 | ('Super S Stussy', 5, NOW()), |
| 507 | ('Reddit', 4, NOW()), |
| 508 | ('Guile''s Theme Goes with Everything', 5, NOW()), |
| 509 | ('Alternate Universe', 4, NOW()), |
| 510 | ('Yoshi Committed Tax Fraud', 1, NOW()), |
| 511 | ('Somebody Toucha My Spaghet', 1, NOW()), |
| 512 | ('Bone Hurting Juice', 5, NOW()), |
| 513 | ('Why Not Both? / Why Don''t We Have Both?', 4, NOW()), |
| 514 | ('Nope.avi', 1, NOW()), |
| 515 | ('Steven Universe', 3, NOW()), |
| 516 | ('Cave Johnson / Combustible Lemons', 5, NOW()), |
| 517 | ('Kanye Interrupts / Imma Let You Finish', 5, NOW()), |
| 518 | ('*Record Scratch* *Freeze Frame*', 4, NOW()), |
| 519 | ('Old Gregg', 3, NOW()), |
| 520 | ('I, For One, Welcome Our New Insect Overlords', 2, NOW()), |
| 521 | ('Goodnight Sweet Prince', 2, NOW()), |
| 522 | ('Padoru', 4, NOW()), |
| 523 | ('"Anime Was a Mistake"', 2, NOW()), |
| 524 | ('>Shadman', 1, NOW()), |
| 525 | ('Finger Boxes', 4, NOW()), |
| 526 | ('Feeling Cute, Might Delete Later', 2, NOW()), |
| 527 | ('Peachette / Super Crown', 4, NOW()), |
| 528 | ('Imminent Ned / Brace Yourselves, Winter is Coming', 5, NOW()), |
| 529 | ('Trollestia / Molestia / Tyrant Celestia', 5, NOW()), |
| 530 | ('Seems Legit / Sounds Legit', 3, NOW()), |
| 531 | ('Potato Jesus', 3, NOW()), |
| 532 | ('*Teleports Behind You* Nothing Personal, Kid', 3, NOW()), |
| 533 | ('McKayla is Not Impressed', 5, NOW()), |
| 534 | ('Now Kiss!', 4, NOW()), |
| 535 | ('Donde Esta La Biblioteca / Spanish Rap', 2, NOW()), |
| 536 | ('Candle Cove', 2, NOW()), |
| 537 | ('The Glorious PC Gaming Master Race', 1, NOW()), |
| 538 | ('The Dress / What Color Is This Dress?', 2, NOW()), |
| 539 | ('Waffles? Don''t You Mean Carrots?', 4, NOW()), |
| 540 | ('Karate Kyle', 4, NOW()), |
| 541 | ('Spoderman / Spodermen', 5, NOW()), |
| 542 | ('Steamed Hams', 2, NOW()), |
| 543 | ('Too Much Water', 1, NOW()), |
| 544 | ('Slaps Roof of Car', 3, NOW()), |
| 545 | ('Bitches Love Smiley Faces', 4, NOW()), |
| 546 | ('Phteven / Tuna the Dog', 1, NOW()), |
| 547 | ('Sudden Clarity Clarence', 5, NOW()), |
| 548 | ('The Backrooms', 5, NOW()), |
| 549 | ('Mereana Mordegard Glesgorv', 1, NOW()), |
| 550 | ('Dear Sister Parodies / "Mmm Whatcha'' Say"', 5, NOW()), |
| 551 | ('Tourette''s Guy', 1, NOW()), |
| 552 | ('Begone, Thot', 1, NOW()), |
| 553 | ('A Cat Is Fine Too', 4, NOW()), |
| 554 | ('There Are No Girls on the Internet', 2, NOW()), |
| 555 | ('Go Home, You Are Drunk', 1, NOW()), |
| 556 | ('Pawn Stars', 1, NOW()), |
| 557 | ('Spoopy', 1, NOW()), |
| 558 | ('Gotta Go Fast', 1, NOW()), |
| 559 | ('Kill Yourself', 1, NOW()), |
| 560 | ('Banana For Scale', 4, NOW()), |
| 561 | ('My Parents Are Dead / Batman Slapping Robin', 1, NOW()), |
| 562 | ('uwu', 1, NOW()), |
| 563 | ('Gary Oak', 1, NOW()), |
| 564 | ('The Main Difference Between Europe and USA', 3, NOW()), |
| 565 | ('9 + 10 = 21', 4, NOW()), |
| 566 | ('Shit Was So Cash', 4, NOW()), |
| 567 | ('Name Puns', 4, NOW()), |
| 568 | ('Wonderwall', 3, NOW()), |
| 569 | ('Pokeparents / Pokedads', 4, NOW()), |
| 570 | ('THE GAME', 3, NOW()), |
| 571 | ('Chad Thundercock', 2, NOW()), |
| 572 | ('Eyebrows on Fleek', 1, NOW()), |
| 573 | ('Weegee', 2, NOW()), |
| 574 | ('Montage Parodies', 1, NOW()), |
| 575 | ('Actual Advice Mallard', 1, NOW()), |
| 576 | ('Inception', 2, NOW()), |
| 577 | ('You''re Doing It Wrong', 3, NOW()), |
| 578 | ('This Looks Shopped', 2, NOW()), |
| 579 | ('Advice Animals', 3, NOW()), |
| 580 | ('He Will Not Divide Us', 3, NOW()), |
| 581 | ('Close Enough', 1, NOW()), |
| 582 | ('"This Is the Ideal Male Body"', 4, NOW()), |
| 583 | ('Battletoads Pre-order', 5, NOW()), |
| 584 | ('Boardroom Suggestion', 2, NOW()), |
| 585 | ('Cocaine Bear', 3, NOW()), |
| 586 | ('Carl the Cuck and AIDS Skrillex', 5, NOW()), |
| 587 | ('Oh, You', 4, NOW()), |
| 588 | ('Epic Beard Man', 2, NOW()), |
| 589 | ('Everything Went Better Than Expected', 2, NOW()), |
| 590 | ('Ah Shit, Here We Go Again', 4, NOW()), |
| 591 | ('Limes Guy / Why Can''t I Hold All These Limes?', 1, NOW()), |
| 592 | ('"Mitochondria is the Powerhouse of the Cell"', 2, NOW()), |
| 593 | ('Normie', 3, NOW()), |
| 594 | ('Alt + F4', 5, NOW()), |
| 595 | ('Download More RAM', 3, NOW()), |
| 596 | ('Confused Travolta', 2, NOW()), |
| 597 | ('Troll Quotes', 4, NOW()), |
| 598 | ('Nigel Thornberry Remixes', 1, NOW()), |
| 599 | ('Hipster Mermaid / Hipster Ariel', 4, NOW()), |
| 600 | ('My Name Is Jeff', 2, NOW()), |
| 601 | ('Daily Dose / Piccolo Dick', 4, NOW()), |
| 602 | ('X Grab My Y', 3, NOW()), |
| 603 | ('Cory in the House', 5, NOW()), |
| 604 | ('Doomer', 3, NOW()), |
| 605 | ('Zangief Kid', 4, NOW()), |
| 606 | ('Descriptive Noise', 1, NOW()), |
| 607 | ('Jebaited', 4, NOW()), |
| 608 | ('How Can She Slap?', 5, NOW()), |
| 609 | ('Cracking Open a Cold One With the Boys', 4, NOW()), |
| 610 | ('Release The Kraken!', 2, NOW()), |
| 611 | ('What Has Been Seen Cannot Be Unseen', 1, NOW()), |
| 612 | ('Nobody:', 4, NOW()), |
| 613 | ('Yeah Science, Bitch', 4, NOW()), |
| 614 | ('Diabeetus', 4, NOW()), |
| 615 | ('Cake Farts', 3, NOW()), |
| 616 | ('Ted Cruz Zodiac Killer', 2, NOW()), |
| 617 | ('Anti-Joke Chicken', 2, NOW()), |
| 618 | ('spritecranberry.net', 5, NOW()), |
| 619 | ('Pacha Edits / When The Sun Hits That Ridge Just Right', 1, NOW()), |
| 620 | ('Sonic.exe', 1, NOW()), |
| 621 | ('That''s What She Said', 4, NOW()), |
| 622 | ('Bee Movie Script / According To All Known Laws Of Aviation', 1, NOW()), |
| 623 | ('JonTron', 2, NOW()), |
| 624 | ('Girls Laughing', 3, NOW()), |
| 625 | ('YouTube Poop / YTP', 5, NOW()), |
| 626 | ('It''s Something', 3, NOW()), |
| 627 | ('U Jelly?', 2, NOW()), |
| 628 | ('Trolldad', 4, NOW()), |
| 629 | ('Gabe Newell', 5, NOW()), |
| 630 | ('Wololo', 1, NOW()), |
| 631 | ('Stefán Karl Stefánsson / Robbie Rotten', 3, NOW()), |
| 632 | ('Dragon Dildos', 5, NOW()), |
| 633 | ('PINGAS', 4, NOW()), |
| 634 | ('Oh Stop It, You', 2, NOW()), |
| 635 | ('This Ain''t It, Chief', 4, NOW()), |
| 636 | ('Who''s Getting the Best Head?', 4, NOW()), |
| 637 | ('Feels Good', 1, NOW()), |
| 638 | ('Sam Hyde', 3, NOW()), |
| 639 | ('What in Tarnation', 1, NOW()), |
| 640 | ('This Nigga Eating Beans', 1, NOW()), |
| 641 | ('We Are Number One', 2, NOW()), |
| 642 | ('Happy Merchant', 1, NOW()), |
| 643 | ('Netflix and Chill', 1, NOW()), |
| 644 | ('Right In Front Of My Salad', 4, NOW()), |
| 645 | ('You Keep Using That Word, I Do Not Think It Means What You Think It Means', 1, NOW()), |
| 646 | ('Om Nom Nom Nom', 4, NOW()), |
| 647 | ('The Rock Driving', 1, NOW()), |
| 648 | ('RIP in Peace', 3, NOW()), |
| 649 | ('SCP Foundation', 1, NOW()), |
| 650 | ('Hipster Kitty', 4, NOW()), |
| 651 | ('What''s All This Racket? / Mirada Fija', 1, NOW()), |
| 652 | ('BORN TO DIE / WORLD IS A FUCK / Kill Em All 1989 / I am trash man / 410,757,864,530 DEAD COPS', 3, NOW()), |
| 653 | ('Bepis', 2, NOW()), |
| 654 | ('Why Do Slavs Squat? / Slav Squat', 3, NOW()), |
| 655 | ('Ken Bone', 4, NOW()), |
| 656 | ('Team Fortress 2', 5, NOW()), |
| 657 | ('Butthurt', 5, NOW()), |
| 658 | ('It''s Free Real Estate', 5, NOW()), |
| 659 | ('Tits or GTFO', 2, NOW()), |
| 660 | ('Cult of Kek', 3, NOW()), |
| 661 | ('Gabe the Dog / Bork Remixes', 2, NOW()), |
| 662 | ('Forced to Drink Milk', 4, NOW()), |
| 663 | ('Meme Man', 3, NOW()), |
| 664 | ('Interior Semiotics', 2, NOW()), |
| 665 | ('YouTube', 5, NOW()), |
| 666 | ('Rekt', 1, NOW()), |
| 667 | ('I Put on My Robe and Wizard Hat', 1, NOW()), |
| 668 | ('Thai Political Crisis Breakup', 3, NOW()), |
| 669 | ('Furries', 5, NOW()), |
| 670 | ('The Wadsworth Constant', 3, NOW()), |
| 671 | ('Bogdanoff Twins', 1, NOW()), |
| 672 | ('Do Want / Do Not Want', 4, NOW()), |
| 673 | ('Brendan Fraser''s Alimony / Just Fuck My Shit Up', 5, NOW()), |
| 674 | ('Actual Cannibal Shia LaBeouf', 5, NOW()), |
| 675 | ('Ah, I See You''re a Man of Culture As Well', 5, NOW()), |
| 676 | ('RWBY', 1, NOW()), |
| 677 | ('It''s Dangerous to Go Alone! Take This', 3, NOW()), |
| 678 | ('Double Rainbow', 2, NOW()), |
| 679 | ('You Just Activated My Trap Card!', 3, NOW()), |
| 680 | ('Oh Fuck Yeah Spread It', 5, NOW()), |
| 681 | ('Adalia Rose', 3, NOW()), |
| 682 | ('Dark Souls', 4, NOW()), |
| 683 | ('Guys Literally Only Want One Thing And It''s Fucking Disgusting', 4, NOW()), |
| 684 | ('Zuckerberg Note Pass', 4, NOW()), |
| 685 | ('Asians in the Library', 4, NOW()), |
| 686 | ('Conceited Reaction', 4, NOW()), |
| 687 | ('Undertale', 2, NOW()), |
| 688 | ('Ben Swolo', 3, NOW()), |
| 689 | ('This Is Why We Can''t Have Nice Things', 3, NOW()), |
| 690 | ('Bee Movie', 2, NOW()), |
| 691 | ('Ted the Caver', 2, NOW()), |
| 692 | ('Give Her The Dick', 5, NOW()), |
| 693 | ('Why Are We Still Here? Just To Suffer?', 3, NOW()), |
| 694 | ('Boruto''s Dad', 2, NOW()), |
| 695 | ('Suh Dude', 5, NOW()), |
| 696 | ('The Casting Couch', 4, NOW()), |
| 697 | ('Soy Boy', 1, NOW()), |
| 698 | ('Deep Fried Memes', 4, NOW()), |
| 699 | ('They Told Me I Could Be Anything I Wanted', 3, NOW()), |
| 700 | ('Wew Lad', 1, NOW()), |
| 701 | ('Put Your Finger Here', 2, NOW()), |
| 702 | ('Gaben', 3, NOW()), |
| 703 | ('Internet Husband', 5, NOW()), |
| 704 | ('Did He Died?', 4, NOW()), |
| 705 | ('Rare Pepe', 3, NOW()), |
| 706 | ('The Song of My People!', 4, NOW()), |
| 707 | ('Ladies and Gentlemen, We Got Him', 5, NOW()), |
| 708 | ('Justin Bieber', 2, NOW()), |
| 709 | ('SO HARDCORE', 5, NOW()), |
| 710 | ('Shit Tyrone, Get It Together', 1, NOW()), |
| 711 | ('Chonk / Oh Lawd He Comin''', 5, NOW()), |
| 712 | ('Le Monke / Uh Oh Stinky', 2, NOW()), |
| 713 | ('Costanza.jpg / George Costanza Reaction Face', 1, NOW()), |
| 714 | ('"I Saw Flying Lotus in a Grocery Store..." Copypasta', 2, NOW()), |
| 715 | ('Does Bruno Mars Is Gay?', 4, NOW()), |
| 716 | ('Daquan', 5, NOW()), |
| 717 | ('Pokémon Creepy Black', 5, NOW()), |
| 718 | ('Ebola-chan', 2, NOW()), |
| 719 | ('Katawa Shoujo', 4, NOW()), |
| 720 | ('Candlejack', 1, NOW()), |
| 721 | ('They''re Good Dogs Brent', 5, NOW()), |
| 722 | ('Kreygasm', 5, NOW()), |
| 723 | ('Three Wolf Moon', 3, NOW()), |
| 724 | ('Dating Site Murderer', 2, NOW()), |
| 725 | ('Supa Hot Fire', 1, NOW()), |
| 726 | ('Full Retard', 4, NOW()), |
| 727 | ('"It''s Gonna Be May"', 1, NOW()), |
| 728 | ('Futurama Zoidberg / Why Not Zoidberg?', 1, NOW()), |
| 729 | ('Yeet', 3, NOW()), |
| 730 | ('Skeleton War', 5, NOW()), |
| 731 | ('Gonna Cry? Gonna Piss Your Pants Maybe?', 2, NOW()), |
| 732 | ('I''m Here To Kick Ass And Chew Bubblegum', 4, NOW()), |
| 733 | ('Edgy', 4, NOW()), |
| 734 | ('2Spooky', 1, NOW()), |
| 735 | ('Dindu Nuffin', 3, NOW()), |
| 736 | ('No Fap September / No Fap Months', 3, NOW()), |
| 737 | ('Aesthetic', 2, NOW()), |
| 738 | ('Make Me a Sandwich', 5, NOW()), |
| 739 | ('Chemistry Cat', 4, NOW()), |
| 740 | ('Ainsley Harriott', 3, NOW()), |
| 741 | ('Soy Boy Face', 5, NOW()), |
| 742 | ('I Like Turtles', 3, NOW()), |
| 743 | ('Dog Fort', 1, NOW()), |
| 744 | ('SpongeBob SquarePants', 4, NOW()), |
| 745 | ('JoJo''s Pose', 3, NOW()), |
| 746 | ('Crying Michael Jordan', 2, NOW()), |
| 747 | ('Doom Paul / It''s Happening', 3, NOW()), |
| 748 | ('PogChamp', 2, NOW()), |
| 749 | ('hunter2', 4, NOW()), |
| 750 | ('Oh Fuck, Put It Back In', 3, NOW()), |
| 751 | ('Whomst', 1, NOW()), |
| 752 | ('This Man (Ever Dream This Man)', 1, NOW()), |
| 753 | ('Agar.io', 1, NOW()), |
| 754 | ('The Undertaker Threw Mankind Off Hell in a Cell', 2, NOW()), |
| 755 | ('Suicide Mouse', 5, NOW()), |
| 756 | ('People Die If They Are Killed', 3, NOW()), |
| 757 | ('I Should Buy a Boat Cat', 3, NOW()), |
| 758 | ('Amber Lamps', 2, NOW()), |
| 759 | ('My Faggot Dog', 4, NOW()), |
| 760 | ('Keemstar', 4, NOW()), |
| 761 | ('Fukouna Shoujo 03', 1, NOW()), |
| 762 | ('Damn Daniel', 1, NOW()), |
| 763 | ('Overwatch', 5, NOW()), |
| 764 | ('Dub the Dew', 3, NOW()), |
| 765 | ('Kill It With Fire', 1, NOW()), |
| 766 | ('Instructions Unclear', 5, NOW()), |
| 767 | ('Black Guy on the Phone', 4, NOW()), |
| 768 | ('Adventure Time', 4, NOW()), |
| 769 | ('Sheltered College Freshman', 1, NOW()), |
| 770 | ('Didney Worl', 4, NOW()), |
| 771 | ('Bruh', 3, NOW()), |
| 772 | ('It''s So Fucking Big', 4, NOW()), |
| 773 | ('8chan / 8kun', 2, NOW()), |
| 774 | ('iPhone Whale', 1, NOW()), |
| 775 | ('This Is Sparta!', 5, NOW()), |
| 776 | ('My Name Is Yoshikage Kira', 2, NOW()), |
| 777 | ('Is This a JoJo Reference?', 3, NOW()), |
| 778 | ('Aww Yiss', 1, NOW()), |
| 779 | ('Succ', 2, NOW()), |
| 780 | ('Persian Cat Room Guardian', 1, NOW()), |
| 781 | ('Ight Imma Head Out', 3, NOW()), |
| 782 | ('GachiGASM / GachiBASS', 3, NOW()), |
| 783 | ('Emoticons', 5, NOW()), |
| 784 | ('Cats Wanting Fruit Loops', 4, NOW()), |
| 785 | ('Eggplant Emoji 🍆', 5, NOW()), |
| 786 | ('Dummy Thicc', 5, NOW()), |
| 787 | ('You''ve Been Gnomed', 3, NOW()), |
| 788 | ('Drake The Type Of...', 1, NOW()), |
| 789 | ('Ramirez, Do Everything!', 1, NOW()), |
| 790 | ('ROFLcopter', 1, NOW()), |
| 791 | ('Florida Man', 4, NOW()), |
| 792 | ('Fap Guy', 4, NOW()), |
| 793 | ('LOLWUT', 5, NOW()), |
| 794 | ('Understandable, Have a Nice Day', 3, NOW()), |
| 795 | ('Crab Rave', 5, NOW()), |
| 796 | ('What You Think You Look Like vs. What You Actually Look Like', 5, NOW()), |
| 797 | ('OK Boomer', 5, NOW()), |
| 798 | ('Pokéfusion / Pokémon Fusion', 3, NOW()), |
| 799 | ('INB4', 4, NOW()), |
| 800 | ('Emo Dad', 1, NOW()), |
| 801 | ('FrankerZ', 2, NOW()), |
| 802 | ('Godwin''s Law', 3, NOW()), |
| 803 | ('Hello Darkness, My Old Friend', 2, NOW()), |
| 804 | ('[Intensifies]', 1, NOW()), |
| 805 | ('Snowclone', 1, NOW()), |
| 806 | ('3 Guys 1 Hammer', 1, NOW()), |
| 807 | ('MULTI-TRACK DRIFTING', 1, NOW()), |
| 808 | ('Impact', 3, NOW()), |
| 809 | ('Brother, May I Have Some Oats', 2, NOW()), |
| 810 | ('Menacing / ゴゴゴゴ', 2, NOW()), |
| 811 | ('Demotivational Posters', 4, NOW()), |
| 812 | ('I Have The Weirdest Boner', 5, NOW()), |
| 813 | ('You Had One Job', 4, NOW()), |
| 814 | ('Doki Doki Literature Club', 2, NOW()), |
| 815 | ('Oh? You''re Approaching Me? / JoJo Approach', 3, NOW()), |
| 816 | ('Harp Darp / Herp Derp', 3, NOW()), |
| 817 | ('Shut Down Everything', 5, NOW()), |
| 818 | ('Designated Shitting Streets / Poo in the Loo', 3, NOW()), |
| 819 | ('Woll Smoth', 3, NOW()), |
| 820 | ('First Day on the Internet Kid', 4, NOW()), |
| 821 | ('Wheaton''s Law', 5, NOW()), |
| 822 | ('Fedora Shaming', 1, NOW()), |
| 823 | ('I Crave That Mineral', 3, NOW()), |
| 824 | ('I''m Rick Harrison and This Is My Pawn Shop', 3, NOW()), |
| 825 | ('Obedece a la morsa / Obey the walrus', 3, NOW()), |
| 826 | ('Confession Bear', 3, NOW()), |
| 827 | ('Roof Koreans', 1, NOW()), |
| 828 | ('Brother Sharp (犀利哥)', 3, NOW()), |
| 829 | ('Grammar Nazi', 2, NOW()), |
| 830 | ('Delet This', 4, NOW()), |
| 831 | ('I Must Go', 2, NOW()), |
| 832 | ('Pokepuns', 4, NOW()), |
| 833 | ('Vaporwave', 4, NOW()), |
| 834 | ('Tony Kornheiser''s "Why"', 4, NOW()), |
| 835 | ('My Face When (MFW) / That Face When (TFW)', 1, NOW()), |
| 836 | ('Cringeworthy', 4, NOW()), |
| 837 | ('Pepperidge Farm Remembers', 2, NOW()), |
| 838 | ('Solaire of Astora', 2, NOW()), |
| 839 | ('Kyubey', 5, NOW()), |
| 840 | ('Nigga Stole My Bike', 1, NOW()), |
| 841 | ('HNNNNNNG', 3, NOW()), |
| 842 | ('Coffin Dance / Dancing Pallbearers', 4, NOW()), |
| 843 | ('It''s Goofy Time!', 2, NOW()), |
| 844 | ('Let''s Get This Bread', 3, NOW()), |
| 845 | ('Derpina', 1, NOW()), |
| 846 | ('fortniteburger.net', 1, NOW()), |
| 847 | ('Crying Laughing Emoji 😂', 4, NOW()), |
| 848 | ('Loli-chan', 2, NOW()), |
| 849 | ('Hipster Barista', 1, NOW()), |
| 850 | ('Friend Zone', 2, NOW()), |
| 851 | ('Marauder Shields', 3, NOW()), |
| 852 | ('Falcon Punch', 2, NOW()), |
| 853 | ('"Tunak Tunak Tun" Dance', 2, NOW()), |
| 854 | ('The Illuminati', 1, NOW()), |
| 855 | ('You Gonna Get Raped', 5, NOW()), |
| 856 | ('Destroy Dick December', 4, NOW()), |
| 857 | ('I Will Survive', 1, NOW()), |
| 858 | ('Increasingly Verbose Memes', 4, NOW()), |
| 859 | ('Gnome Child', 1, NOW()), |
| 860 | ('Thanos Car', 2, NOW()), |
| 861 | ('I Didn''t Choose The Thug Life, The Thug Life Chose Me', 2, NOW()), |
| 862 | ('Exploitables', 3, NOW()), |
| 863 | ('Autonomous Sensory Meridian Response (ASMR)', 5, NOW()), |
| 864 | ('Luke, I am Your Father', 1, NOW()), |
| 865 | ('Gold Membership Trolling', 1, NOW()), |
| 866 | ('Matrix Morpheus', 2, NOW()), |
| 867 | ('They See Me Rollin''', 3, NOW()), |
| 868 | ('Anime / Manga', 5, NOW()), |
| 869 | ('Cthulhu', 4, NOW()), |
| 870 | ('YTMND', 1, NOW()), |
| 871 | ('Face Swap', 1, NOW()), |
| 872 | ('I''m The Goddamn Batman', 3, NOW()), |
| 873 | ('The Barber', 3, NOW()), |
| 874 | ('Hackerman', 4, NOW()), |
| 875 | ('Pepe Silvia', 3, NOW()), |
| 876 | ('Cole Sprouse''s Tumblr Experiment', 3, NOW()), |
| 877 | ('Gremlin D.Va', 4, NOW()), |
| 878 | ('Mariah Mallad (Momokun)', 1, NOW()), |
| 879 | ('Best Cry Ever', 3, NOW()), |
| 880 | ('Shrek', 3, NOW()), |
| 881 | ('Goth GF', 4, NOW()), |
| 882 | ('Rose / randytaylor69', 4, NOW()), |
| 883 | ('League of Legends', 3, NOW()), |
| 884 | ('Women Logic', 5, NOW()), |
| 885 | ('Queensland Rail Etiquette Posters', 4, NOW()), |
| 886 | ('/r9k/', 4, NOW()), |
| 887 | ('Do It Faggot', 5, NOW()), |
| 888 | ('When I''m Bored', 1, NOW()), |
| 889 | ('Dimitri Finds Out', 3, NOW()), |
| 890 | ('Disintegration Effect / I Don''t Feel So Good', 2, NOW()), |
| 891 | ('Give Pikachu a Face', 4, NOW()), |
| 892 | ('Sonic the Hedgehog', 1, NOW()), |
| 893 | ('Mesothelioma Ad Copypasta', 4, NOW()), |
| 894 | ('2014 Tumblr-4chan Raids', 5, NOW()), |
| 895 | ('Amy''s Baking Company PR Scandal', 1, NOW()), |
| 896 | ('Donald Trump', 5, NOW()), |
| 897 | ('NO U', 1, NOW()), |
| 898 | ('Sonichu', 5, NOW()), |
| 899 | ('QUALITY', 2, NOW()), |
| 900 | ('Lyra Plushie', 3, NOW()), |
| 901 | ('*breath in* Boi', 4, NOW()), |
| 902 | ('Doggo', 2, NOW()), |
| 903 | ('Everything Changed When The Fire Nation Attacked', 1, NOW()), |
| 904 | ('Big Man Tyrone', 1, NOW()), |
| 905 | ('Autistic Screeching', 4, NOW()), |
| 906 | ('Cleganebowl', 4, NOW()), |
| 907 | ('When You See it...', 1, NOW()), |
| 908 | ('Unflattering Beyonce', 3, NOW()), |
| 909 | ('Apply Cold Water To That Burn', 4, NOW()), |
| 910 | ('COMBO BREAKER', 4, NOW()), |
| 911 | ('Put Shoe on Head', 5, NOW()), |
| 912 | ('It Will Be Fun, They Said', 3, NOW()), |
| 913 | ('Trumpet Boy', 3, NOW()), |
| 914 | ('Blinking White Guy', 2, NOW()), |
| 915 | ('TR-8R the Stormtrooper', 2, NOW()), |
| 916 | ('QWOP', 3, NOW()), |
| 917 | ('Touhou Project (東方Project)', 3, NOW()), |
| 918 | ('Anti-Zombie Fortress', 4, NOW()), |
| 919 | ('This is Bob', 2, NOW()), |
| 920 | ('Planking', 3, NOW()), |
| 921 | ('Poot Lovato', 4, NOW()), |
| 922 | ('Giga Pudding', 4, NOW()), |
| 923 | ('I''m Ethan Bradberry', 4, NOW()), |
| 924 | ('Pun Dog', 4, NOW()), |
| 925 | ('We''re a Culture, Not a Costume', 4, NOW()), |
| 926 | ('Rape Face', 1, NOW()), |
| 927 | ('Racists On 4chan', 4, NOW()), |
| 928 | ('Ceiling Cat', 5, NOW()), |
| 929 | ('"How Do You Do, Fellow Kids?"', 4, NOW()), |
| 930 | ('Boonk Gang', 5, NOW()), |
| 931 | ('Henlo', 4, NOW()), |
| 932 | ('Commit Sudoku', 5, NOW()), |
| 933 | ('iDubbbz', 3, NOW()), |
| 934 | ('Chocolate Bird', 4, NOW()), |
| 935 | ('The Room', 1, NOW()), |
| 936 | ('Surprised Patrick', 1, NOW()), |
| 937 | ('If It Fits I Sits', 2, NOW()), |
| 938 | ('Big Red', 5, NOW()), |
| 939 | ('Gentlemen', 4, NOW()), |
| 940 | ('Send Nudes', 4, NOW()), |
| 941 | ('Pootis', 5, NOW()), |
| 942 | ('Dipper Goes To Taco Bell', 2, NOW()), |
| 943 | ('Splatoon', 4, NOW()), |
| 944 | ('Nuclear Gandhi', 1, NOW()), |
| 945 | ('P-P-P-Powerbook!', 5, NOW()), |
| 946 | ('+1', 2, NOW()), |
| 947 | ('Ameno', 5, NOW()), |
| 948 | ('Schrute Facts', 2, NOW()), |
| 949 | ('Encyclopedia Dramatica', 5, NOW()), |
| 950 | ('Esther Verkest''s Help Sign', 3, NOW()), |
| 951 | ('Starter Packs', 1, NOW()), |
| 952 | ('Twitter', 1, NOW()), |
| 953 | ('Smoke Weed Everyday', 5, NOW()), |
| 954 | ('Groyper', 5, NOW()), |
| 955 | ('Money Printer Go Brrr', 2, NOW()), |
| 956 | ('Thug Life', 2, NOW()), |
| 957 | ('Mass Effect 3 Endings Reception', 2, NOW()), |
| 958 | ('Pornhub Community Intro', 1, NOW()), |
| 959 | ('Fuck The Police', 2, NOW()), |
| 960 | ('If Young Metro Don''t Trust You', 4, NOW()), |
| 961 | ('Push It Somewhere Else Patrick', 4, NOW()), |
| 962 | ('Special Feeling / 特別な気分', 5, NOW()), |
| 963 | ('Ed, Edd n Eddy', 3, NOW()), |
| 964 | ('Pusheen', 2, NOW()), |
| 965 | ('Yaoi Hands', 4, NOW()), |
| 966 | ('U.N. Owen Was Her?', 5, NOW()), |
| 967 | ('You Are A Pirate', 1, NOW()), |
| 968 | ('How Do I Shot Web?', 3, NOW()), |
| 969 | ('GiantDad', 1, NOW()), |
| 970 | ('Am I a Joke To You?', 4, NOW()), |
| 971 | ('Annoyed Picard', 5, NOW()), |
| 972 | ('Ellen Baker (New Horizon)', 4, NOW()), |
| 973 | ('You So Precious When You Smile', 1, NOW()), |
| 974 | ('Cat Breading', 1, NOW()), |
| 975 | ('LulzSec Hacks', 5, NOW()), |
| 976 | ('Obunga', 3, NOW()), |
| 977 | ('Surprise Buttsecks', 1, NOW()), |
| 978 | ('Okay, This Is Epic', 1, NOW()), |
| 979 | ('Am I the Only One Around Here', 5, NOW()), |
| 980 | ('Stop Right There, Criminal Scum', 3, NOW()), |
| 981 | ('Buenos Dias, Mandy', 5, NOW()), |
| 982 | ('Paul Christoforo Ocean Marketing Emails', 2, NOW()), |
| 983 | ('If You Watch X Backwards, It''s About Y', 4, NOW()), |
| 984 | ('E3 Sony 2006 / Giant Enemy Crab', 4, NOW()), |
| 985 | ('Storm Area 51', 4, NOW()), |
| 986 | ('Yare Yare Daze', 4, NOW()), |
| 987 | ('This Could Be Us But You Playing', 2, NOW()), |
| 988 | ('Paranoid Parrot', 3, NOW()), |
| 989 | ('Die Cis Scum', 3, NOW()), |
| 990 | ('Evil Kermit', 2, NOW()), |
| 991 | ('Breaking Bad Comics', 5, NOW()), |
| 992 | ('Nobody Expects The Spanish Inquisition', 3, NOW()), |
| 993 | ('WTF Is This Shit!?', 4, NOW()), |
| 994 | ('Google Ultron', 3, NOW()), |
| 995 | ('Just According to Keikaku', 2, NOW()), |
| 996 | ('Unlimited Blade Works', 5, NOW()), |
| 997 | ('Bad Joke Eel', 3, NOW()), |
| 998 | ('Anonymous', 3, NOW()), |
| 999 | ('Bronyspeak', 5, NOW()), |
| 1000 | ('[Help!] The Girl I Like Won’t Respond to My Emails (´・ω・`)', 2, NOW()), |
| 1001 | ('Twitch Emotes', 5, NOW()), |
| 1002 | ('Checkmate, Atheists', 5, NOW()), |
| 1003 | ('Cursed Image', 4, NOW()), |
| 1004 | ('Nailed It', 3, NOW()), |
| 1005 | ('Peanut Butter Jelly Time', 2, NOW()), |
| 1006 | ('4chumblr', 3, NOW()), |
| 1007 | ('Reply Girls', 5, NOW()), |
| 1008 | ('Man''s Not Hot', 2, NOW()), |
| 1009 | ('The Rent is Too Damn High / Jimmy McMillan', 3, NOW()), |
| 1010 | ('Turn To Page 394', 5, NOW()), |
| 1011 | ('Social Justice Warrior', 1, NOW()), |
| 1012 | ('A Wild X Appears! / Wild X Appeared!', 4, NOW()), |
| 1013 | ('Bimbofication', 4, NOW()), |
| 1014 | ('Brainlet', 1, NOW()), |
| 1015 | ('Bad Apple!!', 2, NOW()), |
| 1016 | ('Comic Sans', 3, NOW()), |
| 1017 | ('Chris Hansen', 2, NOW()), |
| 1018 | ('Bonsai Kittens', 1, NOW()), |
| 1019 | ('The Tails Doll', 1, NOW()), |
| 1020 | ('Hatsune Miku / Vocaloid', 2, NOW()), |
| 1021 | ('This Is a Flammenwerfer, It Werfs Flammen', 1, NOW()), |
| 1022 | ('You Reposted in the Wrong Neighborhood', 2, NOW()), |
| 1023 | ('Chuck Norris Facts', 5, NOW()), |
| 1024 | ('ManningFace', 3, NOW()), |
| 1025 | ('Alignment Charts', 5, NOW()), |
| 1026 | ('Fire Emblem', 3, NOW()), |
| 1027 | ('Excuse Me What the Fuck', 4, NOW()), |
| 1028 | ('Body Inflation', 4, NOW()), |
| 1029 | ('Nice Girl Bike', 2, NOW()), |
| 1030 | ('LOLcats', 4, NOW()), |
| 1031 | ('The Ass Was Fat / Arthur Sees A Fat Ass', 2, NOW()), |
| 1032 | ('Handsome Squidward / Squidward Falling', 2, NOW()), |
| 1033 | ('Technologically Impaired Duck', 3, NOW()), |
| 1034 | ('Johnny Sins', 5, NOW()), |
| 1035 | ('Mind = Blown', 4, NOW()), |
| 1036 | ('Mission Report: December 16th, 1991', 2, NOW()), |
| 1037 | ('Ben Garrison', 2, NOW()), |
| 1038 | ('Pee Is Stored in the Balls', 1, NOW()), |
| 1039 | ('Cigar Guy', 3, NOW()), |
| 1040 | ('Queen of England Death Predictions', 4, NOW()), |
| 1041 | ('IKEA Monkey', 4, NOW()), |
| 1042 | ('Long Neck Reaction Guy', 4, NOW()), |
| 1043 | ('Dril', 1, NOW()), |
| 1044 | ('HowToBasic', 1, NOW()), |
| 1045 | ('Lie Down / Try Not To Cry / Cry A Lot', 3, NOW()), |
| 1046 | ('We''re Fucking Cock Destroyers', 2, NOW()), |
| 1047 | ('Pepehands', 5, NOW()), |
| 1048 | ('Amanda Todd''s Death', 3, NOW()), |
| 1049 | ('Every Day I''m Shufflin', 4, NOW()), |
| 1050 | ('I Love You 3000', 5, NOW()), |
| 1051 | ('Super Smash Brothers Ultimate', 1, NOW()), |
| 1052 | ('Smug Frog', 1, NOW()), |
| 1053 | ('GigaChad', 4, NOW()), |
| 1054 | ('Despacito 2', 1, NOW()), |
| 1055 | ('You Dense Motherfucker', 5, NOW()), |
| 1056 | ('Crash Bandicoot "Woah"', 1, NOW()), |
| 1057 | ('Time Traveling Hipster', 2, NOW()), |
| 1058 | ('Respect Women', 3, NOW()), |
| 1059 | ('American Chopper Argument', 3, NOW()), |
| 1060 | ('"Milhouse Is Not A Meme"', 3, NOW()), |
| 1061 | ('Why The Fuck You Lyin''', 1, NOW()), |
| 1062 | ('Goosh Goosh', 1, NOW()), |
| 1063 | ('My Bike Got Stolen Recently', 2, NOW()), |
| 1064 | ('I''m in That Weird Part of YouTube', 2, NOW()), |
| 1065 | ('GiIvaSunner / SiIvaGunner', 2, NOW()), |
| 1066 | ('Oh No, It''s Retarded', 2, NOW()), |
| 1067 | ('Everyday We Stray Further From God''s Light', 1, NOW()), |
| 1068 | ('Bel-Air (Fresh Prince)', 4, NOW()), |
| 1069 | ('Attack on Titan / Shingeki No Kyojin', 5, NOW()), |
| 1070 | ('Avatar: The Last Airbender / The Legend of Korra', 5, NOW()), |
| 1071 | ('A.I.Channel / Ai Kizuna', 3, NOW()), |
| 1072 | ('Gondola', 5, NOW()), |
| 1073 | ('Brad''s Wife', 4, NOW()), |
| 1074 | ('What Is the Airspeed Velocity of an Unladen Swallow?', 3, NOW()), |
| 1075 | ('Diglett Underground', 5, NOW()), |
| 1076 | ('Nigga, You Gay', 3, NOW()), |
| 1077 | ('Stop Girl', 3, NOW()), |
| 1078 | ('Bongo Cat', 4, NOW()), |
| 1079 | ('Ken-Sama', 1, NOW()), |
| 1080 | ('Etika', 2, NOW()), |
| 1081 | ('Attractive Convict', 1, NOW()), |
| 1082 | ('Bronies', 4, NOW()), |
| 1083 | ('Shia LaBeouf''s Intense Motivational Speech / Just Do It', 2, NOW()), |
| 1084 | ('Top 10 Anime List Parodies', 2, NOW()), |
| 1085 | ('I Told You About Stairs', 3, NOW()), |
| 1086 | ('30-Year-Old Virgin Wizard', 4, NOW()), |
| 1087 | ('You Tried', 5, NOW()), |
| 1088 | ('Bitch I Might Be', 1, NOW()), |
| 1089 | ('Special Delivery Instructions', 1, NOW()), |
| 1090 | ('Naked Banana', 5, NOW()), |
| 1091 | ('Raptor Jesus', 2, NOW()), |
| 1092 | ('Youngster Joey', 1, NOW()), |
| 1093 | ('What You See vs. What She Sees', 1, NOW()), |
| 1094 | ('LOL Jesus', 2, NOW()), |
| 1095 | ('Do It For Her', 4, NOW()), |
| 1096 | ('Sad Panda', 2, NOW()), |
| 1097 | ('Gingers Do Have Souls!', 3, NOW()), |
| 1098 | ('Hand Me the Aux Cord', 5, NOW()), |
| 1099 | ('Apu Apustaja', 1, NOW()), |
| 1100 | ('You Just Have to Say That You''re Fine', 1, NOW()), |
| 1101 | ('The Absolute Madman', 3, NOW()), |
| 1102 | ('Sea-Lioning', 1, NOW()), |
| 1103 | ('Pony Reactions', 4, NOW()), |
| 1104 | ('Nut Button', 2, NOW()), |
| 1105 | ('Video Game Logic', 4, NOW()), |
| 1106 | ('Biggie Cheese', 5, NOW()), |
| 1107 | ('Pakalu Papito', 3, NOW()), |
| 1108 | ('Describe Yourself in 3 Fictional Characters', 5, NOW()), |
| 1109 | ('Call Me Maybe', 5, NOW()), |
| 1110 | ('A Winner Is You', 3, NOW()), |
| 1111 | ('Pics or It Didn''t Happen', 4, NOW()), |
| 1112 | ('Get Down (Geddan)', 4, NOW()), |
| 1113 | ('Poggers', 3, NOW()), |
| 1114 | ('Real Nigga Hours', 5, NOW()), |
| 1115 | ('Laughing Tom Cruise', 1, NOW()), |
| 1116 | ('Vibe Check', 1, NOW()), |
| 1117 | ('Amerimutt / Le 56% Face', 5, NOW()), |
| 1118 | ('Good Girl Gina', 2, NOW()), |
| 1119 | ('Ant-Man Will Defeat Thanos by Crawling Up His Butt and Expanding', 2, NOW()), |
| 1120 | ('James Franco “First Time?”', 4, NOW()), |
| 1121 | ('Shadilay', 2, NOW()), |
| 1122 | ('Snek', 4, NOW()), |
| 1123 | ('Big Nigga', 4, NOW()), |
| 1124 | ('I''m in Me Mum''s Car, Broom Broom', 5, NOW()), |
| 1125 | ('Yamcha''s Death Pose', 4, NOW()), |
| 1126 | ('Amanda Cummings'' Death', 4, NOW()), |
| 1127 | ('Circle Jerk', 5, NOW()), |
| 1128 | ('DJ P0N-3 / Vinyl Scratch', 4, NOW()), |
| 1129 | ('Luna Game / The End is Neigh', 4, NOW()), |
| 1130 | ('Kill la Kill', 4, NOW()), |
| 1131 | ('Luigi''s Death Stare', 3, NOW()), |
| 1132 | ('Anti-Masturbation Cross', 2, NOW()), |
| 1133 | ('I Regret Nothing', 2, NOW()), |
| 1134 | ('Brazilian Fart Porn', 3, NOW()), |
| 1135 | ('You Must Be New Here', 5, NOW()), |
| 1136 | ('Fuck Me, Right?', 1, NOW()), |
| 1137 | ('Friendzone Johnny', 2, NOW()), |
| 1138 | ('Fukkireta (吹っ切れた)', 3, NOW()), |
| 1139 | ('Birthday Dog', 2, NOW()), |
| 1140 | ('You Vs. The Guy She Told You Not to Worry About', 3, NOW()), |
| 1141 | ('Rage Quit', 2, NOW()), |
| 1142 | ('Differenze Linguistiche', 4, NOW()), |
| 1143 | ('Wake Me Up Inside (Can''t Wake Up)', 2, NOW()), |
| 1144 | ('I Studied the Blade', 5, NOW()), |
| 1145 | ('Crazy Frog Brothers', 5, NOW()), |
| 1146 | ('Inappropriate Timing Spongebob Banner', 2, NOW()), |
| 1147 | ('Despacito', 2, NOW()), |
| 1148 | ('Amazing Horse', 5, NOW()), |
| 1149 | ('Hipster Glasses', 1, NOW()), |
| 1150 | ('You Either Die A Hero, Or You Live Long Enough To See Yourself Become The Villain', 1, NOW()), |
| 1151 | ('Eat Hot Chip and Lie', 3, NOW()), |
| 1152 | ('Steve Buscemeyes', 4, NOW()), |
| 1153 | ('I''m an Anteater!!!', 2, NOW()), |
| 1154 | ('Vape Nation', 3, NOW()), |
| 1155 | ('Friend Zone Fiona', 1, NOW()), |
| 1156 | ('Starecat / Grafics Cat', 4, NOW()), |
| 1157 | ('Ralph Pootawn', 5, NOW()), |
| 1158 | ('What is Love?', 5, NOW()), |
| 1159 | ('Wolf Girl With You', 5, NOW()), |
| 1160 | ('Ayaya', 5, NOW()), |
| 1161 | ('Learn to Code', 2, NOW()), |
| 1162 | ('My Little Pony Character Fandom', 2, NOW()), |
| 1163 | ('Dancing Spider-Man', 5, NOW()), |
| 1164 | ('Why Wub Woo / Dashface', 2, NOW()), |
| 1165 | ('America: Fuck Yeah!', 1, NOW()), |
| 1166 | ('Meanwhile in...', 3, NOW()), |
| 1167 | ('It''s Super Effective!', 5, NOW()), |
| 1168 | ('Cummies', 3, NOW()), |
| 1169 | ('White People Dancing / LOL White People', 5, NOW()), |
| 1170 | ('Just As Planned', 5, NOW()), |
| 1171 | ('Absolutely Disgusting', 5, NOW()), |
| 1172 | ('Big Enough', 4, NOW()), |
| 1173 | ('Bro Fist', 1, NOW()), |
| 1174 | ('Vladimir Putin', 4, NOW()), |
| 1175 | ('5ever', 4, NOW()), |
| 1176 | ('It Was At This Moment He Knew... He Fucked Up', 1, NOW()), |
| 1177 | ('Sweating Towel Guy', 3, NOW()), |
| 1178 | ('You''re Mom Gay', 5, NOW()), |
| 1179 | ('Moonbase Alpha Text to Speech', 4, NOW()), |
| 1180 | ('Nutted But She Still Sucking', 4, NOW()), |
| 1181 | ('Dis Gon B Gud', 2, NOW()), |
| 1182 | ('Linda Glocke / I Will Destroy ISIS', 2, NOW()), |
| 1183 | ('He Will Never Have a Girlfriend', 3, NOW()), |
| 1184 | ('Ocean Man', 3, NOW()), |
| 1185 | ('Family Guy Effect', 5, NOW()), |
| 1186 | ('Owling', 3, NOW()), |
| 1187 | ('Bitch I''m Fabulous', 1, NOW()), |
| 1188 | ('DSPGaming', 3, NOW()), |
| 1189 | ('Savage Patrick', 2, NOW()), |
| 1190 | ('Awoo~', 2, NOW()), |
| 1191 | ('Stock Photo Clichés', 4, NOW()), |
| 1192 | ('Cookie Clicker', 3, NOW()), |
| 1193 | ('LUL', 1, NOW()), |
| 1194 | ('Howard the Alien / Money Longer Alien', 5, NOW()), |
| 1195 | ('Image Macros', 5, NOW()), |
| 1196 | ('Griefing', 5, NOW()), |
| 1197 | ('I Did It for the Lulz', 1, NOW()), |
| 1198 | ('Yiff', 4, NOW()), |
| 1199 | ('Change Da World... My Final Message', 4, NOW()), |
| 1200 | ('Interior Crocodile Alligator', 5, NOW()), |
| 1201 | ('That Wasn''t Very Cash Money of You', 2, NOW()), |
| 1202 | ('Facebook', 3, NOW()), |
| 1203 | ('Streisand Effect', 1, NOW()), |
| 1204 | ('Professor Badass', 2, NOW()), |
| 1205 | ('Unpopular Opinion Puffin', 5, NOW()), |
| 1206 | ('Get To The Choppa', 4, NOW()), |
| 1207 | ('Zamii070 Harassment Controversy', 2, NOW()), |
| 1208 | ('Salty', 1, NOW()), |
| 1209 | ('BadBoy2 / I''m 18, Do I Have Potential?', 5, NOW()), |
| 1210 | ('No Items, Fox Only, Final Destination', 2, NOW()), |
| 1211 | ('Super Mario', 5, NOW()), |
| 1212 | ('Improvise. Adapt. Overcome', 3, NOW()), |
| 1213 | ('Shaggy''s Power', 2, NOW()), |
| 1214 | ('Game Grumps', 2, NOW()), |
| 1215 | ('I Drink Your Milkshake!', 3, NOW()), |
| 1216 | ('I Don''t Like Sand', 3, NOW()), |
| 1217 | ('Diretide', 3, NOW()), |
| 1218 | ('360 No Scope', 1, NOW()), |
| 1219 | ('Facebook Cartoon Profile Picture Week', 3, NOW()), |
| 1220 | ('Cuteness Overload', 1, NOW()), |
| 1221 | ('Instagram', 2, NOW()), |
| 1222 | ('That''s How Mafia Works', 3, NOW()), |
| 1223 | ('Boneless Pizza', 4, NOW()), |
| 1224 | ('Milkshake Duck', 3, NOW()), |
| 1225 | ('Misunderstood D-Bag', 3, NOW()), |
| 1226 | ('Magikarp Guy', 1, NOW()), |
| 1227 | ('Content Aware Scaling', 4, NOW()), |
| 1228 | ('0.5x A Presses / But First We Need to Talk About Parallel Universes', 2, NOW()), |
| 1229 | ('Spanish Laughing Guy / "El Risitas" Interview Parodies', 5, NOW()), |
| 1230 | ('Untoons', 5, NOW()), |
| 1231 | ('/pol/', 3, NOW()), |
| 1232 | ('Katya Lischina', 2, NOW()), |
| 1233 | ('Polybius', 3, NOW()), |
| 1234 | ('Bold Move Cotton', 1, NOW()), |
| 1235 | ('Super Cool Ski Instructor', 1, NOW()), |
| 1236 | ('Gijinka / Moe Anthropomorphism', 5, NOW()), |
| 1237 | ('Hey Beter', 4, NOW()), |
| 1238 | ('Bait / This is Bait', 4, NOW()), |
| 1239 | ('Nickelback', 2, NOW()), |
| 1240 | ('Sitting Lyra', 1, NOW()), |
| 1241 | ('Keyboard Cat', 4, NOW()), |
| 1242 | ('It''s Not Lupus', 4, NOW()), |
| 1243 | ('Row Row Fight the Powah', 1, NOW()), |
| 1244 | ('Monster Musume / Daily Life with Monster Girl', 5, NOW()), |
| 1245 | ('Naruto Run', 1, NOW()), |
| 1246 | ('Blyat / Cyka Blyat', 4, NOW()), |
| 1247 | ('How About No?', 1, NOW()), |
| 1248 | ('Le Toucan', 2, NOW()), |
| 1249 | ('Cats Can Have a Little Salami', 1, NOW()), |
| 1250 | ('You''ve Heard of the Elf on the Shelf...', 5, NOW()), |
| 1251 | ('They''re Taking the Hobbits to Isengard', 3, NOW()), |
| 1252 | ('Recorded with a Potato', 4, NOW()), |
| 1253 | ('Best Gore', 1, NOW()), |
| 1254 | ('Supercut', 5, NOW()), |
| 1255 | ('That Would Be Great', 2, NOW()), |
| 1256 | ('Legal Loli', 3, NOW()), |
| 1257 | ('What is a man?', 3, NOW()), |
| 1258 | ('Oh Long Johnson', 2, NOW()), |
| 1259 | ('So Long, Gay Bowser', 3, NOW()), |
| 1260 | ('Sweet Apple Massacre (My Little Pony Fanfiction)', 5, NOW()), |
| 1261 | ('Nico Nico Nii', 5, NOW()), |
| 1262 | ('Awkward Moment Seal', 4, NOW()), |
| 1263 | ('Straight Outta Somewhere / #StraightOutta', 3, NOW()), |
| 1264 | ('The Alot', 2, NOW()), |
| 1265 | ('Jasmine Masters "And I Oop"', 3, NOW()), |
| 1266 | ('In Ur Base', 4, NOW()), |
| 1267 | ('4chan Party Van', 3, NOW()), |
| 1268 | ('Grandma Finds the Internet', 2, NOW()), |
| 1269 | ('Super Bowl XLIX Halftime "Left Shark"', 2, NOW()), |
| 1270 | ('S[he] Be[lie]ve[d] (Sbeve)', 5, NOW()), |
| 1271 | ('The Picard Song', 5, NOW()), |
| 1272 | ('What The Fuck Am I Reading?', 3, NOW()), |
| 1273 | ('Plastic Love', 4, NOW()), |
| 1274 | ('Celebrity Pokemon Evolutions', 2, NOW()), |
| 1275 | ('BBQ Becky', 3, NOW()), |
| 1276 | ('"You Could Stop at Five or Six Stores"', 4, NOW()), |
| 1277 | ('Allahu Akbar', 4, NOW()), |
| 1278 | ('Zelda''s Response', 5, NOW()), |
| 1279 | ('Slide Into Your DMs', 2, NOW()), |
| 1280 | ('Astronaut Sloth', 5, NOW()), |
| 1281 | ('Nice Boat.', 4, NOW()), |
| 1282 | ('Unsettled Tom', 2, NOW()), |
| 1283 | ('Oh No Baby! What Is You Doin???', 5, NOW()), |
| 1284 | ('Bunchie', 5, NOW()), |
| 1285 | ('Winnie The Pooh''s Home Run Derby', 1, NOW()), |
| 1286 | ('What Are You Doing, Step Bro?', 2, NOW()), |
| 1287 | ('All Right, Gentlemen!', 5, NOW()), |
| 1288 | ('Boar Vessel', 2, NOW()), |
| 1289 | ('Happy Cat', 3, NOW()), |
| 1290 | ('NOMA - Brain Power', 4, NOW()), |
| 1291 | ('Fuck Logic', 3, NOW()), |
| 1292 | ('Don''t Worry, He Knows', 5, NOW()), |
| 1293 | ('Here in My Garage', 1, NOW()), |
| 1294 | ('I''m Literally the Guy in the Pic', 4, NOW()), |
| 1295 | ('Dinkleberg', 4, NOW()), |
| 1296 | ('Brushie Brushie Brushie', 2, NOW()), |
| 1297 | ('OK So Basically I''m Monky', 1, NOW()), |
| 1298 | ('Just Kidding... Unless?', 1, NOW()), |
| 1299 | ('Bench Tails', 1, NOW()), |
| 1300 | ('Make Your Own Album Cover', 2, NOW()), |
| 1301 | ('Woody Harrelson Reddit AMA', 1, NOW()), |
| 1302 | ('Strong Black Woman Who Don''t Need No Man', 3, NOW()), |
| 1303 | ('Dihydrogen Monoxide Hoax', 3, NOW()), |
| 1304 | ('Clever Girl', 5, NOW()), |
| 1305 | ('The D', 1, NOW()), |
| 1306 | ('Globglogabgalab', 2, NOW()), |
| 1307 | ('WTF BOOM!', 1, NOW()), |
| 1308 | ('Sheltering Suburban Mom', 3, NOW()), |
| 1309 | ('Fakemon', 4, NOW()), |
| 1310 | ('Race Guy', 2, NOW()), |
| 1311 | ('Gadsden Flag / Don''t Tread On Me', 1, NOW()), |
| 1312 | ('Spider-Man Ass Slap', 3, NOW()), |
| 1313 | ('Adolf Hitler', 2, NOW()), |
| 1314 | ('You Win the Internet!', 2, NOW()), |
| 1315 | ('I''m Watching You', 1, NOW()), |
| 1316 | ('Dick Flattening', 2, NOW()), |
| 1317 | ('Dankey Kang', 3, NOW()), |
| 1318 | ('What Year Is It?', 2, NOW()), |
| 1319 | ('Ara Ara', 5, NOW()), |
| 1320 | ('L.A. Noire "Doubt" / Press X To Doubt', 2, NOW()), |
| 1321 | ('How to Wear a Men''s Shirt', 3, NOW()), |
| 1322 | ('Gravity Falls', 3, NOW()), |
| 1323 | ('Pop Team Epic', 2, NOW()), |
| 1324 | ('Interior Monologue Captioning', 5, NOW()), |
| 1325 | ('I Showed You My Dick Please Respond', 2, NOW()), |
| 1326 | ('Dragons Having Sex with Cars', 5, NOW()), |
| 1327 | ('Baldi''s Basics in Education and Learning', 2, NOW()), |
| 1328 | ('I Was Only Pretending To Be Retarded', 4, NOW()), |
| 1329 | ('Creepy Villager', 3, NOW()), |
| 1330 | ('Annoying Childhood Friend', 4, NOW()), |
| 1331 | ('Manly Tears', 4, NOW()), |
| 1332 | ('>Implying (Implying Implications)', 1, NOW()), |
| 1333 | ('Thinking Face Emoji 🤔', 3, NOW()), |
| 1334 | ('Corey Worthington''s Party', 4, NOW()), |
| 1335 | ('Bone Apple Tea', 3, NOW()), |
| 1336 | ('R+L=J', 5, NOW()), |
| 1337 | ('Still a Better Love Story than Twilight', 5, NOW()), |
| 1338 | ('That''s the Evilest Thing I Can Imagine', 1, NOW()), |
| 1339 | ('Hipster', 2, NOW()), |
| 1340 | ('Smugleaf', 5, NOW()), |
| 1341 | ('NSFW', 4, NOW()), |
| 1342 | ('Sarah Jessica Parker Looks Like a Horse', 5, NOW()), |
| 1343 | ('Rasta Science Teacher', 1, NOW()), |
| 1344 | ('Ken M', 4, NOW()), |
| 1345 | ('Tiger Mom', 3, NOW()), |
| 1346 | ('Magibon', 1, NOW()), |
| 1347 | ('Top Gun Hat', 2, NOW()), |
| 1348 | ('Party Hard', 1, NOW()), |
| 1349 | ('Did You Just Assume My Gender?', 4, NOW()), |
| 1350 | ('Lord Tachanka', 1, NOW()), |
| 1351 | ('Activated Almonds', 4, NOW()), |
| 1352 | ('Fifty Shades of Grey', 3, NOW()), |
| 1353 | ('New Guy', 5, NOW()), |
| 1354 | ('Bro, I''m Straight Up Not Having a Good Time', 2, NOW()), |
| 1355 | ('Charlie Sheen Rant / #tigerblood', 3, NOW()), |
| 1356 | ('Cracky-chan', 4, NOW()), |
| 1357 | ('"You And Me" Parodies', 5, NOW()), |
| 1358 | ('The YouTube Sexual Abuse Scandal', 5, NOW()), |
| 1359 | ('That Post Gave Me Cancer', 3, NOW()), |
| 1360 | ('Assuming Control', 2, NOW()), |
| 1361 | ('Get A Brain Morans', 5, NOW()), |
| 1362 | ('I''m Baby', 4, NOW()), |
| 1363 | ('Trust Nobody, Not Even Yourself', 4, NOW()), |
| 1364 | ('How Italians Do Things', 4, NOW()), |
| 1365 | ('I''ve Seen Enough Hentai To Know Where This Is Going', 3, NOW()), |
| 1366 | ('Nazi Pepe Controversy', 3, NOW()), |
| 1367 | ('Feeling Cute Challenge', 5, NOW()), |
| 1368 | ('Shiny Pidgey', 2, NOW()), |
| 1369 | ('Yes Chad', 1, NOW()), |
| 1370 | ('Cheeky Nando''s', 2, NOW()), |
| 1371 | ('BonbiBonkers', 1, NOW()), |
| 1372 | ('It''s Okay to Be White', 3, NOW()), |
| 1373 | ('Portal 2 Space Personality Core', 1, NOW()), |
| 1374 | ('Lex Luthor Took Forty Cakes', 3, NOW()), |
| 1375 | ('Video Games Appeal to the Male Fantasy', 3, NOW()), |
| 1376 | ('Spooky Scary Skeletons', 4, NOW()), |
| 1377 | ('Greg Paul Sex Tape Leak', 5, NOW()), |
| 1378 | ('Mary Sue', 1, NOW()), |
| 1379 | ('The Last Page of the Internet', 1, NOW()), |
| 1380 | ('BLACKED', 2, NOW()), |
| 1381 | ('Gohan Blanco', 3, NOW()), |
| 1382 | ('Piracy, It''s a Crime', 4, NOW()), |
| 1383 | ('What I Watched / What I Expected / What I Got', 1, NOW()), |
| 1384 | ('You Get Nothing! You Lose! Good Day, Sir!', 2, NOW()), |
| 1385 | ('Demopan', 4, NOW()), |
| 1386 | ('-fag (Suffix)', 1, NOW()), |
| 1387 | ('Surprise, Bitch', 1, NOW()), |
| 1388 | ('Girugamesh', 5, NOW()), |
| 1389 | ('Don''t Look at Her', 1, NOW()), |
| 1390 | ('Who Created Kirby?', 3, NOW()), |
| 1391 | ('White Knight', 5, NOW()), |
| 1392 | ('Medieval Tapestry Edits', 5, NOW()), |
| 1393 | ('Loud Nigra', 5, NOW()), |
| 1394 | ('Lonk', 4, NOW()), |
| 1395 | ('Caramelldansen', 5, NOW()), |
| 1396 | ('No Nut November', 2, NOW()), |
| 1397 | ('Shipping', 4, NOW()), |
| 1398 | ('Todd Howard', 4, NOW()), |
| 1399 | ('Chocolate Rain', 4, NOW()), |
| 1400 | ('Where Is Your God Now?', 4, NOW()), |
| 1401 | ('Fuckboy', 5, NOW()), |
| 1402 | ('Desiree Jennings Dystonia Hoax', 5, NOW()), |
| 1403 | ('Welcome To The Salty Spitoon. How Tough Are Ya?', 3, NOW()), |
| 1404 | ('Well Yes, But Actually No', 1, NOW()), |
| 1405 | ('Lame Pun Coon', 5, NOW()), |
| 1406 | ('I Cri Evrytiem', 1, NOW()), |
| 1407 | ('Then Perish', 3, NOW()), |
| 1408 | ('I Got 99 Problems But a Bitch Ain''t One', 1, NOW()), |
| 1409 | ('/b/', 2, NOW()), |
| 1410 | ('DOOM: Repercussions of Evil', 2, NOW()), |
| 1411 | ('Zoomer', 4, NOW()), |
| 1412 | ('Wrong Lyrics Christina', 5, NOW()), |
| 1413 | ('Brittany Venti', 3, NOW()), |
| 1414 | ('You See Ivan...', 5, NOW()), |
| 1415 | ('Ponify', 5, NOW()), |
| 1416 | ('Unidan', 3, NOW()), |
| 1417 | ('Red Shirt Guy', 1, NOW()), |
| 1418 | ('How to Break Your Thumb Ligament', 5, NOW()), |
| 1419 | ('Ding Fries Are Done', 5, NOW()), |
| 1420 | ('Stu Making Chocolate Pudding At 4 AM', 3, NOW()), |
| 1421 | ('Thank You Kanye, Very Cool!', 1, NOW()), |
| 1422 | ('Lonely Computer Guy / Net Noob', 3, NOW()), |
| 1423 | ('Game of Thrones', 2, NOW()), |
| 1424 | ('YES! YES!', 5, NOW()), |
| 1425 | ('Graphic Design Is My Passion', 2, NOW()), |
| 1426 | ('It''s High Noon', 5, NOW()), |
| 1427 | ('Bikini Bridge', 5, NOW()), |
| 1428 | ('Single-Serving Site', 1, NOW()), |
| 1429 | ('Gavin', 4, NOW()), |
| 1430 | ('Meme Magic', 2, NOW()), |
| 1431 | ('2019 Tokyo Yandere Stabbing', 3, NOW()), |
| 1432 | ('Budd Dwyer Suicide Video', 3, NOW()), |
| 1433 | ('ProJared Cheating Scandal', 1, NOW()), |
| 1434 | ('Urban Dictionary', 2, NOW()), |
| 1435 | ('Bill O''Reilly Rant', 1, NOW()), |
| 1436 | ('Christopher Poole / moot', 3, NOW()), |
| 1437 | ('Polite Cat', 2, NOW()), |
| 1438 | ('The Woah', 2, NOW()), |
| 1439 | ('Trump Is Playing 4D Chess', 4, NOW()), |
| 1440 | ('Whatcha Thinkin Bout?', 1, NOW()), |
| 1441 | ('Don''t Hug Me I''m Scared', 1, NOW()), |
| 1442 | ('Can You Please Photoshop The Sun Between My Fingers?', 1, NOW()), |
| 1443 | ('Dakimakura / Body Pillow', 3, NOW()), |
| 1444 | ('Domo', 2, NOW()), |
| 1445 | ('But I Poop From There', 4, NOW()), |
| 1446 | ('Smug Wendy''s', 3, NOW()), |
| 1447 | ('Grape-kun', 5, NOW()), |
| 1448 | ('Monster Girls', 1, NOW()), |
| 1449 | ('Angry Pepe', 2, NOW()), |
| 1450 | ('Final Boss of the Internet', 2, NOW()), |
| 1451 | ('Brock Obama', 1, NOW()), |
| 1452 | ('Star Wars', 4, NOW()), |
| 1453 | ('GIF', 1, NOW()), |
| 1454 | ('Fuck Yeah Seaking', 1, NOW()), |
| 1455 | ('Lenin Cat', 2, NOW()), |
| 1456 | ('Pornhub', 1, NOW()), |
| 1457 | ('Kowalski', 4, NOW()), |
| 1458 | ('Tumblr Nose', 5, NOW()), |
| 1459 | ('Big Dick Energy', 5, NOW()), |
| 1460 | ('It Really Do Be Like That Sometimes', 3, NOW()), |
| 1461 | ('Erratas', 3, NOW()), |
| 1462 | ('Honk Honk / Chen Edits', 2, NOW()), |
| 1463 | ('The More You Know', 2, NOW()), |
| 1464 | ('Anita Sarkeesian', 3, NOW()), |
| 1465 | ('Spy Crab', 1, NOW()), |
| 1466 | ('e621', 5, NOW()), |
| 1467 | ('Super Smash Bros Character Predictions', 4, NOW()), |
| 1468 | ('9/11 Tourist Guy', 4, NOW()), |
| 1469 | ('Angelina Jolie''s Leg', 5, NOW()), |
| 1470 | ('Y Tho', 2, NOW()), |
| 1471 | ('My Hero Academia', 2, NOW()), |
| 1472 | ('Do She Got a Booty? (She Do)', 3, NOW()), |
| 1473 | ('Doctor Whooves / Time Turner', 1, NOW()), |
| 1474 | ('Meth, Not Even Once', 5, NOW()), |
| 1475 | ('Stoner Dog', 4, NOW()), |
| 1476 | ('Don''t Judge Challenge', 2, NOW()), |
| 1477 | ('Red Leader Standing By', 5, NOW()), |
| 1478 | ('That Pool', 2, NOW()), |
| 1479 | ('Spiders Georg', 4, NOW()), |
| 1480 | ('Topkek', 3, NOW()), |
| 1481 | ('Lying Down Game', 2, NOW()), |
| 1482 | ('Dancing Baby', 1, NOW()), |
| 1483 | ('Renai Circulation', 4, NOW()), |
| 1484 | ('Mia Khalifa Death Threats', 3, NOW()), |
| 1485 | ('Clippy', 2, NOW()), |
| 1486 | ('Some Of You Guys Are Alright', 5, NOW()), |
| 1487 | ('Sonic Original Characters', 5, NOW()), |
| 1488 | ('Eli Porter', 2, NOW()), |
| 1489 | ('asdfmovie', 2, NOW()), |
| 1490 | ('Benis', 5, NOW()), |
| 1491 | ('Horse-Sized Duck', 2, NOW()), |
| 1492 | ('Hmm Today I Will', 2, NOW()), |
| 1493 | ('SourPls', 3, NOW()), |
| 1494 | ('Don''t Blink "The Weeping Angels"', 2, NOW()), |
| 1495 | ('Original vs. Un-Tumblrized', 5, NOW()), |
| 1496 | ('Yotsuba Koiwai / 404 Girl', 2, NOW()), |
| 1497 | ('He Needs Some Milk', 2, NOW()), |
| 1498 | ('Babby', 5, NOW()), |
| 1499 | ('Happy Keanu', 4, NOW()), |
| 1500 | ('Gordon Ramsay', 1, NOW()), |
| 1501 | ('Cock and Ball Torture', 5, NOW()), |
| 1502 | ('Pregnancy Announcement', 2, NOW()), |
| 1503 | ('That Damn Smile', 4, NOW()), |
| 1504 | ('What 4chan Cries Out During Sex', 1, NOW()), |
| 1505 | ('I''m sorry, I can''t hear you over the sound of how awesome I am', 5, NOW()), |
| 1506 | ('Hunger Games Simulator', 5, NOW()), |
| 1507 | ('Christ-chan', 3, NOW()), |
| 1508 | ('Look at This Dude / Flipagram Roast Videos', 2, NOW()), |
| 1509 | ('Everyone Loses Their Minds', 5, NOW()), |
| 1510 | ('Nevada-Tan', 1, NOW()), |
| 1511 | ('Beautiful Cinnamon Roll Too Good For This World, Too Pure', 4, NOW()), |
| 1512 | ('I Can''t Believe You''ve Done This!', 4, NOW()), |
| 1513 | ('Barack Obama', 4, NOW()), |
| 1514 | ('Your Music''s Bad and You Should Feel Bad', 1, NOW()), |
| 1515 | ('Excuse Me Sir, Do You Have a Moment to Talk About Jesus Christ?', 3, NOW()), |
| 1516 | ('Swole', 2, NOW()), |
| 1517 | ('Glen Coco', 2, NOW()), |
| 1518 | ('Bread Helmet Man', 1, NOW()), |
| 1519 | ('Lick Icons', 3, NOW()), |
| 1520 | ('She Was His Queen...', 5, NOW()), |
| 1521 | ('Skinny Legend', 1, NOW()), |
| 1522 | ('Sage', 5, NOW()), |
| 1523 | ('You Have My Sword, And My Bow, And My Axe', 1, NOW()), |
| 1524 | ('Keyhole Turtleneck', 4, NOW()), |
| 1525 | ('Hitler Did Nothing Wrong', 3, NOW()), |
| 1526 | ('God I Wish That Were Me', 1, NOW()), |
| 1527 | ('Prancing Cera', 3, NOW()), |
| 1528 | ('Vince McMahon Reaction', 2, NOW()), |
| 1529 | ('Protect IP Act / Stop Online Piracy Act (PIPA / SOPA)', 2, NOW()), |
| 1530 | ('Channel Awesome Implosion / #ChangeTheChannel', 4, NOW()), |
| 1531 | ('Penis Goes Where/Cock goes where', 4, NOW()), |
| 1532 | ('Robot Unicorn Attack / Harmony Harmony', 5, NOW()), |
| 1533 | ('The "!1" Phenomenon', 5, NOW()), |
| 1534 | ('Fish4Hoes', 2, NOW()), |
| 1535 | ('King Crimson (JoJo)', 1, NOW()), |
| 1536 | ('Mirai Nikki Yandere Face', 3, NOW()), |
| 1537 | ('Le', 4, NOW()), |
| 1538 | ('MEMRI TV', 3, NOW()), |
| 1539 | ('Olympics or Gay Porn?', 5, NOW()), |
| 1540 | ('Faces of Marijuana', 1, NOW()), |
| 1541 | ('orz', 4, NOW()), |
| 1542 | ('I''m Going To Build My Own Theme Park With Blackjack and Hookers', 3, NOW()), |
| 1543 | ('#SlaneGirl', 3, NOW()), |
| 1544 | ('Curb Your Enthusiasm Theme Remixes', 2, NOW()), |
| 1545 | ('You Shall Not Pass!!!', 4, NOW()), |
| 1546 | ('NOT THE BEES!', 2, NOW()), |
| 1547 | ('You Cheated Not Only the Game, But Yourself', 4, NOW()), |
| 1548 | ('Perfectly Timed Photos', 4, NOW()), |
| 1549 | ('Filthy Casual', 1, NOW()), |
| 1550 | ('Warhammer 40,000', 1, NOW()), |
| 1551 | ('I Can''t Even', 1, NOW()), |
| 1552 | ('Angry German Kid / Keyboard Crasher', 1, NOW()), |
| 1553 | ('Updog', 4, NOW()), |
| 1554 | ('Ryan Gosling Won''t Eat His Cereal', 5, NOW()), |
| 1555 | ('Trainers Hate Him', 1, NOW()), |
| 1556 | ('IDDQD', 1, NOW()), |
| 1557 | ('Unnecessary Censorship', 4, NOW()), |
| 1558 | ('Marge Krumping', 3, NOW()), |
| 1559 | ('Cr1TiKaL', 4, NOW()), |
| 1560 | ('You On Kazoo', 4, NOW()), |
| 1561 | ('Black Twitter', 2, NOW()), |
| 1562 | ('I Watch It For The Plot', 2, NOW()), |
| 1563 | ('Actual Sexual Advice Girl', 1, NOW()), |
| 1564 | ('The FitnessGram Pacer Test', 1, NOW()), |
| 1565 | ('Dogs', 5, NOW()), |
| 1566 | ('Wii Fit Girl', 4, NOW()), |
| 1567 | ('Oh God What Have I Done?', 3, NOW()), |
| 1568 | ('Get Out Frog / Frogout / Me Obrigue', 5, NOW()), |
| 1569 | ('The Great Subscriber War / Subscribe to PewDiePie', 4, NOW()), |
| 1570 | ('Swiggity Swag', 4, NOW()), |
| 1571 | ('Slow Clap', 2, NOW()), |
| 1572 | ('Old Man Yells at Cloud', 4, NOW()), |
| 1573 | ('Wait, That''s Illegal', 1, NOW()), |
| 1574 | ('The World According To...', 5, NOW()), |
| 1575 | ('Hurr Durr', 4, NOW()), |
| 1576 | ('Bianca Devins'' Murder', 3, NOW()), |
| 1577 | ('Alberto Barbosa', 5, NOW()), |
| 1578 | ('420', 3, NOW()), |
| 1579 | ('Senior College Student', 1, NOW()), |
| 1580 | ('Annoyed Bird', 1, NOW()), |
| 1581 | ('Emojipasta', 5, NOW()), |
| 1582 | ('And It''s Gone', 1, NOW()), |
| 1583 | ('Toto''s "Africa"', 4, NOW()), |
| 1584 | ('Ctrl+Alt+Del', 2, NOW()), |
| 1585 | ('"Speak to the Manager" Haircut', 4, NOW()), |
| 1586 | ('iDubbbz''s "I''m Gay"', 1, NOW()), |
| 1587 | ('Laundry Room Viking', 5, NOW()), |
| 1588 | ('Glowing Eyes', 4, NOW()), |
| 1589 | ('Baby Godfather', 4, NOW()), |
| 1590 | ('Guess I''ll Die', 5, NOW()), |
| 1591 | ('Epic Boobs Girl', 3, NOW()), |
| 1592 | ('Polish Jerry', 2, NOW()), |
| 1593 | ('Pokémon Sun and Moon', 1, NOW()), |
| 1594 | ('Crazy Girlfriend Praying Mantis', 3, NOW()), |
| 1595 | ('I''m At Soup / Soup Store', 4, NOW()), |
| 1596 | ('It''s More Likely Than You Think', 1, NOW()), |
| 1597 | ('Disney''s Frozen Whitewashing Controversy', 2, NOW()), |
| 1598 | ('Guido Jesus', 4, NOW()), |
| 1599 | ('Fuck Yo Couch', 3, NOW()), |
| 1600 | ('Weber Cooks', 3, NOW()), |
| 1601 | ('People Who Thank the Bus Driver', 3, NOW()), |
| 1602 | ('Jesusland', 3, NOW()), |
| 1603 | ('Nigerian Scams', 2, NOW()), |
| 1604 | ('But Can It Run Crysis?', 1, NOW()), |
| 1605 | ('Kumamon', 3, NOW()), |
| 1606 | ('Immature High Schoolers', 4, NOW()), |
| 1607 | ('Jam It In! / You Lost Me', 3, NOW()), |
| 1608 | ('You''re A Wizard, Harry!', 4, NOW()), |
| 1609 | ('Serious Cat', 2, NOW()), |
| 1610 | ('Fake History', 5, NOW()), |
| 1611 | ('"S" Stands For? / Smile Sweet Sister Sadistic Suprise Service', 5, NOW()), |
| 1612 | ('The Holders', 1, NOW()), |
| 1613 | ('The Human Centipede', 3, NOW()), |
| 1614 | ('Tabby', 5, NOW()), |
| 1615 | ('LazyTown', 1, NOW()), |
| 1616 | ('Days Without Sex', 4, NOW()), |
| 1617 | ('Safety Not Guaranteed', 2, NOW()), |
| 1618 | ('Sweetie Belle Derelle', 1, NOW()), |
| 1619 | ('Pony Re-Imaginings', 2, NOW()), |
| 1620 | ('Forever Resentful Mother', 1, NOW()), |
| 1621 | ('Trying to Hold a Fart Next to a Cute Girl in Class', 2, NOW()), |
| 1622 | ('Enderman', 2, NOW()), |
| 1623 | ('Billie Eilish''s 18th Birthday', 4, NOW()), |
| 1624 | ('Hentai Haven', 4, NOW()), |
| 1625 | ('Creepy Katara', 4, NOW()), |
| 1626 | ('Ben Shapiro DESTROYS Liberals', 1, NOW()), |
| 1627 | ('Leekspin / Loituma Girl', 5, NOW()), |
| 1628 | ('Advice God', 3, NOW()), |
| 1629 | ('Flutterrage / Flutterbitch', 5, NOW()), |
| 1630 | ('Saturdays Are For The Boys', 4, NOW()), |
| 1631 | ('Logan Paul', 2, NOW()), |
| 1632 | ('Endless Eight / Kyon-kun Denwa!', 4, NOW()), |
| 1633 | ('Vic Mignogna Sexual Harassment Allegations', 2, NOW()), |
| 1634 | ('It''s Time to Stop', 4, NOW()), |
| 1635 | ('Nelson the Bull Terrier / Walter', 5, NOW()), |
| 1636 | ('GET', 4, NOW()), |
| 1637 | ('Doesn''t Matter, Had Sex', 5, NOW()), |
| 1638 | ('Rotten.com', 4, NOW()), |
| 1639 | ('Van-sama / Fercussion', 3, NOW()), |
| 1640 | ('I AM ERROR', 3, NOW()), |
| 1641 | ('Let''s Go Bowling', 3, NOW()), |
| 1642 | ('Sleep Tight Pupper', 4, NOW()), |
| 1643 | ('69', 3, NOW()), |
| 1644 | ('Behind The Meme', 2, NOW()), |
| 1645 | ('Tobuscus', 2, NOW()), |
| 1646 | ('My Wife''s Son', 1, NOW()), |
| 1647 | ('Alinity', 5, NOW()), |
| 1648 | ('Nightcore', 1, NOW()), |
| 1649 | ('Hampster Dance', 4, NOW()), |
| 1650 | ('Gee Bill! How Come Your Mom Lets You Eat Two Wieners?', 5, NOW()), |
| 1651 | ('Tuxedo Winnie the Pooh', 3, NOW()), |
| 1652 | ('ExHentai / SadPanda', 4, NOW()), |
| 1653 | ('Skeptical Baby', 5, NOW()), |
| 1654 | ('Batman', 4, NOW()), |
| 1655 | ('Food Network Recipe Reviews', 1, NOW()), |
| 1656 | ('Sosig', 2, NOW()), |
| 1657 | ('ISIS-chan', 2, NOW()), |
| 1658 | ('Sminem', 3, NOW()), |
| 1659 | ('The Amazing Atheist', 4, NOW()), |
| 1660 | ('Needs More Cowbell', 5, NOW()), |
| 1661 | ('Mic Drop', 4, NOW()), |
| 1662 | ('Original Character Do Not Steal', 5, NOW()), |
| 1663 | ('John Cena', 1, NOW()), |
| 1664 | ('Monkey Puppet', 1, NOW()), |
| 1665 | ('Eddy Wally''s "Wow"', 3, NOW()), |
| 1666 | ('Hi, My Name Is Reggie', 1, NOW()), |
| 1667 | ('Based Stickman', 5, NOW()), |
| 1668 | ('Pew Pew', 3, NOW()), |
| 1669 | ('Ayuwoki', 1, NOW()), |
| 1670 | ('Drakeposting', 3, NOW()), |
| 1671 | ('Occupy Wall Street', 5, NOW()), |
| 1672 | ('Caturday', 3, NOW()), |
| 1673 | ('A Midsummer Night''s Lewd Dream / 真夏の夜の淫夢', 4, NOW()), |
| 1674 | ('You''re Gonna Have a Bad Time', 4, NOW()), |
| 1675 | ('Wii Fit Trainer', 2, NOW()), |
| 1676 | ('Minor Mistake Marvin', 2, NOW()), |
| 1677 | ('Facebomb', 3, NOW()), |
| 1678 | ('Twerking', 5, NOW()), |
| 1679 | ('NEDM', 5, NOW()), |
| 1680 | ('CathyMay15', 2, NOW()), |
| 1681 | ('Involuntary Celibacy / Incel', 2, NOW()), |
| 1682 | ('Hungry Kim Jong-un', 5, NOW()), |
| 1683 | ('Gay Test', 1, NOW()), |
| 1684 | ('Patrick Bateman With an Axe', 3, NOW()), |
| 1685 | ('Keanu Reeves', 4, NOW()), |
| 1686 | ('I Never Asked For This', 4, NOW()), |
| 1687 | ('Don''t Ask Who Joe Is / Joe Mama', 5, NOW()), |
| 1688 | ('The Weighted Companion Cube', 4, NOW()), |
| 1689 | ('Tom Preston', 1, NOW()), |
| 1690 | ('Layers of Irony', 2, NOW()), |
| 1691 | ('Nuke It From Orbit', 3, NOW()), |
| 1692 | ('How About I Slap Your Shit', 5, NOW()), |
| 1693 | ('Three Seashells', 5, NOW()), |
| 1694 | ('Cumbox', 5, NOW()), |
| 1695 | ('Snails Sleep 3', 3, NOW()), |
| 1696 | ('And In That Moment I Swear We Were Infinite', 4, NOW()), |
| 1697 | ('Depression Dog', 3, NOW()), |
| 1698 | ('They Had Us In the First Half', 3, NOW()), |
| 1699 | ('Delete This Nephew', 3, NOW()), |
| 1700 | ('Wise Confucius', 1, NOW()), |
| 1701 | ('Pancake Bunny', 4, NOW()), |
| 1702 | ('No God, Please No!', 2, NOW()), |
| 1703 | ('One-Punch Man', 4, NOW()), |
| 1704 | ('Oprah''s "You Get a Car"', 1, NOW()), |
| 1705 | ('Sleeping Shaq', 4, NOW()), |
| 1706 | ('Going to the Store', 2, NOW()), |
| 1707 | ('TheReportOfTheWeek', 3, NOW()), |
| 1708 | ('Welcome to The Internet', 3, NOW()), |
| 1709 | ('Photo Fads', 4, NOW()), |
| 1710 | ('Crossed-Out Pride Flag Emoji Combination', 5, NOW()), |
| 1711 | ('When U Mom Com Home And Make Hte Spagheti', 4, NOW()), |
| 1712 | ('I Too Like to Live Dangerously', 3, NOW()), |
| 1713 | ('ProjektMelody', 2, NOW()), |
| 1714 | ('Me Me Big Boy', 1, NOW()), |
| 1715 | ('Flat Is Justice / Delicious Flat Chest', 3, NOW()), |
| 1716 | ('Epic Handshake', 3, NOW()), |
| 1717 | ('1337 speak', 3, NOW()), |
| 1718 | ('Epic Fail Guy', 4, NOW()), |
| 1719 | ('We Did It Reddit!', 5, NOW()), |
| 1720 | ('Why Would You Say Something So Controversial Yet So Brave?', 2, NOW()), |
| 1721 | ('Fallout', 3, NOW()), |
| 1722 | ('4chan Word Filter', 4, NOW()), |
| 1723 | ('Oh Joy Sex Toy''s "Cuck" Comic', 3, NOW()), |
| 1724 | ('Why So Serious?', 3, NOW()), |
| 1725 | ('Ordinary Muslim Man', 4, NOW()), |
| 1726 | ('You Are NOT The Father!', 5, NOW()), |
| 1727 | ('Snape Kills Dumbledore', 2, NOW()), |
| 1728 | ('Pokemon Lost Silver', 3, NOW()), |
| 1729 | ('The Legend of Zelda', 5, NOW()), |
| 1730 | ('OMG Cat', 4, NOW()), |
| 1731 | ('Kanye West', 2, NOW()), |
| 1732 | ('Be Strong For Mother', 1, NOW()), |
| 1733 | ('Argentina Is White', 1, NOW()), |
| 1734 | ('But Our Princess is in Another Castle!', 5, NOW()), |
| 1735 | ('Oh God How Did This Get Here I Am Not Good With Computer', 4, NOW()), |
| 1736 | ('Nope', 3, NOW()), |
| 1737 | ('Shit People Say', 1, NOW()), |
| 1738 | ('What Cleopatra May Have Looked Like', 5, NOW()), |
| 1739 | ('Numa Numa', 2, NOW()), |
| 1740 | ('Hold My Beer', 4, NOW()), |
| 1741 | ('Stand Cries / ORA ORA ORA / MUDA MUDA MUDA', 5, NOW()), |
| 1742 | ('In The Way Guy', 5, NOW()), |
| 1743 | ('High Impact Sexual Violence', 2, NOW()), |
| 1744 | ('Ram Ranch', 5, NOW()), |
| 1745 | ('Short Tyler1', 2, NOW()), |
| 1746 | ('Featuring Dante From The Devil May Cry Series', 3, NOW()), |
| 1747 | ('Limecat', 3, NOW()), |
| 1748 | ('Ultimate Insult Man', 4, NOW()), |
| 1749 | ('Indonesian Reporting Commission Facebook Takedowns', 5, NOW()), |
| 1750 | ('Pink Shirt Guy', 4, NOW()), |
| 1751 | ('Foul Bachelorette Frog', 5, NOW()), |
| 1752 | ('Wat Do?', 4, NOW()), |
| 1753 | ('Kim Jong-un', 5, NOW()), |
| 1754 | ('Internet Tough Guy', 3, NOW()), |
| 1755 | ('"i lik the bred"', 3, NOW()), |
| 1756 | ('Scumbag Hat', 3, NOW()), |
| 1757 | ('Sans', 2, NOW()), |
| 1758 | ('Don''t Look at Them Ricky!', 3, NOW()), |
| 1759 | ('John Lennon The Absolute Madman', 4, NOW()), |
| 1760 | ('Nic Cage as Everyone', 2, NOW()), |
| 1761 | ('Inappropriate Timing Bill Clinton', 4, NOW()), |
| 1762 | ('Doxing', 1, NOW()), |
| 1763 | ('Salad Fingers', 5, NOW()), |
| 1764 | ('HABEEB IT', 3, NOW()), |
| 1765 | ('Privilege Denying Dude', 4, NOW()), |
| 1766 | ('Fat Yoshi', 1, NOW()), |
| 1767 | ('Amouranth', 3, NOW()), |
| 1768 | ('h3h3productions', 2, NOW()), |
| 1769 | ('Doctor Who', 4, NOW()), |
| 1770 | ('Desk Flip', 5, NOW()), |
| 1771 | ('Massimo D''Alema', 1, NOW()), |
| 1772 | ('Running Butthole Challenge', 3, NOW()), |
| 1773 | ('I Throw My Hands Up In The Air Sometimes Saying Ayo', 4, NOW()), |
| 1774 | ('Roses Are Red, Violets Are Blue', 1, NOW()), |
| 1775 | ('Jesus Take The Wheel', 5, NOW()), |
| 1776 | ('Over-Educated Problems', 1, NOW()), |
| 1777 | ('I Can Be Your Angle Or Yuor Devil', 5, NOW()), |
| 1778 | ('But It''s Honest Work', 1, NOW()), |
| 1779 | ('Kyle', 5, NOW()), |
| 1780 | ('Cicada Block', 4, NOW()), |
| 1781 | ('& Knuckles', 2, NOW()), |
| 1782 | ('Has Science Gone Too Far?', 1, NOW()), |
| 1783 | ('And Then I Said', 1, NOW()), |
| 1784 | ('Calm Your Tits', 1, NOW()), |
| 1785 | ('30-50 Feral Hogs', 1, NOW()), |
| 1786 | ('PS3 Has No Games', 5, NOW()), |
| 1787 | ('I''m The Juggernaut, Bitch!', 2, NOW()), |
| 1788 | ('Anime Tiddies', 1, NOW()), |
| 1789 | ('Gordon Ramsay''s Lamb Sauce', 3, NOW()), |
| 1790 | ('Pokémon Sword and Shield', 5, NOW()), |
| 1791 | ('England Is My City', 3, NOW()), |
| 1792 | ('Nanomachines, Son', 3, NOW()), |
| 1793 | ('Noob Tube', 4, NOW()), |
| 1794 | ('Mah Nigga', 1, NOW()), |
| 1795 | ('Extra Thicc', 1, NOW()), |
| 1796 | ('Who Would Win?', 5, NOW()), |
| 1797 | ('Pony Cum Jar Project', 5, NOW()), |
| 1798 | ('Crabcore', 5, NOW()), |
| 1799 | ('Horse Armor', 4, NOW()), |
| 1800 | ('Fortnite', 2, NOW()), |
| 1801 | ('Maru the Cat', 4, NOW()), |
| 1802 | ('Shamefur Dispray', 3, NOW()), |
| 1803 | ('Free Helicopter Rides', 2, NOW()), |
| 1804 | ('Skipping Leg Day', 5, NOW()), |
| 1805 | ('Star Wars Kid', 4, NOW()), |
| 1806 | ('Fully Automated Luxury Gay Space Communism', 1, NOW()), |
| 1807 | ('Tentaquil', 1, NOW()), |
| 1808 | ('Dancing Stormtrooper', 5, NOW()), |
| 1809 | ('Bazinga', 1, NOW()), |
| 1810 | ('Horny Samus', 3, NOW()), |
| 1811 | ('Dinner with Waifu / Otaku Dates', 5, NOW()), |
| 1812 | ('Professor Oak', 3, NOW()), |
| 1813 | ('Wow Queen, You''re So Beautiful', 3, NOW()), |
| 1814 | ('Free Candy Van', 3, NOW()), |
| 1815 | ('Shit That Siri Says', 5, NOW()), |
| 1816 | ('Scottish Pokémon Trainer', 2, NOW()), |
| 1817 | ('So I Got That Goin'' For Me, Which is Nice', 3, NOW()), |
| 1818 | ('The Old Reddit Switch-a-roo', 4, NOW()), |
| 1819 | ('Who Is She? (Vine)', 2, NOW()), |
| 1820 | ('Evil Duolingo Owl', 1, NOW()), |
| 1821 | ('Duane!', 1, NOW()), |
| 1822 | ('Sweet Home Alabama', 1, NOW()), |
| 1823 | ('Overconfident Alcoholic', 2, NOW()), |
| 1824 | ('I Made You a Cookie, But I Eated It', 2, NOW()), |
| 1825 | ('Panty and Stocking', 5, NOW()), |
| 1826 | ('Kyle Punches Drywall', 1, NOW()), |
| 1827 | ('How People View Me After I Say I''m...', 4, NOW()), |
| 1828 | ('I''ll Take a Potato Chip and EAT IT!', 3, NOW()), |
| 1829 | ('Gaston', 3, NOW()), |
| 1830 | ('A Small Loan of a Million Dollars', 4, NOW()), |
| 1831 | ('Deepfakes', 2, NOW()), |
| 1832 | ('Infomercial Fails', 5, NOW()), |
| 1833 | ('Mafia City', 4, NOW()), |
| 1834 | ('Monster Girl Quest', 2, NOW()), |
| 1835 | ('"They Ask You How You Are and You Say That You''re Fine"', 5, NOW()), |
| 1836 | ('Internet Fight', 1, NOW()), |
| 1837 | ('Ha Ha Ha, No', 5, NOW()), |
| 1838 | ('Woomy', 5, NOW()), |
| 1839 | ('I Swear On Me Mum', 2, NOW()), |
| 1840 | ('MAD', 5, NOW()), |
| 1841 | ('Leonardo DiCaprio''s Oscar', 1, NOW()), |
| 1842 | ('You Have Died of Dysentery', 1, NOW()), |
| 1843 | ('At First I Was Like...', 2, NOW()), |
| 1844 | ('"Come On, It''s 2015" / Current Year', 4, NOW()), |
| 1845 | ('NONONONO Cat', 4, NOW()), |
| 1846 | ('Starbucks Drake Hands', 4, NOW()), |
| 1847 | ('Surreal Memes', 4, NOW()), |
| 1848 | ('Waluigi', 2, NOW()), |
| 1849 | ('Staring Hamster', 5, NOW()), |
| 1850 | ('I find your lack of faith disturbing', 5, NOW()), |
| 1851 | ('Basic Bitch', 1, NOW()), |
| 1852 | ('Forced Meme', 4, NOW()), |
| 1853 | ('Pleb', 5, NOW()), |
| 1854 | ('Internet Is Leaking', 4, NOW()), |
| 1855 | ('DJ Khaled', 2, NOW()), |
| 1856 | ('Hypnotoad', 1, NOW()), |
| 1857 | ('Who''s That Pokémon?', 5, NOW()), |
| 1858 | ('They Did Surgery On a Grape', 5, NOW()), |
| 1859 | ('Berserk', 5, NOW()), |
| 1860 | ('That''s a Penis', 3, NOW()), |
| 1861 | ('Sturgeon Face', 2, NOW()), |
| 1862 | ('The Almighty Loaf', 4, NOW()), |
| 1863 | ('Bitch Lasagna', 3, NOW()), |
| 1864 | ('On All Levels Except Physical, I am a Wolf', 2, NOW()), |
| 1865 | ('Autism', 3, NOW()), |
| 1866 | ('Otaku Test', 3, NOW()), |
| 1867 | ('Cosplay', 4, NOW()), |
| 1868 | ('Onii-chan', 3, NOW()), |
| 1869 | ('Goose on Fire / Fire Duck', 2, NOW()), |
| 1870 | ('Uvuvwevwevwe', 4, NOW()), |
| 1871 | ('Creepy Garfield', 1, NOW()), |
| 1872 | ('Flying Lawnmower', 4, NOW()), |
| 1873 | ('Hey Its Me Ur Brother', 2, NOW()), |
| 1874 | ('Engrish', 3, NOW()), |
| 1875 | ('Grimdark', 2, NOW()), |
| 1876 | ('TriHard', 3, NOW()), |
| 1877 | ('Bart, Get Out! I''m Piss!', 1, NOW()), |
| 1878 | ('Imagefap Trolling', 1, NOW()), |
| 1879 | ('Dramatic Chipmunk', 1, NOW()), |
| 1880 | ('Captain Hydra / Captain America "Hail Hydra" Edits', 5, NOW()), |
| 1881 | ('Just Waiting For A Mate', 1, NOW()), |
| 1882 | ('That''s The Joke', 4, NOW()), |
| 1883 | ('Glenn Beck Rape & Murder Hoax', 2, NOW()), |
| 1884 | ('I Can''t Fap to This', 4, NOW()), |
| 1885 | ('VTEC just kicked in, yo!', 5, NOW()), |
| 1886 | ('Scene Wolf', 3, NOW()), |
| 1887 | ('Javert Reaction GIFs', 5, NOW()), |
| 1888 | ('Social Justice Blogging', 3, NOW()), |
| 1889 | ('September 11th, 2001 Attacks', 3, NOW()), |
| 1890 | ('Well Meme''d', 5, NOW()), |
| 1891 | ('Say Sike Right Now', 1, NOW()), |
| 1892 | ('Club Penguin', 1, NOW()), |
| 1893 | ('The End of the World', 3, NOW()), |
| 1894 | ('Crack Kid', 5, NOW()), |
| 1895 | ('A Potato Flew Around My Room', 1, NOW()), |
| 1896 | ('Oh My God, Karen, You Can’t Just Ask Someone Why They''re White', 4, NOW()), |
| 1897 | ('McNuggies', 5, NOW()), |
| 1898 | ('Tsundere', 3, NOW()), |
| 1899 | ('Nyanyanyanyanyanyanya!', 5, NOW()), |
| 1900 | ('I Whip My Hair Back and Forth', 4, NOW()), |
| 1901 | ('Steve Jobs vs. Bill Gates', 5, NOW()), |
| 1902 | ('One Finger Selfie Challenge', 5, NOW()), |
| 1903 | ('The Scroll of Truth', 1, NOW()), |
| 1904 | ('Big Bill Hell''s', 5, NOW()), |
| 1905 | ('No, This Is Patrick', 1, NOW()), |
| 1906 | ('4chan Drinking Game Cards', 3, NOW()), |
| 1907 | ('You Are Now Breathing Manually', 3, NOW()), |
| 1908 | ('Daily Struggle', 4, NOW()), |
| 1909 | ('Fluffy Ponies', 3, NOW()), |
| 1910 | ('Lolrus', 1, NOW()), |
| 1911 | ('Captain Obvious', 3, NOW()), |
| 1912 | ('Birds with Arms', 5, NOW()), |
| 1913 | ('Vore', 2, NOW()), |
| 1914 | ('1 Lunatic 1 Ice Pick', 3, NOW()), |
| 1915 | ('Bait and Switch Videos / Pictures', 5, NOW()), |
| 1916 | ('Sopa de Macaco / Uma Delicia', 1, NOW()), |
| 1917 | ('Priority Peter', 1, NOW()), |
| 1918 | ('Oblivious Suburban Mom', 4, NOW()), |
| 1919 | ('My Disappointment Is Immeasurable', 3, NOW()), |
| 1920 | ('Sweet Jesus, Pooh! That''s Not Honey!', 5, NOW()), |
| 1921 | ('Get In The Fucking Robot Shinji', 4, NOW()), |
| 1922 | ('Name a More Iconic Duo', 5, NOW()), |
| 1923 | ('Albert Einstein Copypasta', 3, NOW()), |
| 1924 | ('Big, If True', 4, NOW()), |
| 1925 | ('Madara Uchiha Copypasta', 1, NOW()), |
| 1926 | ('Watermelon Headshot', 2, NOW()), |
| 1927 | ('It''s Just a Prank', 1, NOW()), |
| 1928 | ('Your Ecards / Someecards.com', 2, NOW()), |
| 1929 | ('Mitt Romney', 2, NOW()), |
| 1930 | ('Fluttercry / Characters Watching Tv', 1, NOW()), |
| 1931 | ('Yaass', 2, NOW()), |
| 1932 | ('Roller Coaster Chess', 2, NOW()), |
| 1933 | ('Beep Beep Lettuce', 4, NOW()), |
| 1934 | ('Mike Inel / Manyakis', 5, NOW()), |
| 1935 | ('The Worst Trade Deal', 2, NOW()), |
| 1936 | ('TikTok', 3, NOW()), |
| 1937 | ('Be Like Bill', 5, NOW()), |
| 1938 | ('Just Little Things', 4, NOW()), |
| 1939 | ('"Pen Pineapple Apple Pen"', 2, NOW()), |
| 1940 | ('That Is Mahogany', 5, NOW()), |
| 1941 | ('The Hacker Known as 4Chan', 3, NOW()), |
| 1942 | ('Confused Mr. Krabs', 5, NOW()), |
| 1943 | ('Gratata', 1, NOW()), |
| 1944 | ('Steve Rambo Videos / "Oh Shit, I''m Sorry"', 4, NOW()), |
| 1945 | ('Megami Tensei - Persona', 1, NOW()), |
| 1946 | ('Mikey Wilson (Middle Finger kid)', 4, NOW()), |
| 1947 | ('Epstein Didn''t Kill Himself', 3, NOW()), |
| 1948 | ('Lonelygirl15', 5, NOW()), |
| 1949 | ('Even Speedwagon Is Afraid!', 2, NOW()), |
| 1950 | ('Picardía', 5, NOW()), |
| 1951 | ('Net Neutrality', 3, NOW()), |
| 1952 | ('Somebody Once Told Me', 5, NOW()), |
| 1953 | ('The Situation Room', 4, NOW()), |
| 1954 | ('Dancing Hot Dog Snapchat Filter', 5, NOW()), |
| 1955 | ('Operation Darknet', 3, NOW()), |
| 1956 | ('Kill Me', 2, NOW()), |
| 1957 | ('Who Killed Hannibal?', 4, NOW()), |
| 1958 | ('Espurr''s Stare', 1, NOW()), |
| 1959 | ('Slaps Chicken at 3275.95 MPH', 2, NOW()), |
| 1960 | ('Ebin', 5, NOW()), |
| 1961 | ('I Want to Cum Inside Rainbow Dash', 5, NOW()), |
| 1962 | ('Look At Me, I''m The Captain Now', 4, NOW()), |
| 1963 | ('*Hits Blunt*', 1, NOW()), |
| 1964 | ('Sweden Yes', 5, NOW()), |
| 1965 | ('Sauce', 2, NOW()), |
| 1966 | ('Darth Vader''s Noooooooooooo!', 2, NOW()), |
| 1967 | ('Oh, Worm?', 5, NOW()), |
| 1968 | ('The Flying Spaghetti Monster', 2, NOW()), |
| 1969 | ('Shit Just Got Real', 5, NOW()), |
| 1970 | ('This Is Snek', 1, NOW()), |
| 1971 | ('Baton Roue', 2, NOW()), |
| 1972 | ('How To Draw an Owl', 2, NOW()), |
| 1973 | ('All Star', 3, NOW()), |
| 1974 | ('Dark Knight 4 Pane', 1, NOW()), |
| 1975 | ('Star vs. the Forces of Evil', 1, NOW()), |
| 1976 | ('Just Go On The Internet and Tell Lies', 3, NOW()), |
| 1977 | ('7 Grand Dad', 1, NOW()), |
| 1978 | ('Lurk Moar', 2, NOW()), |
| 1979 | ('Fake and Gay', 1, NOW()), |
| 1980 | ('Kitler', 4, NOW()), |
| 1981 | ('VideoGameDunkey', 3, NOW()), |
| 1982 | ('Operation Payback', 1, NOW()), |
| 1983 | ('Oh Baby, a Triple!', 4, NOW()), |
| 1984 | ('Gar', 2, NOW()), |
| 1985 | ('DansGame', 3, NOW()), |
| 1986 | ('Osama Bin Laden''s Death', 4, NOW()), |
| 1987 | ('Shit, I''m Late For School', 1, NOW()), |
| 1988 | ('Hello My Future Girlfriend', 3, NOW()), |
| 1989 | ('France Is Bacon', 5, NOW()), |
| 1990 | ('Get In The Bag, Nebby', 2, NOW()), |
| 1991 | ('Scout Face', 5, NOW()), |
| 1992 | ('Dedotated Wam', 1, NOW()), |
| 1993 | ('Perfection', 1, NOW()), |
| 1994 | ('Corona-chan', 3, NOW()), |
| 1995 | ('Turn 360 Degrees and Walk Away', 4, NOW()), |
| 1996 | ('Weird Twitter', 3, NOW()), |
| 1997 | ('You Came to the Wrong Neighborhood', 1, NOW()), |
| 1998 | ('Smol', 3, NOW()), |
| 1999 | ('Auto-Tune', 3, NOW()), |
| 2000 | ('Press X to Jason', 3, NOW()), |
| 2001 | ('Jesus', 3, NOW()), |
| 2002 | ('Rip and Tear', 3, NOW()), |
| 2003 | ('Something Awful', 2, NOW()), |
| 2004 | ('That Awkward Moment', 4, NOW()), |
| 2005 | ('Iridocyclitis', 3, NOW()), |
| 2006 | ('Stawp it, Rahn!', 5, NOW()), |
| 2007 | ('Snu-Snu', 5, NOW()), |
| 2008 | ('Despite Being Only 13 Percent of the Population', 4, NOW()), |
| 2009 | ('I''m About to End This Man''s Whole Career', 1, NOW()), |
| 2010 | ('Sheeeit', 3, NOW()), |
| 2011 | ('No Way Fag', 3, NOW()), |
| 2012 | ('Coaxed Into a Snafu', 2, NOW()), |
| 2013 | ('Pajama Kid', 4, NOW()), |
| 2014 | ('Netorare', 1, NOW()), |
| 2015 | ('Kai the Hatchet-Wielding Hitchhiker', 1, NOW()), |
| 2016 | ('Internet Explorer', 3, NOW()), |
| 2017 | ('Stop Bullying Comics', 2, NOW()), |
| 2018 | ('Listen Here You Little Shit', 1, NOW()), |
| 2019 | ('I Hope You Step on a LEGO', 4, NOW()), |
| 2020 | ('Google Search Suggestions', 1, NOW()), |
| 2021 | ('Solo Jazz Pattern', 4, NOW()), |
| 2022 | ('Kevin Durant MVP Speech', 5, NOW()), |
| 2023 | ('ISIS / Daesh', 3, NOW()), |
| 2024 | ('Ooh Mister Darcy', 1, NOW()), |
| 2025 | ('Hey Man You See That Guy Over There', 3, NOW()), |
| 2026 | ('Furry Scale', 5, NOW()), |
| 2027 | ('I''m OK With This', 1, NOW()), |
| 2028 | ('Y''all Got Anymore of...', 4, NOW()), |
| 2029 | ('Taiwan #1', 5, NOW()), |
| 2030 | ('#CuttingForBieber', 3, NOW()), |
| 2031 | ('Paul Blart: Mall Cop', 5, NOW()), |
| 2032 | ('Mishapocalypse', 4, NOW()), |
| 2033 | ('XD', 4, NOW()), |
| 2034 | ('I Have The High Ground', 2, NOW()), |
| 2035 | ('Jesus', 4, NOW()), |
| 2036 | ('Cheezburger', 2, NOW()), |
| 2037 | ('Heart-Shaped Boob Challenge', 3, NOW()), |
| 2038 | ('Rush B', 3, NOW()), |
| 2039 | ('I Wish I Was At Home', 3, NOW()), |
| 2040 | ('Pineapple on Pizza Debate', 5, NOW()), |
| 2041 | ('MaximilianMus "Oh Yeah Yeah"', 2, NOW()), |
| 2042 | ('Walt Jr. Loves Breakfast', 4, NOW()), |
| 2043 | ('I Am The Table', 3, NOW()), |
| 2044 | ('Awaken, My Masters', 4, NOW()), |
| 2045 | ('Pizza is a Vegetable', 4, NOW()), |
| 2046 | ('Noot Noot', 1, NOW()), |
| 2047 | ('Swearing on a Christian Server', 5, NOW()), |
| 2048 | ('Karma Is a Bitch', 3, NOW()), |
| 2049 | ('Lemme Smash', 2, NOW()), |
| 2050 | ('Splat Tim', 5, NOW()), |
| 2051 | ('We Need To Go Deeper', 3, NOW()), |
| 2052 | ('eHarmony Video Bio', 3, NOW()), |
| 2053 | ('Thinking With Portals', 1, NOW()), |
| 2054 | ('Misinformationalized / You Hear About Video Games?', 5, NOW()), |
| 2055 | ('DURR PLANT', 2, NOW()), |
| 2056 | ('First', 3, NOW()), |
| 2057 | ('Dragon Ball', 1, NOW()), |
| 2058 | ('Me, An Intellectual', 5, NOW()), |
| 2059 | ('What If Zelda Was A Girl?', 4, NOW()), |
| 2060 | ('The Sneaky Hat', 4, NOW()), |
| 2061 | ('Pretty Girls, Ugly Faces', 2, NOW()), |
| 2062 | ('It''s Simple, We Kill The Batman', 5, NOW()), |
| 2063 | ('Another One', 5, NOW()), |
| 2064 | ('Trivago Guy', 5, NOW()), |
| 2065 | ('Gru''s Plan', 5, NOW()), |
| 2066 | ('Y U Do Dis?', 4, NOW()), |
| 2067 | ('Beyblades eBay Auction', 2, NOW()), |
| 2068 | ('This is someone dying while having an MRI scan.', 2, NOW()), |
| 2069 | ('We Can''t Stop Here, This is Bat Country', 5, NOW()), |
| 2070 | ('@Wendys', 4, NOW()), |
| 2071 | ('Please Disconnect The Bluetooth Speaker', 3, NOW()), |
| 2072 | ('UNITINU / UNITIИU', 5, NOW()), |
| 2073 | ('Spengbab', 5, NOW()), |
| 2074 | ('Put Some Respeck on My Name', 3, NOW()), |
| 2075 | ('The Ratio', 4, NOW()), |
| 2076 | ('Electronic Entertainment Expo (E3)', 5, NOW()), |
| 2077 | ('Bush Did 9/11', 4, NOW()), |
| 2078 | ('Michelle Jenneke''s Warm Up Dance', 5, NOW()), |
| 2079 | ('How-Old.net', 3, NOW()), |
| 2080 | ('The Simpsons', 2, NOW()), |
| 2081 | ('No Homo', 2, NOW()), |
| 2082 | ('PFFFTTTCHH', 1, NOW()), |
| 2083 | ('Ugly Children Lawsuit Hoax', 4, NOW()), |
| 2084 | ('Facebook University Meme Pages', 3, NOW()), |
| 2085 | ('Eccentric Witness Lady / Backin'' Up', 1, NOW()), |
| 2086 | ('Fake Pokémon Battles', 4, NOW()), |
| 2087 | ('Sherlock', 2, NOW()), |
| 2088 | ('MySpace Angles', 5, NOW()), |
| 2089 | ('The Floor is Lava / Hot Lava Game', 2, NOW()), |
| 2090 | ('You Laugh, You Lose', 4, NOW()), |
| 2091 | ('Rawr XD', 4, NOW()), |
| 2092 | ('Taylor Swift', 4, NOW()), |
| 2093 | ('David Kalac''s 4chan Murder Confession', 5, NOW()), |
| 2094 | ('Half-Life', 2, NOW()), |
| 2095 | ('Greater Internet Fuckwad Theory', 4, NOW()), |
| 2096 | ('Angry Dog Noises', 4, NOW()), |
| 2097 | ('I''m Gonna Do What''s Called a Pro Gamer Move', 2, NOW()), |
| 2098 | ('Internet Death Hoaxes', 4, NOW()), |
| 2099 | ('Ali-A''s Intro', 5, NOW()), |
| 2100 | ('¿Quieres?', 1, NOW()), |
| 2101 | ('Cooking by the Book', 5, NOW()), |
| 2102 | ('Online Pornography', 4, NOW()), |
| 2103 | ('Lil Bub', 4, NOW()), |
| 2104 | ('Are Ya Winning, Son?', 2, NOW()), |
| 2105 | ('I Want to Believe', 2, NOW()), |
| 2106 | ('Most People Rejected His Message', 3, NOW()), |
| 2107 | ('Hoenn Confirmed', 1, NOW()), |
| 2108 | ('Figwit', 4, NOW()), |
| 2109 | ('Turn Up the Volume', 5, NOW()), |
| 2110 | ('"Copy That"', 5, NOW()), |
| 2111 | ('Welcome to Chili''s', 3, NOW()), |
| 2112 | ('niconico', 1, NOW()), |
| 2113 | ('I Didn''t Get No Sleep ''Cause Of Ya''ll', 5, NOW()), |
| 2114 | ('Stannis the Mannis', 1, NOW()), |
| 2115 | ('Stupid Sexy Flanders', 4, NOW()), |
| 2116 | ('Drunk Baby', 3, NOW()), |
| 2117 | ('Into The Trash It Goes / Opinion Discarded', 5, NOW()), |
| 2118 | ('Binders Full of Women', 4, NOW()), |
| 2119 | ('Steam Sales', 1, NOW()), |
| 2120 | ('Antonio Banderas'' Laptop Reaction', 3, NOW()), |
| 2121 | ('LOL', 1, NOW()), |
| 2122 | ('With Great Power Comes Great Responsibility', 3, NOW()), |
| 2123 | ('NYC Cardstand Earthcam Trolling / "I''ll Be There in 30 Minutes"', 1, NOW()), |
| 2124 | ('"Bitch I Look Like Goku"', 2, NOW()), |
| 2125 | ('He Does It for Free', 5, NOW()), |
| 2126 | ('Jazz Music Stops', 5, NOW()), |
| 2127 | ('>tfw no gf', 1, NOW()), |
| 2128 | ('Internet Slang', 4, NOW()), |
| 2129 | ('Wolverine Crush', 3, NOW()), |
| 2130 | ('Nyanners', 2, NOW()), |
| 2131 | ('Like Skyrim With Guns', 5, NOW()), |
| 2132 | ('Wheelchair Drake', 3, NOW()), |
| 2133 | ('WataMote / It''s Not My Fault That I''m Not Popular', 2, NOW()), |
| 2134 | ('Abandon Thread', 4, NOW()), |
| 2135 | ('Arthur', 4, NOW()), |
| 2136 | ('Cupcake Dog', 1, NOW()), |
| 2137 | ('Free Bleeding', 2, NOW()), |
| 2138 | ('Have You Ever Been So Angry That You...', 1, NOW()), |
| 2139 | ('BRODYQUEST', 1, NOW()), |
| 2140 | ('Koichi Pose', 3, NOW()), |
| 2141 | ('They Took Our Jobs!', 3, NOW()), |
| 2142 | ('Brotherman Bill', 2, NOW()), |
| 2143 | ('Trayvon Martin''s Death', 3, NOW()), |
| 2144 | ('Brazilian Slutwalk Flasher', 3, NOW()), |
| 2145 | ('Gekyume''s Circumcision', 1, NOW()), |
| 2146 | ('The Pumpkin Dance', 4, NOW()), |
| 2147 | ('Chadwardenn', 1, NOW()), |
| 2148 | ('Breaking Bad', 1, NOW()), |
| 2149 | ('Emily Faked Cancer', 5, NOW()), |
| 2150 | ('Ear Rape', 2, NOW()), |
| 2151 | ('Dubstep', 1, NOW()), |
| 2152 | ('Snickers "Hungry?" Commercials', 4, NOW()), |
| 2153 | ('RCDart', 2, NOW()), |
| 2154 | ('Me Explaining to My Mom', 3, NOW()), |
| 2155 | ('Homer Simpson Backs Into Bushes', 1, NOW()), |
| 2156 | ('Mr. Worldwide', 4, NOW()), |
| 2157 | ('Website Anthropomorphism', 4, NOW()), |
| 2158 | ('Mehmet My Son', 5, NOW()), |
| 2159 | ('Mods Are Asleep', 2, NOW()), |
| 2160 | ('Modern Problems Require Modern Solutions', 5, NOW()), |
| 2161 | ('The Enigma of Amigara Fault / This Is My Hole', 3, NOW()), |
| 2162 | ('Duckroll', 1, NOW()), |
| 2163 | ('Woke', 3, NOW()), |
| 2164 | ('Imgur', 1, NOW()), |
| 2165 | ('Webcomics', 2, NOW()), |
| 2166 | ('Country Girls Make Do', 3, NOW()), |
| 2167 | ('Vinesauce', 5, NOW()), |
| 2168 | ('Lolicon', 5, NOW()), |
| 2169 | ('Simp', 3, NOW()), |
| 2170 | ('I Forced a Bot', 2, NOW()), |
| 2171 | ('Michael Rosen', 5, NOW()), |
| 2172 | ('Choo Choo Motherfucker', 2, NOW()), |
| 2173 | ('Ran Off Da Plug Twice', 2, NOW()), |
| 2174 | ('Waiting for OP', 5, NOW()), |
| 2175 | ('The Nuzlocke Challenge', 2, NOW()), |
| 2176 | ('Painis Cupcake (Penis Cupcake)', 4, NOW()), |
| 2177 | ('Kim Jong Il Looking At Things', 2, NOW()), |
| 2178 | ('Plebcomics', 3, NOW()), |
| 2179 | ('Impossible is Nothing', 1, NOW()), |
| 2180 | ('Beanos', 3, NOW()), |
| 2181 | ('I;m Thinking About Thos Beans', 3, NOW()), |
| 2182 | ('Over 9000 Penises', 1, NOW()), |
| 2183 | ('Childhood Enhanced', 3, NOW()), |
| 2184 | ('When Did This Become Hotter Than This', 1, NOW()), |
| 2185 | ('Objection!', 2, NOW()), |
| 2186 | ('Disgustang', 4, NOW()), |
| 2187 | ('Noice', 2, NOW()), |
| 2188 | ('LeafyIsHere', 1, NOW()), |
| 2189 | ('Ironic Memes', 4, NOW()), |
| 2190 | ('Cool Dog', 5, NOW()), |
| 2191 | ('Totally Looks Like / Separated At Birth', 3, NOW()), |
| 2192 | ('Vomit-chan', 3, NOW()), |
| 2193 | ('Pokémon GO', 4, NOW()), |
| 2194 | ('Dick Neck', 3, NOW()), |
| 2195 | ('Stop It Son, You Are Doing Me A Frighten', 3, NOW()), |
| 2196 | ('The Nutshack', 1, NOW()), |
| 2197 | ('G.I. Joe PSAs', 2, NOW()), |
| 2198 | ('Drake', 5, NOW()), |
| 2199 | ('Bernie Sanders', 2, NOW()), |
| 2200 | ('True Capitalist Radio', 1, NOW()), |
| 2201 | ('I''m Commander Shepard', 3, NOW()), |
| 2202 | ('Captain Hindsight', 4, NOW()), |
| 2203 | ('DeviantArt', 3, NOW()), |
| 2204 | ('Salil Sawarim / Saleel al-Sawarim', 2, NOW()), |
| 2205 | ('More Dakka', 2, NOW()), |
| 2206 | ('Voiceoverpete', 2, NOW()), |
| 2207 | ('Redneck Randal', 5, NOW()), |
| 2208 | ('Horse_ebooks', 3, NOW()), |
| 2209 | ('Let Me In', 5, NOW()), |
| 2210 | ('FunnyJunk', 2, NOW()), |
| 2211 | ('Check Out My Mixtape', 1, NOW()), |
| 2212 | ('MOAR', 3, NOW()), |
| 2213 | ('I''ve Made a Huge Mistake', 3, NOW()), |
| 2214 | ('Nyoro~n', 1, NOW()), |
| 2215 | ('Because of Parkinson''s', 4, NOW()), |
| 2216 | ('Outstanding Move / Maravillosa Jugada', 2, NOW()), |
| 2217 | ('Poe''s Law', 5, NOW()), |
| 2218 | ('Cinemagraphs', 4, NOW()), |
| 2219 | ('Ideal GF', 1, NOW()), |
| 2220 | ('Kamina Glasses', 3, NOW()), |
| 2221 | ('Hold My Flower', 5, NOW()), |
| 2222 | ('We Irritating', 1, NOW()), |
| 2223 | ('Fermi Paradox', 3, NOW()), |
| 2224 | ('Follow The Damn Train, CJ!', 5, NOW()), |
| 2225 | ('Sonic For Real Justice', 5, NOW()), |
| 2226 | ('Mike Wazowski-Sulley Face Swap', 4, NOW()), |
| 2227 | ('Tails Gets Trolled', 5, NOW()), |
| 2228 | ('Floating Chinese Government Officials', 2, NOW()), |
| 2229 | ('Bitches Don''t Know', 1, NOW()), |
| 2230 | ('Skidaddle Skidoodle Your Dick Is Now a Noodle', 5, NOW()), |
| 2231 | ('7-day No Fap Challenge', 2, NOW()), |
| 2232 | ('Floral Shoppe (フローラルの専門店)', 3, NOW()), |
| 2233 | ('200% Mad', 4, NOW()), |
| 2234 | ('"Why Is the FBI Here?"', 5, NOW()), |
| 2235 | ('Smitty Werbenjagermanjensen', 5, NOW()), |
| 2236 | ('The Warriors Blew a 3-1 Lead', 5, NOW()), |
| 2237 | ('I Lived Bitch', 5, NOW()), |
| 2238 | ('Moon''s Haunted', 5, NOW()), |
| 2239 | ('I Will Now Buy Your Game', 5, NOW()), |
| 2240 | ('The Miz Girl', 2, NOW()), |
| 2241 | ('Triple Parentheses / (((Echo)))', 1, NOW()), |
| 2242 | ('Gag Names', 1, NOW()), |
| 2243 | ('Vibrating GIFs', 2, NOW()), |
| 2244 | ('Back to the Future Day', 2, NOW()), |
| 2245 | ('Never Say No to Panda', 1, NOW()), |
| 2246 | ('Carlos', 2, NOW()), |
| 2247 | ('Do You Think This Is a Game?', 4, NOW()), |
| 2248 | ('Masahiro Sakurai', 1, NOW()), |
| 2249 | ('Down With Cis', 3, NOW()), |
| 2250 | ('Inhaling Seagull', 3, NOW()), |
| 2251 | ('We''ll bang, OK?', 2, NOW()), |
| 2252 | ('Meme Economy', 5, NOW()), |
| 2253 | ('Come to Brazil', 4, NOW()), |
| 2254 | ('The Internet Is For Porn', 4, NOW()), |
| 2255 | ('The Walking Dead', 1, NOW()), |
| 2256 | ('Lana Del Rey', 5, NOW()), |
| 2257 | ('Stoner Comics / Tree Comics', 1, NOW()), |
| 2258 | ('Me IRL', 1, NOW()), |
| 2259 | ('Garry''s Mod', 2, NOW()), |
| 2260 | ('Cockmongler', 4, NOW()), |
| 2261 | ('Story Time Jesus', 3, NOW()), |
| 2262 | ('YouTube Comment Memes', 4, NOW()), |
| 2263 | ('Twilight Sparkle Alicorn Controversy', 3, NOW()), |
| 2264 | ('Miss Kobayashi''s Dragon Maid', 3, NOW()), |
| 2265 | ('Sakurafish / Every Day Until You Like It', 1, NOW()), |
| 2266 | ('Condom Challenge', 5, NOW()), |
| 2267 | ('CD Emotes', 3, NOW()), |
| 2268 | ('Gardevoir', 5, NOW()), |
| 2269 | ('I''m You, But Stronger', 1, NOW()), |
| 2270 | ('Scumbag Brain', 3, NOW()), |
| 2271 | ('#NotMyRodrick', 2, NOW()), |
| 2272 | ('Taxmaster', 4, NOW()), |
| 2273 | ('They''re Eating Her!', 3, NOW()), |
| 2274 | ('Leave Britney Alone', 2, NOW()), |
| 2275 | ('Exodia the Forbidden One', 5, NOW()), |
| 2276 | ('This is delicious cake', 2, NOW()), |
| 2277 | ('Ice Cream Cone Guy', 2, NOW()), |
| 2278 | ('Vagineer', 1, NOW()), |
| 2279 | ('Casey Anthony Trial', 5, NOW()), |
| 2280 | ('OMG RUN Guy / Tampon Head Rage Face', 1, NOW()), |
| 2281 | ('Sco Pa Tu Manaa', 1, NOW()), |
| 2282 | ('My Brand', 5, NOW()), |
| 2283 | ('Meme of the Month Calendars', 3, NOW()), |
| 2284 | ('A Man Has Fallen Into the River in Lego City', 3, NOW()), |
| 2285 | ('Jaden Smith', 5, NOW()), |
| 2286 | ('McDonald''s Mulan Szechuan Sauce', 5, NOW()), |
| 2287 | ('Neon Genesis Evangelion', 5, NOW()), |
| 2288 | ('Dog Poo Girl', 2, NOW()), |
| 2289 | ('I Want My Hat Back', 1, NOW()), |
| 2290 | ('Sakuya''s breast padding', 5, NOW()), |
| 2291 | ('Throwback Thursday', 3, NOW()), |
| 2292 | ('Megalovania', 5, NOW()), |
| 2293 | ('They''re The Same Picture', 3, NOW()), |
| 2294 | ('They Played Us Like A Damn Fiddle!', 4, NOW()), |
| 2295 | ('YouTube Automatic Caption FAIL', 2, NOW()), |
| 2296 | ('Nice Meme', 2, NOW()), |
| 2297 | ('Dawn of the Final Day', 3, NOW()), |
| 2298 | ('The Legend of Zelda Timeline Theories', 1, NOW()), |
| 2299 | ('Nicki Minaj', 4, NOW()), |
| 2300 | ('Elf on the Shelf', 5, NOW()), |
| 2301 | ('Anthony Fantano', 2, NOW()), |
| 2302 | ('But Can You Do This?', 1, NOW()), |
| 2303 | ('Sexually Oblivious Female', 2, NOW()), |
| 2304 | ('George Takei Calls Out Anti-Gay School Board Member', 3, NOW()), |
| 2305 | ('Sky King / Richard Russell', 1, NOW()), |
| 2306 | ('Miss Me With That Gay Shit', 2, NOW()), |
| 2307 | ('Donglegate / Adria Richards', 2, NOW()), |
| 2308 | ('Spirit Pokémon', 5, NOW()), |
| 2309 | ('Roblox', 4, NOW()), |
| 2310 | ('Headless Mami', 2, NOW()), |
| 2311 | ('You Forgot Poland', 1, NOW()), |
| 2312 | ('Bottom Text', 5, NOW()), |
| 2313 | ('Vsauce', 2, NOW()), |
| 2314 | ('I Have Drawn You', 3, NOW()), |
| 2315 | ('What''s Wrong Big Boy?', 1, NOW()), |
| 2316 | ('Milo Yiannopoulos', 3, NOW()), |
| 2317 | ('Krispy Kreme / Froggy Fresh', 1, NOW()), |
| 2318 | ('I Fear No Man', 5, NOW()), |
| 2319 | ('Bitches Be Like', 5, NOW()), |
| 2320 | ('I''m Really Feeling It', 5, NOW()), |
| 2321 | ('Monkey Haircut', 1, NOW()), |
| 2322 | ('Why Are You Booing Me? I''m Right', 3, NOW()), |
| 2323 | ('Cancer', 4, NOW()), |
| 2324 | ('University of Maryland Sorority E-Mail Rant', 5, NOW()), |
| 2325 | ('Moe', 4, NOW()), |
| 2326 | ('Human Bean', 4, NOW()), |
| 2327 | ('Goblin Slayer', 5, NOW()), |
| 2328 | ('Evil Toddler', 2, NOW()), |
| 2329 | ('Can I Be Drawn Better?', 4, NOW()), |
| 2330 | ('The Gendo Pose', 3, NOW()), |
| 2331 | ('I Hope Mom and Dad Don''t Find Out', 2, NOW()), |
| 2332 | ('Pot of Greed', 4, NOW()), |
| 2333 | ('WHARRGARBL / Sprinkler Dog', 3, NOW()), |
| 2334 | ('Alt-right', 4, NOW()), |
| 2335 | ('Tebowing', 4, NOW()), |
| 2336 | ('Ted Williams / The Golden Voice', 1, NOW()), |
| 2337 | ('McDonald''s "Ran Ran Ru" Commercial', 1, NOW()), |
| 2338 | ('Open Eye Crying Laughing Emoji', 2, NOW()), |
| 2339 | ('Subway Sandwich Porn', 3, NOW()), |
| 2340 | ('Weaponized Autism', 2, NOW()), |
| 2341 | ('3DPD', 5, NOW()), |
| 2342 | ('Dr DisRespect', 3, NOW()), |
| 2343 | ('That''s just like, your opinion, man', 5, NOW()), |
| 2344 | ('Surprised Kitty', 2, NOW()), |
| 2345 | ('Happy Gary', 3, NOW()), |
| 2346 | ('Paula Deen Riding Things', 1, NOW()), |
| 2347 | ('Hot Dog Legs', 2, NOW()), |
| 2348 | ('Holy Shit It''s a Dinosaur!', 1, NOW()), |
| 2349 | ('Grape Lady', 4, NOW()), |
| 2350 | ('Fistful of Yen', 5, NOW()), |
| 2351 | ('Squart Guy', 1, NOW()), |
| 2352 | ('Sir, This Is an Arby''s', 4, NOW()), |
| 2353 | ('Folgers "Brother and Sister" Commercial', 4, NOW()), |
| 2354 | ('Who Killed Captain Alex?', 2, NOW()), |
| 2355 | ('fgsfds', 1, NOW()), |
| 2356 | ('Are You Not Entertained?', 5, NOW()), |
| 2357 | ('Shitlord', 3, NOW()), |
| 2358 | ('Cone-ing', 3, NOW()), |
| 2359 | ('Yamero', 5, NOW()), |
| 2360 | ('Single Topic Blogs', 3, NOW()), |
| 2361 | ('Angery', 3, NOW()), |
| 2362 | ('Squidward Fad', 2, NOW()), |
| 2363 | ('Enjoy Your AIDS', 1, NOW()), |
| 2364 | ('Vancouver Riot Kiss', 3, NOW()), |
| 2365 | ('Who''s Awesome? You''re Awesome! / Sos Groso, Sabelo!', 3, NOW()), |
| 2366 | ('Oh God! I Can See Forever!', 3, NOW()), |
| 2367 | ('Crossguard Lightsaber', 1, NOW()), |
| 2368 | ('Cyanide and Happiness', 3, NOW()), |
| 2369 | ('When Mama Isn''t Home', 4, NOW()), |
| 2370 | ('Cheems', 3, NOW()), |
| 2371 | ('Joe Biden', 3, NOW()), |
| 2372 | ('A Weapon to Surpass Metal Gear', 1, NOW()), |
| 2373 | ('Markiplier', 4, NOW()), |
| 2374 | ('Have You Ever Had A Dream Like This?', 2, NOW()), |
| 2375 | ('2 Guys 1 Fish', 2, NOW()), |
| 2376 | ('The Floor Is...', 5, NOW()), |
| 2377 | ('Shitty Charmander', 5, NOW()), |
| 2378 | ('Tonight''s Big Loser', 4, NOW()), |
| 2379 | ('Scary Maze Game', 5, NOW()), |
| 2380 | ('Lewd', 3, NOW()), |
| 2381 | ('"Millennials Are Killing..."', 4, NOW()), |
| 2382 | ('Beta Uprising', 1, NOW()), |
| 2383 | ('Don''t Tase Me Bro!', 4, NOW()), |
| 2384 | ('Pickup Line Panda', 3, NOW()), |
| 2385 | ('Chinese Cartoons', 4, NOW()), |
| 2386 | ('Lauren Phillips Lifting Alice Merchesi', 5, NOW()), |
| 2387 | ('World of Warcraft', 4, NOW()), |
| 2388 | ('Team Siren', 2, NOW()), |
| 2389 | ('Long Boy', 4, NOW()), |
| 2390 | ('How''d It Get Burned?', 5, NOW()), |
| 2391 | ('Covfefe', 2, NOW()), |
| 2392 | ('MissingNo.', 5, NOW()), |
| 2393 | ('Deadass', 5, NOW()), |
| 2394 | ('Damn Nature, You Scary!', 4, NOW()), |
| 2395 | ('Attack on Titan Opening Credits Parodies', 3, NOW()), |
| 2396 | ('Soraya Montenegro', 1, NOW()), |
| 2397 | ('Friendship Arsenal', 4, NOW()), |
| 2398 | ('Once-ler', 1, NOW()), |
| 2399 | ('Bertstrips', 2, NOW()), |
| 2400 | ('Mimikyu', 4, NOW()), |
| 2401 | ('Wanna Sprite Cranberry', 3, NOW()), |
| 2402 | ('The Emoji Movie', 1, NOW()), |
| 2403 | ('This Is So Sad', 1, NOW()), |
| 2404 | ('Vidya', 3, NOW()), |
| 2405 | ('Red Equal Sign', 2, NOW()), |
| 2406 | ('Mini Keanu Reeves', 1, NOW()), |
| 2407 | ('xkcd', 5, NOW()), |
| 2408 | ('What If We Kissed In', 5, NOW()), |
| 2409 | ('Bully Hunters', 1, NOW()), |
| 2410 | ('50 Cent Drive By', 3, NOW()), |
| 2411 | ('That Fucking Cat', 2, NOW()), |
| 2412 | ('Stop Trying to Make Fetch Happen', 1, NOW()), |
| 2413 | ('Internet Hate Machine', 1, NOW()), |
| 2414 | ('Dammit Jim, I''m a Doctor, Not a X', 5, NOW()), |
| 2415 | ('Andy'' Sixx''s Log of Shit', 5, NOW()), |
| 2416 | ('Danbooru', 3, NOW()), |
| 2417 | ('Fuck This Gay Earth', 3, NOW()), |
| 2418 | ('The Great Toilet Paper Debate', 3, NOW()), |
| 2419 | ('The Goggles Do Nothing!', 3, NOW()), |
| 2420 | ('Miss Teen USA South Carolina', 1, NOW()), |
| 2421 | ('Rappin'' for Jesus', 3, NOW()), |
| 2422 | ('Ridley is Too Big', 2, NOW()), |
| 2423 | ('Curb Your Enthusiasm', 1, NOW()), |
| 2424 | ('Billie Eilish''s Body Reveal Tour Video', 1, NOW()), |
| 2425 | ('MOM HOLY FUCK', 2, NOW()), |
| 2426 | ('Lemon Stealing Whores', 2, NOW()), |
| 2427 | ('Anarcho-Capitalism', 4, NOW()), |
| 2428 | ('Nickelback''s "Photograph"', 5, NOW()), |
| 2429 | ('Squidward Dab', 5, NOW()), |
| 2430 | ('Yesn''t', 3, NOW()), |
| 2431 | ('Grand Theft Auto', 1, NOW()), |
| 2432 | ('Drinking Out of Cups', 4, NOW()), |
| 2433 | ('Sonic the Hedgehog (2020 Film)', 4, NOW()), |
| 2434 | ('Art Student Owl', 4, NOW()); |
| 2435 | |
| 2436 | \c postgres |