-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlists.py
1096 lines (1071 loc) · 68.5 KB
/
lists.py
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
# Image urls for the psat command
psat_memes = [
"http://i.imgur.com/5eJ5DbU.jpg",
"http://i.imgur.com/HBDnWVc.jpg",
"http://i.imgur.com/RzZlq2j.jpg",
"http://i.imgur.com/mVRNUIG.jpg",
"http://i.imgur.com/OvOmC6g.jpg",
"http://i.imgur.com/QqlSxaZ.png",
"http://i.imgur.com/finNuzx.jpg",
"http://i.imgur.com/XB2nBmz.png",
"http://i.imgur.com/7sCwNXl.jpg",
"http://i.imgur.com/caw6Pao.png",
"http://i.imgur.com/GwV0JYL.png"
]
# IP address Response for hack command
IP_addresses = ['5.199.130.188', '12.97.22.92' , '18.27.197.252', '23.129.64.185', '23.129.64.187', '23.129.64.188',
'23.160.208.249', '23.160.208.250', '24.16.15.156', '24.163.51.20', '31.7.61.188', '31.7.61.190',
'31.220.0.202', '31.220.0.203', '31.220.1.169', '31.220.1.170', '31.220.1.233', '31.220.2.100',
'31.220.40.236', '31.220.40.238', '31.220.40.239', '31.220.40.240', '31.220.40.241', '45.26.19.0',
'45.66.35.35', '45.91.101.18', '45.129.56.200', '45.140.170.187', '45.151.167.10', '45.154.35.210',
'45.154.255.72', '45.154.255.73', '45.154.255.75', '45.154.255.147', '46.19.141.82', '46.19.141.83',
'50.90.222.53', '50.216.77.82', '51.15.1.221', '51.15.43.205', '51.15.59.15', '51.15.80.14',
'67.11.178.185', '67.85.125.37', '67.205.238.70', '68.197.64.252', '70.172.15.23', '71.19.144.106',
'71.135.153.35', '71.146.110.13', '71.197.179.78', '71.218.118.24', '71.226.40.140', '72.208.12.137',
'73.80.180.196', '73.144.222.34', '73.178.198.7', '73.223.198.59', '74.128.201.252', '75.38.185.14',
'77.247.181.162', '77.247.181.163', '77.247.181.165', '82.223.14.245', '84.53.192.243', '85.248.227.16',
'85.248.227.165', '87.118.116.12', '89.31.57.5', '89.144.12.17', '89.163.143.8', '89.234.157.254'
]
# Paswwords Response for hack command
passwords = [
'ineedapassword',
'IamACompleteIdiot',
'YouWontGuessThisOne',
'PasswordShmashword',
'iamnottellingyoumypw',
'nomorepasswords',
'myonlypassword',
'dontaskdonttell',
'DontGoogleThis',
'JustNukeIt',
'FBISurveillanceVan',
'IdentityTheftForFree',
'ImUnderYourBed',
'C:Virus.exe',
'ConnectAndDie',
'TopSecretNetwork',
'DontEvenTryIt',
'HaHaNextTimeLockYourRouter',
'404PasswordUnavaillable',
'AsFastAsInternetExplorer',
'NameAlreadyInUse',
'MalwareInside'
]
# Response for the 8ball command
magic_conch_shell = [
"It is certain",
"It is decidedly so",
"Without a doubt",
"Yes definitely",
"You may rely on it",
"As I see it yes",
"Most likely",
"Outlook good",
"Yes",
"Signs point to yes",
"Reply hazy try again",
"Ask again later",
"Better not tell you now",
"Cannot predict now",
"Concentrate and ask again",
"Don't count on it",
"My reply is no",
"My sources say no",
"Outlook not so good",
"Very doubtful"
]
# Insults for the insult command
roasts = [ 'You’re the reason God created the middle finger.',
'You’re a grey sprinkle on a rainbow cupcake.',
'If your brain was dynamite, there wouldn’t be enough to blow your hat off.',
'You are more disappointing than an unsalted pretzel.',
'Light travels faster than sound which is why you seemed bright until you spoke.',
'We were happily married for one month, but unfortunately we’ve been married for 10 years.',
'Your kid is so annoying, he makes his Happy Meal cry.',
'You have so many gaps in your teeth it looks like your tongue is in jail.',
'Your secrets are always safe with me. I never even listen when you tell me them.',
'I’ll never forget the first time we met. But I’ll keep trying.',
'I forgot the world revolves around you. My apologies, how silly of me.',
'I only take you everywhere I go just so I don’t have to kiss you goodbye.',
'Hold still. I’m trying to imagine you with personality.',
'Our kid must have gotten his brain from you! I still have mine.',
'Your face makes onions cry.',
'The only way my husband would ever get hurt during an activity is if the TV exploded.',
'You look so pretty. Not at all gross, today.',
'Her teeth were so bad she could eat an apple through a fence.',
'I’m not insulting you, I’m describing you.',
'I’m not a nerd, I’m just smarter than you.',
'Keep rolling your eyes, you might eventually find a brain.',
'Your face is just fine but we’ll have to put a bag over that personality.',
'You bring everyone so much joy, when you leave the room.',
'I thought of you today. It reminded me to take out the trash.',
'Don’t worry about me. Worry about your eyebrows.',
'there is approximately 1,010,030 words in the language english, but i cannot string enough words together to express how much i want to hit you with a chair'
f'You have the right to remain silent because whatever you say will probably be stupid anyway.',
f"is a child molester",
f"has a kink with 80 year old men",
f"is a cuntrag",
f"is a worthless piece of shit",
f"has no other purpose in life other than to be retarded and waste people's time",
f"is a fucking disguisting, disgraceful, ignorant, pathetic, and discriminative weeaboo!",
f"is just a fucking sterotypical 12 year old saying shit",
f"is so insecure about his penis size because it is smaller than a babies",
f'You\'re the reason every country has to put directions on shampoo.',
f'Quick - check your face! I just found your nose in my business.',
f'you choked! Ha',
f'It\'s better to let someone think you\'re stupid than open your mouth and prove it.',
f'If laughter is the best medicine, your face must be curing the world.',
f'Were you born this stupid or did you take lessons?',
f'Why is it acceptable for you to be an idiot but not for me to point it out?',
f'I\'d slap you, but that\'d be animal abuse',
f'I\'m trying my absolute hardest to see things from your perspective, but I just can\'t get my head that far up my ass.',
f'Brains aren\'t everything. In your case they\'re nothing.',
f'I just stepped in something that was smarter than you… and smelled better too.',
f'Jesus loves you... but everyone else thinks you,re an asshole.',
f'Did you know they used to be called: Jumpolines, until your mum jumped on one?',
f'Which sexual position produces the ugliest children? Ask your mother.',
f'If laughter is the best medicine, your face must be curing the world.',
f'It looks like your face caught fire and someone tried to put it out with a hammer.',
f'I was hoping for a battle of wits but you appear to be unarmed.',
f'You\'re such a beautiful, intelligent, wonderful person. Oh I\'m sorry, I thought we were having a lying competition.',
f'Quick - check your face! I just found your nose in my business.',
f'I don\'t know what makes you so stupid, but it really works.',
f'Aww, it\'s so cute when you try to talk about things you don\'t understand.',
f'If I wanted a bitch, I\'d have bought a dog.',
f'Save your breath - you\'ll need it to blow up your date.',
f'You\'re so fat you could sell shade.',
f'I\'m trying my absolute hardest to see things from your perspective, but I just can\'t get my head that far up my ass.',
f'Were you born on highway? Cause that\'s where the most accidents happen.',
f'You are proof that evolution can go in reverse.',
f'I\'d slap you but I don\'t want to make your face look any better.',
f'If you really want to know about mistakes, you should ask your parents.',
f'I just stepped in something that was smarter than you… and smelled better too.',
f'I\'d slap you, but that\'d be animal abuse.',
f'It\'s better to let someone think you\'re stupid than open your mouth and prove it.',
f'I\'ve seen people like you before, but I had to pay admission.',
f'You\'ll never be the man your mother is.',
f'I\'m sorry, was I meant to be offended? The only thing offending me is your face.',
f'Hey, your village called - they want their idiot back.',
f'I\'m trying my absolute hardest to see things from your perspective, but I just can\'t get my head that far up my ass.',
f'Your lips keep moving but all I hear is: Blah, blah, blah.',
f'I\'d give you a nasty look but you\'ve already got one.',
f'Calling you an idiot would be an insult to all stupid people.',
f'I\'ve been called worse by better.',
f'Please, keep talking. I always yawn when I am interested.',
f'Gay? I\'m straighter than the pole your mom dances on.',
f'Scientists say the universe is made up of neutrons, protons and electrons. They forgot to mention morons.',
f'The zoo called. They\'re wondering how you got out of your cage?',
f'I\'d like to see things from your point of view, but I can\'t seem to get my head that far up your ass.',
f'You\'re not stupid; you just have bad luck when thinking.',
f'Stupidity\'s not a crime, so you\'re free to go.',
f'If you\'re going to be two-faced, at least make one of them pretty.',
f'Quick - check your face! I just found your nose in my business.',
f'Just because you have one doesn\'t mean you need to act like one.',
f'I\'m not saying that I hate you. I\'m just saying if you got hit by a bus, I\'d be driving that bus',
f'Save your breath - you\'ll need it to blow up your date.',
f'Which sexual position produces the ugliest children? Ask your mother.',
f'Your family tree must be a cactus because everyone on it is a prick.',
f'What\'s the difference between your girlfriend and a walrus? One has a moustache and smells of fish and the other is a walrus.',
f'The only way you\'ll ever get laid is if you crawl up a chicken\'s ass and wait.',
f'Someday you\'ll go far… and I hope you stay there.',
f'I\'m sorry I didn\'t get that - I don\'t speak idiot.',
f'Your ass must be pretty jealous of all the shit that comes out of your mouth.',
f'I love what you\'ve done with your hair. How do you get it to come out of the nostrils like that?',
f'Whatever kind of look you were going for, you missed.',
]
# Drunk lines for the actdrunk command
drunkaf = [
"UDNDUNDUNDUNDUDNUDNDUNDUNDUNDUNDUNDUDNUDNDUNDUNDUNDUNDUNDUNDUNDNUDNDUN",
"AMERICAN IDIOTS YAAAS",
"HEH HEH HEH HEH IM SO FUKED UP LOL",
"lol Ill fuk u up n@4f3 fucjing fite me4",
"fite me u lil fuck",
"i have somethin to tell you: fedc",
"weeeeeeew",
"\*falls*",
"lol wana fuk some suc tonight #5SdE2@"
]
# Image urls for the honk command
honkhonkfgt = [
"https://i.imgur.com/c53XQCI.gif",
"https://i.imgur.com/ObWBP14.png",
"https://i.imgur.com/RZP2tB4.jpg",
"https://i.imgur.com/oxQ083P.gif",
"https://i.imgur.com/byBB7ln.jpg",
"https://i.imgur.com/NvUiLGG.gif",
"https://i.imgur.com/QDyvO4x.jpg",
"https://i.imgur.com/HtrRYSS.png",
"https://i.imgur.com/bvrFQnX.jpg"
]
# Fight command results
fight_results = [
"and it was super effective!",
"but %user% dodged it!",
"and %user% got obliterated!",
"but %attacker% missed!",
"but they killed each other!",
"and it wiped out everything within a five mile radius!",
"but in a turn of events, they made up and became friends. Happy ending!",
"and it worked!",
"and %user% never saw it coming.",
"but %user% grabbed the attack and used it against %attacker%!",
"but it only scratched %user%!",
"and %user% was killed by it.",
"but %attacker% activated %user%'s trap card!",
"and %user% was killed!"
]
# SFW neko types for the neko command
sfw_neko_types = [
"neko",
"wallpaper",
"ngif",
"tickle",
"meow",
"feed",
"gecg",
"kemonomimi",
"poke",
"slap",
"avatar",
"holo",
"lizard",
"waifu",
"pat",
"8ball",
"kiss",
"cuddle",
"fox_girl",
"hug"
]
# NSFW neko types for the neko command
nsfw_neko_types = [
"feet",
"yuri",
"trap",
"futanari",
"hololewd",
"lewdkemo",
"solog",
"feetg",
"cum",
"erokemo",
"les",
"lewdk",
"lewd",
"eroyuri",
"eron",
"cum_jpg",
"bj",
"nsfw_neko_gif",
"solo",
"kemonomimi",
"nsfw_avatar",
"gasm",
"anal",
"hentai",
"erofeet",
"keta",
"blowjob",
"pussy",
"tits",
"holoero",
"pussy_jpg",
"pwankg",
"classic",
"kuni",
"8ball",
"femdom",
"spank",
"erok",
"boobs"
"Random_hentai_gif",
"smallboobs",
"ero"
]
# Response for WAIFU
Number1 =['1/100\t:face_vomiting:',
'2/100\t:face_vomiting:',
'3/100\t:face_vomiting:',
'4/100\t:face_vomiting:',
'5/100\t:face_vomiting:',
'6/100\t:face_vomiting:',
'7/100\t:face_vomiting:',
'8/100\t:face_vomiting:',
'9/100\t:face_vomiting:',
'10/100\t:face_vomiting:',
'11/100\t:nauseated_face:',
'12/100\t:nauseated_face:',
'13/100\t:nauseated_face:',
'14/100\t:nauseated_face:',
'15/100\t:nauseated_face:',
'16/100\t:nauseated_face:',
'17/100\t:nauseated_face:',
'18/100\t:nauseated_face:',
'19/100\t:nauseated_face:',
'20/100\t:nauseated_face:',
'21/100\t:cry:',
'22/100\t:cry:',
'23/100\t:cry:',
'24/100\t:cry:',
'25/100\t:cry:',
'26/100\t:cry:',
'27/100\t:cry:',
'28/100\t:cry:',
'29/100\t:cry:',
'30/100\t:cry:',
'31/100\t:confused:',
'32/100\t:confused:',
'33/100\t:confused:',
'34/100\t:confused:',
'35/100\t:confused:',
'36/100\t:confused:',
'37/100\t:confused:',
'38/100\t:confused:',
'40/100\t:confused:',
'41/100\t:confused:',
'42/100\t:slight_smile:',
'43/100\t:slight_smile:',
'44/100\t:slight_smile:',
'45/100\t:slight_smile:',
'46/100\t:slight_smile:',
'47/100\t:slight_smile:',
'50/100\t:slight_smile:',
'51/100\t:slight_smile:',
'52/100\t:slight_smile:',
'53/100\t:slight_smile:',
'54/100\t:slight_smile:',
'55/100\t:slight_smile:',
'56/100\t:slight_smile:',
'57/100\t:slight_smile:',
'58/100\t:slight_smile:',
'59/100\t:slight_smile:',
'60/100\t:slight_smile:',
'61/100\t:smirk:',
'62/100\t:smirk:',
'63/100\t:smirk:',
'64/100\t:smirk:',
'65/100\t:smirk:',
'66/100\t:smirk:',
'67/100\t:smirk:',
'68/100\t:smirk:',
'69/100\t:smirk:',
'70/100\t:smirk:',
'71/100\t:kissing_heart:',
'72/100\t:kissing_heart:',
'73/100\t:kissing_heart:',
'74/100\t:kissing_heart:',
'75/100\t:kissing_heart:',
'76/100\t:kissing_heart:',
'77/100\t:kissing_heart:',
'78/100\t:kissing_heart:',
'79/100\t:kissing_heart:',
'80/100\t:kissing_heart:',
'81/100\t:star_struck:',
'82/100\t:star_struck:',
'83/100\t:star_struck:',
'84/100\t:star_struck:',
'85/100\t:star_struck:',
'86/100\t:star_struck:',
'87/100\t:star_struck:',
'88/100\t:star_struck:',
'89/100\t:star_struck:',
'90/100\t:star_struck:',
'91/100\t:heart_eyes:',
'92/100\t:heart_eyes:',
'93/100\t:heart_eyes:',
'94/100\t:heart_eyes:',
'95/100\t:heart_eyes:',
'96/100\t:heart_eyes:',
'97/100\t:heart_eyes:',
'98/100\t:heart_eyes:',
'99/100\t:heart_eyes:',
'100/100\t:heart_eyes:']
# Responses for joke
joke = ['I told my wife she was drawing her eyebrows to high.\n\nShe looked suprised.',
'And the Lord said unto John,"Come forth and you will receive eternal life\nBut John came fifth,and won a toaster."',
'I threw a boomerang a few years ago.\nI now live in constant fear',
'What is the best thing about Switzerland?\n\nI dont know the flag is a big plus',
'I invented a new word!\n\nPlagiarism!',
'Did you hear about the mathematician who’s afraid of negative numbers?\n\nHe’ll stop at nothing to avoid them.',
'Why do we tell actors to “break a leg?”\n\nBecause every play has a cast.',
'Helvetica and Times New Roman walk into a bar\n\n“Get out of here!” shouts the bartender. “We don’t serve your type.”',
'Yesterday I saw a guy spill all his Scrabble letters on the road.\n\nI asked him, “What’s the word on the street?”',
'How many times can you subtract 10 from 100?\n\nOnce. The next time you would be subtracting 10 from 90.',
'Hear about the new restaurant called Karma?\n\nThere’s no menu: You get what you deserve.',
'A woman in labour suddenly shouted, “Shouldn’t! Wouldn’t! Couldn’t! Didn’t! Can’t!”\n\n“Don’t worry,” said the doctor. “Those are just contractions.”',
'A bear walks into a bar and says, “Give me a whiskey… and a cola.”\n\n“Why the big pause?” asks the bartender. The bear shrugged. “I’m not sure. I was born with them.”',
'Did you hear about the actor who fell through the floorboards?\n\nHe was just going through a stage.',
'Did you hear about the claustrophobic astronaut?\n\nHe just needed a little space.',
'Why don’t scientists trust atoms?\n\nBecause they make up everything.',
'Why did the chicken go to the séance?\n\nTo get to the other side.',
'Where are average things manufactured?\n\nThe satisfactory.',
'How do you drown a hipster?\n\nThrow him in the mainstream.',
'What sits at the bottom of the sea and twitches?\n\nA nervous wreck.',
'What does a nosy pepper do?\n\nGets jalapeño business!',
'Why are pirates called pirates?\n\nBecause they arrgh!',
'Why can’t you explain puns to kleptomaniacs?\n\nThey always take things literally.',
'How do you keep a bagel from getting away?\n\nPut lox on it.',
'A man tells his doctor, “Doc, help me. I’m addicted to Twitter!”\n\nThe doctor replies, “Sorry, I don’t follow you…”',
'What kind of exercise do lazy people do?\n\nDiddly-squats.',
'Why don’t Calculus majors throw house parties?\n\nBecause you should never drink and derive.',
'What do you call a parade of rabbits hopping backwards?\n\nA receding hare-line.',
'What does Charles Dickens keep in his spice rack?\n\nThe best of thymes, the worst of thymes.',
'What’s the different between a cat and a comma?\n\nA cat has claws at the end of paws; A comma is a pause at the end of a clause.',
'Why should the number 288 never be mentioned?\n\nIt’s two gross.',
'What did the Tin Man say when he got run over by a steamroller?\n\n“Curses! Foil again!”',
'What did the bald man exclaim when he received a comb for a present?\n\nThanks— I’ll never part with it!',
'What rhymes with orange\n\nNo it doesn’t.',
'What did the left eye say to the right eye?\n\nBetween you and me, something smells.',
'What do you call a fake noodle?\n\nAn impasta.',
'How do you make a tissue dance?\n\nPut a little boogie in it.',
'What did the 0 say to the 8?\n\nNice belt!',
'What do you call a pony with a cough?\n\nA little horse.',
'What did one hat say to the other?\n\nYou wait here. I’ll go on a head.',
'What do you call a magic dog?\n\nA labracadabrador.',
'What did the shark say when he ate the clownfish?\n\nThis tastes a little funny.',
'What’s orange and sounds like a carrot?\n\nA parrot.',
'Why can’t you hear a pterodactyl go to the bathroom?\n\nBecause the “P” is silent.',
'I waited all night to see where the sun would rise…\n\n…And then it dawned on me.',
'What did the pirate say when he turned 80?\n\nAye matey.',
'Why did the frog take the bus to work today?\n\nHis car got toad away.',
'What did the buffalo say when his son left for college?\n\nBison.',
'What is an astronaut’s favourite part on a computer?\n\nThe space bar.',
'Why did the yogurt go to the art exhibition?\n\nBecause it was cultured.',
'What do you call an apology written in dots and dashes?\n\nRe-Morse code.',
'Why did the hipster burn his mouth?\n\nHe drank the coffee before it was cool.',
'Once my dog ate all the Scrabble tiles.\n\nHe kept leaving little messages around the house.',
'Did you hear about the two people who stole a calendar?\n\nThey each got six months.',
'Time flies like an arrow…\n\nFruit flies like a banana.',
'How do poets say hello?\n\nHey, haven’t we metaphor?',
'Where does Batman go to the bathroom?\n\nThe batroom.',
'Why did the Oreo go to the dentist?\n\nBecause he lost his filling.',
'What do you get from a pampered cow?\n\nSpoiled milk.',
'Why is it annoying to eat next to basketball players?\n\nThey dribble all the time.',
'What breed of dog can jump higher than buildings?\n\nAny dog, because buildings can’t jump.',
'Why did the M&M go to school?\n\nIt wanted to be a Smartie.',
'Why do bees have sticky hair?\n\nBecause they use honeycombs.',
'What did the cop say to his belly button?\n\nYou’re under a vest.',
'I got my daughter a fridge for her birthday.\n\nI can’t wait to see her face light up when she opens it.',
'I poured root beer in a square glass.\n\nNow I just have beer.',
'Why aren’t koalas actual bears?\n\nThey don’t meet the koalafications.',
'Rest in peace to boiling water.\n\nYou will be mist.',
'What do you call a rooster staring at a pile of lettuce?\n\nA chicken sees a salad.',
'Why did the nurse need a red pen at work?\n\nIn case she needed to draw blood.',
'How do you throw a space party?\n\nYou planet.',
'The numbers 19 and 20 got into a fight.\n\n21.',
'Why did it get so hot in the baseball stadium after the game?\n\nAll of the fans left.',
'What do you call a train carrying bubblegum?\n\nA chew-chew train.',
'Why did the math textbook visit the guidance counsellor?\n\nIt needed help figuring out its problems.',
]
# Responses for gender finder
gend = [
'Agender',
'Androgyne',
'Androgynous',
'Bigender',
'Cis',
'Cisgender',
'Cis Female',
'Cis Male',
'Cis Man',
'Cis Woman',
'Cisgender Female',
'Cisgender Male',
'Cisgender Man',
'Cisgender Woman',
'Female to Male',
'FTM',
'Gender Fluid',
'Gender Nonconforming',
'Gender Questioning',
'Gender Variant',
'Genderqueer',
'Intersex',
'Male to Female',
'MTF',
'Neither',
'Neutrois',
'Non-binary',
'Other',
'Pangender',
'Trans',
'Trans*',
'Trans Female',
'Trans* Female',
'Trans Male',
'Trans* Male',
'Trans Man',
'Trans* Man',
'Trans Person',
'Trans* Person',
'Trans Woman',
'Trans* Woman',
'Transfeminine',
'Transgender',
'Transgender Female',
'Transgender Male',
'Transgender Man',
'Transgender Person',
'Transgender Woman',
'Transmasculine',
'Transsexual',
'Transsexual Female',
'Transsexual Male',
'Transsexual Man',
'Transsexual Person',
'Transsexual Woman',
'Two-Spirit',
]
# Responses for kill
died = ['rolling out of the bed and the demon under the bed ate them.',
'getting impaled on the bill of a swordfish.',
'falling off a ladder and landing head first in a water bucket.',
'his own explosive while trying to steal from a condom dispenser.',
'a coconut falling off a tree and smashing there skull in.',
'taking a selfie with a loaded handgun shot himself in the throat.',
'shooting himself to death with gun carried in his breast pocket.',
'getting crushed while moving a fridge freezer.',
'getting crushed by his own coffins.',
'getting crushed by your partner.',
'laughing so hard at The Goodies Ecky Thump episode that he died of heart failure.',
'getting run over by his own vehicle.',
'car engine bonnet shutting on there head.',
'tried to brake check a train.',
'dressing up as a cookie and cookie monster ate them.',
'tried to react Indiana Jones, died from a snake bite.',
'tried to short circuit me, not that easy retard'
]
# Responses for Punch Machine
responce = ['**Nice shot bro**',
'**Did you miss the machine**',
'**DAHM HAVE SOME MERCY**',
'**Even a baby can hit harder**',
'**Weakling lmfao**',
'**You wasted money to get that score**',
]
# Responses for decipher
easy = [
'rain',
'ran'
'hello',
'sea',
'ocean',
'fish',
'space',
'mill',
'sweet',
'red',
'date',
'feed',
'wheel',
'clerk',
'pass',
'false',
'beef',
'child',
'party',
'cheek',
'flu',
'cane',
'gold',
'tense',
'herb',
'spite',
'keep',
'abbey',
'sharp',
'real',
'faint',
'mess',
'blast',
'room',
'moral',
'dark',
'rifle',
'book',
'dairy',
'so',
'coal',
'uncle',
'game',
'beg',
'nest',
'time',
'ratio',
'dip',
'swarm',
'kill',
'stock',
'final',
'stage',
'grief',
'word',
'oil',
'duke',
]
# Response for Quotes
Ins = ['“All our dreams can come true, if we have the courage to pursue them.” – Walt Disney',
'“The secret of getting ahead is getting started.” – Mark Twain',
'“I’ve missed more than 9,000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life and that is why I succeed.” – Michael Jordan',
'“Don’t limit yourself. Many people limit themselves to what they think they can do. You can go as far as your mind lets you. What you believe, remember, you can achieve.” – Mary Kay Ash',
'“The best time to plant a tree was 20 years ago. The second best time is now.” – Chinese Proverb',
'“Only the paranoid survive.” – Andy Grove',
'“It’s hard to beat a person who never gives up.” – Babe Ruth',
'“I wake up every morning and think to myself, ‘how far can I push this company in the next 24 hours.’” – Leah Busque',
'“If people are doubting how far you can go, go so far that you can’t hear them anymore.” – Michele Ruiz',
'“We need to accept that we won’t always make the right decisions, that we’ll screw up royally sometimes – understanding that failure is not the opposite of success, it’s part of success.” – Arianna Huffington',
'“Write it. Shoot it. Publish it. Crochet it, sauté it, whatever. MAKE.” – Joss Whedon',
'“You’ve gotta dance like there’s nobody watching, love like you’ll never be hurt, sing like there’s nobody listening, and live like it’s heaven on earth.” ― William W. Purkey',
'“Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us that dragons can be beaten.”― Neil Gaiman',
'“Everything you can imagine is real.”― Pablo Picasso',
'“When one door of happiness closes, another opens; but often we look so long at the closed door that we do not see the one which has been opened for us.” ― Helen Keller',
'“Do one thing every day that scares you.”― Eleanor Roosevelt',
'“It’s no use going back to yesterday, because I was a different person then.”― Lewis Carroll',
'“Smart people learn from everything and everyone, average people from their experiences, stupid people already have all the answers.” – Socrates',
'“Do what you feel in your heart to be right – for you’ll be criticized anyway.”― Eleanor Roosevelt',
'“Happiness is not something ready made. It comes from your own actions.” ― Dalai Lama XIV',
'“Whatever you are, be a good one.” ― Abraham Lincoln',
'“The same boiling water that softens the potato hardens the egg. It’s what you’re made of. Not the circumstances.” – _-*™#7139',
'“If we have the attitude that it’s going to be a great day it usually is.” – Catherine Pulsifier',
'“You can either experience the pain of discipline or the pain of regret. The choice is yours.” – _-*™#7139',
'“Impossible is just an opinion.” – Paulo Coelho',
'“Your passion is waiting for your courage to catch up.” – Isabelle Lafleche',
'“Magic is believing in yourself. If you can make that happen, you can make anything happen.” – Johann Wolfgang Von Goethe',
'“If something is important enough, even if the odds are stacked against you, you should still do it.” – Elon Musk',
'“Hold the vision, trust the process.” – _-*™#7139',
'“Don’t be afraid to give up the good to go for the great.” – John D. Rockefeller',
'“People who wonder if the glass is half empty or full miss the point. The glass is refillable.” – _-*™#7139',
'“Just another Magic Monday” – _-*™#7139',
'“One day or day one. You decide.” – _-*™#7139',
'“It’s Monday… time to motivate and make dreams and goals happen. Let’s go!” – Heather Stillufsen',
'“It was a Monday and they walked on a tightrope to the sun.”― Marcus Zusak',
'“Goodbye blue Monday.” ― Kurt Vonnegut',
'“So. Monday. We meet again. We will never be friends—but maybe we can move past our mutual enmity toward a more-positive partnership.” ― Julio-Alexi Genao',
'“When life gives you Monday, dip it in glitter and sparkle all day.” – Ella Woodword',
'Monday c’est Mon Day - A rare quote.',
'All Motivation Mondays need are a little more coffee and a lot more mascara - rare quote.',
'I’m alive, motivated and ready to slay the day #MONSLAY - YOU',
'“No one is to blame for your future situation but yourself. If you want to be successful, then become “Successful.”― Jaymin Shah',
'“Things may come to those who wait, but only the things left by those who hustle.”― Abraham Lincoln',
'“Everything comes to him who hustles while he waits.”― Thomas Edison',
'“Every sucessful person in the world is a hustler one way or another. We all hustle to get where we need to be. Only a fool would sit around and wait on another man to feed him.” ― K’wan',
'“Invest in your dreams. Grind now. Shine later.” – _-*™#7139',
'“Hustlers don’t sleep, they nap.” – _-*™#7139',
'“Greatness only comes before hustle in the dictionary.” – Ross Simmonds',
'“Without hustle, talent will only carry you so far.” – Gary Vaynerchuk',
'“Work like there is someone working twenty four hours a day to take it away from you.” – Mark Cuban',
'“Hustle in silence and let your success make the noise.” – Unknown',
'“We are what we repeatedly do. Excellence, then, is not an act, but a habit.” – Aristotle',
'“If you’re offered a seat on a rocket ship, don’t ask what seat! Just get on.” – Sheryl Sandberg',
'“I always did something I was a little not ready to do. I think that’s how you grow. When there’s that moment of ‘Wow, I’m not really sure I can do this,’ and you push through those moments, that’s when you have a breakthrough.” – Marissa Mayer',
'“If you hear a voice within you say ‘you cannot paint,’ then by all means paint and that voice will be silenced.” – Vincent Van Gogh',
'“How wonderful it is that nobody need wait a single moment before starting to improve the world.” – Anne Frank',
'“Some people want it to happen, some wish it would happen, others make it happen.” – Michael Jordan',
'“Great things are done by a series of small things brought together” – Vincent Van Gogh',
'“If you hire people just because they can do a job, they’ll work for your money. But if you hire people who believe what you believe, they’ll work for you with blood and sweat and tears.” – Simon Sinek',
'“Very often, a change of self is needed more than a change of scene.’ – A.C. Benson',
'“Leaders can let you fail and yet not let you be a failure.” – Stanley McChrystal',
'“It’s not the load that breaks you down, it’s the way you carry it.” – Lou Holtz',
'“The hard days are what make you stronger.” – Aly Raisman',
'“If you believe it’ll work out, you’ll see opportunities. If you don’t believe it’ll work out, you’ll see obstacles.” – Wayne Dyer',
'“Keep your eyes on the stars, and your feet on the ground.” – Theodore Roosevelt',
'“You can waste your lives drawing lines. Or you can live your life crossing them.” – Shonda Rhimes',
'“You’ve got to get up every morning with determination if you’re going to go to bed with satisfaction.” – George Lorimer',
'“I now tried a new hypothesis: It was possible that I was more in charge of my happiness than I was allowing myself to be.” – Michelle Obama',
'“In a gentle way, you can shake the world.” – Mahatma Gandhi',
'“If opportunity doesn’t knock, build a door.” – Kurt Cobain',
'“Don’t be pushed around by the fears in your mind. Be led by the dreams in your heart.” – Roy T. Bennett',
'“Work hard in silence, let your success be the noise.” – Frank Ocean',
'“Don’t say you don’t have enough time. You have exactly the same number of hours per day that were given to Helen Keller, Pasteur, Michelangelo, Mother Teresa,',
'Leonardo Da Vinci, Thomas Jefferson, and Albert Einstein.” – H. Jackson Brown Jr.',
'“Hard work beats talent when talent doesn’t work hard.” – Tim Notke',
'“If everything seems to be under control, you’re not going fast enough.” – Mario Andretti',
'“Opportunity is missed by most people because it is dressed in overalls and looks like work.” – Thomas Edison',
'“The only difference between ordinary and extraordinary is that little extra.” – Jimmy Johnson',
'“The best way to appreciate your job is to imagine yourself without one.” – Oscar Wilde',
'“Unsuccessful people make their decisions based on their current situations. Successful people make their decisions based on where they want to be.” – Benjamin Hardy',
'“Never stop doing your best just because someone doesn’t give you credit.” – Kamari aka Lyrikal',
'“Work hard for what you want because it won’t come to you without a fight. You have to be strong and courageous and know that you can do anything you put your mind to. If somebody puts you down or criticizes you, just keep on believing in yourself and turn it into something positive.” – Leah LaBelle',
'“Work hard, be kind, and amazing things will happen.” – Conan O’Brien',
'“The miracle is not that we do this work, but that we are happy to do it.” – Mother Teresa',
'“Never give up on a dream just because of the time it will take to accomplish it. The time will pass anyway.” – Earl Nightingale',
'“If you work on something a little bit every day, you end up with something that is massive.” – Kenneth Goldsmith',
'“The big secret in life is that there is no secret. Whatever your goal, you can get there if you’re willing to work.” – Oprah Winfrey',
'“If you cannot do great things, do small things in a great way.” – Napoleon Hill',
'“Never allow a person to tell you no who doesn’t have the power to say yes.” – Eleanor Roosevelt',
'“At any given moment you have the power to say: this is not how the story is going to end.” – Unknown',
'“Amateus sit around and wait for inspiration. The rest of us just get up and go to work.” – Stephen King',
'“Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do. If you haven’t found it yet, keep looking. Don’t settle. As with all matters of the heart, you’ll know when you find it.” – Steve Jobs',
'“Nothing will work unless you do.” – Maya Angelou',
'“Sometimes when you’re in a dark place you think you’ve been buried but you’ve actually been planted.” – Christine Caine',
'“Don’t limit your challenges. Challenge your limits.” – Unknown',
'“Whenever you find yourself doubting how far you can go, just remember how far you have come.” – Unknown',
'“Everyone has inside them a piece of good news. The good news is you don’t know how great you can be! How much you can love! What you can accomplish! And what your potential is.” – Anne Frank',
'“Some luck lies in not getting what you thought you wanted but getting what you have, which once you have got it you may be smart enough to see is what you would have wanted had you known.” – Garrison Keillor',
'“Don’t quit yet, the worst moments are usually followed by the most beautiful silver linings. You have to stay strong, remember to keep your head up and remain hopeful.” – Unknown',
'“When written in Chinese the word “crisis” is composed of two characters – one represents danger and the other represents opportunity.” – John F Kennedy',
'“Good. Better. Best. Never let it rest. ‘Til your good is better and your better is best.” – St. Jerome.',
'“In the middle of every difficulty lies opportunity.” – Albert Einstein',
'“Start where you are. Use what you have. Do what you can.” – Arthur Ashe',
'“Dreams don’t work unless you do.” – John C. Maxwell',
'“Go the extra mile. It’s never crowded there.” – Dr. Wayne D. Dyer',
'“Keep your face always toward the sunshine – and shadows will fall behind you.” – Walt Whitman',
'“What defines us is how well we rise after falling.” – Lionel from Maid in Manhattan Movie',
'H.O.P.E. = Hold On. Pain Ends.',
'Make each day your masterpiece. – John Wooden',
'“Wherever you go, go with all your heart” – Confucius',
'“Turn your wounds into wisdom” – Oprah',
'“We can do anything we want to if we stick to it long enough.” – Helen Keller',
'“Begin anywhere.” – John Cage',
'“Success is no accident. It is hard work, perseverance, learning, studying, sacrifice and most of all, love of what you are doing or learning to do.” – Pele',
'“Would you like me to give you a formula for success? It’s quite simple, really: Double your rate of failure. You are thinking of failure as the enemy of success. But it isn’t at all. You can be discouraged by failure or you can learn from it, so go ahead and make mistakes. Make all you can. Because remember that’s where you will find success.” – Thomas J. Watson',
'“Every champion was once a contender that didn’t give up.” – Gabby Douglas',
'“To be a champion, I think you have to see the big picture. It’s not about winning and losing; it’s about every day hard work and about thriving on a challenge. It’s about embracing the pain that you’ll experience at the end of a race and not being afraid. I think people think too hard and get afraid of a certain challenge.” – Summer Sanders',
'Don’t dream about success. Get out there and work for it.',
'“The difference between successful people and very successful people is that very successful people say ‘no’ to almost everything.” – Warren Buffett',
'You can cry, scream, and bang your head in frustration but keep pushing forward. It’s worth it.',
'“I hated every minute of training, but I said, ‘Don’t quit. Suffer now and live the rest of your life as a champion.” – Muhammad Ali',
'“Opportunities don’t happen. You create them.” – Chris Grosser',
'“Success is liking yourself, liking what you do, and liking how you do it.” – Maya Angelou',
'“If you obey all the rules, you miss all the fun.” – Katharine Hepburn',
'“You were born to be a player. You were meant to be here. This moment is yours.” – Herb Brooks',
'“Life is not what you alone make it. Life is the input of everyone who touched your life and every experience that entered it. We are all part of one another.” – Yuri Kochiyama',
'“When you reach the end of your rope, tie a knot and hang out.” – Abraham Linco',
'“Never regret anything that made you smile.” – Mark Twain',
'“You must do the thing you think you cannot do.” – Eleanor Roosevelt',
'“If you want to fly give up everything that weighs you down.” – Buddha',
'“Doubt kills more dreams than failure ever will.” – Suzy Kassem',
'“I never lose. Either I win or learn.” – Nelson Mandela',
'“Today is your opportunity to build the tomorrow you want.” – Ken Poirot',
'“Getting over a painful experience is much like crossing the monkey bars. You have to let go at some point in order to move forward.” – C.S. Lewis',
'“Focus on being productive instead of busy.” – Tim Ferriss',
'“You don’t need to see the whole staircase, just take the first step.” – Martin Luther King Jr.',
'“It’s not all sunshine and rainbows, but a good amount of it actually is.” – Unknown',
'When someone says you can’t do it, do it twice and take pictures.',
'“I didn’t get there by wishing for it, but by working for it.” – Estee Lauder',
'“She remembered who she was and the game changed.” – Lalah Deliah',
'“If you’re too comfortable, it’s time to move on. Terrified of what’s next? You’re on the right track.” – Susan Fales-Hill',
'“Be happy with what you have while working for what you want.” – Helen Keller',
'“Sunshine all the time makes a desert.” – Arabic Proverb',
'“The big lesson in life is never be scared of anyone or anything.” – Frank Sinatra',
'You’re so much stronger than your excuses',
'Don’t compare yourself to others. Be like the sun and the moon and shine when it’s your time.',
'Don’t Quit',
'Don’t tell everyone your plans, instead show them your results.',
'“I choose to make the rest of my life, the best of my life.” – Louise Hay',
'“Nothing can dim the light that shines from within.” – Maya Angelou',
'“Be so good they can’t ignore you.” – Steve Martin',
'“Take criticism seriously, but not personally. If there is truth or merit in the criticism, try to learn from it. Otherwise, let it roll right off you.” – Hillary Clinton',
'“This is a reminder to you to create your own rule book, and live your life the way you want it.” – Reese Evans',
'“If you don’t get out of the box you’ve been raised in, you won’t understand how much bigger the world is.” – Angelina Jolie',
'“Do the best you can. No one can do more than that.” – John Wooden',
'“Do what you can, with what you have, where you are.” – Theodore Roosevelt',
'‘It’s never too late to be what you might’ve been.” – George Eliot',
'“If you can dream it, you can do it.” – Walt Disney',
'“Trust yourself that you can do it and get it.” – Baz Luhrmann',
'“Don’t let what you can’t do interfere with what you can do.” – Unknown',
'“You can do anything you set your mind to.” – Benjamin Franklin',
'“All we can do is the best we can do.” – David Axelrod',
'“You never know what you can do until you try.” – William Cobbett',
'“Twenty years from now you’ll be more disappointed by the things you did not do than the ones you did.” – Mark Twain',
'“I am thankful for all of those who said NO to me. It’s because of them I’m doing it myself.” – Wayne W. Dyer',
'It’s okay to outgrow people who don’t grow. Grow tall anyways.',
'When you feel like giving up just remember that there are a lot of people you still have to prove wrong.',
'“The world is full of nice people. If you can’t find one, be one.” – Nishan Panwar',
'“Believe in yourself, take on your challenges, dig deep within yourself to conquer fears. Never let anyone bring you down. You got to keep going.” – Chantal Sutherland',
'“A walk to a nearby park may give you more energy and inspiration in life than spending two hours in front of a screen.” – Tsang Lindsay',
'“If you can’t do anything about it then let it go. Don’t be a prisoner to things you can’t change.” – Tony Gaskins',
'“You can’t go back and change the beginning, but you can start where you are and change the ending.” – C.S. Lewis',
'“Yesterday I was clever, so I wanted to change the world. Today I am wise, so I am changing myself.” – Rumi',
'“I can and I will. Watch me.” – Carrie Green',
'“Try not to become a man of success, but rather become a man of value.” – Albert Einstein',
'“A winner is a dreamer who never gives up.” – Nelson Mandela',
'“If you don’t have a competitive advantage, don’t compete.” – Jack Welch',
'“The only thing standing in the way between you and your goal is the BS story you keep telling yourself as to why you can’t achieve it.” – Jordan Belfort',
'“What is life without a little risk?” – J.K. Rowling',
'“Only do what your heart tells you.” – Princess Diana',
'“If it’s a good idea, go ahead and do it. It’s much easier to apologize than it is to get permission.” – Grace Hopper',
'“I attribute my success to this: I never gave or took an excuse.” – Florence Nightingale',
'“The question isn’t who is going to let me; it’s who is going to stop me.” – Ayn Rand',
'“A surplus of effort could overcome a deficit of confidence.” – Sonia Sotomayer',
'“And, when you want something, all the universe conspires in helping you to achieve it.” ― Paulo Coelho, The Alchemist',
'“Your playing small does not serve the world. There is nothing enlightened about shrinking so that other people won’t feel insecure around you. We are all meant to shine, as children do.” – Marianne Williamson, A Return to Love: Reflections on the Principles of “A Course in Miracles”',
'“Don’t think or judge, just listen.”― Sarah Dessen,',
'“I can be changed by what happens to me. But I refuse to be reduced by it.” – Maya Angelou, Letter to My Daughter',
'“Darkness cannot drive out darkness: only light can do that. Hate cannot drive out hate: only love can do that.” ― Martin Luther King Jr., A Testament of Hope: The Essential Writings and Speeches',
'“You have brains in your head. You have feet in your shoes. You can steer yourself any direction you choose. You’re on your own. And you know what you know. And YOU are the one who’ll decide where to go…” ― Dr. Seuss, Oh, the Places You’ll Go!',
'“It’s the possibility of having a dream come true that makes life interesting.” ― Paulo Coelho, The Alchemist',
'“There is some good in this world, and it’s worth fighting for.” – J.R.R. Tolkien, The Two Towers',
'“Learn to light a candle in the darkest moments of someone’s life. Be the light that helps others see; it is what gives life its deepest significance.”― Roy T. Bennett, The Light in the Heart',
'“Atticus, he was real nice.” “Most people are, Scout, when you finally see them.” ― Harper Lee, To Kill a Mockingbird',
'“Oh yes, the past can hurt. But the way I see it, you can either run from it or learn from it.” – The Lion King',
'“We’re on the brink of adventure, children. Don’t spoil it with questions.” – Mary Poppins',
'“Life moves pretty fast. If you don’t stop and look around once in a while, you could miss it.”– Ferris Bueller',
'“I just wanna let them know that they didn’t break me.” – Pretty in Pink',
'“I’m going to make him an offer he can’t refuse.” – The Godfather',
'“No one has ever made a difference by being like everyone else.” – The Greatest Showman',
'“Spend a little more time trying to make something of yourself and a little less time trying to impress people.” – The Breakfast Club',
'“The problem is not the problem. The problem is your attitude about the problem.” – Pirates of the Caribbean',
'“Remember you’re the one who can fill the world with sunshine.” – Snow White',
'“You’ll have bad times, but it’ll always wake you up to the good stuff you weren’t paying attention to.” – Good Will Hunting',
'“And when you get the choice to sit it out or dance… I hope you dance.” – I Hope You Dance, Lee Ann Womack',
'“Just because it burns doesn’t mean you’re gonna die you’ve gotta get up and try.” – Try, P!nk',
'“Life’s a game made for everyone and love is the prize” – Wake Me Up, Avicii',
'“It’s a new dawn, it’s a new day, it’s a life for me and I’m feeling good.” – Feeling Good, Michael Buble',
'“Today is where your book begins, the rest is still unwritten.” – Unwritten, Natasha Bedingfield',
'“A million dreams for the world we’re gonna make’ – The Greatest Showman',
'“It’s my life It’s now or never I ain’t gonna live forever I just want to live while I’m alive” – It’s My Life, Bon Jovi',
'“I could build a castle out of all the bricks they threw at me” – New Romantics, Taylor Swift',
'“Cause the grass is greener under me bright as technicolor, I can tell that you can see” – Sorry Not Sorry, Demi Lovato',
'“Every day women and men become legends” – Glory, John Legend and Common',
'“On my own I will just create and if it works, it works. And if it doesn’t, I’ll just create something else. I don’t have any limitations on what I think I could do or be.” – Oprah Winfrey',
'“We realize the importance of our voices only when we are silenced.” – Malala Yousafzai',
'“We need to accept that we won’t always make the right decisions, that we’ll screw up royally sometimes – understanding that failure is not the opposite of success, it’s part of success.” – Arianna Huffington',
'“Don’t compromise yourself. You’re all you’ve got.” – Janis Joplin',
'“When something I can’t control happens, I ask myself: Where is the hidden gift? Where is the positive in this?” – Sara Blakely',
'“Doubt is a killer. You just have to know who you are and what you stand for. “ – Jennifer Lopez',
'“Be a first rate version of yourself, not a second rate version of someone else.” – Judy Garland',
'“Learn from the mistakes of others. You can’t live long enough to make them all yourself.” – Eleanor Roosevelt',
'“I was smart enough to go through any door that opened.” – Joan Rivers',
'“Done is better than perfect.” – Sheryl Sandberg',
'“If your dreams don’t scare you, they are too small.” – Richard Branson',
'“Today is your opportunity to build the tomorrow you want.” – Ken Poirot',
'“What hurts you blesses you.” – Rumi',
'‘Nothing is stronger than a broken man rebuilding himself.” – Unknown',
'“I always thought it was me against the world and then one day I realized it’s just me against me.” – Kendrick Lamar',
'“A man is not finished when he is defeated. He is finished when he quits.” – Richard Nixon',
'“The world is changed by your example, not by your opinion.” – Paulo Coelho',
'“If you don’t build your dream, someone else will hire you to help them build theirs.” – Dhirubhai Ambani',
'“I’m not in this world to live up to your expectations and you’re not in this world to live up to mine.” – Bruce Lee',
'“What’s right is what’s left if you do everything else wrong.” – Robin Williams',
'“Be a fruitloop in a world of Cheerios.” – Unknown',
'“Dream beautiful dreams, and then work to make those dreams come true.” – Spencer W. Kimball',
'“Be the change you want to see in the world.” – Mahatma Gandhi',
'“Believe you can and you will.” – Unknown',
'“Do the right thing even when no one is looking.” – Unknown',
'“Make today the day you learn something new.” –Unknown',
'“Be silly, be honest, be kind.’ – Ralph Waldo Emerson',
'“If you think someone could use a friend. Be one.” – Unknown',
'“It’s not what happens to you but how you react to it that matters.” – Epictetus',
'“You don’t have to be perfect to be amazing.” – Unknown',
'“The best way to predict your future is to create it.” – Abraham Lincoln',
'“Successful people are not gifted; they just work hard, then succeed on purpose.” – G.K. Nielson',
'“Don’t watch the clock; do what it does. Keep going.” – Sam Levenson',
'“Work until your rivals become idols.” – Drake',
'“You can’t have a million dollar dream on a minimum wage work ethic.” – Unknown',
'“You must do the kind of things you think you cannot do.” – Eleanor Roosevelt',
'“It’s not what you do once in a while it’s what you do day in and day out that makes the difference.” – Jenny Craig',
'Falling down is how we grow. Staying down is how we die.” – Brian Vaszily',
'“Wealth isn’t about having a lot of money it’s about having a lot of options.” – Chris Rock',
'“There may be people that have more talent than you, but there’s no excuse for anyone to work harder than you.” – Derek Jeter',
'“Always be careful when you follow the masses. Sometimes the m is silent.” – Unknown',
'Never let anyone treat you like you’re regular glue. You’re glitter glue.',
'“If you fall – I’ll be there.” – Floor',
'“When Plan “A” doesn’t work, don’t worry, you still have 25 more letters to go through.” – Unknown',
'“If you think you’re too small to make a difference, try sleeping with a mosquito.” – Dalai Lama',
'“If at first you don’t succeed, then skydiving isn’t for you.” – Steven Wright',
'“A diamond is merely a lump of coal that did well under pressure.” – Unknown',
'“I find television very educational. Every time someone turns it on, I go in the other room and read a book.’ – Groucho Marx',
'“Opportunity does not knock, it presents itself when you beat down the door.” – Kyle Chandler',
'“I have not failed. I’ve just found 10,000 ways that won’t work.” – Thomas A. Edison',
'“You could rattle the stars,” she whispered. “You could do anything, if only you dared. And deep down, you know it, too. That’s what scares you most.” ― Sarah J. Maas',
'“It is only when we take chances, when our lives improve. The initial and the most difficult risk that we need to take is to become honest. – Walter Anderson',
'“The adventure of life is to learn. The purpose of life is to grow. The nature of life is to change. The challenge of life is to overcome. The essence of life is to care. The opportunity of like is to serve. The secret of life is to dare. The spice of life is to befriend. The beauty of life is to give.” – William Arthur Ward',
'“When you know your worth, no one can make you feel worthless.” – Unknown',
'“If you’ve never eaten while crying you don’t know what life tastes like.” – Johann Wolfgang von Goethe',
'“If you judge people, you have no time to love them.” – Mother Teresa',
'“Once you do know what the question actually is, you’ll know what the answer means.”– Douglas Adams',
'“The two most important days in your life are the day you’re born and the day you find out why.” – Mark Twain',
'“Nothing ever goes away until it teaches us what we need to know.” – Pema Chodron',
'‘We can see through others only when we can see through ourselves.” – Bruce Lee',
'“You don’t get paid for the hour. You get paid for the value you bring to the hour.” – JIm Rohn',
'“Be an Encourager: When you encourage others, you boost their self-esteem, enhance their self-confidence, make them work harder, lift their spirits and make them successful in their endeavors. Encouragement goes straight to the heart and is always available. Be an encourager. Always.” ― Roy T. Bennett',
'“Remember, you have been criticizing yourself for years and it hasn’t worked. Try approving of yourself and see what happens.” –Louise L Hay',
'“Work hard and don’t give up hope. Be open to criticism and keep learning. Surround yourself with happy, warm and genuine people.” – Tena Desae',
'“Stay true to yourself, yet always be open to learn. Work hard, and never give up on your dreams, even when nobody else believes they can come true but you. These are not cliches but real tools you need no matter what you do in life to stay focused on your path.” – Phillip Sweet',
'“You can control two things: your work ethic and your attitude about anything.” – Ali Krieger',
'“Success isn’t always about greatness. It’s about consistency. Consistent hard work leads to success. Greatness will come.” – Dwayne Johnson',
'“One, remember to look up at the stars and not down at your feet. Two, never give up work. Work gives you meaning and purpose and life is empty without it. Three, if you are lucky enough to find love, remember it is there and don’t throw it away.” ― Stephen Hawking',
'“Some women choose to follow men, and some women choose to follow their dreams. If you’re wondering which way to go, remember that your career will never wake up and tell you that it doesn’t love you anymore.” ― Lady Gaga',
'“Read, read, read. Read everything — trash, classics, good and bad, and see how they do it. Just like a carpenter who works as an apprentice and studies the master. Read! You’ll absorb it. Then write. If it’s good, you’ll find out. If it’s not, throw it out of the window.”― William Faulkner',
'“I really appreciate people who correct me, because without them, I might have been repeating mistakes for a long time.” – Mufti Menk',
'“Motivation comes from working on things we care about.” – Sheryl Sandberg',
'“If today you are a little bit better than you were yesterday, then that’s enough.” – David A. Bednar',
'“Education is the most powerful weapon which you can use to change the world.” – Nelson Mandela',
'“If you can’t make a mistake you can’t make anything.” – Marva Collin',
'“Practice makes progress not perfect.” – Unknown',
'“You may be disappointed if you fail, but you’ll be doomed if you don’t try.” – Beverly Sills',
'“Failure is the tuition you pay for success.” – Walter Brunell',
'“If we wait until we’re ready, we’ll be waiting for the rest of our lives.” – Lemony Snicket',
'“Study while others are sleeping; work while others are loafing; prepare while others are playing; and dream while others are wishing.” – William Arthur Ward',
'"The best revenge is massive success.” – Frank Sinatra',
'“What’s on the other side of fear? Nothing.” – Jamie Foxx',
'“Quitters never win. Winners never quit!” Dr. Irene C. Kassorla',
'“It’s not your salary that makes you rich, it’s your spending habits.” – Charles A. Jaffe',
'“If there is no wind, row.” – Latin Proverb',
'“It’s never too late for a new beginning in your life.” – Joyce Meyers',
]
img = ['https://i.imgur.com/YctOUSU.jpeg',
'https://i.imgur.com/auORyKI.jpeg',
'https://i.imgur.com/lsVZyTU.jpeg',
'https://i.imgur.com/tfg5hy4.jpeg',
'https://i.imgur.com/gn9uhCt.jpeg',
'https://i.imgur.com/GTHOtNN.jpeg',
'https://i.imgur.com/7bVuQjg.png',
'https://i.imgur.com/GtdJhZG.jpg',
'https://i.imgur.com/1TnD4KV.jpeg',
'https://i.imgur.com/VBjkct8.jpeg',
'https://i.imgur.com/F6aaSK1.jpeg',
'https://i.imgur.com/ZVNgLLj.jpeg',
'https://i.imgur.com/gSfNFL2.jpeg',
'https://i.imgur.com/7MTLbf9.jpeg',
'https://i.imgur.com/CPy4NXz.jpeg',
'https://discordapp.com/channels/740523643980873789/741292472784912426/741664224467615795',
'https://i.imgur.com/hf12ZDG.png',
'https://i.imgur.com/EFiaAf0.jpg',
'https://i.imgur.com/hHwn1E9.jpg',
'https://i.imgur.com/wQvXaDL.jpg',
'https://i.imgur.com/YTzuvs5.jpg',
'https://i.imgur.com/T8CW6G6.jpg',
'https://i.imgur.com/MaizI8H.jpg',
'https://i.imgur.com/abjxsg0.jpg',
'https://i.imgur.com/RfHGYrx.jpg',
'https://i.imgur.com/HpetrQ1.jpeg',
'https://i.imgur.com/I5688qU.jpeg',
'https://i.imgur.com/558vjYa.jpeg',
'https://i.imgur.com/pBSzqtr.jpeg',
'https://i.imgur.com/Dz08kBq.jpeg',
'https://i.imgur.com/vGkEbI6.jpeg',
'https://i.imgur.com/nHagKVW.jpeg',
'https://i.imgur.com/A8alBT0.jpeg',
'https://i.imgur.com/i5QtUIv.jpeg',
'https://i.imgur.com/ouxWA1T.jpeg',
'https://i.imgur.com/5ZcEpZL.jpeg',
'https://i.imgur.com/6PrnjvD.jpeg',
'https://i.imgur.com/dFTNDIJ.jpeg',
'https://i.imgur.com/bR8iaTj.jpeg',
'https://i.imgur.com/9ywbPNw.jpeg',
'https://i.imgur.com/PkFrYtZ.jpeg',
'https://i.imgur.com/2QQra5Q.jpeg',
'https://i.imgur.com/W2B4Lwv.jpeg',
'https://i.imgur.com/Id1GJcz.jpeg',
'https://i.imgur.com/cHSBxRH.jpeg',
'https://i.imgur.com/eoFEtTi.jpeg',
'https://i.imgur.com/czdQ8Wb.jpeg',
'https://i.imgur.com/lEWb0S1.jpeg',
'https://i.imgur.com/cKjsc4k.jpeg',
'https://i.imgur.com/fDese3y.jpeg',
'https://i.imgur.com/MijlG7j.jpeg',
'https://i.imgur.com/zUNb0cT.jpeg',
'https://i.imgur.com/6oTVxmA.jpeg',
'https://i.imgur.com/SxGPH0D.jpeg',
'https://i.imgur.com/mAfAx1K.jpeg',
'https://i.imgur.com/XHTSXsl.jpeg',
'https://i.imgur.com/E0cm8gI.jpeg',
'https://i.imgur.com/uUbpVNZ.jpeg',
'https://i.imgur.com/HHr2IPT.jpeg',
'https://i.imgur.com/KD5bVTz.jpeg',
'https://i.imgur.com/vZAsAdL.jpg',
'https://i.imgur.com/DovyBav.jpg',
'https://i.imgur.com/IFBnJMi.jpg',
]
speech = ['./Speeches/1.mp3',
'./Speeches/2.mp3',
'./Speeches/3.mp3',
'./Speeches/4.mp3',
'./Speeches/5.mp3',
'./Speeches/6.mp3',
'./Speeches/8.mp3',
'./Speeches/9.mp3',
'./Speeches/10.mp3',
'./Speeches/11.mp3',