-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvars.py
More file actions
798 lines (732 loc) · 19.9 KB
/
vars.py
File metadata and controls
798 lines (732 loc) · 19.9 KB
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
import os
import discord
import configparser
import firebase_admin
from firebase_admin import db
from dotenv import load_dotenv
from discord.ext import commands
from firebase_admin import storage
from firebase_admin import credentials
load_dotenv()
PROD = False if os.getenv("ENV") == "dev" else True
WelcomeRole = 873297069715099721 if PROD else 898969812254990367
PadawanRole = 872825204869582869 if PROD else 899266723906220042
HOFAlertRole = 1000790943294836757 if PROD else 1000794708475396176
JoinedChannel = 873242046675169310 if PROD else 874368324023255131
LeftChannel = 873242046675169310 if PROD else 874368324023255131
SYSChannel = 549986930071175169 if PROD else 873627093840314401
SLChannel = 859492383845646346 if PROD else 889793521106714634
IntroChannel = 872825951011082291 if PROD else 898977778039390268
HOFChannel = 800921929270820884 if PROD else 997558226465869884
ReportChannel = 873242046675169310 if PROD else 875500856232013854
HOFunChannel = 1090729949448642641 if PROD else 1089893884047405086
LogChannel = 1445371169518915655 if PROD else 1445363741108469790
SLDump = 997872439973400586
GUILD_ID = 549986543650078722 if PROD else 873627093840314398
API_KEY = os.getenv("API_KEY")
DB_URL = os.getenv("DB_URL")
cred = credentials.Certificate("./secret.json")
SLapp = firebase_admin.initialize_app(cred, {
'databaseURL': DB_URL,
'storageBucket': 'today-gallery.appspot.com'
})
ref = db.reference("/")
bucket = storage.bucket()
intents = discord.Intents.default()
intents.members = True
intents.message_content = True
bot = commands.Bot(command_prefix='!', intents=intents, help_command=None)
config = configparser.ConfigParser()
badBot = {
'batmanSlap': {
'size': (75, 75),
'botPosition': (265, 30),
'badPosition': (132, 100)
},
'pepeSlap': {
'size': (100, 100),
'botPosition': (80, 290),
'badPosition': (-100, -100)
},
'kermitSlap': {
'size': (128, 128),
'botPosition': (690, 320),
'badPosition': (-200, -200)
},
'humanSlap': {
'size': (128, 128),
'botPosition': (690, 90),
'badPosition': (160, 90)
},
'drawSlap': {
'size': (128, 128),
'botPosition': (250, 30),
'badPosition': (50, 240)
},
'terminatorSlap': {
'size': (35, 35),
'botPosition': (175, 20),
'badPosition': (20, 90)
},
'seifieldSlap': {
'size': (100, 100),
'botPosition': (220, 70),
'badPosition': (-100, -100)
},
'catSlap': {
'size': (60, 60),
'botPosition': (245, 70),
'badPosition': (115, 150)
},
'woomanSlap': {
'size': (100, 100),
'botPosition': (450, 430),
'badPosition': (370, 90)
},
'pepeSad': {
'size': (128, 128),
'botPosition': (-128, -128),
'badPosition': (-128, -128)
},
}
badGifs = [
"https://discord.com/channels/549986543650078722/549986543650078725/893340504719249429",
"https://tenor.com/view/the-rock-dwayne-johnson-dwayne-the-rock-tea-joe-moment-gif-22606108",
"https://tenor.com/view/rock-one-eyebrow-raised-rock-staring-the-rock-gif-22113367",
"https://tenor.com/view/i-was-acting-gif-23414661",
"https://tenor.com/view/bonk-gif-19410756",
]
badReaction = [
"<:angery:774364490057515058>",
"<:FrogMan:550964011081007104>",
"<:shrek:907243907513991188>",
"<a:angrysmash:731197915581776156>",
"<:catwtf:882606420686684161>",
"<a:blink:750012630030221332>",
"<:blobNO:613463993058852865>",
"<a:blobangryAnim:551112353236779029>",
"<:wellwellwell:908910894761771048>",
]
hornyBot = {
'bonk': {
'size': (128, 128),
'botPosition': (400, 100),
'badPosition': (1050, 500)
},
}
hornyGifs = [
"https://tenor.com/view/horny-jail-bonk-dog-hit-head-stop-being-horny-gif-17298755",
"https://tenor.com/view/bonk-gif-19410756",
"https://tenor.com/view/zhongli-genshin-impact-bonk-horny-jail-meteor-gif-20675806",
"https://imgur.com/2QyYLP7",
"https://tenor.com/view/listen-here-you-little-shit-bird-meme-bird-listen-here-you-little-shit-gif-19221308",
"https://tenor.com/view/yes-yes-yes-gif-22948122",
"https://tenor.com/view/nani-hmm-intensifies-jojos-bizarre-encyclopedia-triggered-anime-gif-9845045"
]
hornyReaction = [
"<:judyTease:799286516965703700>",
"<a:angrysmash:731197915581776156>",
"<a:bonk:898191413622210581>",
"<:catwtf:882606420686684161>",
"<:nou:869265435676254228>",
"<a:teasing:852712400914612264>",
]
goodBot = {
'duck_puppy': {
'size': (50, 50),
'botPosition': (80, 120),
'badPosition': (180, 110)
},
'goose_retriever': {
'size': (100, 100),
'botPosition': (420, 210),
'badPosition': (500, 30)
},
'old_lady': {
'size': (80, 80),
'botPosition': (290, 180),
'badPosition': (10, 0)
},
'retriever': {
'size': (80, 80),
'botPosition': (280, 180),
'badPosition': (80, 210)
},
}
goodGifs = [
"https://tenor.com/view/kya_cute_k_timi-cutie-kando_kha_muji-khatey-muji-gif-21747239",
"https://tenor.com/view/kith-cat-wholesome-chungus-valorant-gif-20521962",
"https://tenor.com/view/kitten-love-luv-u-please-notice-me-gif-11462572",
]
goodReaction = [
"<:catblobheart:822464758530965546>",
"<a:gandalf:551112351986876447>",
"<:PraiseTheSun:553217550813757451>",
"<a:faceheart:852713931327275028>",
"<a:HyperPartyBlobAnim:555409742579630090>",
"<a:catcoffee:862103121572003841>",
"<:heartinf:885091024232407071>",
"<a:trulyamazingAnim:602947248048832565>",
]
notFound = [
"I couldn't find anything for `{}`.",
"There doesn't seem to be anything for `{}`.",
"It looks like there's nothing for `{}`."
]
tooVague = [
"I found too many results for `{}` ! Did you mean : ",
"`{}` is too vague, were you looking for : "
]
found = [
"Found these for ya!",
"Were you looking for these?",
"Hope these help!",
"I managed to get these for you!"
]
helpMsg = {
'check': {
'name': '!check',
'description': 'Shows data about you'
},
'cam': {
'name': '!cam [name]',
'description': 'Search for a freecams or a tool by string. ex: !cam cyberpunk 2077'
},
'guide': {
'name': '!guide [name]',
'description': 'Checks if a game have a guide on the site. ex: !guide cyberpunk'
},
'uuu': {
'name': '!uuu [name]',
'description': 'Checks if a game is compatible with UUU. ex: !uuu the ascent'
},
'cheat': {
'name': '!cheat [name]',
'description': 'Checks if a game have cheat tables on the site. ex: !cheat alien'
},
'tool': {
'name': '!tool(s) [name]',
'description': 'Checks if a game have a guide, cam or works with UUU. ex: !tool cyberpunk'
},
'changeDelay': {
'name': '!changeDelay [seconds]',
'description': 'Change the delay after reaching the limit for posting shots, with number of seconds'
},
'changeLimit': {
'name': '!changeLimit [number]',
'description': 'Change the limit for posting shots'
},
'currentValue': {
'name': '!currentValue',
'description': 'Shows the current values for DELAY and LIMIT'
},
'dump': {
'name': '!dump',
'description': 'Shows data about everybody'
},
'dumpR': {
'name': '!dumpR',
'description': 'Shows data about those who reached the limit and have been dm\'d by the bot'
},
'reset': {
'name': '!reset [userID]',
'description': 'Resets the count for a person, with his ID as parameter'
},
'resetAll': {
'name': '!resetAll',
'description': 'Resets the count for everyone'
},
'bingo': {
'name': '!bingo',
'description': 'Play to the framed bingo !'
},
'resetBingo': {
'name': '!resetBingo',
'description': 'Manually reset the bingo. (doesn\'t return any message)'
},
'changeBingo': {
'name': '!changeBingo',
'description': 'Change the bingo image with the attached png file in your command\n(change takes effect at the next round)'
},
'connect': {
'name': '!connect @someone :emoji:',
'description': 'Starts a connect4 game against @someone, with an optionnal emoji replacing your token'
},
'framedle': {
'name': '!framedle',
'description': 'Play the framed wordle! The rules differ a little bit from the wordle'
},
'gvp': {
'name': '!gvp',
'description': 'Guess the VP! Answer in created threads'
},
'resetGVP': {
'name': '!resetGVP',
'description': 'Reset the Guess the VP game, when the command doesn\'t work or nobody finds the vp'
},
'special': {
'name': 'Special reaction',
'description': 'The bot has special reaction for some query : "good|bad|horny bot"'
},
'getScore': {
'name': '!getScore [ids]',
'description': 'Get the count of reaction from unique users of a shot'
},
}
FramedEmbed = discord.Embed(title="FRAMED. Screenshot Community",
url="https://framedsc.com/",
description="© 2019-2024 FRAMED. All rights reserved. ",
color=0x9a9a9a)
FramedEmbed.set_thumbnail(url="https://cdn.discordapp.com/emojis/575642684006334464.png?size=128")
bingoText = [
["tweets gets people mad", "syphon lore fail", "game crashes", "V💜S", "HighQualityMeme™"],
["skall starts smthng", "someone's drunk", "play w/ the bot", "nuvo disagrees", "sono interrupts convo"],
["should play tgthr", "social media sucks", "FREE SPOT", "BBPC/Elden Ring", "Smithy has a bad opinion"],
["someone brings up nft", "someone didn't readme", "ghost says hi", "from scrap to hof", "cat gif"],
["moy nerds out", "suspiria talks abt old days", "hof anxiety", "mentions retiring", "awake at 6am"]
]
bingoPoints = []
emptyBingo = [
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0]
]
titleAlts = []
framedleButtons = [
["A", "B", "C", "D", "E"],
["F", "G", "H", "I", "J"],
["K", "L", "M", "N", "O"],
["P", "Q", "R", "S", "T"],
["U", "V", "W", "X", "Y"],
]
golfFrames = [
"""
<:air:927935249982300251>
<:air:927935249982300251><:air:927935249982300251>🧑🦽🧍
""",
"""
🤸
<:air:927935249982300251><:air:927935249982300251>🦽🏌️
""",
"""
<:air:927935249982300251>
⛳<:air:927935249982300251>🦽🕺
""",
]
marioEmoji = """
<:air:927935249982300251><:air:927935249982300251><:air:927935249982300251>🟥🟥🟥🟥🟥<:air:927935249982300251><:air:927935249982300251><:air:927935249982300251><:air:927935249982300251>
<:air:927935249982300251><:air:927935249982300251>🟥🟥🟥🟥🟥🟥🟥🟥🟥<:air:927935249982300251>
<:air:927935249982300251><:air:927935249982300251>🟫🟫🟫🟨🟨⬛🟨<:air:927935249982300251><:air:927935249982300251><:air:927935249982300251>
<:air:927935249982300251>🟫🟨🟫🟨🟨🟨⬛🟨🟨🟨<:air:927935249982300251>
<:air:927935249982300251>🟫🟨🟫🟫🟨🟨🟨🟫🟨🟨🟨
<:air:927935249982300251>🟫🟫🟨🟨🟨🟨🟫🟫🟫🟫<:air:927935249982300251>
<:air:927935249982300251><:air:927935249982300251><:air:927935249982300251>🟨🟨🟨🟨🟨🟨<:air:927935249982300251><:air:927935249982300251><:air:927935249982300251>
<:air:927935249982300251><:air:927935249982300251>🟥🟥🟦🟥🟥🟦🟥🟥<:air:927935249982300251><:air:927935249982300251>
<:air:927935249982300251>🟥🟥🟥🟦🟥🟥🟦🟥🟥🟥<:air:927935249982300251>
🟥🟥🟥🟥🟦🟦🟦🟦🟥🟥🟥🟥
🟨🟨🟥🟦🟧🟦🟦🟧🟦🟥🟨🟨
🟨🟨🟨🟦🟦🟦🟦🟦🟦🟨🟨🟨
🟨🟨🟦🟦🟦🟦🟦🟦🟦🟦🟨🟨
<:air:927935249982300251><:air:927935249982300251>🟦🟦🟦<:air:927935249982300251><:air:927935249982300251>🟦🟦🟦<:air:927935249982300251><:air:927935249982300251>
<:air:927935249982300251><:air:927935249982300251>🟫🟫<:air:927935249982300251><:air:927935249982300251><:air:927935249982300251><:air:927935249982300251>🟫🟫<:air:927935249982300251><:air:927935249982300251>
<:air:927935249982300251>🟫🟫🟫<:air:927935249982300251><:air:927935249982300251><:air:927935249982300251><:air:927935249982300251>🟫🟫🟫<:air:927935249982300251>
"""
shockedFrames = {
'shocked0' : "<:air:927935249982300251>🤏😎",
'shocked1' : "🤏🕶️😳",
}
framedleWords = [
"photo", "skall", "berdu", "cheat", "putsos", "framed", "bot", "bingo", "bokeh", "ratio", "late",
"reshade", "mods", "shot", "divorce", "crash", "retire", "late", "ratio", "drunk", "rick", "wordle",
"ign", "uuu", "lore", "moykeh", "horny", "retired", "sean"
]
emojiLetters = "🇦🇧🇨🇩🇪🇫🇬🇭🇮🇯🇰🇱🇲🇳🇴🇵🇶🇷🇸🇹🇺🇻🇼🇽🇾🇿"
letters = "abcdefghijklmnopqrstuvwxyz"
colorNames = {
"aliceblue": 0xf0f8ff,
"antiquewhite": 0xfaebd7,
"aqua": 0x00ffff,
"aquamarine": 0x7fffd4,
"azure": 0xf0ffff,
"beige": 0xf5f5dc,
"bisque": 0xffe4c4,
"black": 0x000000,
"blanchedalmond": 0xffebcd,
"blue": 0x0000ff,
"blueviolet": 0x8a2be2,
"brown": 0xa52a2a,
"burlywood": 0xdeb887,
"cadetblue": 0x5f9ea0,
"chartreuse": 0x7fff00,
"chocolate": 0xd2691e,
"coral": 0xff7f50,
"cornflowerblue": 0x6495ed,
"cornsilk": 0xfff8dc,
"crimson": 0xdc143c,
"cyan": 0x00ffff,
"darkblue": 0x00008b,
"darkcyan": 0x008b8b,
"darkgoldenrod": 0xb8860b,
"darkgray": 0xa9a9a9,
"darkgreen": 0x006400,
"darkgrey": 0xa9a9a9,
"darkkhaki": 0xbdb76b,
"darkmagenta": 0x8b008b,
"darkolivegreen": 0x556b2f,
"darkorange": 0xff8c00,
"darkorchid": 0x9932cc,
"darkred": 0x8b0000,
"darksalmon": 0xe9967a,
"darkseagreen": 0x8fbc8f,
"darkslateblue": 0x483d8b,
"darkslategray": 0x2f4f4f,
"darkslategrey": 0x2f4f4f,
"darkturquoise": 0x00ced1,
"darkviolet": 0x9400d3,
"deeppink": 0xff1493,
"deepskyblue": 0x00bfff,
"dimgray": 0x696969,
"dimgrey": 0x696969,
"dodgerblue": 0x1e90ff,
"firebrick": 0xb22222,
"floralwhite": 0xfffaf0,
"forestgreen": 0x228b22,
"fuchsia": 0xff00ff,
"gainsboro": 0xdcdcdc,
"ghostwhite": 0xf8f8ff,
"gold": 0xffd700,
"goldenrod": 0xdaa520,
"gray": 0x808080,
"green": 0x008000,
"greenyellow": 0xadff2f,
"grey": 0x808080,
"honeydew": 0xf0fff0,
"hotpink": 0xff69b4,
"indianred": 0xcd5c5c,
"indigo": 0x4b0082,
"ivory": 0xfffff0,
"khaki": 0xf0e68c,
"lavender": 0xe6e6fa,
"lavenderblush": 0xfff0f5,
"lawngreen": 0x7cfc00,
"lemonchiffon": 0xfffacd,
"lightblue": 0xadd8e6,
"lightcoral": 0xf08080,
"lightcyan": 0xe0ffff,
"lightgoldenrodyellow": 0xfafad2,
"lightgray": 0xd3d3d3,
"lightgreen": 0x90ee90,
"lightgrey": 0xd3d3d3,
"lightpink": 0xffb6c1,
"lightsalmon": 0xffa07a,
"lightseagreen": 0x20b2aa,
"lightskyblue": 0x87cefa,
"lightslategray": 0x778899,
"lightslategrey": 0x778899,
"lightsteelblue": 0xb0c4de,
"lightyellow": 0xffffe0,
"lime": 0x00ff00,
"limegreen": 0x32cd32,
"linen": 0xfaf0e6,
"magenta": 0xff00ff,
"maroon": 0x800000,
"mediumaquamarine": 0x66cdaa,
"mediumblue": 0x0000cd,
"mediumorchid": 0xba55d3,
"mediumpurple": 0x9370db,
"mediumseagreen": 0x3cb371,
"mediumslateblue": 0x7b68ee,
"mediumspringgreen": 0x00fa9a,
"mediumturquoise": 0x48d1cc,
"mediumvioletred": 0xc71585,
"midnightblue": 0x191970,
"mintcream": 0xf5fffa,
"mistyrose": 0xffe4e1,
"moccasin": 0xffe4b5,
"navajowhite": 0xffdead,
"navy": 0x000080,
"oldlace": 0xfdf5e6,
"olive": 0x808000,
"olivedrab": 0x6b8e23,
"orange": 0xffa500,
"orangered": 0xff4500,
"orchid": 0xda70d6,
"palegoldenrod": 0xeee8aa,
"palegreen": 0x98fb98,
"paleturquoise": 0xafeeee,
"palevioletred": 0xdb7093,
"papayawhip": 0xffefd5,
"peachpuff": 0xffdab9,
"peru": 0xcd853f,
"pink": 0xffc0cb,
"plum": 0xdda0dd,
"powderblue": 0xb0e0e6,
"purple": 0x800080,
"rebeccapurple": 0x663399,
"red": 0xff0000,
"rosybrown": 0xbc8f8f,
"royalblue": 0x4169e1,
"saddlebrown": 0x8b4513,
"salmon": 0xfa8072,
"sandybrown": 0xf4a460,
"seagreen": 0x2e8b57,
"seashell": 0xfff5ee,
"sienna": 0xa0522d,
"silver": 0xc0c0c0,
"skyblue": 0x87ceeb,
"slateblue": 0x6a5acd,
"slategray": 0x708090,
"slategrey": 0x708090,
"snow": 0xfffafa,
"springgreen": 0x00ff7f,
"steelblue": 0x4682b4,
"tan": 0xd2b48c,
"teal": 0x008080,
"thistle": 0xd8bfd8,
"tomato": 0xff6347,
"turquoise": 0x40e0d0,
"violet": 0xee82ee,
"wheat": 0xf5deb3,
"white": 0xffffff,
"whitesmoke": 0xf5f5f5,
"yellow": 0xffff00,
"yellowgreen": 0x9acd32
}
banned_unicode_emojis = ["🗨️", "💬"]
banned_custom_emojis = [887379470917460020, 550964044107087882]
# Laugh, kekhands
# The first element of the `trigger_words` list is linked to the first element of `trigger_response`, and so on.
trigger_words = [
"test test",
"test",
]
trigger_responses = [
"""
# TEST
**hello world**
""",
"""
[TEST](https://framedsc.com/)
new line
""",
]
a = [
[0, 1, 1, 0],
[1, 0, 0, 1],
[1, 1, 1, 1],
[1, 0, 0, 1],
[1, 0, 0, 1]
]
b = [
[1, 1, 1, 0],
[1, 0, 0, 1],
[1, 1, 1, 0],
[1, 0, 0, 1],
[1, 1, 1, 0]
]
c = [
[1, 1, 1, 1],
[1, 0, 0, 0],
[1, 0, 0, 0],
[1, 0, 0, 0],
[1, 1, 1, 1]
]
d = [
[1, 1, 1, 0],
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 1, 1, 0]
]
e = [
[1, 1, 1, 1],
[1, 0, 0, 0],
[1, 1, 1, 0],
[1, 0, 0, 0],
[1, 1, 1, 1]
]
f = [
[1, 1, 1, 1],
[1, 0, 0, 0],
[1, 1, 1, 0],
[1, 0, 0, 0],
[1, 0, 0, 0]
]
g = [
[1, 1, 1, 1],
[1, 0, 0, 0],
[1, 0, 1, 1],
[1, 0, 0, 1],
[1, 1, 1, 1]
]
h = [
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 1, 1, 1],
[1, 0, 0, 1],
[1, 0, 0, 1]
]
i = [
[1, 1, 1, 0],
[0, 1, 0, 0],
[0, 1, 0, 0],
[0, 1, 0, 0],
[1, 1, 1, 0]
]
j = [
[1, 1, 1, 1],
[0, 0, 0, 1],
[0, 0, 0, 1],
[1, 0, 0, 1],
[1, 1, 1, 1]
]
k = [
[1, 0, 0, 1],
[1, 0, 1, 0],
[1, 1, 0, 0],
[1, 0, 1, 0],
[1, 0, 0, 1]
]
l = [
[1, 0, 0, 0],
[1, 0, 0, 0],
[1, 0, 0, 0],
[1, 0, 0, 0],
[1, 1, 1, 1]
]
m = [
[1, 0, 0, 0, 1],
[1, 1, 0, 1, 1],
[1, 0, 1, 0, 1],
[1, 0, 0, 0, 1],
[1, 0, 0, 0, 1]
]
n = [
[1, 0, 0, 0, 1],
[1, 1, 0, 0, 1],
[1, 0, 1, 0, 1],
[1, 0, 0, 1, 1],
[1, 0, 0, 0, 1]
]
o = [
[1, 1, 1, 1],
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 1, 1, 1]
]
p = [
[1, 1, 1, 1],
[1, 0, 0, 1],
[1, 1, 1, 1],
[1, 0, 0, 0],
[1, 0, 0, 0]
]
q = [
[1, 1, 1, 1],
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 0, 1, 1],
[1, 1, 1, 1]
]
r = [
[1, 1, 1, 0],
[1, 0, 0, 1],
[1, 1, 1, 0],
[1, 0, 1, 0],
[1, 0, 0, 1]
]
s = [
[1, 1, 1, 1],
[1, 0, 0, 0],
[1, 1, 1, 1],
[0, 0, 0, 1],
[1, 1, 1, 1]
]
t = [
[1, 1, 1],
[0, 1, 0],
[0, 1, 0],
[0, 1, 0],
[0, 1, 0]
]
u = [
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 0, 0, 1],
[1, 1, 1, 1]
]
v = [
[1, 0, 0, 0, 1],
[1, 0, 0, 0, 1],
[0, 1, 0, 1, 0],
[0, 1, 0, 1, 0],
[0, 0, 1, 0, 0]
]
w = [
[1, 0, 0, 0, 1],
[1, 0, 0, 0, 1],
[1, 0, 1, 0, 1],
[1, 1, 0, 1, 1],
[1, 0, 0, 0, 1]
]
x = [
[1, 0, 0, 1],
[1, 0, 0, 1],
[0, 1, 1, 0],
[1, 0, 0, 1],
[1, 0, 0, 1]
]
y = [
[1, 0, 0, 1],
[1, 0, 0, 1],
[0, 1, 1, 1],
[0, 0, 0, 1],
[0, 0, 0, 1]
]
z = [
[1, 1, 1, 1],
[0, 0, 0, 1],
[0, 1, 1, 0],
[1, 0, 0, 0],
[1, 1, 1, 1]
]
space = [
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]
]
letters_dict = {
"a": a,
"b": b,
"c": c,
"d": d,
"e": e,
"f": f,
"g": g,
"h": h,
"i": i,
"j": j,
"k": k,
"l": l,
"m": m,
"n": n,
"o": o,
"p": p,
"q": q,
"r": r,
"s": s,
"t": t,
"u": u,
"v": v,
"w": w,
"x": x,
"y": y,
"z": z,
"space": space
}