-
Notifications
You must be signed in to change notification settings - Fork 26
/
imoji.html
1118 lines (1118 loc) · 306 KB
/
imoji.html
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
<style> body * { margin: 0; padding: 0; display: inline-block; } li { display: block; } .friends { width: 300px; } </style>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220563-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>suhoor</li><li>ramadan</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220310-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>iftar*</li><li>ramadan</li><li>iftar</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220143-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ramadan mubarak</li><li>ramadan</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10130778-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ramadan</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220620-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>first nations</li><li>aboriginal history month</li><li>medicine wheel</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9886288-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bed</li><li>hitting the hay*</li><li>sleep</li><li>good night</li><li>hittin the hay*</li><li>night</li><li>goodnight</li><li>hittin the hay</li><li>going to bed</li><li>bedtime</li><li>going to sleep</li><li>hitting the hay</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212768-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bed</li><li>sleep</li><li>good night</li><li>mobile</li><li>bed time*</li><li>goodnight</li><li>bed time</li><li>bedtime</li><li>bedtime*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218154-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>stretch</li><li>bye*</li><li>forcedoutfit*</li><li>gnight</li><li>good night*</li><li>night</li><li>yawn</li><li>goodnight*</li><li>goodnight</li><li>good night!*</li><li>good night!</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214887-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sleep</li><li>good night</li><li>sleeping*</li><li>goodnight</li><li>asleep</li><li>sleep*</li><li>sleeping</li><li>asleep*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9047686-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>bye*</li><li>sleep tight</li><li>sleep tight*</li><li>night</li><li>counting sheep</li><li>lamb</li><li>goodnight</li><li>animals</li><li>fence</li><li>sheep</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216847-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>nitey nite</li><li>tonight show</li><li>talk show</li><li>that's all folks</li><li>night</li><li>goodnight</li><li>talk show host</li><li>late night</li><li>nite</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9483720-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>blow a kiss</li><li>luv ya</li><li>good night kiss*</li><li>blowing a kiss</li><li>good night kiss</li><li>bye</li><li>good night</li><li>goodnight kiss</li><li>moon</li><li>goodnight kiss*</li><li>goodnight*</li><li>goodnight</li><li>night time</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212285-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>recliner</li><li>good night</li><li>watching tv</li><li>watching tv*</li><li>goodnight</li><li>asleep</li><li>zzz</li><li>lazyboy</li><li>sleeping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216447-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>bye*</li><li>forcedoutfit*</li><li>gnight</li><li>resting</li><li>night</li><li>goodnight</li><li>nap</li><li>sleepy</li><li>bedtime</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219680-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hi*</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9942135-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>holla*</li><li>manhole</li><li>sewer</li><li>holla</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10205843-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>howday*</li><li>duck</li><li>howday</li><li>pompadour</li><li>mallard</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7997640-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>whatcha doin?*</li><li>wyd</li><li>what are you doing</li><li>what r u doin'?</li><li>what r u doing?</li><li>whatcha doin?</li><li>hi*</li><li>hidebody*</li><li>what you doing</li><li>how are you?</li><li>whatcha doin'?*</li><li>whatcha doin'?</li><li>whatcha doing?</li><li>how r u</li><li>whatcha doin'*</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214723-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how you</li><li>how you*</li><li>how are you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10185425-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how's it goin'?*</li><li>hows it goin*</li><li>how's it goin'*</li><li>how's it goin'?</li><li>how's it goin*</li><li>hi*</li><li>how r u</li><li>hello</li><li>hows it goin?</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946988-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>speech bubble</li><li>meet up</li><li>quick replies*</li><li>where are you</li><li>hello?</li><li>sms</li><li>you there*</li><li>are you there</li><li>hidebody*</li><li>u there*</li><li>u there</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988986-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hello sunshine</li><li>sunshine</li><li>good morning</li><li>hi*</li><li>weather</li><li>hello</li><li>sunny</li><li>hello sunshine*</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215118-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey you</li><li>hi you</li><li>hi</li><li>hi*</li><li>hi you*</li><li>hello</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945361-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>how was your day</li><li>hows it going</li><li>hows your day</li><li>hows your day*</li><li>how are you</li><li>hru</li><li>whats up</li><li>sup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218973-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what's up</li><li>sup*</li><li>whats up</li><li>sup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7973988-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>'sup?</li><li>sup?</li><li>'sup?*</li><li>sup*</li><li>wassup?</li><li>how are you?</li><li>sup</li><li>whassup?</li><li>sup?*</li><li>what's up?</li><li>'sup</li><li>'sup*</li><li>how r u</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8418531-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>peace sign</li><li>foam finger</li><li>peace</li><li>peace*</li><li>hello</li><li>peace sign*</li><li>foam hand</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216188-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>sincerely</li><li>photo frame</li><li>picture frame</li><li>love from me</li><li>love me</li><li>love*</li><li>sincerely me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945914-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>brb</li><li>cya soon</li><li>brb*</li><li>be right back</li><li>back soon</li><li>see you soon</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134094-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>i'm here</li><li>i'm here*</li><li>this is where i am</li><li>where are you</li><li>im here*</li><li>i am here</li><li>travel</li><li>map</li><li>im here</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991252-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>on my way</li><li>fast</li><li>carpet</li><li>see you there*</li><li>see you there</li><li>flying carpet</li><li>bye</li><li>cya there</li><li>magic carpet</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212995-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what do you want</li><li>can i help you*</li><li>can i help you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187800-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fat albert</li><li>hay</li><li>hey hey hey*</li><li>hi</li><li>hello</li><li>hey</li><li>hey hey hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214353-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>haiii</li><li>haiii*</li><li>hello</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10161328-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>blinds</li><li>hi</li><li>shy</li><li>hidebody*</li><li>eyes</li><li>watching</li><li>peek</li><li>funny*</li><li>voyeur</li><li>weirdo</li><li>peeping</li><li>hello</li><li>window</li><li>creepy</li><li>creeper</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941609-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fixmoji</li><li>hi</li><li>hello*</li><li>prbitmoji</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8398528-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>foam finger</li><li>hello</li><li>poking</li><li>foam hand</li><li>poke</li><li>poke!*</li><li>poke*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8479512-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>whatcha thinkin bout</li><li>d24</li><li>how r u</li><li>hello</li><li>whatcha thinkin'*</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216527-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how's it going</li><li>hi</li><li>hey buddy how's it going?</li><li>hows it going</li><li>hey buddy hows it going*</li><li>hey buddy</li><li>hey buddy how's it going?*</li><li>how are you?</li><li>sup</li><li>mailbox</li><li>hey buddy hows it going</li><li>hello</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8398397-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>l8r</li><li>cya</li><li>see ya</li><li>bye</li><li>driving</li><li>fast</li><li>later</li><li>car</li><li>l8r*</li><li>see ya later</li><li>see you</li><li>cya l8r</li><li>drive</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8039876-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>c you</li><li>cya*</li><li>see you</li><li>see you later</li><li>c ya</li><li>cya</li><li>cya later</li><li>see ya</li><li>bye</li><li>cya!*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216710-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>leave</li><li>run away</li><li>weekend</li><li>leaving</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975410-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>purrfect*</li><li>ideal</li><li>perfect</li><li>purfect</li><li>good</li><li>purrfect</li><li>yay</li><li>awesome</li><li>cats</li><li>kitten</li><li>perfect*</li><li>cat</li><li>yarn</li><li>perf</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219859-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ship it</li><li>send</li><li>ship it*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8398479-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i'm down*</li><li>let's go</li><li>i'm down</li><li>yep</li><li>yup</li><li>yes*</li><li>down</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211506-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>youre mean</li><li>how rude</li><li>insulted</li><li>youre mean*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213817-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sigh</li><li>sigh*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8737243-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stressed out</li><li>stress</li><li>tired*</li><li>so tired*</li><li>worn out</li><li>drained</li><li>exhausted</li><li>tired</li><li>so tired</li><li>stressed</li><li>stressful</li><li>waaah*</li><li>sleepy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214872-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>why me</li><li>why me*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212032-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>waaah</li><li>crying</li><li>sad</li><li>sadness</li><li>single tear</li><li>cry</li><li>hidebody*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217874-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how could this happen</li><li>this is not happening</li><li>what is going on</li><li>this is not happening*</li><li>what is happening</li><li>is this happening</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219131-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hi*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7974012-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hello</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10019034-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>bee</li><li>sup honey</li><li>hey honey</li><li>bee costume</li><li>hi honey</li><li>bee suit</li><li>hello honey</li><li>honey</li><li>hi honey*</li><li>hello</li><li>costume</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211671-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you there</li><li>where are you</li><li>hello</li><li>helloooo</li><li>helloooo*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219223-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>old chap</li><li>british english</li><li>goodbye</li><li>jeeves</li><li>bowler hat</li><li>cheerio</li><li>cheerio*</li><li>bye</li><li>farewell</li><li>pip pip</li><li>ta ta</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7897745-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey you</li><li>hey u</li><li>hey you*</li><li>hello</li><li>heyy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220063-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>birthday</li><li>happy bday*</li><li>happy bday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214354-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>birthday</li><li>happy bday</li><li>birthdays</li><li>happy birthday</li><li>hbd</li><li>birthday hugs*</li><li>birthday hugs</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8363891-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy bday*</li><li>happy bday</li><li>birthdays</li><li>happy birthday</li><li>birthday card</li><li>cupcake</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219246-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love u</li><li>luv u</li><li>love you*</li><li>blowing bubbles</li><li>love ya</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990793-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>moon</li><li>to the moon*</li><li>i love you</li><li>i love you*</li><li>2 the moon*</li><li>rocket</li><li>luv ya*</li><li>luv u*</li><li>2 the moon and back*</li><li>outer space</li><li>luv u to the moon*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10139105-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i love ya</li><li>i love u*</li><li>i love you</li><li>l luv you</li><li>i luv ya</li><li>i luv u</li><li>luv ya</li><li>luv u</li><li>luv you</li><li>i love u</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8767250-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbo</li><li>jon snow</li><li>you know nothing</li><li>game of thrones</li><li>you know nothing*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988554-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>khaleesi</li><li>hbo</li><li>dracarys*</li><li>dracarys</li><li>game of thrones</li><li>daenerys targaryen</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990591-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbo</li><li>winter is coming*</li><li>snow:weather</li><li>weather</li><li>freezing:temperature</li><li>game of thrones</li><li>winter is coming</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8768557-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbo</li><li>valar morghulis*</li><li>hello</li><li>valar morghulis</li><li>game of thrones</li><li>arya stark</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8770998-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbo</li><li>joffrey baratheon</li><li>game of thrones</li><li>go me</li><li>i am the king</li><li>i am the king*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211629-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>booo</li><li>hbo</li><li>cersei lannister</li><li>you win or you die*</li><li>sass</li><li>game of thrones</li><li>you win or you die</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220683-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>music</li><li>jazz</li><li>saxophone blues</li><li>saxophone</li><li>instrument</li><li>blues</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220695-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dancing</li><li>keyboard</li><li>music</li><li>keyboard dance</li><li>party time</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220544-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bacon bff</li><li>bacon</li><li>i love bacon</li><li>best buds</li><li>friends</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220676-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>wamp wamp</li><li>womp womp</li><li>womp womp tuba*</li><li>tuba</li><li>playing tuba</li><li>womp womp tuba</li><li>wamp wamp tuba</li><li>womp womp*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220506-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>tea</li><li>teacup</li><li>cup of tea</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220686-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eighties</li><li>music</li><li>gig</li><li>rad</li><li>rockin it</li><li>jamming</li><li>rad keytar*</li><li>80s</li><li>90s</li><li>rad keytar</li><li>nineties</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220510-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>drinking</li><li>funnel</li><li>beer bong</li><li>drink</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220678-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>break guitar</li><li>fml</li><li>smash</li><li>guitar smash</li><li>guitar</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220690-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ice cream</li><li>eating crying</li><li>crying eating</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220507-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yum</li><li>yummy</li><li>mmmm</li><li>mmmm*</li><li>tasty</li><li>delicious</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211672-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>okay</li><li>sad okay</li><li>oh well</li><li>thats okay</li><li>okay*</li><li>thats ok</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212286-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>vice</li><li>vise</li><li>head in a vice*</li><li>head in a vise*</li><li>vice*</li><li>vise*</li><li>head in a vice</li><li>head in a vise</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220060-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>comedian</li><li>bad joke</li><li>is this thing on?*</li><li>mic</li><li>testing</li><li>is thing on?</li><li>microphone</li><li>standup comedian</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218313-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>youre dope</li><li>its dope</li><li>that is dope</li><li>thats dope</li><li>this is dope</li><li>you are dope</li><li>dope</li><li>dope*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213084-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>woohoo</li><li>wahoo</li><li>woohoo*</li><li>yahoo</li><li>hooray</li><li>hurray</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945807-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay*</li><li>cant wait</li><li>skateboard</li><li>stoked*</li><li>stoked</li><li>can't wait</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8786661-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>on my way</li><li>fast</li><li>late</li><li>on my way!</li><li>almost there</li><li>omw</li><li>on my way!*</li><li>be there soon</li><li>travel</li><li>on my way*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187809-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>caffeine</li><li>lets get coffee</li><li>coffee</li><li>want to get coffee</li><li>breakfast</li><li>want a coffee</li><li>coffee*</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219387-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>let's go</li><li>meet up</li><li>wanna hang</li><li>forcedoutfit*</li><li>let's hang out</li><li>resting</li><li>wanna hang*</li><li>beach</li><li>want to hang out?</li><li>let's chill</li><li>wanna hang?*</li><li>wanna hang?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188020-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ill drive</li><li>need a ride*</li><li>driving</li><li>meet up</li><li>car</li><li>need a ride?</li><li>need a ride</li><li>need a ride?*</li><li>drive</li><li>travel</li><li>bling</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7974009-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>let's go</li><li>race</li><li>you ready</li><li>ready?*</li><li>are ya ready?</li><li>are you ready?</li><li>go kart</li><li>ya ready</li><li>meet up</li><li>fast</li><li>reddy</li><li>ready</li><li>are you ready</li><li>ready?</li><li>are ya ready</li><li>ready set go</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10133267-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>fast</li><li>late</li><li>i'm behind</li><li>running late!</li><li>running behind</li><li>hurry</li><li>running late</li><li>running late!*</li><li>running late*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9947051-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>bye*</li><li>see you soon*</li><li>cya soon</li><li>see you</li><li>see you soon</li><li>cya</li><li>see ya soon</li><li>see ya</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220190-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cuddle</li><li>purrr purrr purrr</li><li>purr purr purr</li><li>kitty cuddle</li><li>purrr</li><li>pet kitten</li><li>petting kitten</li><li>pet kitty</li><li>petting cat</li><li>purr purr purr*</li><li>pet cat</li><li>cuddling cat</li><li>petting kitty</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8770505-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>blowing kisses</li><li>herz</li><li>blow kiss</li><li>luv ya</li><li>sexy time</li><li>blowing a kiss</li><li>heart</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187885-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hugs and kisses*</li><li>hugs n kisses</li><li>hugs and kisses</li><li>affection</li><li>hearts</li><li>hugs</li><li>kisses</li><li>luv ya*</li><li>hugs n kisses*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219593-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>prom</li><li>promposal</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7834193-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you're the best</li><li>youre awesome</li><li>thanks*</li><li>you're awesome</li><li>you rock</li><li>go you</li><li>you rock*</li><li>youre the best</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9188364-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>we rock</li><li>amazing</li><li>go team</li><li>yay*</li><li>flag</li><li>team awesome*</li><li>teamwork</li><li>team awesome</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8255210-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>my saviour</li><li>thanks*</li><li>you rock</li><li>go you</li><li>hero</li><li>my hero*</li><li>my hero</li><li>thank you</li><li>you rock*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946208-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>proud</li><li>respect*</li><li>you rock</li><li>team</li><li>fist bump</li><li>you rock*</li><li>respect</li><li>props</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990876-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>proud</li><li>youre the real mvp*</li><li>sports</li><li>mvp</li><li>you rock</li><li>team</li><li>thank you</li><li>youre the real mvp</li><li>you rock*</li><li>thanks</li><li>you the real mvp</li><li>basketball</li><li>thanks*</li><li>you da real mvp</li><li>you da real mvp*</li><li>you the real mvp*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10120160-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>clapping</li><li>thanks</li><li>clap clap clap</li><li>clap clap clap*</li><li>clap</li><li>clap*</li><li>applause</li><li>applaud</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990793-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>moon</li><li>to the moon*</li><li>i love you</li><li>i love you*</li><li>2 the moon*</li><li>rocket</li><li>luv ya*</li><li>luv u*</li><li>2 the moon and back*</li><li>outer space</li><li>luv u to the moon*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219680-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hi*</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954459-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>lol*</li><li>hahaha</li><li>lol</li><li>laughing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219592-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>darn</li><li>dang</li><li>darn*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219673-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no</li><li>nah</li><li>nope</li><li>no*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212728-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no</li><li>nah</li><li>nope</li><li>nope*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9950138-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>against the rules</li><li>overruled</li><li>vetoed</li><li>not allowed</li><li>gavel</li><li>overruled*</li><li>judge</li><li>veto</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940891-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>saturday</li><li>cats</li><li>happy caturday*</li><li>weekend</li><li>caturday*</li><li>kitties</li><li>happy caturday</li><li>animals</li><li>kittens</li><li>saturday:date</li><li>happy saturday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211959-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>saturday</li><li>city</li><li>neon</li><li>nightlife</li><li>saturday night</li><li>night out</li><li>saturday night*</li><li>skyline</li><li>saturday:date</li><li>out on the town</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117641-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>have a good weekend</li><li>saturday</li><li>weekend</li><li>shade</li><li>tree</li><li>happy saturday*</li><li>saturday:date</li><li>summer</li><li>happy saturday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941670-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>book of mormon</li><li>best friend</li><li>best friends</li><li>bestfriends</li><li>youre my</li><li>friend</li><li>youre my*</li><li>best friend*</li><li>friends</li><li>bestfriend</li><li>bestfriend*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9743319-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>turn it off*</li><li>book of mormon</li><li>shh</li><li>shhhhh</li><li>sshhhh</li><li>be quiet</li><li>lightswitch</li><li>ssh</li><li>light switch</li><li>shut up</li><li>turn it off</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9742928-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>book of mormon</li><li>fml</li><li>hasa diga eebowai</li><li>hasa diga eebowai*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9742934-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>book of mormon</li><li>jesus</li><li>i believe*</li><li>church</li><li>faith</li><li>i believe</li><li>god</li><li>religion</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9742942-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>book of mormon</li><li>text messaging</li><li>did you get my text</li><li>did you get my text*</li><li>sms</li><li>are you there</li><li>typewriter</li><li>text message</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9742945-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>book of mormon</li><li>hi</li><li>hello*</li><li>front door</li><li>doorbell</li><li>hello</li><li>knock knock</li><li>hey</li><li>ding dong</li><li>sup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212734-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>thanks*</li><li>thank you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7897753-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>plaque</li><li>proud</li><li>you rock</li><li>go you</li><li>best</li><li>team</li><li>you rock*</li><li>youre the best*</li><li>youre the best</li><li>you're the best</li><li>thanks*</li><li>your the best</li><li>trophy</li><li>you are the best</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941638-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thank you*</li><li>thanks*</li><li>thank you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945144-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>on floor</li><li>thanks</li><li>thank you*</li><li>thanks*</li><li>thx</li><li>kissing a shoe</li><li>thnx</li><li>shoe kiss</li><li>kissing shoe</li><li>on the floor</li><li>thank you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954386-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>many thanks</li><li>thanks</li><li>thanks*</li><li>thank you</li><li>many thanks*</li><li>thank you card</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9998023-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>thanx</li><li>aww thanks*</li><li>aww thanks</li><li>luv ya</li><li>thank you</li><li>thanks so much</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7548803-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>miss ya</li><li>i miss u</li><li>luv ya</li><li>miss you</li><li>miss ya*</li><li>i miss you</li><li>miss*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940596-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thinking about you</li><li>youre on my mind</li><li>thinking of you</li><li>luv ya</li><li>miss you</li><li>got you on my mind</li><li>got you on my mind*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10189582-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>luv ya*</li><li>see you soon</li><li>miss you</li><li>travel</li><li>cant wait to see you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10099511-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ba dum tsss*</li><li>ba dum tsss</li><li>ha ha</li><li>har har</li><li>drums</li><li>badumtsss*</li><li>badumtsss</li><li>drummer</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10019031-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>buzz off</li><li>bee suit</li><li>buzz off*</li><li>bee</li><li>eff off</li><li>jerk</li><li>get outta here</li><li>go away</li><li>bee costume</li><li>piss off</li><li>costume</li><li>get out of here</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215989-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>buzz off</li><li>buzz off*</li><li>middle finger</li><li>unicorn f u</li><li>unicorn middle finge</li><li>unicorn</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10039954-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>judgement</li><li>judgment</li><li>judging you</li><li>judging</li><li>you suck</li><li>youre the worst</li><li>im judging you</li><li>im judging</li><li>judgmental</li><li>you stink</li><li>judgemental</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9886128-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>too bad</li><li>oh well</li><li>thats okay</li><li>it is what it is*</li><li>no worries</li><li>it is what it is</li><li>thats ok</li><li>you stink</li><li>whatever</li><li>that sucks</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10099542-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dead to me</li><li>cross stitch</li><li>dead to me*</li><li>i hate you</li><li>youre dead to me</li><li>youre dead to me*</li><li>embroidery</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8942754-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>over</li><li>dropping phone</li><li>phone</li><li>were done*</li><li>goodbye</li><li>ugh</li><li>annoyed</li><li>were done</li><li>loser</li><li>conversation over</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218198-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>petty af</li><li>petty af*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211763-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>fired*</li><li>you're fired*</li><li>youre fired*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954459-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>lol*</li><li>hahaha</li><li>lol</li><li>laughing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10022003-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>hahaha</li><li>donkey</li><li>lol</li><li>animals</li><li>lmao</li><li>laugh my ass off</li><li>lmao*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9913122-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>laughing crying</li><li>tears</li><li>dying</li><li>hahaha</li><li>lol</li><li>crying laughing</li><li>dying laughing</li><li>screaming</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212134-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ha*</li><li>haha</li><li>lol</li><li>ha</li><li>laugh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7724190-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>ha ha ha*</li><li>hahaha</li><li>lol</li><li>hahaha*</li><li>laughing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8942765-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mischief</li><li>mischievous</li><li>tee hee*</li><li>hahahahaha</li><li>tee hee</li><li>lol</li><li>laugh</li><li>sneaky</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220245-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>brunch*</li><li>late breakfast</li><li>brunch</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10185396-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey baby</li><li>hey you</li><li>hi</li><li>hey baby*</li><li>hey baby!</li><li>hey baby!*</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216294-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what up fam*</li><li>hey fam</li><li>hi fam</li><li>sup fam</li><li>what up fam</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8039776-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ameego</li><li>hi</li><li>spanish</li><li>forcedoutfit*</li><li>hola amigo</li><li>hola*</li><li>dora</li><li>buenos dias</li><li>hola amigo*</li><li>dora the explorer</li><li>hello</li><li>hola</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9352187-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi felicia</li><li>hello</li><li>hey</li><li>hi felicia*</li><li>wave</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8640391-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>door</li><li>long time no see*</li><li>front door</li><li>hello</li><li>long time no see</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216292-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what up fam*</li><li>hey fam</li><li>hi fam</li><li>whats up fam</li><li>sup fam</li><li>what up fam</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219392-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yall</li><li>hi</li><li>forcedoutfit*</li><li>parachute</li><li>skydiving</li><li>hey all</li><li>hey gang*</li><li>hey gang</li><li>hello</li><li>parashoot</li><li>skydive</li><li>y'all</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215339-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you busy</li><li>are u busy</li><li>can you talk</li><li>r u busy</li><li>you busy*</li><li>u busy</li><li>are you busy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134192-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you didnt know</li><li>news flash</li><li>guess what</li><li>information</li><li>news flash*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10189571-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>do you need to talk</li><li>psychiatrist</li><li>can we talk</li><li>i need to talk</li><li>therapy</li><li>need to say</li><li>lets talk</li><li>psychiatry</li><li>something to say</li><li>can we talk*</li><li>therapist</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954445-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey you</li><li>yo*</li><li>yo</li><li>yo!*</li><li>yo!</li><li>hello</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10192295-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hiya</li><li>hello</li><li>hiya dumdum*</li><li>dum dum</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8149728-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hello</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9955001-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey you</li><li>yo*</li><li>yo</li><li>hello</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187876-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey you</li><li>hey there</li><li>oh hi there*</li><li>hey u</li><li>oh hi there</li><li>oh hi there!*</li><li>oh hai</li><li>hello</li><li>oh hi there!</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940891-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>saturday</li><li>cats</li><li>happy caturday*</li><li>weekend</li><li>caturday*</li><li>kitties</li><li>happy caturday</li><li>animals</li><li>kittens</li><li>saturday:date</li><li>happy saturday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8263858-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fingers crossed*</li><li>fingers crossed</li><li>good luck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991414-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>radio tower</li><li>good vibes*</li><li>you rock</li><li>thinking of you</li><li>team</li><li>good vibes</li><li>tower</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8736628-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>its ok</li><li>don't worry</li><li>you're we</li><li>youre welcome</li><li>go you</li><li>you're welcome</li><li>dont worry</li><li>dont worry*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941574-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>enjoy*</li><li>have fun</li><li>enjoy</li><li>fireworks</li><li>events</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219611-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>greet</li><li>welcome*</li><li>welcome</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9947028-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you can do it</li><li>best of luck</li><li>you rock</li><li>go you</li><li>good luck*</li><li>team</li><li>good luck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9788566-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what happened*</li><li>you ok</li><li>quick replies</li><li>what happened</li><li>question</li><li>questions</li><li>huh</li><li>question mark</li><li>are you okay</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9176098-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>are you okay?*</li><li>r u ok</li><li>r u okay</li><li>how r u</li><li>are you okay?</li><li>hello</li><li>are you ok</li><li>are you okay*</li><li>are you okay</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988937-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what good</li><li>whats new</li><li>how you doing</li><li>stairs</li><li>how are you</li><li>hey</li><li>steps</li><li>whats up</li><li>whats good*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134010-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how ya feelin*</li><li>quick replies</li><li>how are ya</li><li>chair</li><li>how are you</li><li>whats up</li><li>are you ok</li><li>how ya feelin</li><li>sup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10204933-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how you doin</li><li>how you doin'?</li><li>hi</li><li>how you doin'</li><li>how r u</li><li>hello</li><li>how u doin?</li><li>how you doin*</li><li>how you doin?</li><li>how you doin'*</li><li>how you doing'?*</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8208192-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hangin around</li><li>how's it hanging</li><li>hows it hangin</li><li>hows it hanging</li><li>hows it hangin*</li><li>how r u</li><li>how's it hangin*</li><li>hello</li><li>how's it hangin</li><li>hanging around</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8139904-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>what it is*</li><li>how r u</li><li>what's up</li><li>hello</li><li>how it do</li><li>what it is</li><li>how are you?</li><li>sup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8149702-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how are you*</li><li>how r u</li><li>how are you</li><li>hello</li><li>how are you?*</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941596-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>giant heart</li><li>i love you!*</li><li>i love you</li><li>i love you*</li><li>i love you!</li><li>luv ya*</li><li>valentine</li><li>love*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219100-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mouse</li><li>i love you</li><li>i love you*</li><li>catsuit</li><li>cat</li><li>luv ya</li><li>cat costume</li><li>cat suit</li><li>costume</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219075-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love you sign</li><li>love you sign*</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211506-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>youre mean</li><li>how rude</li><li>insulted</li><li>youre mean*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219233-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>flashlight</li><li>flashlight*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219347-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what</li><li>wut*</li><li>wut</li><li>wat</li><li>wot</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990897-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>d24</li><li>mad</li><li>for that</li><li>ain't nobody</li><li>ugh</li><li>sweet brown</li><li>annoyed</li><li>got time</li><li>sass</li><li>no time</li><li>grrr*</li><li>has time</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8139922-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>amazing</li><li>amazing*</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218200-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>spit take*</li><li>spit take</li><li>coffee</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212132-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ridic</li><li>ridiculous</li><li>thats ridiculous</li><li>ridiculous*</li><li>youre ridiculous</li><li>ridic*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187728-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>surprise</li><li>wait what</li><li>wait what*</li><li>what</li><li>cereal</li><li>spit take</li><li>whoa</li><li>spitting cereal</li><li>surprize</li><li>breakfast</li><li>shocked</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217268-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>surprizing</li><li>phone</li><li>what the hell</li><li>surprized</li><li>wtf</li><li>surprising</li><li>iphone</li><li>shocked</li><li>wow</li><li>surprised</li><li>what the fuck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946080-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no way</li><li>say what</li><li>waaah</li><li>what the*</li><li>what the hell</li><li>omg</li><li>what the</li><li>what the heck</li><li>what the fuck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975410-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>purrfect*</li><li>ideal</li><li>perfect</li><li>purfect</li><li>good</li><li>purrfect</li><li>yay</li><li>awesome</li><li>cats</li><li>kitten</li><li>perfect*</li><li>cat</li><li>yarn</li><li>perf</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945101-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yep</li><li>yup</li><li>for real</li><li>for real*</li><li>yes*</li><li>hidebody*</li><li>eyes</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212461-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>do it</li><li>do it*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216503-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>perfect</li><li>yes</li><li>okie dokie</li><li>foam hand</li><li>nice</li><li>ok hand</li><li>okay hand</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218313-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>youre dope</li><li>its dope</li><li>that is dope</li><li>thats dope</li><li>this is dope</li><li>you are dope</li><li>dope</li><li>dope*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8479133-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cute</li><li>adorable*</li><li>adorable</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7258121-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hugs*</li><li>hugs</li><li>luv ya*</li><li>hugging</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214870-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>u get me</li><li>u get me*</li><li>you get me</li><li>you understand me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188002-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>you stink*</li><li>booo</li><li>how rude</li><li>ugh</li><li>annoyed</li><li>hate</li><li>rude*</li><li>shut up</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217909-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tumbleweed*</li><li>tumbleweed</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8643950-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>seriously?!*</li><li>wtf</li><li>seriously?*</li><li>srsly*</li><li>srsly?*</li><li>mad</li><li>srsly?!*</li><li>ugh</li><li>annoyed</li><li>what the</li><li>hate</li><li>seriously??</li><li>srsly??</li><li>you stink</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117750-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>quick replies</li><li>you stink*</li><li>booo</li><li>sign</li><li>i know you read that</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188077-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>shake my head</li><li>unbelievable</li><li>disappointed</li><li>booo</li><li>ugh</li><li>annoyed</li><li>smh*</li><li>grrr*</li><li>smh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219590-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>flaming</li><li>mad</li><li>furious*</li><li>angry</li><li>on fire</li><li>furious</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9174769-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>aw muffin</li><li>poor thing</li><li>sorry</li><li>aw muffin*</li><li>poor you</li><li>aww muffin</li><li>cute</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10205852-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>plushie</li><li>plush</li><li>poor you*</li><li>feel better</li><li>poor thing</li><li>get better</li><li>poor you</li><li>teddy</li><li>get well soon</li><li>teddy bear</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10136471-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>balloon</li><li>get well</li><li>feel better</li><li>get well soon</li><li>sick</li><li>sympathy</li><li>get well soon*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10082111-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>chain necklace</li><li>turtleneck and chain</li><li>turtleneck*</li><li>the lonely island</li><li>lonely island</li><li>turtleneck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10082113-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>threw it on the*</li><li>on the ground*</li><li>the lonely island</li><li>threw it on the</li><li>lonely island</li><li>on the ground</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10082120-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>diaper money</li><li>the lonely island</li><li>diaper money*</li><li>lonely island</li><li>im rich</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10082131-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>the lonely island</li><li>creep</li><li>lonely island</li><li>do the creep</li><li>creepy</li><li>creeper</li><li>do the creep*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10082137-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>like a boss*</li><li>the lonely island</li><li>lonely island</li><li>like a boss</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10082140-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yacht</li><li>im on a boat</li><li>the lonely island</li><li>lonely island</li><li>im on a boat*</li><li>on a boat</li><li>boat</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8922368-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>letter</li><li>writing</li><li>all the best*</li><li>miss you</li><li>all the best</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216711-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>one love</li><li>one love*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8968004-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>talk to you soon</li><li>meet up</li><li>bye*</li><li>cya soon</li><li>see you soon</li><li>talk soon*</li><li>see ya soon</li><li>talk soon</li><li>soon</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7196007-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bye*</li><li>bye!*</li><li>bye!</li><li>see ya</li><li>wave</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991803-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>toilet</li><li>brb</li><li>be right back*</li><li>pooping</li><li>be right back</li><li>bathroom stall</li><li>bye</li><li>peeing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945922-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>talk 2 you later</li><li>ttyl</li><li>talk 2 you l8r</li><li>talk to u l8r</li><li>talk 2 u l8r</li><li>talk to you l8r</li><li>talk 2 u later</li><li>talk to you later</li><li>ttyl*</li><li>bye</li><li>talk to u later</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219862-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>drive safe</li><li>drive safe*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8810285-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gotta go</li><li>let's go</li><li>gotta go!</li><li>go</li><li>i have to go</li><li>gotta go*</li><li>see ya</li><li>bye</li><li>forcedoutfit*</li><li>fast</li><li>gotta go!*</li><li>leaving</li><li>talk to you later</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8180692-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>take care</li><li>take care*</li><li>bye</li><li>take it easy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10139133-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>see ya later</li><li>see ya soon</li><li>have a good one</li><li>see ya</li><li>take it easy</li><li>take it easy*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941846-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>recliner</li><li>relaxed</li><li>la z boy</li><li>going offline</li><li>goodbye</li><li>relaxing</li><li>loggin off</li><li>logging off</li><li>loggin off*</li><li>lazyboy</li><li>bye</li><li>logging off*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8418539-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>peace sign</li><li>foam finger</li><li>black light</li><li>peace</li><li>peace*</li><li>stoner</li><li>hello</li><li>peace sign*</li><li>stoned</li><li>foam hand</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219815-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i win</li><li>winning</li><li>critical hit*</li><li>success</li><li>succeed</li><li>i won</li><li>critical hit</li><li>win</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946737-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sweet*</li><li>candy</li><li>sweet</li><li>food</li><li>nice</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9683384-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>necklaces</li><li>confetti</li><li>mardi gras</li><li>holidays</li><li>rosary</li><li>beads</li><li>necklace</li><li>new orleans</li><li>lent</li><li>mardi gras*</li><li>fleur de lis</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219351-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tears</li><li>bawling</li><li>crying</li><li>drowning in tears</li><li>drowning in tears*</li><li>sad</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7548803-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>miss ya</li><li>i miss u</li><li>luv ya</li><li>miss you</li><li>miss ya*</li><li>i miss you</li><li>miss*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219860-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hugs?</li><li>hug</li><li>hugs?*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219233-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>flashlight</li><li>flashlight*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10099511-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ba dum tsss*</li><li>ba dum tsss</li><li>ha ha</li><li>har har</li><li>drums</li><li>badumtsss*</li><li>badumtsss</li><li>drummer</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9175281-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>teeter totter</li><li>miss you so much*</li><li>luv ya</li><li>miss you so much</li><li>seesaw</li><li>miss you</li><li>travel</li><li>so much</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218968-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ill miss you</li><li>gonna miss you</li><li>*gonna miss you</li><li>kiss</li><li>i'll miss you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187940-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i miss u*</li><li>i miss u</li><li>missing u</li><li>luv ya</li><li>miss you</li><li>i miss you</li><li>miss*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214011-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>hahaha</li><li>laugh</li><li>laughter</li><li>haha*</li><li>laughing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9725180-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>laugh out loud</li><li>haha</li><li>lol*</li><li>hahaha</li><li>lol</li><li>ha ha ha</li><li>laugh</li><li>he he he</li><li>hehehe</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9130155-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hee hee hee</li><li>haha</li><li>hahaha</li><li>he he</li><li>lol</li><li>hehehe*</li><li>hehe</li><li>he he he</li><li>he he he*</li><li>hehehe</li><li>laughing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8263858-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fingers crossed*</li><li>fingers crossed</li><li>good luck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217368-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mornin</li><li>good morning</li><li>mornin*</li><li>morning*</li><li>morning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220058-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>loud</li><li>get up</li><li>wake up time</li><li>good morning</li><li>morning bugle rooster*</li><li>morning bugle rooster</li><li>reveille</li><li>early morning</li><li>wake up</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211508-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>breakfast in bed</li><li>breakfast tray</li><li>good morning</li><li>good morning*</li><li>smiley eggs</li><li>breakfast</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8338869-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mornin</li><li>pancakes</li><li>breakfast</li><li>mornin*</li><li>mornin'*</li><li>food</li><li>mornin'</li><li>morning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219576-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tooth brushing</li><li>brushing teeth with cat</li><li>brushing teeth</li><li>tooth brush</li><li>toothbrush</li><li>brushing teeth with cat*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9419202-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>morning hugs*</li><li>good morning</li><li>hi*</li><li>hugs</li><li>morning hugs</li><li>sun</li><li>goodmorning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7197733-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>caffeine</li><li>jittery</li><li>giant coffee</li><li>breakfast</li><li>jitters</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10205895-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>shower</li><li>in the shower</li><li>bathing</li><li>shower*</li><li>naked</li><li>bathroom</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213081-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tired</li><li>sleepy</li><li>sleepy*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212384-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>back to school</li><li>september</li><li>school</li><li>back to school*</li><li>backpack</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216982-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sleepyhead</li><li>heeyyyy sleepyhead*</li><li>good morning</li><li>greeting</li><li>awaken</li><li>morning</li><li>wakey wakey</li><li>wake up time</li><li>rise n shine</li><li>eyes opening</li><li>hey sleepyhead</li><li>rise and shine</li><li>new day</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7257382-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>sunrise</li><li>sunshine</li><li>good morning</li><li>good morning*</li><li>hi*</li><li>hello</li><li>sun</li><li>early</li><li>goodmorning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212506-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>drum</li><li>wake up</li><li>wake up*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945756-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>rainbow</li><li>have a good day</li><li>weather</li><li>have a nice day*</li><li>have a great day</li><li>have a good one</li><li>have a nice day</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9947084-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sunshine</li><li>good morning</li><li>rise and shine*</li><li>wake up</li><li>window</li><li>rise and shine</li><li>shine</li><li>morning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9989003-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stressed out</li><li>need coffee</li><li>stress</li><li>drained</li><li>tired</li><li>food</li><li>forcedoutfit*</li><li>so tired</li><li>stressed</li><li>coffee</li><li>cant go on</li><li>stressful</li><li>breakfast</li><li>sleepy</li><li>need coffee*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8600484-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey you</li><li>yo*</li><li>yo</li><li>hello</li><li>sass</li><li>hey</li><li>bling</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7860262-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy birthday*</li><li>sky</li><li>bday</li><li>floating</li><li>birthdays</li><li>happy birthday</li><li>clouds</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10058776-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>its your birthday*</li><li>bday</li><li>happy bday</li><li>birthdays</li><li>happy birthday</li><li>its your birthday</li><li>hbd</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188128-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>purrfect birthday*</li><li>purrrfect</li><li>purfect</li><li>hbd</li><li>have a purrfect*</li><li>kittens</li><li>bithdays</li><li>purrfect</li><li>cats</li><li>happy bday</li><li>birthdays</li><li>happy birthday</li><li>present</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134294-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy birthday*</li><li>hbd*</li><li>balloon</li><li>confetti</li><li>happy bday</li><li>birthdays</li><li>happy birthday</li><li>hbd</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940847-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy birthday*</li><li>birthday cake</li><li>happy bday</li><li>birthdays</li><li>happy birthday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988738-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rainbow</li><li>happy bday</li><li>birthdays</li><li>happy birthday</li><li>hbd</li><li>have a magical*</li><li>unicorn</li><li>magical birthday*</li><li>pegasus</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10102514-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gift</li><li>happy birthday*</li><li>present box</li><li>gift box</li><li>bday</li><li>birthdays</li><li>happy birthday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8298416-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy birthday*</li><li>bday</li><li>childs drawing</li><li>birthdays</li><li>happy birthday</li><li>kids drawing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9621214-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>doctor</li><li>happy birthday*</li><li>birth*</li><li>happy bday</li><li>baby</li><li>birthdays</li><li>happy birthday</li><li>hbd</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9621243-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy bday*</li><li>skywriter</li><li>birthdays</li><li>biplane</li><li>skywriting</li><li>happy birthday</li><li>clouds</li><li>hbd</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215137-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i forgot*</li><li>i forgot</li><li>toothbrush</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216702-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mistake</li><li>oopsie woopsie</li><li>oopsie</li><li>oops</li><li>my bad</li><li>oopsie woopsie*</li><li>whoops</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9822335-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>corner</li><li>i suck</li><li>sorry</li><li>sign</li><li>im the worst</li><li>suck</li><li>i suck*</li><li>sheepish</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187987-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mistake</li><li>uh oh</li><li>oops</li><li>my bad</li><li>uhoh</li><li>whoops</li><li>whoops*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7834597-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im sorry*</li><li>sorry</li><li>i'm sorry</li><li>im sorry</li><li>i'm sorry*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216203-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eep</li><li>eep*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212734-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>thanks*</li><li>thank you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220640-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hula hoop</li><li>hula hoop waist</li><li>hula hoops</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220240-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>volleyball spike</li><li>volleyball</li><li>beach volleyball</li><li>sport</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220237-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hackysack</li><li>hacky sack</li><li>hacky sack*</li><li>footbag</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220246-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>not today*</li><li>not today</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220248-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how come</li><li>but why</li><li>why tho</li><li>why though</li><li>y tho*</li><li>y though</li><li>why</li><li>y tho</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220256-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ooooo*</li><li>oooooh</li><li>ooh la la</li><li>ooh</li><li>ooooo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220253-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i need answers</li><li>i need answers*</li><li>give me answers</li><li>answers</li><li>tell me</li><li>demand to know</li><li>need to know</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220243-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>catching a frisbee</li><li>frisbee mouth</li><li>catch</li><li>frisbee</li><li>catching frisbee</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220254-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>badminton spike</li><li>shuttlecock</li><li>birdie</li><li>game</li><li>racquet</li><li>badminton</li><li>sport</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220258-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>challenge accepted</li><li>challenge accepted*</li><li>i got this</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220644-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>par</li><li>putt</li><li>golf</li><li>hole in one</li><li>on the green</li><li>putting</li><li>golf course</li><li>golf club</li><li>golfing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10136823-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thats too bad</li><li>crapmoji</li><li>poomoji</li><li>sorry to hear it</li><li>oh no</li><li>turd</li><li>shitty*</li><li>shitty</li><li>sorry to hear</li><li>are you okay</li><li>that sucks</li><li>crap</li><li>sorry to hear that</li><li>poo</li><li>too bad</li><li>poop</li><li>shit</li><li>are you ok</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9725229-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sleep</li><li>sweet dreams</li><li>good night</li><li>sleep tight</li><li>sleep well</li><li>goodnight</li><li>sleep well*</li><li>sleepy</li><li>bedtime</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975387-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>naptime*</li><li>sleep</li><li>stretch</li><li>yawn</li><li>tired</li><li>nap</li><li>sleepy</li><li>naptime</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9090130-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sweet dreams</li><li>good night</li><li>art</li><li>bye*</li><li>sleep tight</li><li>gnight</li><li>night</li><li>goodnight</li><li>dreams</li><li>sweet dreams*</li><li>hidebody*</li><li>bedtime</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9602728-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cant sleep</li><li>wide awake</li><li>anxious</li><li>cant sleep*</li><li>night</li><li>awake</li><li>grrr</li><li>cant fall asleep</li><li>insomnia</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218998-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>good night*</li><li>tired</li><li>sleepy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218155-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>nitey nite</li><li>bye*</li><li>forcedoutfit*</li><li>gnight</li><li>resting</li><li>night</li><li>goodnight</li><li>nighty night</li><li>nighty night*</li><li>sleepy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215975-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>goodnight kisses*</li><li>goodnight</li><li>goodnight kisses</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211963-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sleep</li><li>boring</li><li>good night</li><li>goodnight</li><li>zzz*</li><li>zzzz</li><li>zzzzz</li><li>zzz</li><li>nap</li><li>sleepy</li><li>bored</li><li>sleeping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187962-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>forever alone</li><li>lonely</li><li>forever alone*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945017-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>flowers</li><li>sorry</li><li>dead</li><li>let me love you*</li><li>lonely</li><li>let me love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8149220-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>herz</li><li>bloody heart</li><li>lonely</li><li>heart</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8684508-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>a better place</li><li>hbo</li><li>d24</li><li>making the world</li><li>go me</li><li>silicon valley</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212372-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>on time always*</li><li>hbo</li><li>on time always</li><li>sillicon valley</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8682850-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbo</li><li>bro*</li><li>hello</li><li>bruh</li><li>bro</li><li>silicon valley</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8682860-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbo</li><li>trending up*</li><li>trending up</li><li>silicon valley</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988576-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>vision quest</li><li>hbo</li><li>vision quest*</li><li>time for a</li><li>silicon valley</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8687185-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>hbo</li><li>bro*</li><li>hello</li><li>bruh</li><li>bro</li><li>silicon valley</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8767610-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>true dat</li><li>truth</li><li>yep</li><li>yup</li><li>true dat*</li><li>agree</li><li>yes*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215976-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>of course</li><li>of course*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219683-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yes</li><li>yeah</li><li>yeah*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9666023-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>amazing</li><li>awesome</li><li>excited</li><li>yes</li><li>volcano</li><li>hell</li><li>hell yeah</li><li>hell yeah*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946282-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yes</li><li>lets do it</li><li>into it*</li><li>i like it</li><li>im into it*</li><li>im into it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10079860-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you said it</li><li>thank god</li><li>amen</li><li>amen*</li><li>give thanks</li><li>praise the lord</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216709-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>for sure</li><li>you bet*</li><li>definitely</li><li>you bet</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134275-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>on it</li><li>arrow</li><li>to do</li><li>yes</li><li>im on it*</li><li>im on it</li><li>list</li><li>will do</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219618-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>plane</li><li>let's go</li><li>lets do this</li><li>skydiving</li><li>yep</li><li>yes</li><li>parashoot</li><li>let's do this*</li><li>meet up</li><li>forcedoutfit*</li><li>parachute</li><li>yup</li><li>airplane</li><li>let's do this</li><li>lets do this*</li><li>jump</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9853660-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>for sure</li><li>surely</li><li>to be sure</li><li>definitely</li><li>no doubt*</li><li>yes</li><li>no doubt</li><li>fo sho</li><li>without a doubt</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212727-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yep</li><li>yup</li><li>yes</li><li>yeah</li><li>yup*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9073886-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>genius</li><li>yay*</li><li>ingenius</li><li>ingenius*</li><li>great idea</li><li>scientist</li><li>science</li><li>genius*</li><li>nerd</li><li>agree</li><li>good idea</li><li>smart</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8809958-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bravo</li><li>clapping</li><li>well done</li><li>clap clap clap</li><li>good job</li><li>go you</li><li>good show</li><li>you rock*</li><li>bravo*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219625-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>forcedoutfit*</li><li>you can do it*</li><li>you rock</li><li>go you</li><li>int womens day</li><li>you can do it!</li><li>we can do it</li><li>good luck</li><li>rosie the riveter</li><li>womens day</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7933842-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>go team</li><li>forcedoutfit*</li><li>proud</li><li>go you*</li><li>sports</li><li>you rock</li><li>go you</li><li>cheerleader</li><li>team</li><li>you rock*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7897741-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>well done</li><li>you did it</li><li>good job</li><li>you rock</li><li>congratulations</li><li>go you</li><li>nice one</li><li>congrats</li><li>congratulations*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945775-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>well done</li><li>good job</li><li>awesome job</li><li>great job</li><li>nicely done</li><li>you rock</li><li>go you</li><li>good job*</li><li>gold star</li><li>congrats</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941807-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sparkles</li><li>woman</li><li>you go girl*</li><li>you rock</li><li>go you</li><li>you go girl</li><li>int womens day</li><li>sass</li><li>good luck</li><li>you rock*</li><li>sister</li><li>womens day</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991834-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you can do it</li><li>you got this*</li><li>you got this</li><li>you rock</li><li>go you</li><li>you can do this</li><li>you got it</li><li>team</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213083-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>first place ribbon</li><li>first place ribbon*</li><li>first place*</li><li>number one</li><li>number one*</li><li>first place</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9635657-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>nice work*</li><li>well done</li><li>yay</li><li>a plus</li><li>nice work</li><li>paper</li><li>homework</li><li>grade a</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215346-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bar</li><li>drunk</li><li>drinking</li><li>drinking alone*</li><li>alone at a bar</li><li>alone at a bar*</li><li>lonely</li><li>drinking alone</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211837-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tears</li><li>emoji</li><li>waaah</li><li>bawling</li><li>crying</li><li>sad</li><li>cry</li><li>hidebody*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10079856-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>run down</li><li>running on empty</li><li>i cant</li><li>running on empty*</li><li>out of gas</li><li>tired</li><li>i cant even</li><li>i just cant</li><li>low on fuel</li><li>out of gas*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9176152-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>stupid</li><li>booo</li><li>fml</li><li>fml*</li><li>this sucks</li><li>ugh</li><li>facepalm</li><li>annoyed</li><li>dumb</li><li>grrr</li><li>fuck my life</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215966-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pray for me</li><li>help me</li><li>prayer</li><li>church</li><li>praying</li><li>waaah*</li><li>angel</li><li>pray for me*</li><li>scary</li><li>halo</li><li>hope</li><li>scared</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8810031-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>the struggle is real</li><li>stressed</li><li>ugh</li><li>tired</li><li>waaah*</li><li>life is hard</li><li>life is so hard</li><li>struggle</li><li>struggle is real*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216849-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>oh no</li><li>alarmed</li><li>worked up</li><li>omg</li><li>stay calm</li><li>freaking out</li><li>dread</li><li>hysteria</li><li>panicking</li><li>don't panic</li><li>panic</li><li>meltdown</li><li>anxiety</li><li>agitated</li><li>anxious</li><li>what to do</li><li>nervous</li><li>melt down</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9419055-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>grunt</li><li>what a pain</li><li>ugh*</li><li>booo</li><li>ugh</li><li>annoyed</li><li>annoying</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219394-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i give up</li><li>stressed out</li><li>stress</li><li>you win</li><li>i give up*</li><li>i concede</li><li>tired</li><li>i fail</li><li>wooden sign</li><li>i lose</li><li>picket sign</li><li>forcedoutfit*</li><li>stressed</li><li>failure</li><li>ugh</li><li>stressful</li><li>waaah*</li><li>cardboard sign</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219948-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sad puppy</li><li>puppy</li><li>puppy dog eyes</li><li>sad eyes</li><li>sad</li><li>puppy dog eyes*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217641-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>take an l*</li><li>letter l</li><li>take an l</li><li>l</li><li>l*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9998039-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cant deal</li><li>i cant deal</li><li>i cant</li><li>too much</li><li>i cannot</li><li>i cannot*</li><li>i cant even</li><li>cannot deal</li><li>i can't</li><li>thats too much</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212993-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>argh*</li><li>arg</li><li>arg*</li><li>argh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217662-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>waaaah</li><li>woe is me</li><li>life is hard*</li><li>life is hard</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218904-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>flying money</li><li>broke</li><li>spending</li><li>spent too much</li><li>flying money*</li><li>losing money</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10099587-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>anxiety</li><li>anxious</li><li>fetal position*</li><li>nervous</li><li>curled up in a ball</li><li>fetal position</li><li>curled up</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8375314-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>punched</li><li>punching</li><li>pain</li><li>boxing glove</li><li>waaah*</li><li>hurt</li><li>ouch</li><li>punch</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8133962-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i give up</li><li>stressed out</li><li>stress</li><li>booo</li><li>i cannot</li><li>tired</li><li>i cant even</li><li>cant</li><li>i can't</li><li>cant even</li><li>stressed</li><li>i can't even</li><li>i cant even*</li><li>i can't even*</li><li>ugh</li><li>annoyed</li><li>stressful</li><li>waaah*</li><li>sass</li><li>grrr*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212620-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>woe is me*</li><li>woe is me</li><li>bear</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9989003-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stressed out</li><li>need coffee</li><li>stress</li><li>drained</li><li>tired</li><li>food</li><li>forcedoutfit*</li><li>so tired</li><li>stressed</li><li>coffee</li><li>cant go on</li><li>stressful</li><li>breakfast</li><li>sleepy</li><li>need coffee*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954519-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>help*</li><li>waaah</li><li>begging</li><li>quicksand</li><li>help!</li><li>please</li><li>help!*</li><li>help</li><li>help me</li><li>quick sand</li><li>1234</li><li>sinking</li><li>scary</li><li>scared</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215979-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im weak*</li><li>im weak</li><li>weak</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988646-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>rain</li><li>alone</li><li>rainy:weather</li><li>heartbreak</li><li>herz</li><li>pathetic</li><li>sad</li><li>broken heart</li><li>heart break</li><li>lonely</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219678-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>shudder</li><li>shudder*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212130-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rain</li><li>rain*</li><li>rainy:weather</li><li>umbrella</li><li>its raining</li><li>raining</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219635-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ice cream</li><li>ice cream spill</li><li>crybaby</li><li>cry</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218506-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>snot</li><li>cold</li><li>sick</li><li>sniffle*</li><li>flu</li><li>sniffle</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219953-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pet kitty</li><li>cat with hearts</li><li>kitten</li><li>pet cat</li><li>cat</li><li>love this*</li><li>pet kitten</li><li>kitty</li><li>love this</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212044-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>wink</li><li>hidebody*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8736554-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mwah</li><li>kisses</li><li>love ya*</li><li>muah</li><li>muah*</li><li>smooch</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10139707-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>yee haw*</li><li>yeehaw</li><li>yee haw</li><li>yeehaw*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936863-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thats just great</li><li>amazing</li><li>awesome</li><li>yay*</li><li>loony toons</li><li>so good</li><li>fantastic</li><li>thats great</li><li>fan freaking tastic</li><li>great</li><li>sarcastic</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213821-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>excellent*</li><li>excellent</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10149736-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>proud</li><li>nailed it</li><li>success</li><li>nailed it*</li><li>team</li><li>win</li><li>go me</li><li>i did it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9998079-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>amazing</li><li>best day ever</li><li>happy day*</li><li>happy</li><li>best day</li><li>oh happy day*</li><li>oh happy day</li><li>best day of my life</li><li>happy day</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10152648-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay*</li><li>confetti</li><li>woo hoo</li><li>go you</li><li>hbd</li><li>congrats</li><li>go me</li><li>newyearmoji</li><li>happy new year</li><li>woohoo</li><li>forcedoutfit*</li><li>holidaynewmoji</li><li>birthdays</li><li>party time</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219584-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dog costume</li><li>woof</li><li>woof*</li><li>dog</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991235-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>well done</li><li>yay</li><li>banner</li><li>mission accomplished</li><li>stars</li><li>done</li><li>i did it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8363918-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay*</li><li>yep</li><li>yup</li><li>nailed it</li><li>success</li><li>yes*</li><li>win</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117671-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>aww yeah</li><li>woohoo</li><li>yay*</li><li>celebration</li><li>proud</li><li>aw yeah</li><li>aww yeah*</li><li>yeah</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219943-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>kitty scratch</li><li>kitten</li><li>cat scratching post*</li><li>scratching</li><li>kitten scratching post</li><li>cat</li><li>cat scratching post</li><li>kitty</li><li>scratching post</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215435-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>excited</li><li>current mood*</li><li>happy</li><li>current mood</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936649-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>woohoo</li><li>yay*</li><li>celebration</li><li>celebrate</li><li>woot</li><li>woot*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211507-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yusss*</li><li>yesssssss</li><li>yusssssssssss</li><li>yusss</li><li>yesss*</li><li>yesss</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219586-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rainbow</li><li>happiness</li><li>happy</li><li>happy*</li><li>happiness*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941956-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>many thanks</li><li>thanks</li><li>thankyou</li><li>much appreciated</li><li>thank you</li><li>many thanks*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7638212-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks*</li><li>thank you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117710-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bless you</li><li>you're the best</li><li>thanks*</li><li>church</li><li>bless you*</li><li>go you</li><li>heaven</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212616-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>thank you*</li><li>ground</li><li>thank you</li><li>gopher</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220061-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thank u</li><li>thank you</li><li>thanks a bunch*</li><li>thanks a bunch</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9178643-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tea time</li><li>hi</li><li>tea</li><li>cuppa</li><li>cup of tea</li><li>good afternoon</li><li>hello</li><li>good afternoon*</li><li>sunny</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975401-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hey dog</li><li>dawg</li><li>bulldog</li><li>sup dog</li><li>yo dogg*</li><li>hey dawg</li><li>sup</li><li>sup dawg</li><li>yo dog</li><li>yo</li><li>yo dog*</li><li>yo dawg</li><li>yo dogg</li><li>hey</li><li>yo dawg*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187770-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sweetie</li><li>hi</li><li>hey there</li><li>hey babycakes</li><li>hey babycakes*</li><li>lockers</li><li>hey</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946819-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>guess what?</li><li>guess what</li><li>guess what?*</li><li>hello</li><li>guess what*</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216480-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>new phone who dis*</li><li>new phone whos this</li><li>who is this</li><li>who are you</li><li>new phone who dis</li><li>new phone who this</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9573395-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pay attention to me*</li><li>mt_hello</li><li>heads up</li><li>waaah</li><li>cymbals</li><li>hey</li><li>listen</li><li>pay attention to me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8072920-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>gday m8</li><li>g'day mate!*</li><li>g'day mate!</li><li>gday mate!</li><li>kangaroo</li><li>australia</li><li>gday mate*</li><li>g'day mate</li><li>gday mate</li><li>gooday mate</li><li>animals</li><li>hello</li><li>gday mate!*</li><li>g'day mate*</li><li>goodday mate</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991246-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pssst*</li><li>psst</li><li>hi</li><li>pssst</li><li>psst*</li><li>whisper</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941941-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>greeting</li><li>namaste*</li><li>bow</li><li>namaste</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219623-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>platter</li><li>meet up</li><li>you called me</li><li>forcedoutfit*</li><li>you rang*</li><li>you rang?*</li><li>addams family</li><li>phone</li><li>you rang?</li><li>lurch</li><li>you rang</li><li>butler</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216722-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ahoy there</li><li>ahoy</li><li>ahoy*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217028-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>knock knock*</li><li>knock knock</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218279-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>who's in*</li><li>who's in</li><li>are you in</li><li>who wanna</li><li>do you wanna</li><li>who is in</li><li>who wants to</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945232-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hi mofo</li><li>hi mofo*</li><li>sup mofo</li><li>hello</li><li>hey</li><li>hey mofo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7201994-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hi</li><li>hi*</li><li>hello</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216850-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>romance</li><li>sofa</li><li>embrace</li><li>curl up</li><li>cuddles</li><li>couch</li><li>couch time</li><li>affectionate</li><li>hold</li><li>snuggle</li><li>warm</li><li>affection</li><li>spoon</li><li>netflix and chill</li><li>hug</li><li>relationship</li><li>fuzzy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8363905-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lips</li><li>blowing kisses</li><li>blow kiss</li><li>kisses</li><li>luv ya</li><li>blowing a kiss</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212046-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>big red lips</li><li>kissy lips</li><li>emoji</li><li>kisses</li><li>sexy time</li><li>hidebody*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213820-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>crazy bout you</li><li>im crazy about you</li><li>crazy about you</li><li>crazy bout you*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10185496-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tree</li><li>luv ya</li><li>me + u 4ever</li><li>me + u forever</li><li>carving</li><li>me + you 4ever</li><li>me and you forever</li><li>me & u 4 ever</li><li>me + u 4ever*</li><li>me & u 4ever</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991076-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>falling in love</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8809905-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>what's that?</li><li>pardon me?</li><li>excuse me?*</li><li>excuse me?</li><li>sass</li><li>you stink</li><li>excuse me</li><li>excuse me*</li><li>i beg your pardon?</li><li>what did you say?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8508539-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>youre the worst*</li><li>rude</li><li>booo</li><li>you're the worst*</li><li>your the worst</li><li>hate</li><li>you suck</li><li>youre the worst</li><li>loser</li><li>trophy</li><li>you stink</li><li>you're the worst</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213818-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>arthur</li><li>mad</li><li>fist</li><li>arthur fist</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214871-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i hate you</li><li>youre awful</li><li>your awful</li><li>your the worst</li><li>i hate you*</li><li>you suck</li><li>youre the worst</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9459082-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>whatever</li><li>you do you*</li><li>you do you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217369-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>f grade</li><li>f grade*</li><li>grade f</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215342-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>for shame</li><li>shame</li><li>forshame</li><li>shame*</li><li>shame on you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8706172-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>booo</li><li>just sayin*</li><li>1234</li><li>just sayin'</li><li>just saying</li><li>just sayin'*</li><li>i'm just saying</li><li>you stink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215116-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dont lie to me</li><li>dont play</li><li>dont lie</li><li>dont play*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9913098-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>just joking</li><li>wink</li><li>sarcastic</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214349-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lies</li><li>you lie</li><li>liar</li><li>lies*</li><li>you're lying</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217642-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>not listening</li><li>boring</li><li>blahblahblah*</li><li>blah blah blah*</li><li>blah blah blah</li><li>blahblahblah</li><li>blah*</li><li>blah</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188068-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>oh no you didnt</li><li>mad</li><li>you stink*</li><li>booo</li><li>finger wave</li><li>sassy</li><li>shame on you</li><li>oh no you didnt*</li><li>oh no you dint*</li><li>oh no you dint</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10141991-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>buzz off</li><li>buzz off*</li><li>bee</li><li>bee f u</li><li>bee middle finger</li><li>middle finger</li><li>bee costume</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10098550-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>kermit meme</li><li>sips tea</li><li>tea</li><li>meme</li><li>sipping tea</li><li>none of my business</li><li>kermit</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188007-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>boring</li><li>what ever</li><li>not interested</li><li>you stink*</li><li>booo</li><li>whatever*</li><li>hate</li><li>loser</li><li>sass</li><li>giant hands</li><li>whatever</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9281362-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meh</li><li>not sure</li><li>maybe</li><li>quick replies*</li><li>who knows</li><li>sign</li><li>i dont know</li><li>maybe*</li><li>paddle</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8767620-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>f u*</li><li>foam finger</li><li>fuck you</li><li>booo</li><li>middle finger</li><li>fu foam finger</li><li>foam hand</li><li>fu</li><li>mad</li><li>rude</li><li>forcedoutfit*</li><li>fuck off</li><li>ugh</li><li>f u</li><li>fu*</li><li>hate</li><li>sass</li><li>you stink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216285-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i need new friends</li><li>you guys suck</li><li>i need new friends*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217873-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fake news*</li><li>fake news</li><li>wrong</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9947097-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>sass</li><li>bullshit</li><li>yeah right</li><li>cool story bro</li><li>cool story bro*</li><li>you stink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215937-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sunglasses</li><li>you stink*</li><li>booo</li><li>deal with it*</li><li>deal w it</li><li>sass</li><li>deal with it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10205875-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>truth</li><li>honestly</li><li>honest</li><li>just being honest</li><li>hard truth</li><li>being honest</li><li>real talk*</li><li>real talk</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10058683-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>f u*</li><li>foam finger</li><li>fuck you</li><li>booo</li><li>middle finger</li><li>f you</li><li>fu foam finger</li><li>foam fingers</li><li>f you*</li><li>foam hand</li><li>fu</li><li>fu foam fingers</li><li>mad</li><li>rude</li><li>forcedoutfit*</li><li>fuck off</li><li>foam hands</li><li>ugh</li><li>f u</li><li>fu*</li><li>sass</li><li>fuck you*</li><li>you stink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219679-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>if you say so*</li><li>i guess so</li><li>if you say so</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9602735-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gimme a break</li><li>booo</li><li>cmon</li><li>cmon*</li><li>come on*</li><li>come on</li><li>give me a break</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212617-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cat</li><li>can you not</li><li>can you not*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212373-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hasta la vista baby</li><li>hasta la vista baby*</li><li>terminator</li><li>hasta la vista</li><li>genisys</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988567-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>to live</li><li>if you want</li><li>d24</li><li>terminator</li><li>come with me</li><li>genisys</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988505-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>brb</li><li>i'll be back</li><li>ill be back*</li><li>terminator</li><li>genisys</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8736904-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tech</li><li>thumbs up</li><li>yep</li><li>yup</li><li>terminator</li><li>yes*</li><li>ok</li><li>genisys</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8736910-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i'm back</li><li>im back*</li><li>terminator</li><li>hello</li><li>genisys</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8740489-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>booo</li><li>you're terminated</li><li>youre terminated</li><li>youre terminated*</li><li>terminator</li><li>genisys</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214341-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>giggle</li><li>giggle*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212618-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>hahaha</li><li>lol</li><li>good one</li><li>good one*</li><li>crab</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211836-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>crying</li><li>prbitmoji</li><li>lol</li><li>hidebody*</li><li>laughing</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9955213-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hahahaha</li><li>hilarious</li><li>lol</li><li>so funny</li><li>hilarious*</li><li>funny</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212992-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>classic</li><li>classic*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945815-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>ur welcome</li><li>youre welcome*</li><li>you are welcome</li><li>youre welcome</li><li>you're welcome</li><li>you're welcome*</li><li>no prob</li><li>hidebody*</li><li>no problem</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936612-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>you are welcome</li><li>ain't no thang*</li><li>aint no thang</li><li>youre welcome</li><li>it's nothing</li><li>you're welcome</li><li>no prob</li><li>ain't no thang</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188131-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>its ok</li><li>no worries*</li><li>thanks</li><li>ur welcome</li><li>you are welcome</li><li>youre welcome</li><li>you're welcome</li><li>no prob</li><li>no worries</li><li>no problem</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8640342-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>youre welcome*</li><li>you welco</li><li>you welco*</li><li>youre welcome</li><li>you're welcome</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10039964-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im the best</li><li>stage</li><li>your welcome</li><li>bowing</li><li>curtains</li><li>youre welcome</li><li>bow</li><li>i did it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7257425-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>ur welcome</li><li>you are welcome</li><li>youre welcome</li><li>you're welcome</li><li>no prob*</li><li>no prob</li><li>no problem</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212133-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no prob</li><li>no problem*</li><li>no problem</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9951746-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>astronaut</li><li>let's go</li><li>rude</li><li>so long suckers</li><li>fast</li><li>jetsons</li><li>so long suckers*</li><li>spaceman</li><li>bye</li><li>ufo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188122-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>big time</li><li>for sure</li><li>big time*</li><li>yep</li><li>yup</li><li>yes</li><li>bigtime</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9101092-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>for sure</li><li>truth</li><li>definitely</li><li>yep</li><li>yup</li><li>absolutely</li><li>fo sho</li><li>fo sho*</li><li>agree</li><li>yes*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946088-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ur right ur right</li><li>youre right*</li><li>u right*</li><li>u right u right*</li><li>your right</li><li>ur right</li><li>you right*</li><li>youre right</li><li>u rite u rite</li><li>you right you right*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212615-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>raccoon</li><li>you got it*</li><li>skateboard</li><li>you got it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212994-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sold</li><li>sold*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10176239-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>music</li><li>sounds good</li><li>yep</li><li>yup</li><li>quick replies*</li><li>stereo</li><li>yes*</li><li>sounds good*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946907-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>samesies</li><li>me too</li><li>same</li><li>me too*</li><li>myself as well</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215973-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i like*</li><li>yes</li><li>i like</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10155293-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>awesome</li><li>definitely</li><li>right on</li><li>right on*</li><li>yes</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990787-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>let's go</li><li>gaming</li><li>playing cards</li><li>cards</li><li>chips</li><li>poker</li><li>gambling</li><li>all in</li><li>go me</li><li>all in*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9157845-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>me too</li><li>same</li><li>same*</li><li>ditto</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9281517-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yep</li><li>quick replies*</li><li>yes</li><li>yeah</li><li>yes*</li><li>paddle</li><li>uh huh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9513915-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>okay</li><li>i am flexible</li><li>i dont care</li><li>sounds good</li><li>yes</li><li>yoga</li><li>you choose</li><li>water bottle</li><li>works for me</li><li>flexible</li><li>im flexible</li><li>ok</li><li>im flexible*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7216901-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>two thumbs up</li><li>thumbs up</li><li>yep</li><li>yup</li><li>absolutely</li><li>yes*</li><li>totally</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8640348-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yaaas*</li><li>yassssss'</li><li>yaaasss*</li><li>yep</li><li>yas*</li><li>yas</li><li>yass</li><li>yess</li><li>yasssssss</li><li>yaaasss</li><li>sass</li><li>yes*</li><li>yaaas</li><li>yasss</li><li>yesss</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216499-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>facts*</li><li>its true</li><li>it is true</li><li>facts</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941568-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>youve got my vote*</li><li>im on your side</li><li>you've got my vote</li><li>proud</li><li>im with you</li><li>you rock</li><li>youve got my vote</li><li>team</li><li>i like you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8263912-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>two thumbs up</li><li>hbo</li><li>yep</li><li>yup</li><li>yes</li><li>2 thumbs up*</li><li>2 thumbs up</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936283-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>okay</li><li>can do</li><li>yes sir</li><li>will do*</li><li>yes</li><li>you got it</li><li>ill do it</li><li>ill do that</li><li>ok</li><li>will do</li><li>yes maam</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8263908-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbo</li><li>obvi</li><li>yep</li><li>yup</li><li>yes</li><li>no duh</li><li>obviously</li><li>of course</li><li>hidebody*</li><li>eyes</li><li>obvi*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7681590-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thumbs up</li><li>yay*</li><li>yep</li><li>yup</li><li>thumbs up*</li><li>yes*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217640-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i hear ya</li><li>youre right</li><li>i hear you</li><li>i hear ya*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117701-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>light bulb</li><li>light</li><li>yep</li><li>yup</li><li>idea</li><li>yes</li><li>agree</li><li>good idea*</li><li>good idea</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212753-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yep</li><li>yup</li><li>yes</li><li>yeah</li><li>yup*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10133587-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i know</li><li>ikr</li><li>weird</li><li>yes</li><li>i know right</li><li>i know right*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8333576-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yep</li><li>yup</li><li>yes please</li><li>yes*</li><li>yes please*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219616-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>army</li><li>okay</li><li>forcedoutfit*</li><li>maam</li><li>yep</li><li>yes maam*</li><li>yup</li><li>yes</li><li>war</li><li>tank</li><li>salute</li><li>yes maam</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7195995-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>okay</li><li>thumbs up</li><li>fine</li><li>yep</li><li>yup</li><li>stamp</li><li>yes*</li><li>ok</li><li>ok*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10111246-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i agree</li><li>agreed*</li><li>we agree</li><li>youre right</li><li>agreed</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946687-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>robot</li><li>tech</li><li>affirmative*</li><li>forcedoutfit*</li><li>truth</li><li>yep</li><li>yup</li><li>yes</li><li>nerd</li><li>agree</li><li>affirmative</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941525-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>true story</li><li>book</li><li>reading</li><li>true story*</li><li>fireplace</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219617-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>army</li><li>forcedoutfit*</li><li>yes sir</li><li>yep</li><li>yup</li><li>yes</li><li>war</li><li>tank</li><li>yes sir*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8643870-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cool*</li><li>yes</li><li>cool</li><li>eyes</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7638216-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>for sure</li><li>truth</li><li>yep</li><li>yup</li><li>yes</li><li>agree</li><li>totally</li><li>totally*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214868-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good call</li><li>nice one</li><li>good call*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8809921-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>amazing</li><li>perfect*</li><li>perfect</li><li>perf*</li><li>that's the best</li><li>banner</li><li>cute</li><li>perf</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220064-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>romantic piano</li><li>piano player</li><li>pianist</li><li>romantic piano*</li><li>playing the piano</li><li>grand piano</li><li>playing piano</li><li>sexy piano</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8375305-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hubba hubba*</li><li>pretty</li><li>sexy time</li><li>hubba hubba</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946069-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what a babe</li><li>whatta babe</li><li>such a babe</li><li>sexy time</li><li>you look good</li><li>whatta babe*</li><li>whattababe</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9284933-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ooh lala</li><li>fancy</li><li>oolala</li><li>binoculars</li><li>oo lala</li><li>ooh lala*</li><li>opera glasses</li><li>ooh lah lah</li><li>oo lah lah</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991187-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>miss you</li><li>lonely</li><li>photos</li><li>send pics*</li><li>pictures</li><li>flirting</li><li>send pics</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214091-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>beautiful</li><li>sunglasses</li><li>pretty</li><li>looking good*</li><li>lookin' good*</li><li>sexy time</li><li>you look good</li><li>hidebody*</li><li>eyes</li><li>lookin' good</li><li>lookin' good!</li><li>lookin' good!*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10039921-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>arrived</li><li>flight</li><li>here now</li><li>just landed*</li><li>im here now</li><li>airplane</li><li>just landed</li><li>arriving</li><li>travel</li><li>im here</li><li>just arrived</li><li>landed</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211857-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>relax</li><li>beach</li><li>chill</li><li>vacation</li><li>travel</li><li>vacation*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10161404-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>have fun</li><li>travel*</li><li>vacation</li><li>have a nice trip</li><li>bon voyage</li><li>travel</li><li>bon voyage*</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214041-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>flight</li><li>takeoff</li><li>ready to take off</li><li>goodbye</li><li>ready for takeoff</li><li>ready for takeoff*</li><li>so long</li><li>take off</li><li>holiday</li><li>see ya</li><li>bye</li><li>ready</li><li>airplane</li><li>travel*</li><li>travel</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10156048-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>safe travels</li><li>safe travels*</li><li>postcard</li><li>have fun</li><li>travel*</li><li>vacation</li><li>travel</li><li>see ya</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214012-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>boooooooo</li><li>booo</li><li>booo*</li><li>jeer</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219351-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tears</li><li>bawling</li><li>crying</li><li>drowning in tears</li><li>drowning in tears*</li><li>sad</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214869-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lol wut</li><li>lol what</li><li>lolwut</li><li>lolwhat</li><li>lolwat</li><li>lol wat</li><li>lol wat*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9090071-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>boooooooo</li><li>booooo*</li><li>booo</li><li>boooo*</li><li>booo*</li><li>boo*</li><li>grrrr</li><li>two thumbs down</li><li>disapproval</li><li>thumbs down</li><li>2 thumbs down</li><li>mad</li><li>rude</li><li>hate</li><li>you stink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215437-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>nuclear bomb</li><li>red button</li><li>launch the missile</li><li>big red button</li><li>launch bomb</li><li>nuclear launch</li><li>current mood*</li><li>angry</li><li>current mood</li><li>fire the missile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954489-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>no</li><li>no way</li><li>rude</li><li>oh hell naw</li><li>oh hell no</li><li>you stink*</li><li>booo</li><li>grrrr</li><li>oh hell naw*</li><li>ugh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219863-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>oh dear</li><li>oh dear*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8067828-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>booo</li><li>flipping tables</li><li>grrrr</li><li>hate</li><li>table flip</li><li>tableflip</li><li>grrr</li><li>flip a table</li><li>kill</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8809984-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stressed out</li><li>stress</li><li>booo</li><li>fml</li><li>fffuuu*</li><li>grrrr</li><li>fuck</li><li>angry</li><li>fuck my life</li><li>hidebody*</li><li>fffffuuuuuuuu*</li><li>mad</li><li>rude</li><li>fffuuu</li><li>stressed</li><li>ugh</li><li>annoyed</li><li>stressful</li><li>hate</li><li>grrr*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988226-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>on my way</li><li>clark kent</li><li>super hero</li><li>superhero</li><li>batman vs superman</li><li>dawn of justice</li><li>omw</li><li>be there soon</li><li>superman</li><li>on my way*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988239-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>clark kent</li><li>super hero</li><li>rocket</li><li>superhero</li><li>i got this*</li><li>i got this</li><li>spaceship</li><li>explosion</li><li>save the day</li><li>solution</li><li>batman vs superman</li><li>missile</li><li>satelite</li><li>saving the day</li><li>solved it</li><li>superman</li><li>rescue</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211626-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>brace yourself</li><li>shield</li><li>sword</li><li>wonderwoman</li><li>be prepared</li><li>super hero</li><li>diana prince</li><li>superhero</li><li>brace yourself*</li><li>get ready</li><li>wonder woman</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988250-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>arrived</li><li>arrival</li><li>here i am</li><li>super hero</li><li>superhero</li><li>batman vs superman</li><li>im here*</li><li>bruce wayne</li><li>batman</li><li>just got here</li><li>im here</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9817609-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rain</li><li>rainy:weather</li><li>bring it*</li><li>super hero</li><li>superhero</li><li>batman vs superman</li><li>bring it</li><li>bring it on</li><li>batman</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216054-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gotta go</li><li>bat signal</li><li>gotta run</li><li>gotta run*</li><li>super hero</li><li>superhero</li><li>batman vs superman</li><li>bruce wayne</li><li>travel</li><li>batman</li><li>gotham</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954402-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>giant heart</li><li>i love you</li><li>luv ya*</li><li>i love you more</li><li>i love you more*</li><li>heart</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946267-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>8 bit</li><li>tv screen</li><li>i love you</li><li>nintendo</li><li>16 bit</li><li>love you to bits</li><li>love you to bits*</li><li>video game</li><li>atari</li><li>luv ya*</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10178834-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>i heart you*</li><li>i love you</li><li>i love you*</li><li>luv ya*</li><li>i heart you</li><li>i luv u</li><li>i luv you</li><li>heart</li><li>love*</li><li>i love u</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219133-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>heart*</li><li>herz</li><li>heart</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9666156-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i love you</li><li>luv ya</li><li>love ya*</li><li>love ya</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187904-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love you so much*</li><li>luv u so much*</li><li>giant heart</li><li>i love you</li><li>love you so much</li><li>i luv ya</li><li>luv ya</li><li>i luv you</li><li>luv u so much</li><li>heart</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212029-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>blowing kisses</li><li>emoji</li><li>herz</li><li>blow kiss</li><li>kisses</li><li>wink</li><li>blow a kiss</li><li>blowing a kiss</li><li>hidebody*</li><li>heart</li><li>smooch</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8333556-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love you a lot</li><li>luv ya*</li><li>love you lots*</li><li>love you lots</li><li>love you tons</li><li>love*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212486-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i love you</li><li>i love you*</li><li>luv ya</li><li>i love you too</li><li>love ya</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216479-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>many happy returns*</li><li>many happy returns</li><li>scroll</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218193-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy belated birthday</li><li>happy belated birthday*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218286-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy birthday*</li><li>happy birthday</li><li>bithdays</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9993636-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hbd*</li><li>bday</li><li>birthdays</li><li>coffin</li><li>happy birthday</li><li>hbd</li><li>morbid</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946400-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gift box</li><li>birthdays</li><li>box</li><li>present</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212287-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>recliner</li><li>chillin</li><li>chilling</li><li>watching tv</li><li>watching tv*</li><li>chill out</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8790713-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>on fleek*</li><li>eyebrows</li><li>go me</li><li>on fleek</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990684-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>amazing</li><li>let's go</li><li>super fun times*</li><li>super fun times</li><li>super fun</li><li>can't wait</li><li>fun times</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7638184-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>woohoo</li><li>excited</li><li>tgif</li><li>friday</li><li>hidebody*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212283-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dancing</li><li>dance party</li><li>disco</li><li>dance party*</li><li>party time</li><li>dance</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213082-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love it</li><li>i love it*</li><li>i love it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946964-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>can't wait*</li><li>cant wait</li><li>so ready</li><li>excited</li><li>pumped</li><li>ready</li><li>cant wait*</li><li>lets do it</li><li>hyped</li><li>can't wait</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211715-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>amazing</li><li>perfect</li><li>10/10</li><li>olympics</li><li>flawless</li><li>judge</li><li>olympic judge</li><li>ten out of ten</li><li>ten</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7548831-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>go team</li><li>woohoo</li><li>foam finger</li><li>winner</li><li>sports</li><li>woo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10058730-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sliding</li><li>weeeee</li><li>slide</li><li>wee</li><li>weee</li><li>weeeeee</li><li>weeeeee*</li><li>weeee</li><li>fun</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212402-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ayyyyy</li><li>awesome</li><li>ayyyyy*</li><li>nice</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212369-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>happy</li><li>hidebody*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941970-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>awesome</li><li>celebration</li><li>celebrate</li><li>awesome*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946616-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>feelin lucky*</li><li>do you feel lucky</li><li>i feel lucky</li><li>feeling lucky</li><li>good luck</li><li>feelin' lucky</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9542990-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>whoa</li><li>freaked out</li><li>dude</li><li>dude*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7590713-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>say whaaat</li><li>say whaaat*</li><li>say what</li><li>say whaaat?!*</li><li>say what*</li><li>what did you say</li><li>say whaat</li><li>say what?!*</li><li>huh</li><li>what*</li><li>say what?*</li><li>say whaaaat</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8067720-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yikes!*</li><li>yikes</li><li>yikes*</li><li>omg</li><li>wtf</li><li>what the</li><li>eek</li><li>hidebody*</li><li>yikes!</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9998031-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tmi</li><li>nsfw</li><li>nsfw*</li><li>nude</li><li>naked</li><li>not safe for work</li><li>nudes</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216981-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>oh dang</li><li>oh no</li><li>oh shit</li><li>hang on</li><li>wtf</li><li>damn</li><li>wait a minute</li><li>d'oh</li><li>what</li><li>shit</li><li>dang</li><li>oh dang*</li><li>o dang</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946535-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>oh. em. effing. gee.</li><li>oh em effing gee*</li><li>hbo</li><li>omfg*</li><li>omfg</li><li>oh em effing gee</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213819-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>spooky</li><li>spooky*</li><li>spooked</li><li>afraid</li><li>scared</li><li>fear</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9483696-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>daaayum*</li><li>damn*</li><li>oh snap</li><li>daaayum</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217026-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bruh</li><li>bruh*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214286-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>whoa</li><li>explode</li><li>mind blown</li><li>dang</li><li>omg</li><li>mind blown*</li><li>brain</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7834112-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>proud</li><li>epic*</li><li>epic</li><li>hidebody*</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946925-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>lunch</li><li>wanna get lunch</li><li>wanna eat</li><li>lunch box</li><li>lets do lunch</li><li>lets do lunch*</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8097150-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>eta?</li><li>eta?*</li><li>hurry</li><li>travel</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187861-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im waiting</li><li>meet up</li><li>late</li><li>waiting</li><li>quick replies*</li><li>hourglass</li><li>i am waiting</li><li>hour glass</li><li>hurry</li><li>i'm waiting</li><li>can't wait</li><li>i'm waiting*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9176162-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>fast</li><li>late</li><li>be there soon*</li><li>quick replies*</li><li>see you soon</li><li>see ya soon</li><li>be there soon!*</li><li>be there soon</li><li>hurry</li><li>travel</li><li>be there soon!</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9090400-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>running</li><li>let's go</li><li>lets go</li><li>lets go*</li><li>meet up</li><li>fast</li><li>let's go*</li><li>go</li><li>come on</li><li>let's go!</li><li>travel</li><li>let's go!*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10136854-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>let's talk about it</li><li>lets discuss*</li><li>discussion</li><li>lets talk about it</li><li>lets discuss</li><li>water cooler</li><li>watercooler</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212769-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lets get takeout</li><li>take out*</li><li>takeout</li><li>supper</li><li>takeout*</li><li>take out</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988694-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>morning kisses</li><li>morning kisses*</li><li>good morning kisses</li><li>sunshine</li><li>good morning</li><li>luv ya</li><li>sun</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9990966-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bed</li><li>sleep</li><li>get up</li><li>cat</li><li>woke up</li><li>wake up</li><li>awake</li><li>waking up</li><li>im up</li><li>im up*</li><li>kitty</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8790746-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>have a good weekend</li><li>have a good weekend*</li><li>tgif</li><li>weekend</li><li>friday:date</li><li>friday</li><li>bye</li><li>happy friday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10079863-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>have a great day*</li><li>have a good day</li><li>have a great day</li><li>have a good one</li><li>have a nice day</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219681-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how are things in your life?</li><li>not bad</li><li>not bad you</li><li>how are you</li><li>not bad how are you</li><li>how are things</li><li>toaster</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216312-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>goodnight guys</li><li>night everyone</li><li>night all*</li><li>night everybody</li><li>night all</li><li>night guys</li><li>goodnight</li><li>goodnight everybody</li><li>goodnight everyone</li><li>lights out</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218503-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good night</li><li>night bae</li><li>night sweetie</li><li>nite bae</li><li>nite sweetie</li><li>nite babe</li><li>night babe*</li><li>goodnight</li><li>night babe</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946099-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stretch</li><li>mornin</li><li>good morning</li><li>yawn</li><li>hi*</li><li>hello</li><li>mornin*</li><li>mornin'*</li><li>early</li><li>goodmorning</li><li>mornin'</li><li>morning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218974-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i'll be there</li><li>i'm in</li><li>ill be there</li><li>lets do it</li><li>im in</li><li>i'm in*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215439-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>alarm clock</li><li>current mood*</li><li>alarm</li><li>sleeping in</li><li>current mood</li><li>in bed</li><li>sleepy</li><li>sleeping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10192304-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good evening*</li><li>good evening</li><li>evening</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8968038-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>welcome back</li><li>door</li><li>door mat</li><li>welcome back*</li><li>dog door</li><li>travel</li><li>house</li><li>welcome mat</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946826-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>where are you?</li><li>where are you</li><li>where are you*</li><li>hello?</li><li>where r u</li><li>where are you?*</li><li>hurry</li><li>telescope</li><li>travel</li><li>where have you been</li><li>where ru</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/6977342-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bed</li><li>resting</li><li>good night*</li><li>night</li><li>good night!*</li><li>hidebody*</li><li>good night</li><li>bye*</li><li>gnight</li><li>goodnight*</li><li>goodnight</li><li>nap</li><li>sleepy</li><li>bedtime</li><li>good night!</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8791150-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coffee mug</li><li>good morning</li><li>good morning*</li><li>hi*</li><li>breakfast</li><li>hidebody*</li><li>food</li><li>goodmorning</li><li>morning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7933878-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>megaphone</li><li>yell</li><li>loudspeaker</li><li>hello</li><li>shout</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217979-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>relaxed</li><li>relax</li><li>book</li><li>reading</li><li>bean bag chill</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218410-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sleep</li><li>good night</li><li>sleep bubble</li><li>goodnight</li><li>snooze</li><li>thought bubble</li><li>zzz</li><li>sleeping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9955128-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dinner?</li><li>let's go</li><li>let's go out</li><li>meet up</li><li>dinner*</li><li>let's eat</li><li>dinner?*</li><li>menu</li><li>dinner</li><li>food</li><li>what's for supper?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215115-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good morning</li><li>coffee</li><li>good morning*</li><li>groggy</li><li>tired</li><li>sleepy</li><li>morning</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212131-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hurry up*</li><li>youre late</li><li>hurry up</li><li>where are you</li><li>hurry</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7860281-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>new with you</li><li>whats new</li><li>whats new*</li><li>what's new</li><li>how r u</li><li>what's new*</li><li>hello</li><li>what's new?</li><li>what's new?*</li><li>how are you?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10120365-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>shucks</li><li>who me</li><li>who me*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8786568-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>phone</li><li>call me</li><li>phone me</li><li>telephone</li><li>give me a call</li><li>call me*</li><li>gimme a call</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10136844-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i'm here</li><li>honey i'm home!</li><li>i'm</li><li>im here</li><li>home</li><li>meet up</li><li>forcedoutfit*</li><li>honey i'm home*</li><li>front door</li><li>honey i'm home!*</li><li>honey</li><li>honey im home</li><li>hello</li><li>honey im home*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117750-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>quick replies</li><li>you stink*</li><li>booo</li><li>sign</li><li>i know you read that</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214712-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tv</li><li>television</li><li>stay tuned*</li><li>stay tuned</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9853623-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>can</li><li>tin can</li><li>let me know*</li><li>phone</li><li>tell me</li><li>lemme know*</li><li>let me know</li><li>tin can phone</li><li>lemme know</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214013-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>leaving now</li><li>see you soon</li><li>be right there</li><li>leaving now*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219074-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>coeur</li><li>balloons</li><li>herz</li><li>heart balloons</li><li>heart balloons*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212281-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>youre the sweetest</li><li>youre sweet</li><li>sweet</li><li>youre so sweet</li><li>youre the sweetest*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10040008-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>xoxo*</li><li>xoxo</li><li>hugs</li><li>kisses</li><li>sms</li><li>texting</li><li>text message</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212136-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>drawing</li><li>kids picture</li><li>kids drawing</li><li>childrens drawing</li><li>picture</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9101053-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>flattered</li><li>shucks</li><li>blush</li><li>aw shucks*</li><li>aw shucks</li><li>shucks*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217644-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>besties?*</li><li>best friend</li><li>besties</li><li>best friends</li><li>besties?</li><li>bestfriends</li><li>friend</li><li>friends</li><li>bestfriend</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216995-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i need a hug</li><li>roadside</li><li>hitchhiker</li><li>waaah</li><li>i need a hug*</li><li>pathetic</li><li>sad</li><li>hug</li><li>needy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10139684-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>slam</li><li>slammed*</li><li>slammed</li><li>busy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9157872-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>so tired</li><li>booo</li><li>what a day*</li><li>what a day</li><li>big day</li><li>exhausted</li><li>tired</li><li>waaah*</li><li>bad day</li><li>grrr*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213081-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tired</li><li>sleepy</li><li>sleepy*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215438-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rain</li><li>rainy</li><li>umbrella</li><li>current mood*</li><li>sad</li><li>current mood</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7748857-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stupid</li><li>dumb</li><li>sideshow bob</li><li>rake</li><li>hit in the face</li><li>ouch</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10102479-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>regrets*</li><li>hungover</li><li>regrets</li><li>hangover</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7197569-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cloud</li><li>storm cloud</li><li>waaah</li><li>gloom</li><li>sad</li><li>depressed</li><li>gloomy</li><li>weather</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219109-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dog suit</li><li>rough day</li><li>ruff day</li><li>ruff day*</li><li>dog costume</li><li>had a bad day</li><li>had a rough day</li><li>woof</li><li>bad day</li><li>costume</li><li>dog</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216977-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>roadside</li><li>need a lift</li><li>hitch hiker</li><li>bum a ride</li><li>hitchhiker</li><li>need a ride</li><li>hitch a ride</li><li>lift</li><li>ride</li><li>pick me up</li><li>thumb out</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214710-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pooped</li><li>im pooped</li><li>im pooped*</li><li>exhausted</li><li>tired</li><li>sleepy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187487-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>quick replies</li><li>im sick*</li><li>waaah*</li><li>sick</li><li>in bed</li><li>im sick</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216704-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hate myself</li><li>i hate myself</li><li>i hate myself*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8139913-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stressed out</li><li>stress</li><li>tears</li><li>waah*</li><li>stressed</li><li>bawling</li><li>crying</li><li>stressful</li><li>waaaah*</li><li>waaah*</li><li>wah</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217367-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>a grade</li><li>a plus</li><li>a plus*</li><li>grade a</li><li>grade a plus</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945882-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>well done</li><li>good job</li><li>nice job</li><li>clap</li><li>well played*</li><li>well played</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218153-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im not worthy</li><li>thanks</li><li>forcedoutfit*</li><li>not worthy*</li><li>not worthy</li><li>you rock</li><li>go you</li><li>you're amazing</li><li>i'm not worthy</li><li>we are not worthy</li><li>you rock*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217375-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>not bad</li><li>not bad*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9073901-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sword</li><li>i got your back*</li><li>karate</li><li>kick</li><li>i support you</li><li>katana</li><li>ninja</li><li>you rock</li><li>i got your back</li><li>team</li><li>i will protect you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7496923-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>well done</li><li>nice job</li><li>you rock</li><li>congratulations</li><li>congrats*</li><li>congrats</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9543335-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>great work</li><li>nice job</li><li>woo hoo</li><li>good</li><li>great</li><li>nice</li><li>dude*</li><li>well done</li><li>yay</li><li>awesome</li><li>woohoo</li><li>psyched</li><li>dude</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188118-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>well done</li><li>awesome</li><li>good job</li><li>killin it</li><li>nice work</li><li>great job</li><li>you rock</li><li>killing it</li><li>killin it*</li><li>great</li><li>you rock*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211965-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>so proud of you</li><li>pr</li><li>proud</li><li>so proud of you*</li><li>proud of you*</li><li>proud of you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213816-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>we got this</li><li>we got this*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8786003-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rofl</li><li>prbitmoji</li><li>lol</li><li>rofl*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991472-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mwahaha*</li><li>mua ha ha*</li><li>lol</li><li>muahaha*</li><li>evil</li><li>laugh</li><li>mwa ha ha*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218409-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cry laugh</li><li>laugh emoji</li><li>laughing crying</li><li>rofl</li><li>lol</li><li>crying laugh</li><li>cry laughing</li><li>lmao</li><li>laugh</li><li>crying laughing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7638206-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>jk</li><li>just kidding</li><li>kidding</li><li>silly</li><li>lol</li><li>hidebody*</li><li>joking</li><li>just kidding*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217120-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>haha</li><li>hahaha</li><li>lmao</li><li>laugh my ass off</li><li>lmao*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9955071-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dying</li><li>literally dying</li><li>grim reaper</li><li>lol</li><li>dead</li><li>literally dying*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10176537-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dragon costume</li><li>you slay me*</li><li>you slay me</li><li>lol</li><li>dragon</li><li>costume</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9669931-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>aliens</li><li>out there</li><li>sci fi</li><li>xfiles</li><li>fbi</li><li>the truth is out*</li><li>spooky</li><li>mystery</li><li>truth</li><li>truth is out there*</li><li>x files</li><li>scary</li><li>flashlight</li><li>scifi</li><li>truth is out there</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9669972-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dont trust anyone</li><li>conspiracy</li><li>cover up</li><li>coverup</li><li>government</li><li>trust no one</li><li>conspiracy theory</li><li>x files</li><li>xfiles</li><li>conspiracy theories</li><li>fbi</li><li>trust no one*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9669649-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i want to believe</li><li>aliens</li><li>sci fi</li><li>flying saucer</li><li>xfiles</li><li>fbi</li><li>alien</li><li>conspiracy</li><li>alien abduction</li><li>i want to believe*</li><li>x files</li><li>scifi</li><li>ufo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8706191-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rainbow</li><li>care bear stare</li><li>pride</li><li>heart</li><li>lgbt</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8479111-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>go get em</li><li>break a leg</li><li>best of luck</li><li>you rock</li><li>go you</li><li>team</li><li>break a leg*</li><li>good luck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134166-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>have a blast</li><li>explosion</li><li>boom</li><li>go you</li><li>have a blast*</li><li>bomb</li><li>flash</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10139123-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>relax*</li><li>relax</li><li>chill</li><li>chill out</li><li>calm down</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219613-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>forcedoutfit*</li><li>have fun</li><li>go you</li><li>enjoy</li><li>have fun*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9998059-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>praying for you*</li><li>prayer</li><li>praying for you</li><li>dear god</li><li>praying</li><li>pray</li><li>you need help</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216206-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>just my 2 cents*</li><li>just my two cents*</li><li>im just sayin</li><li>2 cents</li><li>two cents</li><li>just my opinion</li><li>im just saying</li><li>2cents</li><li>just my 2 cents</li><li>just my two cents</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936476-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>idk</li><li>stupid</li><li>don't know</li><li>uhhhh</li><li>1234</li><li>duh</li><li>duhhhh</li><li>dumb</li><li>duh*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991838-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you stink*</li><li>booo</li><li>meme</li><li>you mad bro</li><li>teasing</li><li>trolling</li><li>are you mad</li><li>you mad bro*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10176552-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eat me*</li><li>eat me</li><li>cupcake costume</li><li>costume</li><li>cupcake</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188110-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i dont care</li><li>haters gonna hate*</li><li>haters gonna hate</li><li>who cares</li><li>whatever</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211713-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>5/10</li><li>meh</li><li>olympics</li><li>unimpressed</li><li>judge</li><li>olympic judge</li><li>five</li><li>five out of ten</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7197112-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>meh.*</li><li>1234</li><li>floating</li><li>nothing</li><li>meh*</li><li>grrr</li><li>sass</li><li>meh.</li><li>mehhh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219130-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>not interested*</li><li>not interested</li><li>i dont care</li><li>cat</li><li>im not interested</li><li>cat costume</li><li>cat suit</li><li>costume</li><li>dont care</li><li>ignoring you</li><li>whatever</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9352262-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you stink*</li><li>booo</li><li>are you for real</li><li>are you for real*</li><li>are you joking</li><li>are you serious</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188112-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bite me</li><li>rude</li><li>bite me!</li><li>you stink*</li><li>booo</li><li>ugh</li><li>annoyed</li><li>bite me!*</li><li>bite me*</li><li>hate</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217043-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>blank</li><li>no comment</li><li>ellipses*</li><li>ellipses</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216491-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>alternative facts*</li><li>alternative facts</li><li>propaganda</li><li>lies</li><li>bull</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9422789-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>1234</li><li>shrug*</li><li>shrug</li><li>grrr</li><li>sass</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9073921-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>open sign</li><li>sorry not sorry*</li><li>you stink*</li><li>booo</li><li>closed sign</li><li>idgaf</li><li>store sign</li><li>sorry not sorry</li><li>i don't care</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10189575-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>but what am i*</li><li>i know you are*</li><li>i know you are</li><li>but what am i</li><li>pee wee</li><li>big holiday</li><li>big adventure</li><li>herman</li><li>peewees big holiday</li><li>pee wee herman</li><li>peewee</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9665646-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>not funny</li><li>haha</li><li>hahaha</li><li>ha ha*</li><li>ha ha</li><li>how hilarious</li><li>lol</li><li>sign</li><li>ha ha ha</li><li>sarcastic</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9950276-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>judgement</li><li>judging*</li><li>judgment</li><li>judging you</li><li>judging</li><li>you suck</li><li>youre the worst</li><li>im judging you</li><li>im judging</li><li>judgmental</li><li>judgemental</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212041-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>raspberry</li><li>rude</li><li>booo</li><li>pbbbt!*</li><li>emoji</li><li>teasing</li><li>pbbbt*</li><li>hate</li><li>pbbbt</li><li>hidebody*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211714-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>horrified</li><li>one</li><li>olympics</li><li>awful</li><li>judging</li><li>one out of ten</li><li>1/10</li><li>judge</li><li>olympic judge</li><li>terrible</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215958-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>booo</li><li>i dont care</li><li>talk to the hand</li><li>talk to the hand*</li><li>foam hand</li><li>shut up</li><li>you stink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8549765-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you smell*</li><li>rude</li><li>booo</li><li>hate</li><li>loser</li><li>you smell</li><li>you stink</li><li>soap</li><li>fight club</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217130-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gtfo*</li><li>gtfo</li><li>get outta here</li><li>get out</li><li>get the fuck out</li><li>get out of here</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940204-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you stink*</li><li>booo</li><li>goodbye</li><li>go away</li><li>bye felicia</li><li>bye felicia*</li><li>shut up</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10120130-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no comment</li><li>nothing</li><li>no comment*</li><li>silence</li><li>crickets</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954509-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>burn</li><li>booo</li><li>go to hell</li><li>ugh</li><li>go to hell*</li><li>hate</li><li>you suck</li><li>kill</li><li>screw you</li><li>hell</li><li>you stink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215977-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yaaawn</li><li>yaawn*</li><li>yaawn</li><li>yaaawn*</li><li>yawn</li><li>yawn*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212042-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>emoji</li><li>herz</li><li>hidebody*</li><li>i like you</li><li>heart</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10155231-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>drawn heart</li><li>herz</li><li>heart drawn</li><li>heart draw</li><li>draw a heart</li><li>heart</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8149231-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>coeur</li><li>giant heart</li><li>herz</li><li>luv ya</li><li>valentine</li><li>heart</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10058753-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>giant heart</li><li>i love you</li><li>i love you*</li><li>i luv ya</li><li>luv ya</li><li>love ya</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216845-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>hi</li><li>romance</li><li>valentine</li><li>luv</li><li>hi honey</li><li>peek-a-boo</li><li>heart</li><li>sweetie</li><li>coeur</li><li>herz</li><li>hearts</li><li>heart bubble</li><li>hello</li><li>valentines day</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214722-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i love you</li><li>love ya*</li><li>love ya</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991448-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sidewalk</li><li>new outfit</li><li>hair</li><li>mirror</li><li>new look</li><li>ootd</li><li>look at me</li><li>sexy time</li><li>i look good</li><li>hand mirror</li><li>fashion</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9158609-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>confident*</li><li>confidence</li><li>confident</li><li>demi lovato</li><li>sexy time</li><li>confidence*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9988980-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gold</li><li>music</li><li>i'm the best</li><li>couch</li><li>sass</li><li>i'm worth it*</li><li>go me</li><li>i'm worth it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219955-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>money</li><li>baller cat</li><li>rich</li><li>cash</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936219-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hair</li><li>bathroom mirror</li><li>ootd</li><li>selfie</li><li>look at me</li><li>sexy time</li><li>ootd*</li><li>outfit of the day</li><li>i look good</li><li>photos</li><li>pictures</li><li>fashion</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9188354-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bed</li><li>ootd</li><li>i woke up like this</li><li>look at me</li><li>sexy time</li><li>beyonce</li><li>calm</li><li>new outfit</li><li>hair</li><li>music</li><li>i woke up like this*</li><li>pillow</li><li>waking up</li><li>i look good</li><li>fashion</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217638-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>motorcycle</li><li>bad ass*</li><li>motorbike</li><li>biker</li><li>badass*</li><li>badass</li><li>rider</li><li>bad ass</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8600484-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hey you</li><li>yo*</li><li>yo</li><li>hello</li><li>sass</li><li>hey</li><li>bling</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8072916-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>funny*</li><li>drop the mic</li><li>dropping the mic</li><li>mic drop</li><li>sass</li><li>drop the microphone</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7294278-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>super</li><li>forcedoutfit*</li><li>proud</li><li>powerful</li><li>superpowers</li><li>superhero</li><li>man</li><li>superman</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211677-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>talkin' to me</li><li>forcedoutfit*</li><li>talking to me</li><li>talkin' to me?*</li><li>talkin to me?</li><li>talkin to me?*</li><li>sass</li><li>bling</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218975-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>smoking pipe</li><li>it's lit fam</li><li>fam</li><li>lit</li><li>it's lit fam*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219581-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sassy*</li><li>sassy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188020-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ill drive</li><li>need a ride*</li><li>driving</li><li>meet up</li><li>car</li><li>need a ride?</li><li>need a ride</li><li>need a ride?*</li><li>drive</li><li>travel</li><li>bling</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9947091-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>funny*</li><li>cool</li><li>thug life</li><li>thug life*</li><li>gangster</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219371-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lebron</li><li>ball</li><li>basketball</li><li>baller</li><li>ball is life*</li><li>ballers</li><li>ball is life</li><li>swag</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991446-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>limousine</li><li>famous</li><li>red carpet</li><li>limo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10039964-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im the best</li><li>stage</li><li>your welcome</li><li>bowing</li><li>curtains</li><li>youre welcome</li><li>bow</li><li>i did it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218993-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>woke</li><li>*woke</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9188425-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how do you like me</li><li>how do you like me*</li><li>how you like me now</li><li>outfit</li><li>ootd</li><li>how you like me now*</li><li>look at me</li><li>sexy time</li><li>do you like me</li><li>fashion</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219615-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>forcedoutfit*</li><li>cigar</li><li>no big deal*</li><li>smoking</li><li>youre welcome</li><li>you're welcome</li><li>no big deal</li><li>no prob</li><li>sass</li><li>you're welcom</li><li>no problem</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8375309-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>won't stop</li><li>yay</li><li>proud</li><li>cant stop wont stop*</li><li>cant stop wont stop</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954585-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gold</li><li>chaching*</li><li>money</li><li>cha ching</li><li>cha ching*</li><li>chaching</li><li>cash</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991430-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>new outfit</li><li>hair</li><li>ootd</li><li>look at me</li><li>runway</li><li>sexy time</li><li>i look good</li><li>fashion</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216239-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>burn</li><li>brutal</li><li>savage</li><li>savage*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216991-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thats cold</li><li>heartless</li><li>that's cold*</li><li>cruel</li><li>mean</li><li>harsh</li><li>cold</li><li>dry</li><li>savage</li><li>cold hearted</li><li>that's cold</li><li>dis</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9950092-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i object</li><li>unfair</li><li>i object*</li><li>lawyer</li><li>objection</li><li>wrong</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10155268-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>oh you naaasty*</li><li>oh you naaasty</li><li>you nasty*</li><li>nasty*</li><li>nasty</li><li>you nasty</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941516-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hungry*</li><li>hungry</li><li>mad</li><li>starving</li><li>bad mood</li><li>hangry</li><li>grumpy</li><li>hangry*</li><li>food</li><li>grouchy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216848-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i've had it</li><li>upset</li><li>impatient</li><li>no patience</li><li>pissed</li><li>annoyed</li><li>angry</li><li>thermometer</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9542977-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>boring</li><li>booo</li><li>unimpressed</li><li>dude</li><li>shut up</li><li>dude*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7136782-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>confused</li><li>rude</li><li>wtf</li><li>huh</li><li>question mark</li><li>wow</li><li>?</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7638193-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eww</li><li>gross</li><li>waaah</li><li>blech</li><li>yuck*</li><li>yucky</li><li>blugh</li><li>puke</li><li>hidebody*</li><li>vomit</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945953-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>shh</li><li>you stink*</li><li>booo</li><li>shut up*</li><li>loser</li><li>quiet</li><li>secret</li><li>shut up</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216289-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>everybody cool it</li><li>everybody calm down</li><li>everybody just chill</li><li>calm down people</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954938-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>quick replies</li><li>get well</li><li>feel better</li><li>feel better*</li><li>get well soon</li><li>sick</li><li>hidebody*</li><li>hazmat suit</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10185387-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>its ok</li><li>get well</li><li>happy face</li><li>feel better</li><li>cheer up</li><li>post it note</li><li>cheer up*</li><li>sympathy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7497158-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>its ok</li><li>get well</li><li>encouragement</li><li>hang in there</li><li>you rock</li><li>go you</li><li>team</li><li>good luck</li><li>hang in there*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7859801-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you poor thing</li><li>get well</li><li>awww poor thing</li><li>poor you</li><li>sympathy</li><li>aw poor thing</li><li>aww poor thing*</li><li>aww poor thing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9822075-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sleep</li><li>go to sleep</li><li>get well</li><li>go to bed</li><li>rest up*</li><li>pillows</li><li>blankets</li><li>get well soon</li><li>rest up</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214347-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>giddy up</li><li>lets go</li><li>giddy up*</li><li>giddyup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10188050-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>daniel</li><li>meme</li><li>damn daniel</li><li>damn daniel*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218954-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>break dancing*</li><li>break dancing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8139922-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>amazing</li><li>amazing*</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9319680-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hot damn</li><li>awesome</li><li>yay*</li><li>hot diggity dog</li><li>high five</li><li>hot diggity</li><li>hot diggity*</li><li>great</li><li>hot dog</li><li>hot diggity damn</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220510-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>drinking</li><li>funnel</li><li>beer bong</li><li>drink</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215341-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>awesome</li><li>sick*</li><li>sick</li><li>nice</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10136878-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>jealous</li><li>marker</li><li>goals*</li><li>whiteboard</li><li>goals</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216706-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>friday*</li><li>friday</li><li>fries</li><li>happy friday*</li><li>french fries</li><li>happy friday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187525-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>relaxed</li><li>chillin</li><li>chilling</li><li>relaxing</li><li>sunday:date</li><li>relaxin</li><li>lemonade</li><li>saturday:date</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7197752-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>alcohol</li><li>drinking</li><li>tgif</li><li>drinks</li><li>bottle</li><li>drink</li><li>food</li><li>drunk</li><li>booze</li><li>friday</li><li>beer</li><li>party</li><li>wine</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219078-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bathtub</li><li>bathing</li><li>wash</li><li>clean</li><li>bath</li><li>bathtub*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9240422-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sexiest bitmoji*</li><li>sexy time</li><li>people magazine*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8810106-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hung over</li><li>forcedoutfit*</li><li>drinking</li><li>no regrets</li><li>sick</li><li>no regrets*</li><li>hangover</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219230-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>prayer</li><li>blessed</li><li>fire</li><li>hot</li><li>costume</li><li>pray</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220686-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eighties</li><li>music</li><li>gig</li><li>rad</li><li>rockin it</li><li>jamming</li><li>rad keytar*</li><li>80s</li><li>90s</li><li>rad keytar</li><li>nineties</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216707-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>friday</li><li>happy friday*</li><li>beer</li><li>happy friday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220140-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fidget spinner</li><li>spinner</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9754270-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yummy</li><li>chinese food</li><li>yummy*</li><li>noodles</li><li>chopsticks</li><li>takeout</li><li>dinner</li><li>supper</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220256-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ooooo*</li><li>oooooh</li><li>ooh la la</li><li>ooh</li><li>ooooo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8338838-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>turkey</li><li>stuffed*</li><li>hidebody*</li><li>stuffed</li><li>food</li><li>full</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220237-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hackysack</li><li>hacky sack</li><li>hacky sack*</li><li>footbag</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212530-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>working it</li><li>get it shape</li><li>strong</li><li>working out</li><li>work out</li><li>getting in shape</li><li>exercise</li><li>weights</li><li>working it*</li><li>workin it*</li><li>getting fit</li><li>staying in shape</li><li>fast</li><li>workout</li><li>fitness</li><li>gym</li><li>workin it</li><li>stay in shape</li><li>treadmill</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220640-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hula hoop</li><li>hula hoop waist</li><li>hula hoops</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10039937-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tgif</li><li>weekend</li><li>friday:date</li><li>lets weekend</li><li>friday</li><li>party time</li><li>lets weekend*</li><li>saturday:date</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10176538-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rainbow</li><li>fart</li><li>rainbow fart</li><li>unicorn fart</li><li>unicorn*</li><li>unicorn</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134278-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>winner</li><li>sports</li><li>go me*</li><li>success</li><li>win</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9754242-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>delivery</li><li>pizza party</li><li>party time</li><li>pizza party*</li><li>dinner</li><li>supper</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212473-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>football run</li><li>tackle*</li><li>sunday:date</li><li>tackle</li><li>football</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10114377-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lets have lunch</li><li>lunchbox</li><li>lunch</li><li>lunch box</li><li>sandwich</li><li>lets do lunch</li><li>lets eat</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212040-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>devil</li><li>muah ha ha</li><li>evil laugh</li><li>hidebody*</li><li>kill</li><li>go me</li><li>smile</li><li>satan</li><li>forcedoutfit*</li><li>i rule</li><li>mwahaha</li><li>prbitmoji</li><li>evil</li><li>mwa ha ha</li><li>muahaha</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10155970-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>newspaper</li><li>awesome</li><li>yay*</li><li>guess what</li><li>good news*</li><li>thats great</li><li>good news</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10155287-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ice cream cone</li><li>ice cream</li><li>dessert</li><li>ice cream*</li><li>food</li><li>ice cream cone*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7759652-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gold</li><li>yay</li><li>love it</li><li>proud</li><li>golden</li><li>love it*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9218592-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>alcohol</li><li>wine glass</li><li>red wine</li><li>drinking</li><li>celebrate</li><li>relax</li><li>drinks</li><li>drink</li><li>food</li><li>giant wine</li><li>wine time</li><li>celebration</li><li>wine time*</li><li>giant glass</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8149234-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>magic</li><li>super</li><li>forcedoutfit*</li><li>superpowers</li><li>flying</li><li>prbitmoji</li><li>superhero</li><li>man</li><li>superman</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212280-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>its tuesday*</li><li>its tuesday</li><li>tuesday</li><li>tuesday:date</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9669304-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sports illustrated*</li><li>magazine cover</li><li>swimsuit issue*</li><li>summer</li><li>2016</li><li>sports illustrated</li><li>swim suit</li><li>beach</li><li>swimsuit</li><li>magazine</li><li>bathing suit</li><li>swimsuit issue</li><li>bathingsuit</li><li>swim</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219633-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>avocado</li><li>fruit</li><li>vegetable</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946056-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>quick replies</li><li>samesies</li><li>me too</li><li>same</li><li>same to you</li><li>back at ya*</li><li>back at ya</li><li>you too</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219350-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>innocent*</li><li>innocent</li><li>angel</li><li>halo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215301-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>its tuesday*</li><li>its tuesday</li><li>tuesday</li><li>tuesday:date</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214711-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>interesting</li><li>fascinating</li><li>fascinating*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212752-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fan</li><li>fancy</li><li>fancy*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219621-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>let's go</li><li>let's go out</li><li>forcedoutfit*</li><li>tgif</li><li>weekend</li><li>friday:date</li><li>friday</li><li>let's party</li><li>tgif*</li><li>fun</li><li>party</li><li>happy friday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216108-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sprinkle chef</li><li>meme</li><li>salt</li><li>sprinkle chef meme</li><li>sprinkling salt</li><li>nusret</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220254-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>badminton spike</li><li>shuttlecock</li><li>birdie</li><li>game</li><li>racquet</li><li>badminton</li><li>sport</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10141213-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>soccer</li><li>playing football</li><li>sports</li><li>eurocup</li><li>soccer ball</li><li>football</li><li>playing soccer</li><li>euro cup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8338876-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>let's talk about it</li><li>lets taco bout it*</li><li>lets taco bout it</li><li>let's taco bout it*</li><li>hello</li><li>taco</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215472-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>king</li><li>queen</li><li>current mood*</li><li>sassy</li><li>royalty</li><li>sass</li><li>current mood</li><li>royal</li><li>crown</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10189567-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>let's go</li><li>quitting time!</li><li>flintstones</li><li>time to go</li><li>tgif</li><li>work</li><li>weekend</li><li>quittin' time!</li><li>quittin time*</li><li>quittin time</li><li>friday</li><li>animals</li><li>dinosaur</li><li>leaving</li><li>happy friday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211503-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>movies</li><li>trainwreck</li><li>amused</li><li>movie</li><li>the movies</li><li>popcorn</li><li>popcorn meme</li><li>popcorn*</li><li>watching</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219076-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>flower face</li><li>flower face*</li><li>daisy</li><li>flower</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215972-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i forgive you</li><li>i forgive you*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8298441-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meal</li><li>platter</li><li>cook</li><li>eat up</li><li>supper time</li><li>bon appetit*</li><li>bon appetit</li><li>dinner</li><li>supper</li><li>dinner time</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8097116-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yolo</li><li>funny*</li><li>yolo*</li><li>go me</li><li>you only live once</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215436-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meditating</li><li>calm</li><li>meditation</li><li>current mood*</li><li>current mood</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954824-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>awesome</li><li>score</li><li>football*</li><li>winner</li><li>touchdown</li><li>sunday:date</li><li>touchdown*</li><li>football</li><li>team</li><li>win</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219577-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>red car</li><li>car</li><li>driving with dog</li><li>driving with dog*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212726-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im right</li><li>you know im right</li><li>amirite*</li><li>am i right</li><li>amirite</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212367-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>happy</li><li>hidebody*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946850-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>prayer</li><li>church</li><li>blessed*</li><li>blessed</li><li>angel</li><li>sass</li><li>halo</li><li>heavenly</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10141259-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>soccer</li><li>playing football</li><li>sports</li><li>eurocup</li><li>soccer ball</li><li>football</li><li>playing soccer</li><li>euro cup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220544-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bacon bff</li><li>bacon</li><li>i love bacon</li><li>best buds</li><li>friends</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211502-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>makes sense</li><li>gotcha</li><li>gotcha*</li><li>got ya</li><li>understood</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954623-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meow</li><li>meow*</li><li>cat</li><li>hidebody*</li><li>cute</li><li>funny</li><li>kitty</li><li>mew</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10153476-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>light bulb*</li><li>light bulb</li><li>eureka</li><li>lightbulb*</li><li>lightbulb</li><li>aha</li><li>good idea</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9218607-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>alcohol</li><li>wine glass</li><li>drinking</li><li>celebrate</li><li>relax</li><li>drinks</li><li>drink</li><li>food</li><li>giant wine</li><li>wine time</li><li>celebration</li><li>white wine</li><li>wine time*</li><li>wine</li><li>giant glass</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9998241-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sunday</li><li>happy sundog*</li><li>sunday:date</li><li>happy sunday</li><li>happy sundog</li><li>dog</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975430-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how you like me now</li><li>meow</li><li>cat</li><li>look at me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219728-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>chef kiss</li><li>chef kiss*</li><li>perfect</li><li>bon appetit</li><li>muah</li><li>delicious</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9853640-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lit*</li><li>drunk</li><li>lit</li><li>having fun</li><li>its lit</li><li>its lit*</li><li>fun</li><li>partying</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218337-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meryl</li><li>meme</li><li>singing along</li><li>meryl streep</li><li>streep</li><li>sing along</li><li>shout</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215119-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cool*</li><li>cool</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945389-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>major key</li><li>meme</li><li>success</li><li>key</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218406-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>chandelier</li><li>swinging on chandelier</li><li>swinging on the chandelier</li><li>chandelier*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219136-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yasss*</li><li>yasss</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215009-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pizza</li><li>pizza pizza pizza</li><li>pizza*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187817-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meme</li><li>dab</li><li>dabbing</li><li>dance</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219585-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>begging*</li><li>panting dog</li><li>panting*</li><li>begging</li><li>dog panting</li><li>begging dog</li><li>dog begging</li><li>panting</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117694-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>diamonds</li><li>treat yo self</li><li>treat yourself</li><li>swipe</li><li>treat yo self*</li><li>credit card</li><li>cash</li><li>shopping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212025-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fixmoji</li><li>emoji</li><li>excited</li><li>happy</li><li>hidebody*</li><li>smile*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216588-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>lip guy meme</li><li>lip guy*</li><li>meme</li><li>lip guy</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8479145-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>forcedoutfit*</li><li>sports</li><li>home run</li><li>home run*</li><li>baseball</li><li>team</li><li>win</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117631-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pizza</li><li>hello</li><li>sass</li><li>hidebody*</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9950685-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>golf</li><li>sports</li><li>tee</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220644-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>par</li><li>putt</li><li>golf</li><li>hole in one</li><li>on the green</li><li>putting</li><li>golf course</li><li>golf club</li><li>golfing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219640-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>midnight snack</li><li>food</li><li>munchies</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954563-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>japanese food</li><li>restaurant</li><li>sushi</li><li>sushi*</li><li>rolls</li><li>dinner</li><li>supper</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10079851-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>me time*</li><li>staying in</li><li>chilling</li><li>relaxing</li><li>sunday:date</li><li>chilling out</li><li>me time</li><li>night in</li><li>time to myself</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9754207-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mamma mia</li><li>spaghetti</li><li>noodles</li><li>pasta</li><li>dinner</li><li>supper</li><li>food</li><li>italian food</li><li>mamma mia*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8298890-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>nice*</li><li>nice</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212044-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>wink</li><li>hidebody*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212393-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>trust</li><li>columns</li><li>trust me*</li><li>trust me</li><li>you trust me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8149238-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>alcohol</li><li>drunk</li><li>drinking</li><li>stein</li><li>beer mug</li><li>drinks</li><li>drink</li><li>food</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217325-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>flying</li><li>paper plane</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214009-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ovation</li><li>woooo yeah*</li><li>wooo yeah*</li><li>woooo</li><li>woooo yeah</li><li>applause</li><li>cheer</li><li>cheering</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10120168-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>finished</li><li>complete</li><li>done</li><li>done*</li><li>done and done</li><li>done and done*</li><li>i did it</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7622034-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>money</li><li>bags</li><li>credit card</li><li>cash</li><li>funny</li><li>go me</li><li>shopping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211581-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eid</li><li>hungry</li><li>thanksgivingmoji</li><li>turkey</li><li>thanksgiving</li><li>christmas</li><li>dinner</li><li>supper</li><li>food</li><li>feast</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219346-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>woohoo</li><li>yay*</li><li>celebration</li><li>celebrate</li><li>yahoo</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218905-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sweat bead</li><li>nervous laugh</li><li>nervous laugh*</li><li>sweat drop</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7258102-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay*</li><li>high five</li><li>high five*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941851-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>game time*</li><li>go team</li><li>watching football</li><li>sports</li><li>watching soccer</li><li>watching basketball</li><li>watching sports</li><li>watching the game</li><li>game time</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211857-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>relax</li><li>beach</li><li>chill</li><li>vacation</li><li>travel</li><li>vacation*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9101031-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>working it</li><li>get in shape</li><li>strong</li><li>working out</li><li>work out</li><li>getting in shape</li><li>exercise</li><li>weights</li><li>working it*</li><li>workin it*</li><li>getting fit</li><li>staying in shape</li><li>fast</li><li>workout</li><li>fitness</li><li>gym</li><li>workin it</li><li>stay in shape</li><li>treadmill</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212507-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>neat</li><li>neat*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9090383-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>funny*</li><li>pizza</li><li>prayer</li><li>angel</li><li>sass</li><li>halo</li><li>heavenly</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211670-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>shark</li><li>jumping the shark</li><li>water skiing</li><li>happy days</li><li>water ski</li><li>jump the shark</li><li>fonzie</li><li>jumping the shark*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940604-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>whats for lunch*</li><li>lunch</li><li>wheel of fortune</li><li>what for lunch</li><li>eating</li><li>food</li><li>game show</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10153434-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7197733-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>caffeine</li><li>jittery</li><li>giant coffee</li><li>breakfast</li><li>jitters</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219348-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ayyy lmao</li><li>lmao</li><li>ayyy lmao*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10192280-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thursday:date</li><li>friday jr</li><li>thursday</li><li>friday junior</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219639-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>donut</li><li>doughnut</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945728-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>burger time*</li><li>burger</li><li>fast food</li><li>dinner</li><li>supper</li><li>burger time</li><li>food</li><li>hamburger</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10185206-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>what a night</li><li>what a night*</li><li>hangover</li><li>fun</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212368-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>happy</li><li>hidebody*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212475-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>touchdown</li><li>sunday:date</li><li>touchdown*</li><li>football</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9176167-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>funny*</li><li>spending</li><li>money</li><li>excited</li><li>dollar bills</li><li>make it rain</li><li>cash</li><li>go me</li><li>shopping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211551-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>working out</li><li>weight lifting</li><li>weightlifter</li><li>olympics</li><li>weight lifter</li><li>weight lifting*</li><li>gym</li><li>weights</li><li>lifting weights</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219583-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hungry*</li><li>fork and knife</li><li>hungry</li><li>fork</li><li>starving</li><li>ready to eat</li><li>picnic</li><li>utentils</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9573263-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hump day*</li><li>sliding</li><li>yay</li><li>hump day</li><li>wednesday:date</li><li>wednesday*</li><li>wednesday</li><li>humpday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10217326-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>saturn</li><li>planet</li><li>at peace with the un</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7854159-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dancing</li><li>let's go</li><li>tgif</li><li>let's party</li><li>saturday:date</li><li>let's go out</li><li>meet up</li><li>friday:date</li><li>friday</li><li>dance</li><li>lets party*</li><li>fun</li><li>partying</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9913155-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>100</li><li>be honest</li><li>keep it 100*</li><li>keep it real</li><li>one hundred</li><li>keep it 100</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936751-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yum</li><li>hungry</li><li>yum*</li><li>yummy</li><li>starving</li><li>drool</li><li>sexy time</li><li>salivate</li><li>eating</li><li>mmm</li><li>delicious</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219628-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>feed my face*</li><li>hungry</li><li>feed me</li><li>im hungry</li><li>feed my face</li><li>food</li><li>i'm hungry</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9407281-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>time magazine</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211960-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>great*</li><li>great</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219619-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dancing</li><li>tgif</li><li>disco</li><li>disco ball</li><li>go me</li><li>forcedoutfit*</li><li>funny*</li><li>music</li><li>prbitmoji</li><li>friday</li><li>funky</li><li>dance</li><li>disco fever</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219861-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>whos hungry</li><li>whos hungry*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219614-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>celebration</li><li>fancy</li><li>forcedoutfit*</li><li>celebrate</li><li>excited</li><li>congratulations</li><li>champagne</li><li>suit</li><li>food</li><li>party</li><li>wine</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220258-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>challenge accepted</li><li>challenge accepted*</li><li>i got this</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211583-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ahh</li><li>eid</li><li>thanksgivingmoji</li><li>stuffed</li><li>christmas</li><li>delicious</li><li>dinner</li><li>supper</li><li>food</li><li>feast</li><li>food coma</li><li>turkey</li><li>thanksgiving</li><li>full</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216769-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sunday</li><li>cats</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10187206-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>soccer</li><li>goal</li><li>kick</li><li>playing football</li><li>sports</li><li>eurocup</li><li>goal*</li><li>soccer ball</li><li>football</li><li>playing soccer</li><li>euro cup</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216761-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>roll safe</li><li>meme</li><li>roll safe*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211669-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>camping</li><li>chillin</li><li>fishing</li><li>gone fishing</li><li>fishing*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211676-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hungry</li><li>fridge</li><li>whats for dinner</li><li>whats for supper</li><li>dinner</li><li>supper</li><li>food</li><li>whats for dinner*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10058671-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>alcohol</li><li>bar</li><li>drinking</li><li>fancy drink</li><li>drinks</li><li>happy hour</li><li>happy hour*</li><li>drink</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212285-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>recliner</li><li>good night</li><li>watching tv</li><li>watching tv*</li><li>goodnight</li><li>asleep</li><li>zzz</li><li>lazyboy</li><li>sleeping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220695-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dancing</li><li>keyboard</li><li>music</li><li>keyboard dance</li><li>party time</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216708-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>wine glass</li><li>friday</li><li>happy friday*</li><li>wine</li><li>happy friday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219416-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cannonball</li><li>swimming pool</li><li>summer*</li><li>summer</li><li>summertime</li><li>swim</li><li>hot:temperature</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220243-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>catching a frisbee</li><li>frisbee mouth</li><li>catch</li><li>frisbee</li><li>catching frisbee</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212478-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>first down</li><li>sunday:date</li><li>first down*</li><li>football</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946788-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ship it</li><li>steel</li><li>leave it to me</li><li>confidence</li><li>metal</li><li>i got this*</li><li>i can do this</li><li>i got this</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220240-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>volleyball spike</li><li>volleyball</li><li>beach volleyball</li><li>sport</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216427-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rooster head*</li><li>happy lunar new year</li><li>chicken</li><li>chicken head*</li><li>rooster</li><li>lunar new year</li><li>year of the rooster</li><li>rooster head</li><li>chicken head</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219858-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sunglasses</li><li>homies</li><li>chill</li><li>buddies</li><li>cool shades</li><li>cool shades*</li><li>friends</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215347-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>theres a bitmoji</li><li>theres a bitmoji*</li><li>bitmoji</li><li>bitmoji*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8171344-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy</li><li>animals</li><li>wrangler</li><li>dog</li><li>funny</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10099488-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>u wildin</li><li>u wilding</li><li>you so crazy</li><li>youre crazy</li><li>you crazy</li><li>you wilding</li><li>youre so crazy</li><li>youre wilding</li><li>you wildin</li><li>youre wildin</li><li>u wildin*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10099223-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>basket</li><li>score</li><li>basketball</li><li>swish</li><li>swish*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212371-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>happy</li><li>hidebody*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213816-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>we got this</li><li>we got this*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8813497-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>for sure</li><li>word*</li><li>yep</li><li>agree</li><li>most definitely</li><li>true that</li><li>bling</li><li>true dat</li><li>truth</li><li>money</li><li>yup</li><li>yes*</li><li>cash</li><li>word</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991476-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sky</li><li>yay</li><li>friday*</li><li>its friday</li><li>its friday*</li><li>tgif</li><li>weekend</li><li>friday:date</li><li>friday</li><li>happy friday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134284-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>well done</li><li>yay</li><li>tgif</li><li>friday</li><li>cheers*</li><li>pint</li><li>beer</li><li>cheers</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9725208-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>when is supper</li><li>hungry</li><li>puppy</li><li>wheres my dinner</li><li>feed me</li><li>feed me*</li><li>doggy</li><li>dog</li><li>supper</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936824-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>healthy living*</li><li>fork</li><li>eating well</li><li>salad</li><li>healthy living</li><li>healthy eating</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218964-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>makes sense</li><li>makes sense*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211862-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dab</li><li>fire dab</li><li>fire</li><li>hot</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212152-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>celebration</li><li>confetti</li><li>party time*</li><li>birthdays</li><li>banner</li><li>champagne</li><li>party time</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211505-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>surfer</li><li>surfboard</li><li>surfing</li><li>surfing*</li><li>wave</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8072940-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eating</li><li>hidebody*</li><li>nom</li><li>food</li><li>hamburger</li><li>omnomnom</li><li>hungry</li><li>pizza</li><li>donut</li><li>om nom nom*</li><li>om</li><li>om nom nom</li><li>nom nom</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9754226-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>taco*</li><li>mexican food</li><li>tacos*</li><li>tacos</li><li>dinner</li><li>supper</li><li>food</li><li>taco</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212039-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>twinkle</li><li>emoji</li><li>prbitmoji</li><li>wink</li><li>teeth</li><li>hidebody*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220507-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yum</li><li>yummy</li><li>mmmm</li><li>mmmm*</li><li>tasty</li><li>delicious</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9543335-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>great work</li><li>nice job</li><li>woo hoo</li><li>good</li><li>great</li><li>nice</li><li>dude*</li><li>well done</li><li>yay</li><li>awesome</li><li>woohoo</li><li>psyched</li><li>dude</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117679-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>explosion</li><li>yay*</li><li>boom</li><li>excited</li><li>so excited*</li><li>rocket</li><li>so excited</li><li>bomb</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9665668-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mardi gras</li><li>holidays</li><li>pancakes*</li><li>pancake tuesday</li><li>pancake tueday*</li><li>pancakes</li><li>delicious</li><li>lent</li><li>mardi gras*</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212038-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>happy</li><li>hidebody*</li><li>smile*</li><li>smile</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8600531-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pasta la vista baby*</li><li>pasta</li><li>sass</li><li>pasta la vista baby</li><li>food</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9989017-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>bbq</li><li>we be grillin*</li><li>memorial day</li><li>we be grillin</li><li>cook</li><li>weather</li><li>memorial</li><li>food</li><li>summer</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212401-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>limo party</li><li>limousine</li><li>sun roof</li><li>limo</li><li>party</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213083-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>first place ribbon</li><li>first place ribbon*</li><li>first place*</li><li>number one</li><li>number one*</li><li>first place</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9998104-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hockey</li><li>nhl</li><li>hockey stick</li><li>playoffs</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10192284-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stay cool*</li><li>popsicle</li><li>stay cool</li><li>summer</li><li>hot:temperature</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212404-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>so good</li><li>so good*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975453-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>pug</li><li>pug life*</li><li>dog</li><li>pug life</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219146-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>game</li><li>slam dunk</li><li>slam dunk*</li><li>team</li><li>nba</li><li>go me</li><li>yay</li><li>score</li><li>basketball</li><li>forcedoutfit*</li><li>winner</li><li>net</li><li>win</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9248485-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yay</li><li>awesome</li><li>bonus*</li><li>gamble</li><li>bonus</li><li>jackpot</li><li>success</li><li>gambling</li><li>great</li><li>slot machines</li><li>win</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10178725-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>wish you were here*</li><li>wish you were here</li><li>luv ya</li><li>travel*</li><li>vacation</li><li>miss you</li><li>i miss you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219103-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dog suit</li><li>dog costume</li><li>miss you</li><li>cant wait to see you</li><li>costume</li><li>dog</li><li>i miss you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991736-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>miss you already</li><li>miss you already*</li><li>miss you</li><li>leaving</li><li>bye</li><li>train</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218509-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thinkin of you</li><li>thinkin of u</li><li>thinking about you</li><li>im thinking about you</li><li>thinking of you</li><li>im thinking of you</li><li>thinkin about you</li><li>thinkin bout u</li><li>thinking of you*</li><li>i miss you</li><li>thinkin about u</li><li>thinkin bout you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7897747-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thinkin bout you*</li><li>thinking about you</li><li>luv ya*</li><li>thinking of you</li><li>miss you</li><li>thinkin about you</li><li>travel</li><li>thinking bout you</li><li>i miss you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10155245-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>miss you too</li><li>miss you</li><li>miss you too*</li><li>swingset</li><li>swings</li><li>i miss you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9130148-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>astronaut</li><li>moon</li><li>travel*</li><li>homesick*</li><li>miss you</li><li>hidebody*</li><li>outer space</li><li>homesick</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9419230-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>wish you were here*</li><li>magic lamp</li><li>wish you were here</li><li>aladdin</li><li>genie</li><li>luv ya</li><li>travel*</li><li>miss you</li><li>three wishes</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10205884-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>blowing kisses</li><li>see you soon*</li><li>blow kiss</li><li>see u soon</li><li>see you soon</li><li>blow a kiss</li><li>miss you</li><li>cant wait to see you</li><li>heart</li><li>see u soon*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10184821-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>love you too</li><li>hands</li><li>love you 2</li><li>love you too*</li><li>love u 2</li><li>love ya*</li><li>i love you too</li><li>heart</li><li>love*</li><li>love u too</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212043-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>coeur</li><li>emoji</li><li>in love</li><li>herz</li><li>hearts</li><li>sexy time</li><li>hidebody*</li><li>infatuated</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216290-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you guys are the bes</li><li>i love you guys</li><li>i love you guys*</li><li>love you guys</li><li>you guys rock</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10189586-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>wheelbarrow</li><li>i love you</li><li>much love</li><li>luv ya*</li><li>much love*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216979-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>love</li><li>i love you</li><li>in love</li><li>love you so much</li><li>floating</li><li>heart burst</li><li>luv u</li><li>love you the most*</li><li>love you the most</li><li>heart</li><li>love you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10058765-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>je taime</li><li>je taime*</li><li>heart</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212619-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i heart u</li><li>i love you</li><li>i love you*</li><li>i heart you</li><li>sloth</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212030-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>blowing kisses</li><li>emoji</li><li>blow kiss</li><li>kisses</li><li>sexy time</li><li>blowing a kiss</li><li>hidebody*</li><li>smooch</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9822162-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good for you*</li><li>well done</li><li>good job</li><li>so happy for you</li><li>cake</li><li>happy for you</li><li>good for you</li><li>icing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8809964-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>i really owe you</li><li>thankyou</li><li>much appreciated</li><li>i owe you one</li><li>iou*</li><li>thank you</li><li>iou</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220280-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>red nose day</li><li>rednoseday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9762844-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>awards season</li><li>awards</li><li>great speech*</li><li>great speech</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10161767-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>good for you*</li><li>birthday cake</li><li>cake</li><li>happy birthday</li><li>good for you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8706122-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dad</li><li>family</li><li>dad*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946616-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>feelin lucky*</li><li>do you feel lucky</li><li>i feel lucky</li><li>feeling lucky</li><li>good luck</li><li>feelin' lucky</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216711-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>one love</li><li>one love*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9951839-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i know that feel</li><li>i feel u*</li><li>i feel you</li><li>i feel u</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215543-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>break the internet</li><li>art</li><li>forcedoutfit*</li><li>funny*</li><li>kim kardashian</li><li>champagne</li><li>sexy time</li><li>go me</li><li>party</li><li>wine</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991041-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>forcedoutfit*</li><li>graduation*</li><li>graduation</li><li>congratulations</li><li>congrats</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215362-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>movies</li><li>award</li><li>awards show</li><li>award goes to</li><li>awards season</li><li>award season</li><li>the award</li><li>the award goes to</li><li>award show</li><li>and the award</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9021226-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stay golden*</li><li>you rock</li><li>golden</li><li>stay golden</li><li>polish</li><li>you rock*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8922368-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>letter</li><li>writing</li><li>all the best*</li><li>miss you</li><li>all the best</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10046070-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>flowers</li><li>bouquet*</li><li>mother's day</li><li>bouquet</li><li>mom</li><li>happy mothers day</li><li>happy mother's day</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219624-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>big hat</li><li>head</li><li>forcedoutfit*</li><li>music</li><li>happy</li><li>funny</li><li>go me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219622-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>forcedoutfit*</li><li>go you</li><li>champagne</li><li>butler</li><li>waiter</li><li>congrats</li><li>happy anniversary</li><li>happy anniversary*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10014107-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>happy birthday*</li><li>fantasy</li><li>dragonslayer</li><li>happy bday</li><li>storybook</li><li>birthdays</li><li>knight</li><li>happy birthday</li><li>dragon</li><li>hbd</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8793838-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>so happy for you</li><li>so happy for you*</li><li>wedding cake</li><li>happy for you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9158609-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>confident*</li><li>confidence</li><li>confident</li><li>demi lovato</li><li>sexy time</li><li>confidence*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8398500-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>k thanks</li><li>k thx bye</li><li>texting</li><li>kay thanks</li><li>k thanx</li><li>okay thanks</li><li>text message</li><li>thanks</li><li>k thx*</li><li>kay thanx</li><li>k thx</li><li>okay thank you</li><li>kay thx</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9945113-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>thanks</li><li>you're a lifesaver</li><li>youre a life saver*</li><li>youre a life saver</li><li>ur a lifesaver</li><li>youre a lifesaver*</li><li>ur a life saver</li><li>thank you</li><li>ur a lifesaver*</li><li>you're a life saver</li><li>youre a lifesaver</li><li>life preserver</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219039-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you rock</li><li>go you</li><li>uncle sam</li><li>american</li><li>cutout</li><li>i want you</li><li>team</li><li>hidebody*</li><li>i want you*</li><li>i like you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215984-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>nope</li><li>nope*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9281500-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>uh uh</li><li>no</li><li>mm mm</li><li>negative</li><li>you stink*</li><li>booo</li><li>negatory</li><li>naw</li><li>nope</li><li>quick replies*</li><li>nuh uh</li><li>no*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940762-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no</li><li>booo</li><li>nopenopenope*</li><li>nopenopenope</li><li>nope nope nope*</li><li>nope nope nope</li><li>oops</li><li>wtf</li><li>grrr</li><li>scary</li><li>scared</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975405-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no</li><li>no thanks</li><li>no thank you</li><li>nothanks</li><li>no thankyou</li><li>no thanks*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212754-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no</li><li>nah</li><li>nope</li><li>nope*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9101103-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no</li><li>booo</li><li>nah</li><li>nah*</li><li>hate</li><li>grrr*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954363-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>oh*</li><li>oh really</li><li>quick replies</li><li>orly</li><li>question</li><li>is that so</li><li>questions</li><li>oh</li><li>question mark</li><li>really</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10155255-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>business</li><li>interesting</li><li>interesting*</li><li>thinking</li><li>very interesting</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9543030-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>im over it</li><li>boring</li><li>door</li><li>booo</li><li>goodbye</li><li>leaving</li><li>im over it*</li><li>bye</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8549772-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stressed out</li><li>stress</li><li>waaah</li><li>damn</li><li>game over</li><li>fail</li><li>computer</li><li>stressed</li><li>game over*</li><li>oops</li><li>dang</li><li>stressful</li><li>nerd</li><li>shoot</li><li>video games</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10205842-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>gulp</li><li>doom</li><li>nervous</li><li>uh oh</li><li>gulp*</li><li>im in trouble</li><li>uhoh</li><li>worried</li><li>doomed</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8149260-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>so crazy</li><li>cray cray</li><li>omg</li><li>wtf</li><li>cray cray*</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954989-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yikes</li><li>oy vey</li><li>omg</li><li>oy gevalt</li><li>oy vey*</li><li>vey iz mir</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212459-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>no</li><li>no way</li><li>nope</li><li>no way*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216404-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>how bou dah</li><li>cash me ousside*</li><li>meme</li><li>cash me outside</li><li>catch me outside</li><li>how bout dat</li><li>cash me ousside</li><li>catch me ousside</li><li>how bow dah</li><li>how bow dah*</li><li>how bou dat</li><li>how bow dat</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211624-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>whoa</li><li>dang</li><li>omg</li><li>woah</li><li>wtf</li><li>whoa*</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7226446-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stupid</li><li>booo</li><li>homer simpson</li><li>waaaah</li><li>dumb</li><li>hidebody*</li><li>damn</li><li>d'oh!</li><li>doh!*</li><li>oops</li><li>ugh</li><li>dang</li><li>d'oh*</li><li>shoot</li><li>d'oh!*</li><li>grrr</li><li>doh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9936358-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>doesnt matter</li><li>boring</li><li>no one cares</li><li>boo</li><li>i dont care</li><li>who cares</li><li>who cares*</li><li>shut up</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213080-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>half</li><li>half face*</li><li>half face</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954851-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>calendar</li><li>thursday:date</li><li>is it friday yet</li><li>tuesday:date</li><li>monday:date</li><li>waaah</li><li>wednesday:date</li><li>is it friday yet*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10176555-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i beg you</li><li>pretty please*</li><li>begging</li><li>cherry on top</li><li>please</li><li>pretty please</li><li>with a cherry on top</li><li>costume</li><li>cupcake</li><li>im begging you</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9725054-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>waaah</li><li>work</li><li>busy</li><li>night</li><li>working late</li><li>office</li><li>working late*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991275-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>stressed out</li><li>vacation over</li><li>stress</li><li>waaah</li><li>back to reality*</li><li>back to reality</li><li>summer</li><li>back to school</li><li>computer</li><li>fall</li><li>stressed</li><li>stressful</li><li>back to work</li><li>autumn</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214975-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>kermit meme</li><li>me to me</li><li>meme</li><li>evil kermit</li><li>kermit</li><li>evil kermit*</li><li>also me</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134003-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>no</li><li>nooo</li><li>booo</li><li>awful</li><li>grrr*</li><li>disaster</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215311-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cat box</li><li>i hate monday</li><li>mondays*</li><li>monday:date</li><li>school</li><li>cat bed</li><li>waaah*</li><li>mondays</li><li>monday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8736524-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meet up</li><li>meme</li><li>1234</li><li>soon*</li><li>soon.*</li><li>soon.</li><li>hidebody*</li><li>creepy</li><li>eyes</li><li>soon</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220676-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>wamp wamp</li><li>womp womp</li><li>womp womp tuba*</li><li>tuba</li><li>playing tuba</li><li>womp womp tuba</li><li>wamp wamp tuba</li><li>womp womp*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10079832-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>dont tell anyone</li><li>shhh</li><li>shh</li><li>shh*</li><li>shhhhh</li><li>be quiet</li><li>dont tell</li><li>keep it quiet</li><li>quiet please</li><li>shhhhh*</li><li>secret</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9573305-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>hump day*</li><li>hump day</li><li>waaah</li><li>wednesday:date</li><li>wednesday*</li><li>wednesday</li><li>humpday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212159-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mad</li><li>erupting</li><li>booo</li><li>emoji</li><li>temper</li><li>grrrr</li><li>hate</li><li>grrr</li><li>hidebody*</li><li>kill</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219578-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>laptop cat</li><li>sleeping cat</li><li>laptop cat*</li><li>cat</li><li>laptop</li><li>napping cat</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220690-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>ice cream</li><li>eating crying</li><li>crying eating</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9950173-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>wasnt me</li><li>it wasnt me</li><li>i didnt do it</li><li>angel</li><li>halo</li><li>not guilty</li><li>not guilty*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10216846-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>disappointed</li><li>disappointment</li><li>you guys suck</li><li>boo</li><li>ugh</li><li>annoyed</li><li>u suck</li><li>you suck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10168906-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>water closet</li><li>forcedoutfit*</li><li>toilet</li><li>gross</li><li>pooping</li><li>interrupted</li><li>wc</li><li>butt</li><li>bathroom</li><li>washroom</li><li>peeing</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941680-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>o snap!</li><li>oh snap*</li><li>oh snap</li><li>sass</li><li>oh snap!*</li><li>oh snap!</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10178663-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>fail</li><li>stupid</li><li>oh no</li><li>oops!*</li><li>oops</li><li>oops*</li><li>dang</li><li>dumb</li><li>shoot</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7201584-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>rude</li><li>what the hell</li><li>wtf*</li><li>dang</li><li>wtf</li><li>what the</li><li>hidebody*</li><li>wow</li><li>what the fuck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220253-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i need answers</li><li>i need answers*</li><li>give me answers</li><li>answers</li><li>tell me</li><li>demand to know</li><li>need to know</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10039883-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>anxious</li><li>having troubles</li><li>problem</li><li>having trouble</li><li>having problems</li><li>nervous</li><li>im good</li><li>troubles</li><li>im good*</li><li>im not good</li><li>falling apart</li><li>problems</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10218199-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>skint</li><li>broke</li><li>broke*</li><li>money</li><li>dosh</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9248549-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>balancing</li><li>cant talk working</li><li>quick replies</li><li>too busy</li><li>working</li><li>so busy</li><li>so busy*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10211503-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>movies</li><li>trainwreck</li><li>amused</li><li>movie</li><li>the movies</li><li>popcorn</li><li>popcorn meme</li><li>popcorn*</li><li>watching</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220678-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>break guitar</li><li>fml</li><li>smash</li><li>guitar smash</li><li>guitar</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7834203-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>i messed up</li><li>sorry</li><li>my fault</li><li>my bad</li><li>my bad*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9941632-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fear of missing out*</li><li>fomo</li><li>fear of missing out</li><li>fomo*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212461-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>do it</li><li>do it*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9205465-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>halloweenmoji</li><li>braains*</li><li>spooky</li><li>braains</li><li>brains</li><li>forcedoutfit*</li><li>halloween</li><li>zombie</li><li>undead</li><li>scary</li><li>zombies</li><li>brains*</li><li>funny</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212036-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>emoji</li><li>resting</li><li>snoring</li><li>tired</li><li>zzz*</li><li>asleep</li><li>zzz</li><li>hidebody*</li><li>sleepy</li><li>sleeping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10133677-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>forcedoutfit*</li><li>gross</li><li>golden toilet</li><li>gold toilet</li><li>butt</li><li>bling</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9975458-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>boring</li><li>doge shirt</li><li>doge*</li><li>doge</li><li>unimpressed</li><li>so what</li><li>who cares</li><li>dog</li><li>dont care</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8582823-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>so boring</li><li>sign</li><li>so boring*</li><li>so bored</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219132-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>umm*</li><li>umm</li><li>mmm</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220683-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>music</li><li>jazz</li><li>saxophone blues</li><li>saxophone</li><li>instrument</li><li>blues</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8673304-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>awkward*</li><li>weirdo</li><li>1234</li><li>awkward</li><li>uncomfortable</li><li>sass</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10120409-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>monday:date</li><li>weight</li><li>happy monday</li><li>happy monday*</li><li>monday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117542-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>meh</li><li>nevermind*</li><li>forget it</li><li>nevermind</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10120145-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>sorry to hear that</li><li>oh no*</li><li>too bad</li><li>oh no</li><li>sorry to hear</li><li>that sucks</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213815-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>too bad</li><li>bummer*</li><li>bummer</li><li>that sucks</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219080-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>eye</li><li>peep hole*</li><li>peeping</li><li>spying</li><li>spy</li><li>peep hole</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219138-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>equation meme*</li><li>equation meme</li><li>math</li><li>math*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8067708-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>nauseous</li><li>eww</li><li>gross</li><li>queasy</li><li>sick to stomach</li><li>sick</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10213087-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>you wish</li><li>you wish*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/8327769-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>rude</li><li>booo</li><li>1234</li><li>candy</li><li>hate</li><li>lollipop</li><li>loser</li><li>sucker</li><li>sucker*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9788526-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>quick replies</li><li>question</li><li>shadow</li><li>but why</li><li>why though</li><li>why*</li><li>whyy</li><li>whyyy</li><li>questions</li><li>why</li><li>question mark</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7973976-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>tmi</li><li>booo</li><li>eww</li><li>gross</li><li>1234</li><li>icky</li><li>tmi*</li><li>yuck</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10219135-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fml</li><li>fuck my life*</li><li>fuck my life</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10220246-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>not today*</li><li>not today</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9991808-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>fail</li><li>waaah</li><li>fail*</li><li>ugh</li><li>dang</li><li>shoot</li><li>hidebody*</li><li>crushed</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9788649-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>yes or no*</li><li>quick replies</li><li>yes or no</li><li>question</li><li>yes</li><li>questions</li><li>answer me</li><li>paddle</li><li>answer</li><li>paddles</li><li>let me know</li><li>question mark</li><li>ultimatum</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10215499-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>frozen*</li><li>freezing</li><li>freezing*</li><li>encased in ice</li><li>frozen</li><li>ice</li><li>in ice</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9877292-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>jealous</li><li>yay</li><li>you jealous</li><li>im the best</li><li>im da best</li><li>i rock</li><li>are you jealous</li><li>im awesome</li><li>jealous*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9940832-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>fashion police*</li><li>awards show</li><li>outfit</li><li>awards season</li><li>best dressed</li><li>red carpet</li><li>worst dressed</li><li>who are you wearing</li><li>fashion police</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10117835-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>mine</li><li>coal miner</li><li>monday:date</li><li>waaah</li><li>work</li><li>back to the grind</li><li>back to the grind*</li><li>mondays</li><li>miner</li><li>monday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10212403-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>so evil</li><li>evil</li><li>so evil*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10176517-121464857_22-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>unicorn costume</li><li>what do you mean</li><li>who cares</li><li>whats your point*</li><li>unicorn</li><li>whats your point</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10134254-280531978_4-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>can't talk working..</li><li>cant talk working*</li><li>cant talk working</li><li>meet up</li><li>slacking off</li><li>study</li><li>i'm busy</li><li>lazy</li><li>work</li><li>can't talk</li><li>sleeping</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9946310-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>cat box</li><li>i hate monday</li><li>mondays*</li><li>monday:date</li><li>school</li><li>cat bed</li><li>waaah*</li><li>mondays</li><li>monday</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/7202399-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>damn</li><li>omg*</li><li>dang</li><li>omg</li><li>wtf</li><li>what the</li><li>hidebody*</li><li>wow</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9788479-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>quick replies</li><li>stop watch</li><li>question</li><li>pocket watch</li><li>questions</li><li>question mark</li><li>when</li><li>when*</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/9954632-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>autocorrect*</li><li>keyboard</li><li>quick replies</li><li>stupid autocorrect</li><li>booo</li><li>damn autocorrect</li><li>auto correct</li><li>text bubble</li><li>damn you*</li><li>damn you</li><li>text message</li><li>autocorrect</li><li>typo</li><li>sms</li><li>grrr</li></ul></div>
<div class="friends"><img src="https://render.bitstrips.com/v2/cpanel/10214357-270452369_2-s1-v1.png?transparent=1&palette=1&width=300" /><ul><li>brutal</li><li>brutal*</li></ul></div>