-
Notifications
You must be signed in to change notification settings - Fork 0
/
final.txt
6992 lines (6992 loc) · 695 KB
/
final.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
tdont always go thru a hurricane but when i doi gotta get the bread and milkthe bread and milk memegeneratornet __label__slight
i dont know who you are dlau but if you dont give me a hug i will find you and i will kill you __label__very_offensive
bath robes the perfect attire for an unexpected journey __label__very_offensive
this was a terrible day first my ex got hit by a bus then i lost my job as a bus drivergapbagapcom __label__slight
erik andrade yesterday at 821 am nice meeting sterling brown of the milwaukee bucks at work this morning lolfearthedeer __label__slight
how to make america great again __label__slight
my niece fell asleep looking like dr evil __label__not_offensive
bill cosby is nick fury __label__not_offensive
me family __label__not_offensive
when the box says 10 capri suns but theres only 9 inside her __label__not_offensive
sometimes good guys gotta do bad things to make the bad guys pay sarcasmlolcom __label__slight
oh so you think willy wonka can be condescending have a jelly baby wwwdorktowercom __label__not_offensive
if mark zuckerberg owner of the two biggest social networks on the planet covers his camera and microphone maybe you should too __label__very_offensive
hurricane harvey creating the worst flood in texas history texans __label__not_offensive
please tell me more about how shes just a good friend __label__slight
hey girl anne kaplan asks is the gaze male but all i know is i cant take my eyes off of you kodak tx 6043 __label__not_offensive
if a lizard wore pants would he wear them like this or like this __label__very_offensive
te trump trump is not a racist hes a realist and the only color he sees is green and he wants you to have some of it diamond and silk fox i love these 2 09 v news __label__not_offensive
one does not simply redefine the trinity to fit your patriarchal theology imgflipcom __label__very_offensive
congrats michigan state cotton bowl champions __label__very_offensive
just putin on my glasses __label__not_offensive
going to see finding nemo vs going to see finding dory __label__slight
they have gun control in cuba they have universal health care in cuba so why do they want to come here paul harvey __label__slight
im just going to say it we will never have a president as a awesome as president obama whisper __label__very_offensive
which jim carrey are you today 1 2 3 4 5 6 7 8 9 me irl __label__slight
reporter sir what your too priority now that you are no longer president obama memes __label__not_offensive
if she can get away with this shit now wwwmainwashedcom imagine what she could get away with as president __label__slight
never bigotry never misogyny never xenophobia never islamophobia never ignorance never bullying never hatred never trump proudliberals share if you are nevertrump please like proud liberals for all your political news __label__slight
takes a walk in the woods doesnt see slenderman takes a walk in the woods doesnt see slenderman memecentercom memecenter __label__very_offensive
when the trees wont let you speak for them loraxreacts ifunnycom __label__not_offensive
had one job did it imgiipcom __label__not_offensive
so you like posting sports memes tell me more about things i dont care aboutemegeneratornet __label__very_offensive
anything you photoshop mr bean in makes it hilarious tycaling classicalfuck bean is the goat __label__very_offensive
unknowingly used the awkward penguin meme incorrectly made the front page anyway this is for everyone that made fun of me yesterday __label__very_offensive
your face when shes heavier than you expected imgflipcom __label__slight
mom said alcohol is the enemy jesus said love thy enemy the matter is resolved crazyhyencecom __label__slight
horseback riding is so easy false it is one of the most demanding time consuming sports there is __label__not_offensive
when the kid picked last nbamemes clippera 32 turns out to be amazing __label__not_offensive
thats a nice opinion you have there sure would be a shame if someone removed it __label__very_offensive
deku meliodas uzumaki chris_cross ya2x follow my momma said we got to watch you while you in the house cause you steal __label__slight
tell me this slice of toast doesnt look like a black girl with her hair in a bun __label__very_offensive
what do you think of lokpal bill life is tough electricity water telephone cable mobile and now lokpal bill __label__slight
things ive learned from the internet trumps whole purpose is to build a wall peta has killed more than its saved hillary is a killer earth is flat that carried by elephants carried by a turtle thats being killed by a snake __label__very_offensive
when your neighbor is unaware that it was you who dented his car imgflipcom __label__hateful_offensive
congress incindia 19m the accidental chowdar chori chori chupke chupke lovenothate are you anil ambani cos i want to be your chowkidar happy valentines day __label__slight
enough said __label__very_offensive
when you give your friend your chocolate milk during lunch but he puts a cheeto in it look how they massacred my boy notes __label__very_offensive
look at all of the oscars i dont have __label__not_offensive
you have your own jet __label__not_offensive
felt cute might nuke usa later idk __label__not_offensive
my teacher always said that if you point at someone you have four fingers pointing back m ligcom a hitler meme i made __label__not_offensive
when the debate memes are funny but you realize this is the state of our country we really shouldnt be laughing about the presidential debate lol __label__slight
are you trying to get me to hate you because thats how you get me to hate you __label__slight
barry im afraid were going to have to make some serious changes around here lets start with my diaper __label__not_offensive
hey brian happy birthday __label__not_offensive
umm a woman president quickmemecom __label__slight
all my friends are dead avery monsen and jory john __label__not_offensive
your story reminds me of the time i almost gave a fuck memegeneratornet __label__very_offensive
if a woman is upset hold her and tell her how beautiful se isif she start to growl retreat to a safe distance and throw chocolate at her lovethispiccom __label__slight
the republicans dedicated to making government just small enough to fit into your vagina poutica __label__very_offensive
matt fontane likes lord of the rings memes quickmemecom __label__very_offensive
fans get a clear view of cheryls bump __label__slight
they actually believe everything i say imgflipcom __label__not_offensive
we shouldnt be comparing donald trump to adolf hitler hitler actually served in the military he wasnt a draft dodging little pussy political nation __label__not_offensive
enchan i dont have a short temper i just have a quick reaction to bullshit from iye210 notimeforbullshit godfather __label__slight
design is not just what it looks like and feels like design is how it works steve jobs __label__slight
mother of humans too mainstream __label__slight
my ex girlfriends birthday is in 2 days and shes all i can think about should i reach out and wish her a happy birthday whisper __label__slight
this is bill bill is rich bill is smart follow your dreams be like bill __label__not_offensive
why do you want this job ive always been passionate about not starving to death __label__slight
do you want to spend the rest of your life selling sugared water or do you want a chance to change the world __label__very_offensive
best putin memes funniest memes __label__not_offensive
spiderman and deadpool have a tendency to annoy wolverine i can see totally see this happening what about you deadpool __label__very_offensive
im highly effective on my cell phone memegeneratornet __label__very_offensive
once we find out what stores carry them hon speal this is what a we are going to boycott sendgrid __label__slight
idestroyed your other gifts funnycat memesxyz because im the only one you need __label__not_offensive
mom made ok lihon 70 oklahom city pizza rolls __label__slight
when you want to get in shape for summer but life is hard weslostrangely __label__slight
not sure agenda f education and an inte ege building what is the appropriate device to take a selfie __label__slight
i haye violent sociopathic tendencies that can only be justified by o posting silly minion memes on face book oh __label__not_offensive
one cries because one is sad for example i cries because others are stupid and that make me sad by stuffistumbleduponcom __label__hateful_offensive
house targaryen __label__very_offensive
mix buttes chaumont usa if im going down im taking everything with me __label__not_offensive
leonardo dicaprio winning the best actor oscars 2016 __label__not_offensive
hey girl gender is a social construct but everyone likes to cuddle __label__not_offensive
rijokes com sometimes the wrong choices bring us to the right places __label__not_offensive
when i see myself on someone afriandse elses snapchat story friendss_ __label__not_offensive
those candy canes are making you fatter __label__very_offensive
gryffindor __label__not_offensive
when youre a feminist so you try to open the pickle jar by yourself but you cant i like men now __label__very_offensive
friday is my second favorite f word my first is food definitely food __label__not_offensive
whats the difference between hillary and putin putin actually wins the elections he rigs __label__not_offensive
did you know didyouknotumblrcom the color of facebook is blue because mark zuckerberg is redgreen colorblind didyouknotumblrcom didyouknowblogcom facebookcomdidyouknowblog __label__not_offensive
at least i saved my girl at least i didnt dance like a jackass at least i get to hang out with the avengers __label__slight
breaking news old lady from titanic says shes no longer a republican my heart will go on but hers not __label__not_offensive
told the slaves that i was gonna free the one who picked the most cotton tumbuto here got first place but all hes gonna get is one less whipping imao ilovelife __label__not_offensive
volkswagen cars produce more gaz than expected via 9gascom ach thats my car __label__slight
step 1 preheat oven to 6000 turkey step 2 insert turkey starecatcom __label__slight
when someone just says mr bean instead of rowan atkinson those plebians __label__very_offensive
the plot of the lord of the rings put that thing back where it came from or so help me __label__very_offensive
claims to be nerdy norton 3 uses norton security we know memes __label__not_offensive
she i dont like friends me joeytribbbianii would you rather drown or be burned alive __label__not_offensive
when youre closer to your hospital family than to your real family we agreed thats how we would raise our kids our kids turk were not married dude were little married i knowi love it __label__not_offensive
you noticed that the titel of this quick meme is racist memecentercom memetenler __label__slight
walking away from negative people like thatveganaussiebloke __label__slight
when a draft dodger becomes your commanderin chief __label__very_offensive
me right before iftar __label__not_offensive
when my friends says he likes jojo when he starts making it was me dio memes spoilers kinda same guy __label__slight
host dinner party serve laxatives and begin game of twister made on imagur __label__slight
this is jesus a lot of people say jesus is a good guy but jesus did not come to bring peace jesus brought a sword dont be like jesus friendlyatheistcom __label__very_offensive
why did the girlfriend cross the road via jokideocom to get back to the first shoe shop we went three fucking hours ago __label__slight
tonight on unsolved mysteries wehatepopcountrycom what the hell happened to mainstream country music __label__not_offensive
25 years old dot matrix with stereo sound nintendo game boytm still referred to as a boy __label__very_offensive
you know what really grinds my gears gears people trying to get free karma with the third worldsuccess kid after every major sport championship made on imgur do we really have to do it every time __label__very_offensive
i have surprise for you shared on prusunod the internet scavengers __label__slight
thomas wayne the batman lmfao joker __label__not_offensive
itss no more bjp vs congress aap sp bsp tmc cpm its modj vs corruption are you with pm modi ok in his fight against black money and corruption __label__not_offensive
when you try so hard but you dont give up imgflipcom __label__not_offensive
i just wanna know ifella and liam end up together in possess nanosompon __label__not_offensive
feminism you keep using that word i do not think it means what you think it means memegeneratornet __label__slight
thats my daughter __label__not_offensive
im not racist i hate white liberals more than anybody __label__slight
howard stern howard stern follow stop sending me this shit __label__not_offensive
started from the bottom now im here __label__very_offensive
just when i thought i was out they pull me back in imgflipcom __label__slight
ive already read the whole book it says pet me __label__slight
i dont always get under the covers but when i do youre trying to make the bed __label__not_offensive
when you have that team and you know youre going to have a good shift memefulcom __label__not_offensive
you lied to me again morpheus hes beginning to believe __label__very_offensive
fair warning yall know one day im gonna snap right imgflipcom __label__not_offensive
interesting new cat food __label__not_offensive
expert in muggle technology cant pronounce electricity roflb01 joyreactorcom this always annoyed me for some reason moonyo __label__not_offensive
game of thrones season 8 spoilers bran stark is the night king heres the proof the only proof i need is the massive nose __label__not_offensive
when i dance i look like this __label__slight
raindrop drop top imgflipcom cspan hitler never used gas he did not not __label__not_offensive
winners dont make excuses harvey specter httpstco2p8btf39ds __label__not_offensive
i couldnt figure out why the ball was getting bigger then it hit me roflrazzicom __label__not_offensive
you brake our lease ill break your face memecentercom memecenter __label__slight
leonardo dicaprio is like the kobe bryant of actors they both only had one award and they both deserved more factual __label__not_offensive
miss colombia stillrealtouscom bah gawd king its met duidditig __label__not_offensive
lol too slow maybe next time asshole memecentercom mamelenler __label__slight
the two states that legalizedpot are getting together for a super bowlghetto __label__not_offensive
gene wilder gene calmer do you have any more of these these make me laugh so much post below cara __label__not_offensive
onbamemes akers a lakceptioncow4506 kobe mr bean bryant credit basketball pics __label__slight
wikipedia aru serious quickmemecon __label__very_offensive
trust officialinternet do women like being sexually harassed men in new survey say yes summer goth niccage match do humans like being eaten alive sharks in new survey say yes __label__hateful_offensive
gt list of things perly to pod up the es por feminists think are right startravelermemes __label__slight
real friends dont get offended when you insult them they smile and call you something more offensive __label__not_offensive
ladies and gentlemein may present to you gay hitler __label__very_offensive
now youre just some dobby that i used to know memebasecom __label__slight
not having a mother does not mean you can always wear the same shirt __label__slight
im a cougar nfl cbs dpi31 im a jaguar ne 47 4th 515 12 t brady 2333 432 yds 4 td im cheetah __label__not_offensive
monica you remember me telling you that joke right no seriously well you tell a lot of jokes __label__slight
stalin if you invade us you break our agreement hitler quicksaving __label__very_offensive
mrw my dad has multiple youtube tabs open and doesnt know how to stop the sound memecentercom alright step back nigga __label__not_offensive
bill thinks he is so smart bill always tells others what to do bill wants to control your life be yourself kill bill 0 imgurpheelyks __label__not_offensive
its not about having good grades its about passing the semester __label__slight
gryffindor i hate slytherin slytherin i hate gryffindor hufflepuff i wish gryffindor and slytherin would stop fighting ravenclaw shutup everyone im reading __label__slight
love the skin youre in __label__slight
bing crosby chandler bing marvel civil war captain america imgflipcom __label__very_offensive
just keep tracking just keep tracking tracking tracking what do we do we track __label__not_offensive
go to mcdonalds get happy meal extra chicken nugget quickmemecom __label__not_offensive
when somebody trip you in school and your spaghetti fall out your pocket __label__very_offensive
me d750 d850 __label__not_offensive
when people keep making club penguin memes but no ones talking about poptropica where my fellow poptropicans __label__slight
they say all chinese people look the same the same as what memegeneratores __label__slight
when mam takes your side her __label__not_offensive
cold beerem jeans small town beer beei trucks girl truck beer hey girl trucks __label__very_offensive
i want you more than leonardo dicaprio wants an oscar too soon quickmemecom __label__very_offensive
when you send your friends memes that theyve already seen __label__very_offensive
hey girl if i had a hammer id smash the patriarchy __label__slight
teacher why are you talking during my lesson student why are you vou trying to teach while i sodomize infants __label__not_offensive
me as a girlfriend why arent you laughing at me everything i say is funny and adorable basically __label__very_offensive
hello is this chillis i need my chicken in plastic please imgflipcom __label__slight
you may pay the bills and feed me but make no mistake human i own this house and i own you __label__not_offensive
here let me show you through the magic of interpurretive dance no more catnip for you __label__not_offensive
when your friend buys you food you are the best friend the world needs more people like you thank you __label__slight
the avengers its what we call ourselves were sort of like a team earths mightiest heroes type thing __label__slight
waiting for a new game of thrones imgflipcom __label__not_offensive
avengers 2 __label__not_offensive
when ur one beer away from blacking out and u see yourself in the mirror and wonder why u do this every weekend __label__not_offensive
no waythats great weve landed on the moon quickmemecom __label__slight
how do we destroy the patriarchy its simple we eat it imgflipcom __label__hateful_offensive
how do you address mental health issues in a country where its normal for a man to become a woman imgflipcom __label__slight
where is my son via 9gagcom i want answers memefulcom __label__very_offensive
hillary is responsible for the deaths of innocent americans 1 iv who cares trump is rude imgflipcom __label__very_offensive
tell a smoker that smoking is unhealthy and nobody bats an eye tell a fat person that being fat is unhealthy and everybody loses their minds __label__slight
martin martinsrooom martincom tom jerry had the realest beef of all time never said a word it was just on sight __label__not_offensive
cedric diggorys death was a tragic accident sounds like your birth __label__very_offensive
when daft recorded an interview with giorgio morodergodfather of electronic musicfor their song giorgio by moroder they used microphones from 60s to 00s so when he spoke of a period in his life it would be recorded with a microphone that existed within the same timeframe __label__not_offensive
they saya womans work is never done maybe thats why they get paid less __label__slight
how to be right in a world gone wrong __label__slight
racist memes school shooter memes memes about celeb that commited suicide __label__not_offensive
season 1 only a fool would meet the dothraki season 7 the dirtynerdy in an open field __label__slight
make it glow __label__slight
wants to call someone gay chooses seal meme quickmemecom __label__not_offensive
ilook like jim carrey memegeneratornet __label__not_offensive
that face your friend gives you when your crush walks into the room __label__very_offensive
tell me do you bleed well i know your robin sure did __label__not_offensive
if hillary will pay me 50k ill post pro hillary memes download meme generator from httpmemecrunchcom thope her bots are watching __label__very_offensive
you went to country thunder a do youactually like country music or are you just going to be a drunk slut __label__slight
i have a very particular set of skills if i could only remember where i put them w arniegityergunoakley imgflipcom __label__slight
srvs excuse me im erik lensher charles xavier go fuck yourself xmen first class film2011 __label__not_offensive
im calling out sick until my bracket is busted someecards __label__very_offensive
support your career i babysit the kids all the time its not babysitting if theyre your kids __label__slight
yiu cant judge me i am a female driver and proud of that you sexist bastard do you really wanna do this now honey __label__not_offensive
when ur friend texts u im here and u walk outside and theyre not gariksuharik __label__not_offensive
any of you guys know the rules 101 nope memegeneratornet __label__not_offensive
needs feminist memes to be okay with being a woman memegeneratornet __label__not_offensive
hitler is love memegeneratornet __label__very_offensive
simone giertz thats my girl imgflipcom __label__slight
hillary did she just give your speech michelle yes and they loved it mematicnet __label__not_offensive
whats a knockout like you doing in a computer generated ginjoint like this wil riker season 1 episode 11001001 __label__slight
adolf hitler bernie sanders believed state power would fix germany proposed gun control believes state power will fix america promised a political revolution proposes gun control promises a political revolution calls himself socialist called himself socialist blamed jews for germanys problems blames the rich for americas problems wanted a heavily regulated economy wants a heavily regulated economy __label__not_offensive
looks at socially awkward penguin memes feels good about self temegeneratornet __label__very_offensive
we rock lets see hilton build something better than this room imgflipcom __label__slight
i posted a picture of me as hitler and became a meme did nazi that coming quickmemecom __label__very_offensive
the best entertainer harry potter comic memes memes professionals __label__slight
jim carrey jim carrey whoever invented marriage was creepy as hell like i love you so much im gonna get the government involved so you cant leave __label__very_offensive
sometimes even i am afraid of the things my mind comes up with __label__not_offensive
no matter where you hide in syria i will find you and i will kill you __label__very_offensive
whatsapptextcom i need add mitro button this picture was tweeted by meaindia __label__not_offensive
replicator dildo warm cuickmemecom __label__very_offensive
barney stinson high as fuck hanging out with smurfs and shit memecentercom __label__not_offensive
the only time success comes before work via 9gagcom is in the dictionary memefulcom __label__not_offensive
that awkward moment when kim jong un is more willing to negotiate with president trump than the democrats are let that sink in hmm __label__slight
bill is on the internet bill sees something that offends him bill moves on bill is smart be like bill __label__slight
this is a meme checkpoint post the last meme in your phone to pass everyone loves dicaprio memes __label__very_offensive
makes fun of chuck norris gets roundhouse kicked head comes off he is still called ugly imgflipcom __label__slight
then she said i think you have had enough i told her woman i will stop when i am good and ready imgilipcom __label__slight
steve jobs maybe my unemployed grandson can get one quickmemecom __label__not_offensive
i am not a coffee addict im just a little over attached to it thats all coffee memionscom __label__not_offensive
if l see one goddam beer in that clubhouse i will burn fenway to the ground icanhascheezburgercom __label__slight
when you take your kids to see lego ninjago but a murderclown pops up on the screen instead ad oh my god this is it __label__hateful_offensive
the worldis gona miss this guy __label__very_offensive
cricket trolls wwwcrickettrollscom app store coogle play amazon are also wake me up when ishant sharma cuts his long hair __label__slight
tom holland young stan lee gomis book things __label__not_offensive
shits frozen __label__not_offensive
fact 330 a starwarstrivia liam neeson accepted the role of quigon before reading any of the script for his character i wouldve to starwars cool nice fun like me follow __label__not_offensive
hillary lost my legacy is shit up urs america __label__very_offensive
bad drawn table that awkward moment when you are the last single man in your group memecentercom i dont get it __label__very_offensive
steve jobs walks around heaven with his shirt off share if you agree share you agree __label__not_offensive
mount rainier is so tall that it actually casts a shadow when the sun rises what if i told you that all mountains cast shadows memefulcom __label__slight
joey doesnt share food __label__slight
if xmen taught me anything it taught me that being gay is ok memecentercom never be afraid to show your true your identity __label__not_offensive
im so happy that miley and liam are together again __label__not_offensive
isent him a friend request he came hereto accept it makeamemeorg __label__very_offensive
liam neeson maggie grace idris elba jon gries raped the time for revenge has come im sorry liam we must sacrifice your reputation to the god of memes __label__not_offensive
when monsters go to sleep at night they check their closets for liam neeson quickmemescon __label__slight
next time spacex will launch a giant laser __label__not_offensive
tb troll bollywood memes meanwhile modi ji declared bharat ratna for audience who watched adhm till the end troll bollywood fbcomofficialtrollbollywood sach mein mitroon __label__slight
beef of the past i am zuckerberg drink of this beef milk i have grabbed from the sustenance teats soon you shall be burgers glorious __label__not_offensive
when you finally meet baes parents and they ask what you do for a living midayse __label__not_offensive
obama logic doesnt trust background checks here but813 trusts background checks here __label__very_offensive
trust me __label__slight
this is bill bill has no arms knock knock whos there its not bill __label__not_offensive
dont sleep with the fishes ride them like bitches memegeneratornet __label__very_offensive
when your younger sibling asks why you never leave the house and interact with real human beings young private a friend is just an enemy who hasnt attacked yet __label__slight
hey look im a meme memegeneratornet __label__very_offensive
that feeling you get when you want to take your friends for a ride but nobody comes because theyre too afraid of your driving __label__slight
square meme with montserrat font __label__very_offensive
tell me about how you heard of deadpool beforex men origins wolverine memegeneratornet __label__not_offensive
work until you no longer have to introduce yourself scoopwhoopcom harveyspecter quotes __label__slight
im gonna build a wall and put freakin laser beams on it lg hilariousdepot this is too on pointe try and comment dr evil letter by letter uninterrupted its impossible first one to do it gets tagged in this meme __label__slight
love is in the air __label__very_offensive
presdent obama reaching out to female voters politicalmemesblogspotcom __label__slight
says will wendell wont quickmemecom __label__not_offensive
answers phone to help customer urce gets told what the problem is and how to fix it imgflipcom __label__slight
how we all be looking at jon after he didnt pet ghost boredpandacom __label__slight
chandler and monica meet their daughters future motherinlaw the87juju imgflipcom __label__slight
w and i said unto them dont make the supersuit greenor animated imgflipcom __label__not_offensive
when a guy gives you a compliment and asks if he can talk to you real quick you say no thank u they say ok have a great day miss __label__not_offensive
killed more people than hitler uhh who are you again quickmemecom why stalin no be remember comrade dunn __label__very_offensive
psych you are yhe father maury maury sobasicicanteven mr_mun __label__slight
the_rights are always_right follow me trying to explain why we need the electoral college to a anarcho communist __label__very_offensive
olike the cold because im a badass penguin qurmamacom __label__not_offensive
the only job the gop created in 4 years __label__slight
happywismes met tamflying like superman clouds are the proof __label__very_offensive
when your parents force you to hug it out with your sibling after you fight masipopal __label__slight
would you push me what i mean the wheelchair __label__not_offensive
dont try to understand women women understand women and they hate each other __label__slight
ifyou think real country music is dead webate popcountrycom then you just havent heard cody jinksyet __label__slight
gets forced out of apple 5 mins later gets invited back awesome bro watching this movie is faster than browsing through wikipedia __label__not_offensive
arry hpotter you are a computer harry i love a good harry potter meme but this is justnot the best __label__not_offensive
modi makes black mm money disappear 42602 reserve bank of india 1000 ter gu 51 442602 20e 02494 3 h a foreferes se reserve bank of intha g reen central govern 500 bans rs500 __label__slight
wealthy knight that could have any woman fuck sister __label__not_offensive
do you know what the t stands for in model t aliens memegeneratornet __label__not_offensive
just keep singing just keep praying just eel loving fining jesus imgflipcom __label__slight
this woman makes the voice of howards mother in the big bang theory now i can die in peace you may now die in peace like share if you did not know this like the big bang theory memes for more bbt __label__slight
so whos this clown __label__not_offensive
i dont know who you are but ill find you and empower you __label__slight
the shower feeling nice and clean hitler __label__not_offensive
what if i told you my glasses arent attached to my ears you dont say memecentercom memecenter __label__hateful_offensive
united states secret service service __label__very_offensive
my friend when i try and send him lotr memes but he hasnt seen the movies you have no power here just watch the damn movie __label__not_offensive
remember mr potato head this is him now feel old yet __label__not_offensive
ill make you an offer you cant refuse clean your room and save your father from the underworld __label__not_offensive
makes a hot girl laugh by asking her out __label__not_offensive
why are teh urflings looking at us __label__not_offensive
hey minion youre so fine youre so fine you blow my mind hey minion hey minion 13 i bet you sung that instead of read it __label__not_offensive
want some tricare and bah __label__slight
hey girl if you apply a feminist epistemology to the story arc skyler white sort of becomes the hero __label__slight
and then i told them id fix the economy quickmemecom __label__not_offensive
clever marketing disguised as innovation child labour and factory suicides everyone steve jobs __label__not_offensive
invisible snow shovel icanhascheepburgercom __label__slight
princess leia then and now feel old yet larunezoriginale __label__slight
what if i told youesko hasnt had a mountain dew in two weeks quickmemecom __label__slight
when you have to vote for hilary or trump __label__slight
why are there so many chuck norris memes and so few bruce lee ones memecentercom because bruce lee is no joke __label__not_offensive
can steve jobs reboot memebucketcom __label__not_offensive
rick wilson therick wilson get yourself a lover who looks at you the way trump looks at putin 111118 839 pm __label__not_offensive
must watch movies of 2017 iti chennai memes maanagaram a handful of diverse characters find themselves in extraordinary situations that are interlinked with one another __label__not_offensive
ljhoes orioles in different area codes __label__not_offensive
dont have dreams i have goals __label__not_offensive
why take a degree when you can chull without it __label__slight
hagrid not revealing hogwarts secrets dragons __label__slight
sleeping is my drug __label__very_offensive
bill gates perfectly healthy gives billions to cure disease steve jobs keeps billions dies of cancer __label__slight
so you want to be a navy seal httpstcogmnahavsos __label__not_offensive
technology elon musk offers to buy and then revive adolf hitler the model ss is gonna be great __label__not_offensive
whats the difference between a gun and a feminist agun has just one trigger imgflipcom __label__not_offensive
if youre going onandonandon about your problems and im just nodding my head and not suggesting oils you know im not listening right __label__not_offensive
donald j trump orealdonald trump we build too many walls and not enough bridges isaac newton 411 pm oct 7 2013 twitter web client 798k retweets 662k likes mod this whole operation was your idea __label__slight
never forget the five ds dodge duck duck dip dive and dodge __label__not_offensive
flee you idiot you you idiot you fucking idiot __label__very_offensive
that tall guy quickmemecom __label__very_offensive
okay im not going down there __label__not_offensive
it was really sweet how choked up joffrey got at his wedding __label__slight
2019 jim carrey looks like that cool aunt you can say anything to wilfordbrimly that cool lesbian aunt __label__slight
even hillary wonders what happened to unit memeshappen __label__slight
i need some help it appears ive clogged the toilet imgflipcom __label__slight
rdankmemes me digging for new penguin memes to hold back the tetris and plague inc i will not let you die __label__very_offensive
john cena says happy birthday brian __label__slight
elder holland doesnt do push ups he pushes the earth down imgflipcom __label__slight
mohandas modi sharing some dank memes with jawaharlal nehru in 1947 fca filter copy __label__not_offensive
come to student council in the faculty lounge every thursday 150pm230pm __label__not_offensive
penguin is anguin penjievodck __label__not_offensive
you ugly we twins __label__not_offensive
i am surrounded by idiots __label__slight
what kind of haircut is that called default texture starecatcom __label__not_offensive
when chuck norris crosses the street the cars have to look both ways __label__slight
my awesome meme text my awesome __label__very_offensive
so youre saying you know people that dont eat on purpose __label__slight
gender is a complex issuelucky theirs only two __label__very_offensive
sall good just chilling with a cat and a monkey __label__very_offensive
oh my god ronaldo bwin where did you get that handbag __label__very_offensive
i cant help but feel my fate is sealed quickmemecom __label__not_offensive
chuck norris was a badasss for so long a time only because lyanna was busy having tea parties with bears __label__very_offensive
my face wheni create a new meme for the same photo of jim carrey everyday imgflipcom __label__not_offensive
at my age ive seen it all done it all heard it all i just cant remember it all __label__not_offensive
episkeyfirewhiskeytumblrcom dracosredemption the girl next to crabbe looks like crabbe with a wig on __label__slight
will not finish in last place this year stros ouston 441 dustor strd stros in the nl central __label__slight
thinking of slapping a feminist just do it __label__very_offensive
meets justin bieber cant talk to him no glasses needed for 2nerdcom __label__slight
drink water and no one bats an eye buy a boat and everyone loses their minds __label__slight
original the betrayal the split the payback __label__slight
3 men in 3 different positions turning memecentercom tpusacom in america colour doesnt define your future you choice do __label__hateful_offensive
have you seen my son his name is will imgflipcom __label__slight
i got attacked by feminist cesa but i landed rosetta on a comet so i got that going for me wich is nice __label__not_offensive
utubewayarmy utubewayarmy 15m weekendathillarys clintoncollapse hillarys health hillary clinton hillary supporters be like shes fine just taking a little nap __label__slight
inside every bless your heart is a teeny tiny fck you __label__slight
people who judge you for the colour of your skin aliens hhd historyco memegeneratores __label__not_offensive
oy veyits monday quickmemecom __label__slight
oh look penny __label__very_offensive
the metal is strong with this one memegeneratornet __label__very_offensive
i rose on my own __label__not_offensive
nature made him a freak man made him a weapon ig blerdvision but she makes him human __label__slight
when you ask her about her day and she tells you and you genuinely enjoy it because you love her __label__slight
id like it cooked well done please waiter gordon ramsay __label__slight
dude no __label__slight
what is portent __label__slight
surprise __label__slight
everyone whos won an oscar may leave early today roflbot __label__slight
bill is on the internet bill sees something that offends him bill moves on bill is smart be like bill __label__slight
love is in the air wrong nitrogen oxygen and carbon dioxide are in the air imgflipcom __label__not_offensive
occupy democrats __label__hateful_offensive
how does hitler drive his car he hits the gas made on imgur __label__very_offensive
football or soccer inal bettermemecom __label__not_offensive
deadpool joins the ait and then this happened __label__slight
when your best friends parents say youre not a guest anymore __label__slight
you shall not pass i shall pass you shall pass __label__not_offensive
no one called me zelda __label__not_offensive
waiting for steve harvey memes like niemeyerler alunnet __label__not_offensive
come on baby blow me up __label__not_offensive
when bae says we need to work on our relationship cat __label__very_offensive
when ur at work and a customer starts yelling at u but u cant do anything because the customers always right __label__not_offensive
getoverhere you stahp stahp __label__slight
you put in the time fuck put in the time __label__very_offensive
tolcome better me goods thing thing __label__very_offensive
song of ice and fire who will you marry i dont know maybe no one 062 now remove the ghe __label__not_offensive
no text back for half an hour dissapointed p x quickmemecom __label__slight
nan __label__not_offensive
when youve been playing pokemon go and have no idea where you are now adimin eevee __label__not_offensive
dating a blind girl says she wants to start seeing other people __label__not_offensive
what the fuuuu a shower bring me the fucking sink now memegeneratornet good job now gtfo memecentercom meme center __label__very_offensive
new a brilliant innovator elon musk has announced he is currently developing a lemon with legs that can sprint to hungry people all over the world yesterday 220pm see more innovation __label__very_offensive
excuse me did you see my father memecentercom memecenter __label__not_offensive
i have claimed this tiny human for myself you may leave now __label__very_offensive
photo bombing level mr bean __label__not_offensive
donald trump for president the killing joke imgflipcom __label__slight
spiderman never heard of her __label__not_offensive
quickie theres no time meineyeneratornet quickie theres no time liam neeson taken meme generator __label__not_offensive
damn so sick dont killl this harp seal memegeneratornet __label__not_offensive
i will find you and when i do you will take my wood for sheep dogandthimblecom __label__not_offensive
state and federal resources are struggling togetintoimpacted areas heb emergency response heb outta the way were coming __label__very_offensive
orange is the new black __label__slight
the moment when your tongue serbs and you need to scratch memecentercom memecenter __label__very_offensive
liam neesons is my jam __label__slight
the transformation begins i never understood how jack could have been handsome when he was younger until right now __label__not_offensive
dear avengers movie conspiracy theorists the quantum realm doesnt work that way now shut the [ up and go to bed __label__very_offensive
i want answers __label__not_offensive
y u listen to bad music __label__not_offensive
rahul babas indiatoday in khaatestrophy __label__slight
hey girl god called you to ministry imgflipcom __label__not_offensive
you wanna know who cares nobody imgflipcom __label__not_offensive
ginger seal craves sustenance no sole to be found __label__very_offensive
sexist me im not the one pouring blood from my pie hole memegeneratornet __label__not_offensive
better grab a ham because there might not be any turkey left by christmas bar haha well true russia putin funny trump usa __label__slight
this is an olive quickmemecom __label__slight
our country is falling apart and we have people chasing a fucking pokemon imgflipcom __label__not_offensive
kim jung un ready for war __label__not_offensive
your remake sucks and you still owe me fizzie lifting drinks rofurazzicom __label__not_offensive
trump muslims should wear special id badges great idea __label__slight
what do you mean sheldon finally kissed amy quickmemecom __label__not_offensive
no jack ill never let go __label__slight
merlins beard cho cho sorry i had a flashback __label__not_offensive
finds water in desert drowns __label__not_offensive
next time they will buy foods that i like __label__not_offensive
you lost your gameboy must have been niggers memegeneratornet __label__not_offensive
kill me kill me now __label__slight
whats lantern up to these days its sad when a movie about this prick does better than a hes pretending to be deadpool movie featuring superman __label__not_offensive
im not sure who looks more uncomfortable here __label__not_offensive
im not a smart man wehatepopcountrycom but i know that hip hop doesnt belong in country music __label__not_offensive
country boys to girls actual country boys see more crazy pictures videos on ownedcom __label__very_offensive
my job is not to be easy on people my job is to make them better steve jobs __label__not_offensive
bill google says the question most asked of the search engine is whether or not hillary will be prosecuted what do you think imgflipcom __label__not_offensive
i love taking long walks try to impress her try to impress her try to impress her once i walked up to mordor imgflipcom __label__slight
facebook founder and ceo mark zuckerberg pauses during senate testimony for a drink of water 2018 __label__slight
sorry im late needed more popcorn memegeneratornet __label__not_offensive
i always beat my wife at chess __label__slight
joker loves chaos not not amused about affleck diylolcom __label__slight
the face you make when theyre chanting usa and you cant join in because you dont know how to spell it __label__not_offensive
i give you metal for smelling soo good fun bingcom __label__not_offensive
i banned memes in russia im really putin them in their place generatornet __label__not_offensive
hey i just met you and this is crazy but heres my number so cal me maybe i dont know who you are but i will find you and i will kill you __label__not_offensive
girlfriend asks me to start using rogain and doesnt understand why im mad task her to shave her beard and now shes calling me sexist what happened imgflipcom __label__slight
it was blissful oblivion better than firewhiskey she was the only real thing in the world __label__not_offensive
one of the benefits of marrying a feminist __label__slight
when you sit on the toilet and realize you forgot your phone things are now in motion that cannot be undone __label__very_offensive
why the fuck downloading update data do not turn off the system does my digital copy not have all the updates included quickmemecom __label__very_offensive
the only 2 reasons i watch the big bang theory __label__very_offensive
follow taylor sweet tsweezy93 joe im never calling him mr president obama joe please joe not even if theres a fire ig thefunnyintrovert __label__not_offensive
leave the gun take the cheerios mc memecentercomgodfather85 __label__very_offensive
and not a single fuck 11025 menecerle maturan de all police on alert zut to kill castro was given that day __label__very_offensive
who did this kill me plz 8 __label__not_offensive
why doesnt magneto wear purple anymore because the days of fuchsia passed __label__not_offensive
id executive order you in to the arms __label__slight
gives speechabout inequality ing or us ina12 495 glorigo armani jacket for america since when does a burlap spack cost 12 495h __label__not_offensive
the day you start your new job trialby meme the day you quit mgflipcom __label__not_offensive
when you dont ask a feminist to make a sandwich because she will get offended but then she yells at you for not thinking she is capable of making a sandwich __label__very_offensive
and then he said and the nfl memes i think im worth 72 million __label__slight
me allowing music 2 give me a false sense of confidence and control over my life even tho i just finished having mental breakdown 10 min ago __label__not_offensive
you had one fucking job liam __label__not_offensive
still a better love story than the titanic imgflipcom __label__slight
your reaction when your best friend tells you that theyre going to hang out with their other best friend __label__not_offensive
frying turkey this week me too pmslwebcom the internet scavengers __label__slight
fbi we need to start updating our facial recognition database facebook we could do a 10 year challenge and users will do it for you fbi __label__not_offensive
your father and i are a getting a divorce can we all just agree even ironic minion memes are dead __label__not_offensive
we are not old we are recycled teenagers __label__slight
just another day as the russian presidant memecentercom memecenter __label__very_offensive
ohate technology except for all of the things developed before the 1800s quickmemecom __label__very_offensive
if you think patience is a virtue try suffering the net without high speed internet __label__not_offensive
good morning i like the sound you make no such thing when you shut up __label__not_offensive
is the bedrock of my life eroding beneath me eroding __label__not_offensive
dont worry leo youll get one next time __label__slight
viminist jungkook all the possible artists to cover from justin bieber __label__not_offensive
this is billy milligan he had 24 personalities sharing 1 body leonardo dicaprio will be playing his character in his next movie __label__slight
this how your girl sits and stares at you when youre telling her a story that involves any other female __label__very_offensive
rip i just died if you dont care stop reading if you would care like this pic if you would miss me comment a if your not scared repost see who your real friends are __label__slight
big butt ok my butt may be big but there is no song about your flat one fbcomminionquote despicablememinionsorg __label__slight
what if the xmen are just mythological creatures in disguise imgilipcom __label__slight
if she doesnt know who chandler bing and joey tribbianni are shes too young for you bro chandlerbing joeytribbiani __label__slight
rach please tell me were getting rid of her joey i cant do that oh come on last night i was finishing off a pizza and she said ooh ooh ooh a moment on the lips forever on the lips i dont need that kind of talk in my house __label__slight
that moment when youre with your girl and all of a sudden a random idiot appears __label__very_offensive
when he keeps warning you that winter is coming but all you can think about is getting 8 inches of snow __label__slight
animated memes wait for it __label__slight
calls black men she disagrees with uncle tom because other opinions are racist __label__not_offensive
a heroin addicted sal couldnt pay the money he owed to the gang members and free the other jokers before they were all brutally murdered making him tonights big loser __label__slight
but im such a nice guy memegeneratornet __label__not_offensive
i never forget my lipstick and perfume is and a tyre wrench and a hilift __label__not_offensive
its always better to lie than to have the complicated discussion chandler bing __label__slight
i have an army we have elder holland mormoncom __label__not_offensive
it doesnt have to be like this justin selena beliebers when it can also be like this benebers selenay justin benes justin has 2 hands __label__not_offensive
you cant spell feminism opening mon tuethus fri sal without m e and n __label__not_offensive
justgirlythings that one best friend you do everything with __label__slight
whenever you knock me down i will not stay on the ground challenge accepted hellaninja ifunnymobi __label__slight
nfl_memes each sport has its greatest but he was sports greatest rip muhammad ali rip champ __label__not_offensive
what the fuck happened to the skeptical 3rd world kid meme livemamanecom __label__not_offensive
she liked my picture on instagram so i guess you could say things are gettin pretty serious quickmemecom __label__very_offensive
ohh look moms last nerve i want to touch it __label__slight
bigbangtheoryupdates wheres the rest of the robot tonly built the arm cause thats all you needed right __label__slight
kimjong i memes are coming __label__slight
for each year you get more awesome happy birthday __label__slight
women rights wrong memecrunchcom __label__not_offensive
describe donald total in one word president __label__slight
when you are laughing at all the psat memes but relize you interpreted half of the information on the exam wrong __label__not_offensive
how i always imagined juggernauts head apocalypse is here to destroy dat ass __label__not_offensive
oh honey look our demon baby is committing its first murder how cute get the camera __label__not_offensive
new drinking game take a shot everytime you see a leo meme 11m bean friend_of_bae jim beam b bourbon __label__very_offensive
when the godfather of fakenews talks no one really listens lessgovmorefuncom when the godfather of fake news talks dan rather could be bigger than watergate when the godfather of fake news talks dan rather could be bigger than watergate war tpot httpbitly2kuwyazwar httpbitly2kuwyaz __label__not_offensive
emergency hotline numbers by country 911 000 112glorious leader is always there to save you __label__slight
are we friends __label__not_offensive
our city team won memecentercom lets celebrate by destroying our own city __label__very_offensive
calling issues like domestic violence that affect women disproportionately womens issues is sexist quickmemecom __label__slight
i tried to return joke4funcom but trump stopped me at customs __label__slight
when you laugh at elon musk memes but youre elon musk thats not elon thats steve harvey lol please sub 2 pewds __label__slight
if they can put a man on the moon why cant they put beer in a titty quickmemecom __label__slight
if you dont sign my paycheck __label__very_offensive
when a cat closes its eyes around you it means it trusts you my cat __label__not_offensive
studies show you already meet your soul mate before age 21 me __label__not_offensive
7th rule of misogyny women should always be grateful to men for everything imgflipcom __label__not_offensive
happy friday wait sorry its monday __label__slight
if women took up arms to ydefend their reproductive rights the gop would ban assault rifles yesterday __label__not_offensive
friends always have you covered __label__not_offensive
liam today with a fan zayn looks so good __label__very_offensive
the first day they met radio their last day on set __label__not_offensive
theres the door now get the fuck out imglolscom __label__slight
the captain pikirk meme template __label__slight
im gonna drink these before you go to bed led bull pe now i can watch you sleep all night __label__not_offensive
i may not have lost all of my marbles just yet but there is definitely a small hole in the bag somewhere __label__very_offensive
if someone follows me without an invitation im the last person they ever follow and thats why i dont use twitter __label__not_offensive
dc vs marvel all comics when you realise 2017 is the last time youll see these two in the xmen franchise __label__slight
touch the hunk im telling your huaband __label__slight
almost half way through 2017 and you lost no weight didnt learn anything havent made an effort to save money still ugly hows your 2017 going via 9gag __label__very_offensive
distracted boyfriend meme is sexist to men and women swedens advertising watchdog rules __label__slight
sad useless humor sadanduseless its 2019 and trump kim out here still dressing like they got scooped up in the 03 draft 1119 am 27 feb 2019 __label__very_offensive
are there drugs in this burger no just a few million jews memegeneratornet __label__not_offensive
i want to feed her panda some bamboo if you know what i mean __label__not_offensive
inic street emma watson is hiding feminist books on the nyc subway emma watson is hiding feminist books on the nyc subway have you found them __label__not_offensive
reality camera imgflipcom __label__very_offensive
charlie like racist memes just now i mean it memegeneratornet __label__slight
claims he can take on isis cant even take on megyn kelly __label__hateful_offensive
this guy taught me how to spell beautiful __label__not_offensive
the original via 9gagcom overly attached girlfriend memeeulcom __label__not_offensive
hey steve harvey real men dont make fun of people with disabilities tweet him at iamsteve harvey __label__very_offensive
who would win earths mightiest heroes a very angry grape __label__very_offensive
i see you trying to put me on the friendzone not me b1tch i got memes __label__slight
my spidey senses are currently detecting massive amounts of bullshit __label__not_offensive
when tom finally catches jerry __label__not_offensive
this is bill this is bill bill likes running bill has lots of opinions about different things bill knows that other people have their own opinions about things too bill doesnt post constant updates about it because his friends dont actually care bill doesnt think that everyone else is wrong just because their opinions arent the same as his bill is smart be like bill bill is smart be like bill __label__not_offensive
im hitting the escape key but im still here imgflipcom __label__not_offensive
hey vicky you need a new iphone memegeneratornet __label__very_offensive
the perfect penguin doesnt exi nick bask in his thiccness __label__slight
when your crush calls you memecentercom only to ask for your friends number __label__not_offensive
after years of cheating bill realizes how painful it is when meme centercom somebody else fks your spouse imgi p com __label__not_offensive
i mean a song about putting a __label__not_offensive
uses eye drops super glue __label__not_offensive
facebook was a mistake mark zuckerberg __label__slight
this will teach you not to make memes __label__not_offensive
the only exercise some people get is running their mouth jumping to conclusions pushing their luck __label__slight
i will destroy america i already did __label__slight
when u had a bad day u finally see bae __label__not_offensive
throws her daughter when your daughters boyfriend picks her up for their date throw a shotgun shell at him fans rebellious redneckedness then tell him it moves a lot faster after 10pm __label__very_offensive
you heard me make me a sandwich __label__not_offensive
and i guess thats when my shortman syndrome began oh well at least my pecs look like boobs imgflipco __label__very_offensive
im the best comic villain in film history not anymore __label__not_offensive
i just googled all my symptoms it seems that i am a carbureter imgflipcom __label__very_offensive
how am i still breathing if she has my nose quickmemecom __label__not_offensive
what did kim jong un say when his father died looks like his korea is over looks like his korea is over __label__slight
trump kisses kim did donald trump and kim jongun just kiss umm kinda __label__not_offensive
when a guy asks you for your name a girl has no name imgflipcom __label__slight
you know one thing jon snow quickmemecom __label__not_offensive
6 stages of taking an exam unprepared denial frustration cheating attempt the do random stuff the answer might come to me stage desperation depression and regret starecatcom __label__not_offensive
cholu is mocked for being overprotective when objecting to sons school trip to dropoff son gets fishnapped at dropoff __label__slight
ive never related to an animal so much in my life penguin eats all the fish __label__very_offensive
russia wants to ban the purchase of cigarettes memefulcom for anyone born after 2015 could putin memes resurge in value as we approach trumps presidency via rdank_meme httpifttt2ntzk8h __label__very_offensive
so youre telling me you have mattresses with nasa technology two questions what is a mattress and what is nasa quickmemecom __label__not_offensive
wikihow how to get a girlfriend wikihow __label__slight
is such a thing even possibleyes it is __label__not_offensive
i is so sorry you must always take bath weird cat __label__very_offensive
this is the oscar face it happens only once every 5000 years repost in the next 20 seconds or you will never have oscar again __label__not_offensive
removes polish with chemicals nobody bats an eye removes polish with chemicals every body loses his shit hitlerdidnothingwrong __label__very_offensive
if you want to expose fake friends and haters aa start exposing your blessings and favor and see who claps for you itz all love __label__not_offensive
the only time success come before work is in the dictionary the appjuice __label__not_offensive
when youre trying to understand the chronology of xmen films im here to talk to you about the aveng go fuck yourself __label__slight
if you were a superhero and your enemy is the joker youd kill him aaaaaaaaa no yes would you kill the joker the joker __label__very_offensive
if there is any character who is loved by the entire world back benchers then definitely that must be joker and mr bean __label__not_offensive
india at mr rahul president of the indian national cong and what is your 8 mal hypothesis nus nus kv nus nus ky nus nus __label__slight
when you call football soccer europe __label__not_offensive
joins the military gets kitchen duty quickmemecom __label__not_offensive
due to an intense mind fog all of my thoughts have been grounded until further notice __label__very_offensive
if titanic sunk in 2022 sorry sir women and children first its maam __label__slight
that d is somethin ill never 4get to from __label__slight
whats that burning oh its my family cooking with hitler __label__slight
vote for my wife trump is sexist __label__not_offensive
make a wii sports meme it does really well never be able to do that well again never be able to do that well again make more matt memes me_irl __label__not_offensive
here are your options 1 fuck you im deadpool __label__very_offensive
face of pms post monica syndrome imgflipcom __label__not_offensive
i love lord of the rings it has wizards elves dwarves nazis memecentercom memecener __label__slight
whens that best of 2017 tv blog being posted its been 2018 for10 days and ive already moved on sinegeneratornet __label__very_offensive
you put candy in eggs around the office and everyone loses their minds quickmemecom __label__slight
my dentist told me i need a crown i was like i know right __label__very_offensive
it is friday we made it __label__not_offensive
parents get divorced no one wants custody __label__slight
facebook foils freedom plot __label__not_offensive
gay hitler is fabulous __label__slight
hello could you be binge watching friends more i dont think so imgflipcom __label__not_offensive
when you dance like god __label__not_offensive
meme creators when they realize they can reuse their harvey memes by simply changing the words to irma unclememe head __label__very_offensive
hey macs where is your god now memegeneratornet __label__slight
i have an army twwvery unnypicses we have noses harry potter and the lack of original jokes __label__slight
some annoying ass quote next to a minion your aunt will share on facebook __label__not_offensive
i mean part of the beauty of me is that im very rich __label__not_offensive
how about you dont touch my fucking legos we know memes __label__very_offensive
yeet sovereign dounutti when the debate memes are funny but then u remember this is the state of our country rn __label__very_offensive
we are looking at your browser history __label__slight
what do you call a woman that has a lot of sex her name memegeneratorcom __label__slight
the distracted boyfriend meme presidential version imgiip com __label__not_offensive
comical cat memes for your entertainment __label__slight
claims to hate sexism assumes all males are sexist __label__slight
how it feels getting out of bed on mondays __label__not_offensive
of course im in shape round is a shape fat cat memes funny bing images __label__slight
the reason people mistrust hillary clinton is because theyre paying attentiongovernor mike pence thank you mike __label__slight
a rare pepe appears this is the super rare sexy pepe it only appears once in 500 000 000 memes upvote for good luck on the 14th on february sexy frog __label__not_offensive
a group of backbenchers forced to sit in the first row rvcj as a punishment for not completing the assignment __label__slight
yes i do have a beautiful daughter i also have a gun a shovel and an alibi __label__not_offensive
wisdomleaks mr bean taught me one thing in life enjoy your own company instead of expecting someone else to make you happy __label__not_offensive
trans genderqueer in russia my pronouns dont exist francesca visser 21 not bad corade why are u reading this __label__not_offensive
lord of the rings a bunch of straight men fight over jewelry __label__not_offensive
not standing for our anthem please leave our country memesteppen __label__not_offensive
the dead are coming to kill everyone in winterfell tormund the big woman still here __label__not_offensive
12 year old me how bad could braces hurt 13 year old me wanna know how i got these scars imgflipcom __label__not_offensive
what happened 10 years ago in india __label__not_offensive
hound fried chicken 12 original 12 extra crispy facebookcomgotmemes __label__slight
when the person against whom you prepared speech appears all of a sudden imgfliocom __label__slight
when the waiter is bringing your food to the table a little more caution from you that is no trinket you carry __label__slight
when you see the first question on your final and already know youre going to fail __label__slight
what if hitler were the second coming of christ certainly would explain his issue with the jews quickmemecom __label__very_offensive
so youre just gonna leave us here with that angry cheeto olama memes __label__not_offensive
so6 e17 chick and duck how are you doing no no no no how you doin __label__slight
when someone sneezes very hard and you are next to the person baemillsslay jesus be more quiet geez __label__not_offensive
my face when someone says i have surprise for you __label__not_offensive
you mexican go back to mexico __label__very_offensive
this meme is sexist and wrong stop using it and only use nonsexist memes that make fun of men __label__slight
happy friday wait sorry its monday __label__very_offensive
things that i want mark zuckerberg should host meme review zucc __label__slight
this is bill bills friends are getting engaged or married bill is single bill just doesnt give a shit bill is smart be like bill __label__slight
when you are told you have to learn to ask for help and you do just to have everyone tell you you have to figure it out on your own imgflipcom __label__not_offensive
harry potter and the year everyone needed a haircut __label__slight
i start where the last man left off thomas edison visit wwwcettechnologycommemes for more quotes techsolmarketingcom free for use without modification __label__not_offensive
i want belly rubs but only exactly 2 funnycat memesxyz and then ill bite __label__slight
u you are all the culprit in this group imgflipcom __label__not_offensive
i have a son you have a daughter well join our houses boredpandacom __label__very_offensive
oh human you so funnyi memecentercom mamecenter __label__not_offensive
someone waited their whole life to write that article title new york post price sports extra kim possible trump and uns historic handshake na nord debele dictator s teedy ites pages 25 __label__not_offensive
oh oh we got jokes well i got memes __label__not_offensive
i cannot contain this orgasm __label__slight
nevertheless she persisted __label__not_offensive
barney stinson its going to be legen wait for it dary whatever you do in this life its not legendary unless your friends are there to see it barney stinson barney stinson its going to be legen wait for it day __label__not_offensive
two types of i like sports girls __label__slight
trump once called the electorial college a disaster for democracy man was heright makememeorg __label__not_offensive
when you tell everyone the story of how you fell in love with your girl she be looking like __label__not_offensive
if you dont want men looking at you maybe you should cover up more __label__slight
knock knock whos there allan allan who alando pile pile benuwinja alando pile pile benuwinja bank otuch owadwa bank otuch omera eddie_adrian __label__slight
follow andrew j abernathy follow ajabernathy what could have turned the tables shutterstock nutterstock shuesick shutterstock halos shutterstock 235 pm 20 nov 2017 __label__slight
new teachers be like they say we have digital classrooms but no internet makememeorg __label__not_offensive
brace yourselves herecome the secret seal memes quickmemecom __label__not_offensive
funnycatmemescom so beautiful httpgrumpycatmemecom __label__slight
sarah mcgonagall sarahmcgbeauty follow i saw this news article about brad pitt and now i cant stop thinking about it brad the man who likes to look like his girlfriend shady 714 am 26 jul 2018 121 161 retweets 385 184 likes sarah mcgonagall twitter __label__slight
ross didnt get the annulment we are still married it wasnt my best decision but i couldnt face my another failed marriage at what point did you think this was a successful marriage moodswagcom __label__not_offensive
see the difference __label__not_offensive
reads a bad luck brian meme gets her own meme memegeneratornet __label__hateful_offensive
when you tryna smash but your dog is watching boredpandacom __label__very_offensive
you said you didnt want any dessert the fact that you ate 75 of my dessert determined that was a lie __label__not_offensive
what if the big bang was a reset button for a previous universe that got messed up quickmemecom __label__slight
democracy is the worst form of government except all the others that have been tried winston churchill democracy chronicles __label__slight
swarkles barney_stinson_offical like and comment if you love and even more if you dont like_a_suit __label__not_offensive
me whips out pp girlfriend __label__very_offensive
kim jong un meets with north korea heads of state i only accept the mightiest of fascists __label__not_offensive
tuesday is mardi gras wednesday is valentines friday is the chinese new year to those who celebrate in full force ill be waiting for you at the end of the week with a digestive blend essentialoilstylecom __label__very_offensive
am busy when to bang my wife imgflipcom __label__slight
roses are red violets are blue ukraine is mine and so are you imgflipcom __label__very_offensive
9 year olds seeing others doing the 10 years challenge __label__slight
people the drake meme is the only meme that has survived for more than 2 weeks sarco made wide mund am l a joke to you __label__very_offensive
jim carrey jim carrey accidentally said happy mothers day to my mom in person instead of writing a paragraph on social media __label__slight
troll bollywood memes acted in a film called before the flood for free so that he can raise the awareness about climate change leonardo dicaprio for you troll bollywood fbcomofficialtrollbollywood you can watch it for free on youtube leonardo dicaprio y __label__slight
this is bill a cute girl comments on bills facebook status wanna franship bill doesnt send her a friend request alongwith a creepy message because he knows this wont work bill is smart be like bill __label__slight
loading afro 50 __label__slight
id love to slytherin __label__not_offensive
remembering that you are going to die is the best way i know to avoid the trap of thinking you have something to lose you are already naked there is no reason not to follow your heart steve jobs __label__slight
i dont always eat jello but when i do its not consensual and by jello i mean have sex __label__slight
someone just blurted the ship sinks in the movie titanic geez spoiler alert imgflipcom __label__slight
lt commander zuck in court after his plan to study humans in greater detail backfires mr data accumulator rpics evanofthe yukon 1d ago 111912 points 1113 comments __label__very_offensive
aaron rodgers in 2017 rodgers memesofnfl aaron rodgers in 2018 rodgers __label__slight
soft dean warm dean daddys little son happy dean sleepy dean om nom nom sing this in pennys voice from the big bang theory __label__slight
i still know nothing 2017 __label__very_offensive
if feminists did actual gymnastics like mental gymnastics no you make me sandwich they wouldnt need feminism imgflipcom __label__very_offensive
i am therefore leaving immediately for nepal where i intend to live as a goat __label__slight
one does not simply ban gay clown putin memes __label__slight
what does an egg say when its turnt omelette __label__slight
zip it __label__slight
daughter is the you thei nternet sacvenger pmslwebcom __label__very_offensive
when it hasnt been your day your weak your month or even your year __label__not_offensive
my mother used to say the way to a mans heart is through his stomach lovely woman useless surgeon __label__slight
michael jackson becomes a white person and no one bats an eye rachel dolezal becomes black and everyone lsoes thier minds tornet __label__not_offensive
finding memo __label__not_offensive
first i was like hodor but then i was all hodor __label__slight
when player 2 picks the same character in a fighting game __label__not_offensive
when you ask where the party at on facebook and your friends and family leave you hangin imgflipcom __label__very_offensive
promises change changes promise memecentercom memetenleri __label__slight
hey romney you mad bro __label__slight
thats not how science works made on imgur __label__not_offensive
hitler when he saw poland __label__slight
climate change definitely a hoax imgflipcom __label__very_offensive
yall still paying me right __label__slight
i can has cheezburger cat memes in 2008 hee2eurgercom when you walking cat memes in 2018 __label__very_offensive
facebook minion meme 40 year old moms memes who cry __label__not_offensive
my condition after extra class facebookcomcompletegate completegatecom __label__slight
you think im gonna eat vegtables made on imgur skeptical baby meme on imgur __label__slight
when you finally drop that toxic girl in your life and you start glowing pmslwebcom the internet scavengers __label__slight
you have entered another dimension trumpmemesnet __label__not_offensive
its okay if you dont like country music not everyone has good taste country rebel __label__slight
them the perfect crossover character doesnt exist me an intellectual big chuniggus __label__slight
why we clapping did buffet just open makeamemeorg __label__very_offensive
make one more scumbag chuck norris meme i dare you motherfuck __label__slight
my girlfriend treats me like a god sheignores me until she needs me for something the internet scavengers ph3lwabcom __label__not_offensive
asim busara asm busara our generation is becoming so busy trying to prove that women can do what men can do that women are losing their uniqueness women werent created to do everything a man can do women were created to do everything a man cant do look lady a man with a brain memecentercom magnabad deltathrillar __label__not_offensive
who else hated this little cock sucking no titties bitch ass girl that tried to kill our nigga nemo __label__slight
when youve given up on love and loves given up on __label__slight
had modi ji come 200 years ago then the english would have been fighting for their independence now i support namo har har modi d __label__slight
i should really start working out oh looknutella memefulcom __label__not_offensive
university today barney stinson himym give five __label__slight
liz buckley liz_buckley follow sometimes i wonder if i spoil the cat seeing him with his ipad in his yurt __label__very_offensive
b_obama memes coolie how you get fired on your day off __label__slight
good job brilliant putin memescom __label__very_offensive
so unlucky i wasnt here i know exactly the countercurse that could have spared her bitch please __label__not_offensive
when you see the gas bill __label__slight
oh theres a new avengers movie tell me again how much you are going to avoid spoilers __label__slight
lookbobi dont care how you get it done i expect to see 12000 rp in my account now make a meme __label__very_offensive
the military trained mea 101 ways to kill a man giroca coffee keeps me from doing that 0 rise grind infidels 9 coffee coffeelover deathbeforedecaf __label__slight
if you take a look at my resume you will see ive been chasing that red dot for about 5 years now __label__not_offensive
who the hell is alarm and why she texting you at 7am every morning ebeentheretho vh1 jealous girlfriends be like __label__slight
if i had a nickel for every year i would have 1 but if i had a nickel for all my dank memes i would be a millionare imgflipcom __label__not_offensive
random dude smile everyone sit like a lady me me __label__slight
give me your lunch money __label__not_offensive
she is the female barney stinson quickmemecom __label__not_offensive
rose be like i nominate jack for the ice bucket challenge __label__slight
that moment when you find out the joker robin went to high school together mother of god youre right crispy __label__very_offensive
this is bill bill has a good camera bill doesnt take useless pictures and call himself a photographer bill is smart be like bill __label__very_offensive
never let your friends feel lonely gapbagapcom disturb them all the time __label__very_offensive
sheldo why smart science make smart why am i alive bandingo __label__slight
that awkward moment when you dont realize youre the third wheel __label__very_offensive
me my toxic girlfriend __label__not_offensive
me at the cinema waiting for infinity war to start me at the cinema after infinity war __label__very_offensive
no i dont need a reason im a cat __label__not_offensive
im confused which cp did you want __label__not_offensive
its not a bug its a feature memegeneratornet __label__very_offensive
ithaca college 98 sports information major hhd historycom quickmemecom __label__slight
racist test do you like him any better white nop meneither see __label__slight
a cat who thinks hes a seal icanhasacheezburgercom __label__not_offensive
guy goes to mexico to kill himself __label__not_offensive
ambrose was having a bad day andhe didnt care who knew it the internet scavengers pmslwobcom __label__slight
old man asks bus driver to stop and let him off bus driver says no can do old man grabs his bag from his seat light a cig and gets kicked off the bus immediately made on imagur __label__very_offensive
girls be like baby be careful its my first time __label__not_offensive
oh hay you know a handsome guy when you see one __label__not_offensive
clean eaters be like i love this diet __label__slight
me has seen every marvel movie before endgame __label__slight
17 craftyconsumer mr bean trying to catch an ultra rare pokemon __label__very_offensive
how it feels when jdotcdoublee youre taking an epic shit drop bombs epicshit matrix morpheus tbt funniest15 seconds created by jdotcdoublee email funniest15secondsyahoocom youtube funniest15seconds __label__slight
well iknow a student from cambridge university he is 45 and has still not grown up imgflipcom __label__slight
inte _right mind picard to sickbay i think im having a stroke captain picard studies early 21st century american politics __label__not_offensive
my toast got burnt this morning thanks obama __label__slight
youre old and everything you own is old quickmemecom __label__very_offensive
yay for talking about this at the gbm i second this request quickmemecom __label__slight
i just realized my life turned out better than yours checkmate bitch __label__slight
put the muggles outside a fence 00 and youve got my vote __label__very_offensive
and i swear __label__not_offensive
whats the difference between hillary and putin putin can win an election rigged in his favor __label__slight
everybody out this is my thread now you shouldve gone to nextlolcom __label__slight
says hes your best friend leaves you in hospital full of zombies and bangs your wife __label__not_offensive
you think obama is the worst president ever really tell me were you in a coma from 2001 until 2009 occupy democrats to __label__slight
i am a racist i hate the human race __label__slight
oh its your birthday come i clap for you memecreatoreu __label__slight
thate alltheminion memes they need to spanish from the earth cthey make me irrationally angry whisper __label__very_offensive
theres 3 things you should know about me 1 my circle is small 2 im loyal to the end 3 never fuck me over __label__slight
i prefer the real aunt may i said the real aunt may perfection __label__slight
friggered making memes about weed on 420 making memes about hitlers birthday on 420 __label__very_offensive
well actually its only mansplanning if its come from ye manplain region of france otherwise its just sparkling misogyny __label__slight
you remember the first few weeks we were looking for magnetic monopoles and not finding anything and you were acting like a giant dictator i thought you said we were gonna be gentle on him opo thats why i added the tator __label__slight
everything works fine what do we even pay you for cerere leeeee careers something isnt workingwhat do we even pay you for __label__slight
nerd conversation party of three memegeneratornet __label__slight
15 min in midnight showing of xmen days of future past memecrunchcom __label__slight
how to prank neda seguro your girlfriend this is the best way to ruin a romantic holiday credit barrybee tv __label__slight
when you see a funny meme and the caption says tag ur friends but you have no friends __label__slight
nice job sears nice job searstitanic sinking meme genrator __label__not_offensive
word documents if you know what i mean quickmemecom __label__slight
vladimir putin __label__slight
[laughs in patriarchal misogyny] memegeneratornet __label__slight
thelikeguys idont cook idont clean idont want kids idont date under 6 feet sometimes i message myex andiprefer rich hotguys 10 years later where are all the good men oh misogyny uncle __label__hateful_offensive
ill build a wall with frickin laser beams memegeneratornet __label__slight
what i told you todays secret word __label__very_offensive
jon i need to go now rajkanwar chopra game of laughs fbcomgameoflaughs dany please stay __label__very_offensive
rowan atkinsons family how we think it is how it actually is __label__slight
liams pudding week journey 1joy 2sass 3cheek 4doubt 5despair 6shock 7 relief 8 hope gbbo the great british bake off __label__not_offensive
teenager hitler __label__slight
if jesus had a girlfriend i just find it funny how you died for 3 days i must look stupid huh poslocom the internet scavengers __label__not_offensive
eat coins all morning shit was so cash modumpcom memegeneratornet __label__very_offensive
do yiu want build a wall frozen trump edition memeshappen __label__not_offensive
yeah if you could put subtitles when they speak dothraki that would be great quickmemecom __label__hateful_offensive
neckbeards in their basement they pushing their sjw agenda in our star wars and ruining it jonathan kasdan what can i say tough titties danklaid __label__very_offensive
dont show me your attitude my blocklist is bigger than your friendlist __label__not_offensive
and the winner and next president of the united states is hold on let me check the card again to be sure memeshappencom __label__slight
utsav ojha _thatutsavojha follow if harry potter was indian 504 am 8 dec 2017 14 retweets 31 likes 14 retweets 31 likes __label__slight
how can i delete facebook without mark zuckerberg stopping me google search im feeling mark zuckerbergts to know your location allow imgflipcom __label__not_offensive
what if i told you i know whats bad about my country and i dont really care what you say besides i know that you hate some things about the country you live in too memefulcom __label__slight
no time to explain memecentercom get in front of the car __label__not_offensive
can get any girl he wants chooses miley cyrus quickmemecom __label__slight
when a nigga tries to talk on intellectual things imgflipcom happywishesnet __label__slight
friday night monday morning __label__not_offensive
wa dont play me play lotto youve got a better chance at winning there __label__slight
no new baby godfather memes dies memegeneratornet __label__not_offensive
me mature ha i still laugh at starving african children minion meme __label__very_offensive
you have never seen titanic r u srs quickmemecom __label__slight
jim carrey says give up guns for the children proudly hosted on photobucket puts amask on and fires full auto gun in kids movie atthefucho __label__not_offensive
trump how does it feel to be in charge im not very good at it but it doesnt matter __label__very_offensive
hey bro are you gonna eat thatjacket quickmemecom __label__very_offensive
we dontlike your illegal occupation of crimea we dont like your illegal occupation of hawai i imgpcom __label__not_offensive
supposed to be protecting us from isis __label__not_offensive
when boys love animals rennebrog 15 for my __label__very_offensive
blatantly false easily disprovable meme with a hint of misogyny come on dude memegeneratornet __label__slight
i dont always upgrade to the latest windows software but when i do its cause i forgot to shut down my pc imgfilpcom __label__not_offensive
ladies and gentlemen tonight and tonight only we present to you a man who is now pure imaginationmr gene wilder __label__not_offensive
it you strike me down i shall hai become more fabulous than you can possibly imagine __label__not_offensive
language really ig blerdvision did we just become best friends later __label__very_offensive
theinnkeeperlibrarian leepacey a restaurant in my hometown got a review that said the servers should show some skin so the owner added a potato skin special to the menu and all the proceeds from the special go to the west virginia foundation for rape information services x thats exactly the appropriate response 3cheers12years source leepacey 738 __label__not_offensive
dancing on the ceiling imgflipcom third world success kid meme imgflip __label__very_offensive
when someone says i wont be able to eat all those wings things are only impossible until they are not jeanluc picard lotw_wingking __label__slight
two legends made us laugh without speaking a single word mr bean charlie chaplin __label__not_offensive
a real boyfriend is always scared to lose his girlfriend __label__slight
porn is sexist it portrays women as sex objects memegeneratornet __label__slight
forrest edwards slap pals questions slap subscribe subscribed 347 videos thrasher kateboarom quam azine this nigga look like a hood me bean funkera3131 16 hours ago 1080 boy deadasssss __label__not_offensive
you wake up as the joker facebookofficialmvdc whats the first thing you do andy __label__not_offensive
you see that island over there i want to eat it joyreactorcom __label__very_offensive
1 eww spiderman meme with impact font disgusting memegeneratornet mahe a spiderman teme with spiderman font araneaesapien __label__not_offensive
lockup the chickens and fuck the king im back __label__not_offensive
when you forget what you wanted so you go back to the room you were in like friendss_ __label__very_offensive
look at all these countries i used to own __label__slight
brian lynch brianlynch follow marvel infinity war is the most ambitious crossover event in history me gif __label__very_offensive
tell the count if i see him on sesame street again his days are numbered memecentercom memecenter __label__very_offensive
this is bill bill bought a new hat bill used apple pay and didnt hold up the line bill is a trendsetter be like bill __label__not_offensive
the rock what if i told you you can like marvel and dc at the same time __label__not_offensive
scatteredquotescom wheres chandler he needed some time to grieve im free im free __label__slight
i have an army we have a hulk we have steve jobs __label__very_offensive
chuck norris oh you mean my bitch that was a funny one by vinci480 memecentercom memecenter __label__slight
drunk in love drunk just drunk __label__very_offensive
only barney stinson can impress mckayla __label__slight
a muslim farmer of uttar pradesh give 4 acres of land for modi rally back benchers says he is a big fan of modi because he is an honest leader and fights against corruption __label__very_offensive
thats the face of a man who just heard that aliens are real 911 was staged and the secret service were ordered to kill jfk __label__slight
opens a jeanluc picard meme doesnt ask a question about a meme i havent seen yet quickmemecom __label__slight
a drug dealer never consumes __label__not_offensive
my name is deadpool fbcomsuperheromemes you ate my chimichanga prepare to die hahahaha greatmwb __label__slight
12yo i love him so much i already know that he is the love of my life __label__not_offensive
texts you 247 says im so lucky to have a friend like you __label__not_offensive
goes to mcdonalds orders unhappy meal grupy cat __label__slight
my beautiful girlfriend memescom __label__not_offensive
i want a cheese sammich imgflipcom __label__not_offensive
when people add you to a groupchat and talk for hours nba1 __label__slight
fact 1406 superhero_fix including the extended cut the joker has 12 minutes of screen time and only 50 lines of dialogue in suicide squad __label__slight
president obama just posed for the tm doing greatpic mous force b_obamamemes youd petty post after a breakup __label__not_offensive
people say you cant live without love i think oxygen is more important funny quotes on kul fotocom __label__not_offensive
fuck you wall you dont tell me where to go roalbot __label__slight
i just want someone who looks at me the same way bill clinton looks at women who arent his wife __label__slight
when it was time to watch a movie in school __label__not_offensive
what if isold you propane __label__slight
when your hair on point but you got no one to look good for __label__slight
how to offend 4 groups of geeks in one picture use the force harry gandalf __label__very_offensive
ladies and gentlemen time to suit up tereyeneratornet __label__not_offensive
why do you wear pink camo are you going to hunt flamingos __label__not_offensive
90 there will never be a wiser king than you thats how you get your daddy to buy you a gift __label__hateful_offensive
why are you always tired you just sit there and watch me all day i do all the playing funnymemecom __label__slight
youre a wizard harry __label__very_offensive
when you and your friends are playing minecraft and they all want to play fortnite where have all the men gone __label__not_offensive
i promise im not going to say anything too savage one drink later dank __label__not_offensive
i learned to count to potato memecentercom mame center __label__not_offensive
magneto hes my dad what well he and mom did it raven youre my mom youve gotta be fcking kidding me __label__slight
when you make a good sexist joke but theres a feminist near __label__very_offensive
its weird that cam newton would make sexist comments towards women nfl_memes bankolar because he clearly doesnt mind dressing like them the craziest thing about this whole situation is that he didnt dive for that football in the super bowl __label__not_offensive
xfiles is the best documentary makeamemeorg __label__slight
too bad you cant clone me for your wall since none of you can get over me imgflipcom __label__slight
liammc_01 if ur arguing with a girl an u think its just between u n her then ur obviously unaware of the demon squad groupchat bc its 16 against 1 the group chat is the modern day burn book mybestiesays __label__not_offensive
if the titanic really hit an iceberg why werent any iceberg pieces found among the wreckage __label__not_offensive
nan __label__slight
next time you take my nose __label__not_offensive
let the games begin memegeneratornet let the games begin joker meme generator __label__slight
when youre trying to enjoy a night out but then you remember the threat of the white walkers beyond the wall __label__not_offensive
liam _liamsweeney isnt it weird that we have one hand that knows how to do everything and then one hand that just sits there like idk how to hold a pencil he speaks the truth __label__not_offensive
use puns on facebook and no one bats an eye use harry potter and everyone freaks out quickmemecom __label__slight
oh god why did i order the vindaloo curry marvelcom __label__slight
im betting the joker told you to kill me as soon as we loaded the cash g villain no no no no i kill the bus driver is the dark knight your favourite film __label__slight
female should get more right but with more responsibility __label__not_offensive
true fact 1219 marveltruefacts legion has been confirmed to be inits own universe it will not be connected to the xmen film franchise what do you think legion xmen gl __label__not_offensive
nov 11 2016 trump the wan show merchcom __label__not_offensive
barber whatchu want i want everybody to know that im offended by everything barber say no more this is what a feminist looks like __label__slight
i may like this royal baby made on imagur __label__slight
who wore it better __label__not_offensive
ha my kids dont get to use technology at home but yours do imgflipcom __label__not_offensive
how was the moon created by chuck norris hitting a golf ball __label__hateful_offensive
bitch please im harry specter quickmemecom __label__not_offensive
when your gf become your wife kamavena __label__very_offensive
no one will ever screw up worse than me hold my beer __label__not_offensive
mark zuckerberg swearing under oath before senate committee over data scandal 2018 colorized __label__not_offensive
when he goes out looking good this ones mine __label__not_offensive
infinity million dollars __label__very_offensive
no china on patio that seems racist __label__not_offensive
this is bill bill likes football bill doesnt argue about whos better between ronaldo and messi he just think hes lucky to seem them play in his era bill is smart be like bill memescom __label__slight
i smell weed memegeneratornet __label__very_offensive
trw you think out a meme but the meme has already become irrelevant over the night make reaction gifs at memecentercom __label__not_offensive
uh oh somebody has some daddy issues quickmemecom __label__not_offensive
cr7 the god of football sent me to be the best messi messi i dont remember sending trendingnutscom __label__slight
im not gonna lie kid there was never any candy __label__slight
oh wait i forgot to say 911 pundit kitchencom __label__very_offensive
what is your fav cartoon doraemon shinchan and yours rahul gandhi credit smile please __label__slight
wait whatmade in chinaifunnyco __label__slight
pardon me young lady memecentercom did you just misgender me you misogynist fuck __label__very_offensive
barney stinson salutes your awesomeness __label__not_offensive
youre telling me i spent nine months in where diylolcom __label__not_offensive
when that country girl funkye dhaco shook it for me __label__very_offensive
furry vape oranforest the conclusion weve all been waiting for __label__slight
i dont want a prince on a white horse i want a big floppy donkey cock __label__very_offensive
a real girlfriend acts like your mom saim fbcomfeelmyheartpain your best friend and your girl friend __label__not_offensive
when your friends are roasting you for having a low alcohol tolerance but you remember that they gotta pay more to get as drunk as you __label__not_offensive
hillary does nothave time for your shit quickmemecom __label__very_offensive
hey girl you can use my shoulder as a rifle stand as youre the better shot of the two of us __label__not_offensive
when you show your date your extensive meme collection its so fucking big __label__not_offensive
do you see this do you see it its called a staight up boss __label__slight
i refuse to answer that on the grounds of i dont want to imgflipcom __label__not_offensive
daddy whats the future it is a place of advanced technology and entertainment and violence __label__slight
i dont like those awkward seal memes na i just dont think any of them are funny __label__slight
this is tdog he wears a flat bill snapback and a wallet chain he says things like hoes be trippin and yo this party fire tdog just signed a record deal to be a country singer tdogs fans are idiots dont be like tdogs fans farcethemusiccom __label__slight
it is a beautiful thing uncensored is even the resist meme net __label__not_offensive
buy any 2 pins get 1 random pin free __label__very_offensive
you have your mothers eyes __label__slight
soon gingers will rule quickmemecom __label__not_offensive
locked yourself out of your car ran out of condoms ive got an arrow for that ive got an arrow for that out of arrows ive got an arrow for that dontown a can opener reed to toast some bread but dont have a toaster tve got an arrow for that ive got an arrow for that __label__not_offensive
so wait i came from your what __label__slight
admit it gerald was your favorite part of finding dory makeamemeorg __label__very_offensive
99 problems but jobs aint one ap __label__slight
has anyone seen gary gary is about this tall quickmemecom __label__slight
does it work nope its broken but dont break it __label__slight
tamizhisai nominated modi for this prestigious award check reason __label__not_offensive
rtodayilearned uthecheckeredflick 10h til that in 2015 two men sold a fake goya painting for 15 million only to find out all the money paid was counterfeit __label__not_offensive
this is mary mary hates that women cannot get the education that men can mary becomes an activist for womens rights mary is a feminst be like mary __label__very_offensive
harvey specter __label__very_offensive
my girlfriend told me that if i bought her one more stupid gift then she would burn it so i bought her a candle modern problems require modern solutions __label__slight
most of my unit didnt make it i was cut off i lay in a ditch covered in someone elses snapchat dog filter as meme whizzled overhead big red you think the meme war is a joke budy __label__slight
beliefs getting downvoted refuse to delete quickmemecom __label__slight
jealous girlfriend i wouldnt know anything about this __label__not_offensive
when you and the squad all break the seal at the same time brosbeing basic omg twinsies shirtspic by kennyflowers_ __label__slight
breaking news common sense is now an endangered species stupidity has taken over the world and unfortunately there is no known cure __label__not_offensive
shut up german hillary before i slap your canadian girlfriend __label__very_offensive
i think the most important one is the sumerian language why would they include sumerian on that record aliens h hd historycom imgflipcom __label__very_offensive
the number of people who refuse to google their question is too damn high made on impur __label__not_offensive
is there an allfemale avengers movie in the works a force sounds great but who would they fight each other probably __label__slight
i was four seasons on a show called doogie houser md __label__slight
crimea river __label__not_offensive
gure cutz cure contraception leads to more babies born out of wedlock the exact same way that fire extinguishers cause fires __label__not_offensive
one does not address privacy concerns by simply putting privacy in comic sans in a heading __label__not_offensive
when you go and check the fridge and theres no food left __label__slight
what if i told you bo morpheus was cowboy curtis __label__slight
lightskin niggas be like caught me off guard __label__not_offensive
they said i fight like a girl i took that as a compliment __label__hateful_offensive
well they all kinda look the same 2 cindy poluta cindy poluta y follow steve harvey right now missuniverse 2015 237 pm 21 dec 2015 6 47 433 603 __label__not_offensive
i wish jew a happy brithday imgflipcom __label__slight
we are in the endgame now ah he said it he said the name of the movie __label__not_offensive
what if hitler was actually the second coming of jesus and people did not realize hitler has many of the same ideals as god quickmemecom __label__slight
finally some good news television the big bang theory will end after 12 seasons __label__very_offensive
wait a second billa am i skeptical baby grown up funnyismcom xd __label__slight
unbelievable why is your family scottish why is your family ross __label__not_offensive
mom gets son first pet __label__slight
obama dont discuss titanic with joe dicaprio why obama hes still upset he thinks you couldve fit on that door and i dont disagree __label__not_offensive
what we think he drives __label__very_offensive
liam neeson walks into a doctors office what seems to be the problem the doctor asks ive got full blown aids quickmeme com __label__not_offensive
good luck hillary dont blow it memescom __label__not_offensive
dont use that weird spongebob mocking meme me don t use that weld spongebob mocking meme __label__very_offensive
so you mean to tell me minesweeper is a game in your country megeneratornet __label__not_offensive
when your dog has something in its mouth that isnt food show me what you got __label__not_offensive
them dirty ass kids can whip neanea but cant read a fuckn drsuess book at 10 years old imgflipcom __label__very_offensive
just throw your hands up in the air and party hard like you just don mensrafein share funny pictures __label__slight
the number of racist memes is too damn high memeshappen __label__very_offensive
this is bill bill hates winter just as much as you do but he keeps his mouth shut about it and wears warm clothes bill is smart be like bill __label__not_offensive
have dream where i kill some dude and haphazardly get rid of the body wake up and realise im not a murderer in adviceanimal scumbag brain and satisfied seal make strange bedfellows __label__slight
one problem with hiring women is that theyre frail and breakable is it possible youre thinking about lightbulbs or your hip __label__slight
i dont know why people are so hard on you tom nfl_memes brady 12 its not like you killed somebody sportsmemes __label__very_offensive
rahul gandhi after his speech you cannot be serious people after rahul gandhis speech __label__not_offensive
if you tag a post nsfw and its not nsfw i willfind you and i will kill you quickmemecom __label__not_offensive
mark zuckerberg i asked only that you sell me your information and obediently follow my word zuckerbergmemes __label__slight
dont forget you are what you eat i need to eat a skinny person __label__very_offensive
and the superbowl winners are the buffalo bills memeshappencom __label__very_offensive
when ur friend makes a mean joke you love it cuz ur also evil __label__not_offensive
what you think you look like flirting with your crush what you actually look like __label__very_offensive