-
Notifications
You must be signed in to change notification settings - Fork 3
/
deno.lock
1152 lines (1152 loc) · 157 KB
/
deno.lock
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
{
"version": "3",
"redirects": {
"https://esm.sh/v135/@types/object-inspect@^1/index.d.ts": "https://esm.sh/v135/@types/[email protected]/index.d.ts"
},
"remote": {
"https://deno.land/[email protected]/assert/_constants.ts": "8a9da298c26750b28b326b297316cdde860bc237533b07e1337c021379e6b2a9",
"https://deno.land/[email protected]/assert/_diff.ts": "2c9371f17cf08cbb843c924bc31ca77af422ec4fe162f73d42c651d547573fa8",
"https://deno.land/[email protected]/assert/_format.ts": "335ce8e15c65b679ad142dbc9e5e97e5d58602c39dd3c9175cef6c85fe22d6d5",
"https://deno.land/[email protected]/assert/assert.ts": "e265ad50a9341f3b40e51dd4cb41ab253d976943ba78a977106950e52e0302ab",
"https://deno.land/[email protected]/assert/assert_almost_equals.ts": "a70d637856e1c6128dc733346d32aa73c67058489495116ca85091c39a60c767",
"https://deno.land/[email protected]/assert/assert_array_includes.ts": "59d005d8897c1fbcbd5792170833f13a867f6a5ecd5a6b34a3d86b4b430de63c",
"https://deno.land/[email protected]/assert/assert_equals.ts": "991b0c2b437a015d623654f758e48bfd931068211a52e8131b397cdf005c595f",
"https://deno.land/[email protected]/assert/assert_exists.ts": "f24ecb0d3febad358a6cee235f012551077e07692517ebfe0630a561ba40a703",
"https://deno.land/[email protected]/assert/assert_false.ts": "99cf237fe374cabf57072d2fb41b3eaff389029f850fbb96f643c875792f10ce",
"https://deno.land/[email protected]/assert/assert_greater.ts": "e0bba9ac76a780573a864ab6eeb8b9fd71435b750bdd36d56a270e22ab9a79d9",
"https://deno.land/[email protected]/assert/assert_greater_or_equal.ts": "aea1c7dc868926ba55f1e59f8c3560bb44706b5e3b6b009453ee4064eecf6746",
"https://deno.land/[email protected]/assert/assert_instance_of.ts": "7c093d36b1a86666d5a60a8c290c91a51a627153b821a5a4dc40b24cab69f1e7",
"https://deno.land/[email protected]/assert/assert_is_error.ts": "a8a758581661edec514c453910bee2f9c91b1346a515c58404963b130d81cd80",
"https://deno.land/[email protected]/assert/assert_less.ts": "855aa58e49afa6a9e825f1abcd5947dc789c5878fc1b6f48b8a08115d48da32b",
"https://deno.land/[email protected]/assert/assert_less_or_equal.ts": "2ae5246bd0e83da26e5c8e2815d1493252f71f7dc02afb83dc2fc0e0fb0bd894",
"https://deno.land/[email protected]/assert/assert_match.ts": "e541a9769cf5726312ff9e15031e2faa2df3c59fbdc5573c8758b1f4668ccc62",
"https://deno.land/[email protected]/assert/assert_not_equals.ts": "6bce4b28f3316029c0aef107f8390796798835c382d31c1004160baef0b80db0",
"https://deno.land/[email protected]/assert/assert_not_instance_of.ts": "866243fd28bc6665e2ffcc027a9df1d2a69cb644aef1e9b8d1ce34377c6b8a84",
"https://deno.land/[email protected]/assert/assert_not_match.ts": "59707eceb0d2b16d6892fbf92ec86f92fd76fcfc55f8b61508299db7d2972cab",
"https://deno.land/[email protected]/assert/assert_not_strict_equals.ts": "c84b8e229450e8dfc44b9910d602788313ff7333d67d5bd8528371567b6a3632",
"https://deno.land/[email protected]/assert/assert_object_match.ts": "ebeff248d48e5810f787e8742ae4f6b39904f4640edc2f69796596ceb6dbcdf8",
"https://deno.land/[email protected]/assert/assert_rejects.ts": "f7e83272d816e1b39710012a0597ed950db2de6b193adcc5e50ddbcd9e177767",
"https://deno.land/[email protected]/assert/assert_strict_equals.ts": "4007dabef1c2e9d6f1bb0e948ba7ba99ec9b1bee97ba34d67f7c10e7e5d794f7",
"https://deno.land/[email protected]/assert/assert_string_includes.ts": "108a30d9348e5ff7a8b0b7cc836cf0a8cff27d5b33e861b8c56b52cc60b8219a",
"https://deno.land/[email protected]/assert/assert_throws.ts": "a8767e6a06e94bac42ca9eebdad5d4e2decbc0c48bc892da7e06aa1fe0b388ba",
"https://deno.land/[email protected]/assert/assertion_error.ts": "26ed1863d905005f00785c89750c001c3522c5417e4f58f95044b8143cfc1593",
"https://deno.land/[email protected]/assert/equal.ts": "6f81c8a3b12c08bdc3510c8a1293b4db1c083692219d7e3828d2234b448d3d3d",
"https://deno.land/[email protected]/assert/fail.ts": "f56fc64f9a141f98c1be5ff1005ddf158db888b7b206510e955bb3fedc69021c",
"https://deno.land/[email protected]/assert/mod.ts": "37c49a26aae2b254bbe25723434dc28cd7532e444cf0b481a97c045d110ec085",
"https://deno.land/[email protected]/assert/unimplemented.ts": "4e3e504792c87c485dbc5f4020489d8806ef697741403af2008dfa7b5a4711e8",
"https://deno.land/[email protected]/assert/unreachable.ts": "1af8c99421cc5fb7332454b2b9eca074a4e394895a180bc837750dedcca75338",
"https://deno.land/[email protected]/dotenv/mod.ts": "55d51d0c244da70e10ccbbdb68644064ce19c8af1683289d16ac802ceef64c8c",
"https://deno.land/[email protected]/dotenv/parse.ts": "d76ff5a59bd7c374a40249dc28bd15c740da0428559c838b1ea5644f561bff20",
"https://deno.land/[email protected]/dotenv/stringify.ts": "df8c503a9d46c567f1daa6554211dcfbe05179f9b3ca3d9adc9d92a14987442e",
"https://deno.land/[email protected]/encoding/_util.ts": "f368920189c4fe6592ab2e93bd7ded8f3065b84f95cd3e036a4a10a75649dcba",
"https://deno.land/[email protected]/encoding/base64.ts": "cdc3810253462ccc7b2818429c1613e581f7999ff1ff5b0a6854e0cc38caffeb",
"https://deno.land/[email protected]/fmt/colors.ts": "2685c524bef9b16b3059a417daf6860c754eb755e19e812762ef5dff62f24481",
"https://deno.land/[email protected]/media_types/_db.ts": "7606d83e31f23ce1a7968cbaee852810c2cf477903a095696cdc62eaab7ce570",
"https://deno.land/[email protected]/media_types/_util.ts": "0879b04cc810ff18d3dcd97d361e03c9dfb29f67d7fc4a9c6c9d387282ef5fe8",
"https://deno.land/[email protected]/media_types/content_type.ts": "86a618b6db1c722859968f416d38028722a4be333e3e69e738f017a74149316b",
"https://deno.land/[email protected]/media_types/extension.ts": "a7cd28c9417143387cdfed27d4e8607ebcf5b1ec27eb8473d5b000144689fe65",
"https://deno.land/[email protected]/media_types/extensions_by_type.ts": "43806d6a52a0d6d965ada9d20e60a982feb40bc7a82268178d94edb764694fed",
"https://deno.land/[email protected]/media_types/format_media_type.ts": "f5e1073c05526a6f5a516ac5c5587a1abd043bf1039c71cde1166aa4328c8baf",
"https://deno.land/[email protected]/media_types/get_charset.ts": "18b88274796fda5d353806bf409eb1d2ddb3f004eb4bd311662c4cdd8ac173db",
"https://deno.land/[email protected]/media_types/parse_media_type.ts": "31ccf2388ffab31b49500bb89fa0f5de189c8897e2ee6c9954f207637d488211",
"https://deno.land/[email protected]/media_types/type_by_extension.ts": "daa801eb0f11cdf199445d0f1b656cf116d47dcf9e5b85cc1e6b4469f5ee0432",
"https://deno.land/[email protected]/media_types/vendor/mime-db.v1.52.0.ts": "6925bbcae81ca37241e3f55908d0505724358cda3384eaea707773b2c7e99586",
"https://deno.land/[email protected]/path/_common/assert_path.ts": "061e4d093d4ba5aebceb2c4da3318bfe3289e868570e9d3a8e327d91c2958946",
"https://deno.land/[email protected]/path/_common/basename.ts": "0d978ff818f339cd3b1d09dc914881f4d15617432ae519c1b8fdc09ff8d3789a",
"https://deno.land/[email protected]/path/_common/common.ts": "9e4233b2eeb50f8b2ae10ecc2108f58583aea6fd3e8907827020282dc2b76143",
"https://deno.land/[email protected]/path/_common/constants.ts": "e49961f6f4f48039c0dfed3c3f93e963ca3d92791c9d478ac5b43183413136e0",
"https://deno.land/[email protected]/path/_common/dirname.ts": "2ba7fb4cc9fafb0f38028f434179579ce61d4d9e51296fad22b701c3d3cd7397",
"https://deno.land/[email protected]/path/_common/format.ts": "11aa62e316dfbf22c126917f5e03ea5fe2ee707386555a8f513d27ad5756cf96",
"https://deno.land/[email protected]/path/_common/from_file_url.ts": "ef1bf3197d2efbf0297a2bdbf3a61d804b18f2bcce45548ae112313ec5be3c22",
"https://deno.land/[email protected]/path/_common/glob_to_reg_exp.ts": "50386887d6041f15741d0013a703ee63ef673983d465d3a0c9c190e95f8da4fe",
"https://deno.land/[email protected]/path/_common/normalize.ts": "2ba7fb4cc9fafb0f38028f434179579ce61d4d9e51296fad22b701c3d3cd7397",
"https://deno.land/[email protected]/path/_common/normalize_string.ts": "88c472f28ae49525f9fe82de8c8816d93442d46a30d6bb5063b07ff8a89ff589",
"https://deno.land/[email protected]/path/_common/relative.ts": "1af19d787a2a84b8c534cc487424fe101f614982ae4851382c978ab2216186b4",
"https://deno.land/[email protected]/path/_common/strip_trailing_separators.ts": "7ffc7c287e97bdeeee31b155828686967f222cd73f9e5780bfe7dfb1b58c6c65",
"https://deno.land/[email protected]/path/_common/to_file_url.ts": "a8cdd1633bc9175b7eebd3613266d7c0b6ae0fb0cff24120b6092ac31662f9ae",
"https://deno.land/[email protected]/path/_interface.ts": "6471159dfbbc357e03882c2266d21ef9afdb1e4aa771b0545e90db58a0ba314b",
"https://deno.land/[email protected]/path/_os.ts": "30b0c2875f360c9296dbe6b7f2d528f0f9c741cecad2e97f803f5219e91b40a2",
"https://deno.land/[email protected]/path/basename.ts": "04bb5ef3e86bba8a35603b8f3b69537112cdd19ce64b77f2522006da2977a5f3",
"https://deno.land/[email protected]/path/common.ts": "f4d061c7d0b95a65c2a1a52439edec393e906b40f1caf4604c389fae7caa80f5",
"https://deno.land/[email protected]/path/dirname.ts": "88a0a71c21debafc4da7a4cd44fd32e899462df458fbca152390887d41c40361",
"https://deno.land/[email protected]/path/extname.ts": "8c6d6112bce335b4d3d5a07cb0451816d0c2094c147049874fca2db5f707044b",
"https://deno.land/[email protected]/path/format.ts": "3457530cc85d1b4bab175f9ae73998b34fd456c830d01883169af0681b8894fb",
"https://deno.land/[email protected]/path/from_file_url.ts": "e7fa233ea1dff9641e8d566153a24d95010110185a6f418dd2e32320926043f8",
"https://deno.land/[email protected]/path/glob_to_regexp.ts": "74d7448c471e293d03f05ccb968df4365fed6aaa508506b6325a8efdc01d8271",
"https://deno.land/[email protected]/path/is_absolute.ts": "67232b41b860571c5b7537f4954c88d86ae2ba45e883ee37d3dec27b74909d13",
"https://deno.land/[email protected]/path/is_glob.ts": "567dce5c6656bdedfc6b3ee6c0833e1e4db2b8dff6e62148e94a917f289c06ad",
"https://deno.land/[email protected]/path/join.ts": "3ee91038e3eaa966897eddda43d5207d7cae5c2de8a658bdbd722e8f8f29206a",
"https://deno.land/[email protected]/path/join_globs.ts": "9b84d5103b63d3dbed4b2cf8b12477b2ad415c7d343f1488505162dc0e5f4db8",
"https://deno.land/[email protected]/path/mod.ts": "eff1d7b0617293bd90254d379a7266887dc6fbf5a00e0f450eeb854959379294",
"https://deno.land/[email protected]/path/normalize.ts": "aa95be9a92c7bd4f9dc0ba51e942a1973e2b93d266cd74f5ca751c136d520b66",
"https://deno.land/[email protected]/path/normalize_glob.ts": "674baa82e1c00b6cb153bbca36e06f8e0337cb8062db6d905ab5de16076ca46b",
"https://deno.land/[email protected]/path/parse.ts": "d87ff0deef3fb495bc0d862278ff96da5a06acf0625ca27769fc52ac0d3d6ece",
"https://deno.land/[email protected]/path/posix/_util.ts": "ecf49560fedd7dd376c6156cc5565cad97c1abe9824f4417adebc7acc36c93e5",
"https://deno.land/[email protected]/path/posix/basename.ts": "a630aeb8fd8e27356b1823b9dedd505e30085015407caa3396332752f6b8406a",
"https://deno.land/[email protected]/path/posix/common.ts": "e781d395dc76f6282e3f7dd8de13194abb8b04a82d109593141abc6e95755c8b",
"https://deno.land/[email protected]/path/posix/dirname.ts": "f48c9c42cc670803b505478b7ef162c7cfa9d8e751b59d278b2ec59470531472",
"https://deno.land/[email protected]/path/posix/extname.ts": "ee7f6571a9c0a37f9218fbf510c440d1685a7c13082c348d701396cc795e0be0",
"https://deno.land/[email protected]/path/posix/format.ts": "b94876f77e61bfe1f147d5ccb46a920636cd3cef8be43df330f0052b03875968",
"https://deno.land/[email protected]/path/posix/from_file_url.ts": "b97287a83e6407ac27bdf3ab621db3fccbf1c27df0a1b1f20e1e1b5acf38a379",
"https://deno.land/[email protected]/path/posix/glob_to_regexp.ts": "6ed00c71fbfe0ccc35977c35444f94e82200b721905a60bd1278b1b768d68b1a",
"https://deno.land/[email protected]/path/posix/is_absolute.ts": "159900a3422d11069d48395568217eb7fc105ceda2683d03d9b7c0f0769e01b8",
"https://deno.land/[email protected]/path/posix/is_glob.ts": "ec4fbc604b9db8487f7b56ab0e759b24a971ab6a45f7b0b698bc39b8b9f9680f",
"https://deno.land/[email protected]/path/posix/join.ts": "0c0d84bdc344876930126640011ec1b888e6facf74153ffad9ef26813aa2a076",
"https://deno.land/[email protected]/path/posix/join_globs.ts": "f4838d54b1f60a34a40625a3293f6e583135348be1b2974341ac04743cb26121",
"https://deno.land/[email protected]/path/posix/mod.ts": "f1b08a7f64294b7de87fc37190d63b6ce5b02889af9290c9703afe01951360ae",
"https://deno.land/[email protected]/path/posix/normalize.ts": "11de90a94ab7148cc46e5a288f7d732aade1d616bc8c862f5560fa18ff987b4b",
"https://deno.land/[email protected]/path/posix/normalize_glob.ts": "10a1840c628ebbab679254d5fa1c20e59106102354fb648a1765aed72eb9f3f9",
"https://deno.land/[email protected]/path/posix/parse.ts": "199208f373dd93a792e9c585352bfc73a6293411bed6da6d3bc4f4ef90b04c8e",
"https://deno.land/[email protected]/path/posix/relative.ts": "e2f230608b0f083e6deaa06e063943e5accb3320c28aef8d87528fbb7fe6504c",
"https://deno.land/[email protected]/path/posix/resolve.ts": "51579d83159d5c719518c9ae50812a63959bbcb7561d79acbdb2c3682236e285",
"https://deno.land/[email protected]/path/posix/separator.ts": "0b6573b5f3269a3164d8edc9cefc33a02dd51003731c561008c8bb60220ebac1",
"https://deno.land/[email protected]/path/posix/to_file_url.ts": "ac5499aa0c6e2c266019cba7d1f7e5a92b8e04983cd72be97f81adad185619a6",
"https://deno.land/[email protected]/path/posix/to_namespaced_path.ts": "c9228a0e74fd37e76622cd7b142b8416663a9b87db643302fa0926b5a5c83bdc",
"https://deno.land/[email protected]/path/relative.ts": "23d45ede8b7ac464a8299663a43488aad6b561414e7cbbe4790775590db6349c",
"https://deno.land/[email protected]/path/resolve.ts": "5b184efc87155a0af9fa305ff68a109e28de9aee81fc3e77cd01380f19daf867",
"https://deno.land/[email protected]/path/separator.ts": "1a21ffd408bfaa317bffff604e5a799f78a7a5571590bde6b9cdce7685953d74",
"https://deno.land/[email protected]/path/to_file_url.ts": "edaafa089e0bce386e1b2d47afe7c72e379ff93b28a5829a5885e4b6c626d864",
"https://deno.land/[email protected]/path/to_namespaced_path.ts": "cf8734848aac3c7527d1689d2adf82132b1618eff3cc523a775068847416b22a",
"https://deno.land/[email protected]/path/windows/_util.ts": "f32b9444554c8863b9b4814025c700492a2b57ff2369d015360970a1b1099d54",
"https://deno.land/[email protected]/path/windows/basename.ts": "8a9dbf7353d50afbc5b221af36c02a72c2d1b2b5b9f7c65bf6a5a2a0baf88ad3",
"https://deno.land/[email protected]/path/windows/common.ts": "e781d395dc76f6282e3f7dd8de13194abb8b04a82d109593141abc6e95755c8b",
"https://deno.land/[email protected]/path/windows/dirname.ts": "5c2aa541384bf0bd9aca821275d2a8690e8238fa846198ef5c7515ce31a01a94",
"https://deno.land/[email protected]/path/windows/extname.ts": "07f4fa1b40d06a827446b3e3bcc8d619c5546b079b8ed0c77040bbef716c7614",
"https://deno.land/[email protected]/path/windows/format.ts": "343019130d78f172a5c49fdc7e64686a7faf41553268961e7b6c92a6d6548edf",
"https://deno.land/[email protected]/path/windows/from_file_url.ts": "d53335c12b0725893d768be3ac6bf0112cc5b639d2deb0171b35988493b46199",
"https://deno.land/[email protected]/path/windows/glob_to_regexp.ts": "290755e18ec6c1a4f4d711c3390537358e8e3179581e66261a0cf348b1a13395",
"https://deno.land/[email protected]/path/windows/is_absolute.ts": "245b56b5f355ede8664bd7f080c910a97e2169972d23075554ae14d73722c53c",
"https://deno.land/[email protected]/path/windows/is_glob.ts": "ec4fbc604b9db8487f7b56ab0e759b24a971ab6a45f7b0b698bc39b8b9f9680f",
"https://deno.land/[email protected]/path/windows/join.ts": "e6600bf88edeeef4e2276e155b8de1d5dec0435fd526ba2dc4d37986b2882f16",
"https://deno.land/[email protected]/path/windows/join_globs.ts": "f4838d54b1f60a34a40625a3293f6e583135348be1b2974341ac04743cb26121",
"https://deno.land/[email protected]/path/windows/mod.ts": "d7040f461465c2c21c1c68fc988ef0bdddd499912138cde3abf6ad60c7fb3814",
"https://deno.land/[email protected]/path/windows/normalize.ts": "9deebbf40c81ef540b7b945d4ccd7a6a2c5a5992f791e6d3377043031e164e69",
"https://deno.land/[email protected]/path/windows/normalize_glob.ts": "344ff5ed45430495b9a3d695567291e50e00b1b3b04ea56712a2acf07ab5c128",
"https://deno.land/[email protected]/path/windows/parse.ts": "120faf778fe1f22056f33ded069b68e12447668fcfa19540c0129561428d3ae5",
"https://deno.land/[email protected]/path/windows/relative.ts": "026855cd2c36c8f28f1df3c6fbd8f2449a2aa21f48797a74700c5d872b86d649",
"https://deno.land/[email protected]/path/windows/resolve.ts": "5ff441ab18a2346abadf778121128ee71bda4d0898513d4639a6ca04edca366b",
"https://deno.land/[email protected]/path/windows/separator.ts": "ae21f27015f10510ed1ac4a0ba9c4c9c967cbdd9d9e776a3e4967553c397bd5d",
"https://deno.land/[email protected]/path/windows/to_file_url.ts": "8e9ea9e1ff364aa06fa72999204229952d0a279dbb876b7b838b2b2fea55cce3",
"https://deno.land/[email protected]/path/windows/to_namespaced_path.ts": "e0f4d4a5e77f28a5708c1a33ff24360f35637ba6d8f103d19661255ef7bfd50d",
"https://deno.land/[email protected]/assert/_constants.ts": "a271e8ef5a573f1df8e822a6eb9d09df064ad66a4390f21b3e31f820a38e0975",
"https://deno.land/[email protected]/assert/_diff.ts": "dcc63d94ca289aec80644030cf88ccbf7acaa6fbd7b0f22add93616b36593840",
"https://deno.land/[email protected]/assert/_format.ts": "0ba808961bf678437fb486b56405b6fefad2cf87b5809667c781ddee8c32aff4",
"https://deno.land/[email protected]/assert/assert.ts": "bec068b2fccdd434c138a555b19a2c2393b71dfaada02b7d568a01541e67cdc5",
"https://deno.land/[email protected]/assert/assert_almost_equals.ts": "8b96b7385cc117668b0720115eb6ee73d04c9bcb2f5d2344d674918c9113688f",
"https://deno.land/[email protected]/assert/assert_array_includes.ts": "1688d76317fd45b7e93ef9e2765f112fdf2b7c9821016cdfb380b9445374aed1",
"https://deno.land/[email protected]/assert/assert_equals.ts": "4497c56fe7d2993b0d447926702802fc0becb44e319079e8eca39b482ee01b4e",
"https://deno.land/[email protected]/assert/assert_exists.ts": "24a7bf965e634f909242cd09fbaf38bde6b791128ece08e33ab08586a7cc55c9",
"https://deno.land/[email protected]/assert/assert_false.ts": "6f382568e5128c0f855e5f7dbda8624c1ed9af4fcc33ef4a9afeeedcdce99769",
"https://deno.land/[email protected]/assert/assert_greater.ts": "4945cf5729f1a38874d7e589e0fe5cc5cd5abe5573ca2ddca9d3791aa891856c",
"https://deno.land/[email protected]/assert/assert_greater_or_equal.ts": "573ed8823283b8d94b7443eb69a849a3c369a8eb9666b2d1db50c33763a5d219",
"https://deno.land/[email protected]/assert/assert_instance_of.ts": "72dc1faff1e248692d873c89382fa1579dd7b53b56d52f37f9874a75b11ba444",
"https://deno.land/[email protected]/assert/assert_is_error.ts": "6596f2b5ba89ba2fe9b074f75e9318cda97a2381e59d476812e30077fbdb6ed2",
"https://deno.land/[email protected]/assert/assert_less.ts": "2b4b3fe7910f65f7be52212f19c3977ecb8ba5b2d6d0a296c83cde42920bb005",
"https://deno.land/[email protected]/assert/assert_less_or_equal.ts": "b93d212fe669fbde959e35b3437ac9a4468f2e6b77377e7b6ea2cfdd825d38a0",
"https://deno.land/[email protected]/assert/assert_match.ts": "ec2d9680ed3e7b9746ec57ec923a17eef6d476202f339ad91d22277d7f1d16e1",
"https://deno.land/[email protected]/assert/assert_not_equals.ts": "f3edda73043bc2c9fae6cbfaa957d5c69bbe76f5291a5b0466ed132c8789df4c",
"https://deno.land/[email protected]/assert/assert_not_instance_of.ts": "8f720d92d83775c40b2542a8d76c60c2d4aeddaf8713c8d11df8984af2604931",
"https://deno.land/[email protected]/assert/assert_not_match.ts": "b4b7c77f146963e2b673c1ce4846473703409eb93f5ab0eb60f6e6f8aeffe39f",
"https://deno.land/[email protected]/assert/assert_not_strict_equals.ts": "da0b8ab60a45d5a9371088378e5313f624799470c3b54c76e8b8abeec40a77be",
"https://deno.land/[email protected]/assert/assert_object_match.ts": "e85e5eef62a56ce364c3afdd27978ccab979288a3e772e6855c270a7b118fa49",
"https://deno.land/[email protected]/assert/assert_rejects.ts": "e9e0c8d9c3e164c7ac962c37b3be50577c5a2010db107ed272c4c1afb1269f54",
"https://deno.land/[email protected]/assert/assert_strict_equals.ts": "0425a98f70badccb151644c902384c12771a93e65f8ff610244b8147b03a2366",
"https://deno.land/[email protected]/assert/assert_string_includes.ts": "dfb072a890167146f8e5bdd6fde887ce4657098e9f71f12716ef37f35fb6f4a7",
"https://deno.land/[email protected]/assert/assert_throws.ts": "edddd86b39606c342164b49ad88dd39a26e72a26655e07545d172f164b617fa7",
"https://deno.land/[email protected]/assert/assertion_error.ts": "9f689a101ee586c4ce92f52fa7ddd362e86434ffdf1f848e45987dc7689976b8",
"https://deno.land/[email protected]/assert/equal.ts": "fae5e8a52a11d3ac694bbe1a53e13a7969e3f60791262312e91a3e741ae519e2",
"https://deno.land/[email protected]/assert/fail.ts": "f310e51992bac8e54f5fd8e44d098638434b2edb802383690e0d7a9be1979f1c",
"https://deno.land/[email protected]/assert/mod.ts": "325df8c0683ad83a873b9691aa66b812d6275fc9fec0b2d180ac68a2c5efed3b",
"https://deno.land/[email protected]/assert/unimplemented.ts": "47ca67d1c6dc53abd0bd729b71a31e0825fc452dbcd4fde4ca06789d5644e7fd",
"https://deno.land/[email protected]/assert/unreachable.ts": "38cfecb95d8b06906022d2f9474794fca4161a994f83354fd079cac9032b5145",
"https://deno.land/[email protected]/encoding/_util.ts": "beacef316c1255da9bc8e95afb1fa56ed69baef919c88dc06ae6cb7a6103d376",
"https://deno.land/[email protected]/encoding/base64.ts": "0ec6d6e6b68fc38f6396277e5184bcd47c1a9db0222fd0b563487eb67e352741",
"https://deno.land/[email protected]/fmt/colors.ts": "71e2d7d9911cf3f4f8cceaabe588fd9a4c0228102f4233da62ffd3e421201de7",
"https://deno.land/[email protected]/media_types/_db.ts": "1d695d9fe1c785e523d6de7191b33f33ecc7866db77358a4f966221cca56e2f9",
"https://deno.land/[email protected]/media_types/_util.ts": "97198fcf0fea9f3613e5294944114ab04788f709bea999e31123321f449dd098",
"https://deno.land/[email protected]/media_types/content_type.ts": "ec2325c8f8c2ce6a081620e145b6e842f98b28ca4cfb88acfc82c74d071bbbf4",
"https://deno.land/[email protected]/media_types/extension.ts": "f38a1b2ef12fdc21a06eddf18cc419e2ec45da8c02d87cdb361385e6d3227529",
"https://deno.land/[email protected]/media_types/extensions_by_type.ts": "96bc01c82f96f95ad960efdf1e2cd4d706b21d96947ec81cbd0a06bc0098fc8c",
"https://deno.land/[email protected]/media_types/format_media_type.ts": "9fc070ec4dcc3193a9c048b3a20375b311685d22bf4ccf9311970b9dc1fb2ec7",
"https://deno.land/[email protected]/media_types/get_charset.ts": "678383f268db650da0f053655c5cce87cf3b7028f62436bafaf0b2dbf9e761e1",
"https://deno.land/[email protected]/media_types/parse_media_type.ts": "6cecc445f1a47adaeb1e163af7f20d29a1b6be68185c6e78eb12c04fc2dfe3ea",
"https://deno.land/[email protected]/media_types/type_by_extension.ts": "27fb0c5c306ce6c115b071b1a6fca4f1061572e214e3023775680fbe9199f7e8",
"https://deno.land/[email protected]/media_types/vendor/mime-db.v1.52.0.ts": "0218d2c7d900e8cd6fa4a866e0c387712af4af9a1bae55d6b2546c73d273a1e6",
"https://deno.land/[email protected]/path/_common/assert_path.ts": "2ca275f36ac1788b2acb60fb2b79cb06027198bc2ba6fb7e163efaedde98c297",
"https://deno.land/[email protected]/path/_common/basename.ts": "569744855bc8445f3a56087fd2aed56bdad39da971a8d92b138c9913aecc5fa2",
"https://deno.land/[email protected]/path/_common/common.ts": "6157c7ec1f4db2b4a9a187efd6ce76dcaf1e61cfd49f87e40d4ea102818df031",
"https://deno.land/[email protected]/path/_common/constants.ts": "dc5f8057159f4b48cd304eb3027e42f1148cf4df1fb4240774d3492b5d12ac0c",
"https://deno.land/[email protected]/path/_common/dirname.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
"https://deno.land/[email protected]/path/_common/format.ts": "92500e91ea5de21c97f5fe91e178bae62af524b72d5fcd246d6d60ae4bcada8b",
"https://deno.land/[email protected]/path/_common/from_file_url.ts": "d672bdeebc11bf80e99bf266f886c70963107bdd31134c4e249eef51133ceccf",
"https://deno.land/[email protected]/path/_common/glob_to_reg_exp.ts": "2007aa87bed6eb2c8ae8381adcc3125027543d9ec347713c1ad2c68427330770",
"https://deno.land/[email protected]/path/_common/normalize.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
"https://deno.land/[email protected]/path/_common/normalize_string.ts": "dfdf657a1b1a7db7999f7c575ee7e6b0551d9c20f19486c6c3f5ff428384c965",
"https://deno.land/[email protected]/path/_common/relative.ts": "faa2753d9b32320ed4ada0733261e3357c186e5705678d9dd08b97527deae607",
"https://deno.land/[email protected]/path/_common/strip_trailing_separators.ts": "7024a93447efcdcfeaa9339a98fa63ef9d53de363f1fbe9858970f1bba02655a",
"https://deno.land/[email protected]/path/_common/to_file_url.ts": "7f76adbc83ece1bba173e6e98a27c647712cab773d3f8cbe0398b74afc817883",
"https://deno.land/[email protected]/path/_interface.ts": "a1419fcf45c0ceb8acdccc94394e3e94f99e18cfd32d509aab514c8841799600",
"https://deno.land/[email protected]/path/_os.ts": "8fb9b90fb6b753bd8c77cfd8a33c2ff6c5f5bc185f50de8ca4ac6a05710b2c15",
"https://deno.land/[email protected]/path/basename.ts": "5d341aadb7ada266e2280561692c165771d071c98746fcb66da928870cd47668",
"https://deno.land/[email protected]/path/common.ts": "973e019d3cfa6a134a13f1fda3f7efbaf400a64365d7a7b96f66afe373a09dc5",
"https://deno.land/[email protected]/path/dirname.ts": "85bd955bf31d62c9aafdd7ff561c4b5fb587d11a9a5a45e2b01aedffa4238a7c",
"https://deno.land/[email protected]/path/extname.ts": "593303db8ae8c865cbd9ceec6e55d4b9ac5410c1e276bfd3131916591b954441",
"https://deno.land/[email protected]/path/format.ts": "98fad25f1af7b96a48efb5b67378fcc8ed77be895df8b9c733b86411632162af",
"https://deno.land/[email protected]/path/from_file_url.ts": "911833ae4fd10a1c84f6271f36151ab785955849117dc48c6e43b929504ee069",
"https://deno.land/[email protected]/path/glob_to_regexp.ts": "83c5fd36a8c86f5e72df9d0f45317f9546afa2ce39acaafe079d43a865aced08",
"https://deno.land/[email protected]/path/is_absolute.ts": "4791afc8bfd0c87f0526eaa616b0d16e7b3ab6a65b62942e50eac68de4ef67d7",
"https://deno.land/[email protected]/path/is_glob.ts": "a65f6195d3058c3050ab905705891b412ff942a292bcbaa1a807a74439a14141",
"https://deno.land/[email protected]/path/join.ts": "ae2ec5ca44c7e84a235fd532e4a0116bfb1f2368b394db1c4fb75e3c0f26a33a",
"https://deno.land/[email protected]/path/join_globs.ts": "e9589869a33dc3982101898ee50903db918ca00ad2614dbe3934d597d7b1fbea",
"https://deno.land/[email protected]/path/mod.ts": "8e1ffe983557e9637184ccb84bd6b0447e319f4a28bfad7f3f41ee050579e5e6",
"https://deno.land/[email protected]/path/normalize.ts": "4155743ccceeed319b350c1e62e931600272fad8ad00c417b91df093867a8352",
"https://deno.land/[email protected]/path/normalize_glob.ts": "98ee8268fad271193603271c203ae973280b5abfbdd2cbca1053fd2af71869ca",
"https://deno.land/[email protected]/path/parse.ts": "65e8e285f1a63b714e19ef24b68f56e76934c3df0b6e65fd440d3991f4f8aefb",
"https://deno.land/[email protected]/path/posix/_util.ts": "1e3937da30f080bfc99fe45d7ed23c47dd8585c5e473b2d771380d3a6937cf9d",
"https://deno.land/[email protected]/path/posix/basename.ts": "39ee27a29f1f35935d3603ccf01d53f3d6e0c5d4d0f84421e65bd1afeff42843",
"https://deno.land/[email protected]/path/posix/common.ts": "809cc86e79db8171b9a97ac397d56b9588c25a8f3062f483c8d651a2b6739daa",
"https://deno.land/[email protected]/path/posix/dirname.ts": "6535d2bdd566118963537b9dda8867ba9e2a361015540dc91f5afbb65c0cce8b",
"https://deno.land/[email protected]/path/posix/extname.ts": "8d36ae0082063c5e1191639699e6f77d3acf501600a3d87b74943f0ae5327427",
"https://deno.land/[email protected]/path/posix/format.ts": "185e9ee2091a42dd39e2a3b8e4925370ee8407572cee1ae52838aed96310c5c1",
"https://deno.land/[email protected]/path/posix/from_file_url.ts": "951aee3a2c46fd0ed488899d024c6352b59154c70552e90885ed0c2ab699bc40",
"https://deno.land/[email protected]/path/posix/glob_to_regexp.ts": "54d3ff40f309e3732ab6e5b19d7111d2d415248bcd35b67a99defcbc1972e697",
"https://deno.land/[email protected]/path/posix/is_absolute.ts": "cebe561ad0ae294f0ce0365a1879dcfca8abd872821519b4fcc8d8967f888ede",
"https://deno.land/[email protected]/path/posix/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9",
"https://deno.land/[email protected]/path/posix/join.ts": "aef88d5fa3650f7516730865dbb951594d1a955b785e2450dbee93b8e32694f3",
"https://deno.land/[email protected]/path/posix/join_globs.ts": "35ddd5f321d79e1fc72d2ec9a8d8863f0bb1431125e57bb2661799278d4ee9cd",
"https://deno.land/[email protected]/path/posix/mod.ts": "9dfff9f3618ba6990eb8495dadef13871e5756419b25079b6b905a4ebf790926",
"https://deno.land/[email protected]/path/posix/normalize.ts": "baeb49816a8299f90a0237d214cef46f00ba3e95c0d2ceb74205a6a584b58a91",
"https://deno.land/[email protected]/path/posix/normalize_glob.ts": "0f01bcfb0791144f0e901fd2cc706432baf84828c393f3c25c53583f03d0c0b7",
"https://deno.land/[email protected]/path/posix/parse.ts": "d5bac4eb21262ab168eead7e2196cb862940c84cee572eafedd12a0d34adc8fb",
"https://deno.land/[email protected]/path/posix/relative.ts": "3907d6eda41f0ff723d336125a1ad4349112cd4d48f693859980314d5b9da31c",
"https://deno.land/[email protected]/path/posix/resolve.ts": "bac20d9921beebbbb2b73706683b518b1d0c1b1da514140cee409e90d6b2913a",
"https://deno.land/[email protected]/path/posix/separator.ts": "6530f253a33d92d8f8a1d1d7fa7fad2992c739ad9886dde72e4e78793f1cfd49",
"https://deno.land/[email protected]/path/posix/to_file_url.ts": "7aa752ba66a35049e0e4a4be5a0a31ac6b645257d2e031142abb1854de250aaf",
"https://deno.land/[email protected]/path/posix/to_namespaced_path.ts": "28b216b3c76f892a4dca9734ff1cc0045d135532bfd9c435ae4858bfa5a2ebf0",
"https://deno.land/[email protected]/path/relative.ts": "ab739d727180ed8727e34ed71d976912461d98e2b76de3d3de834c1066667add",
"https://deno.land/[email protected]/path/resolve.ts": "a6f977bdb4272e79d8d0ed4333e3d71367cc3926acf15ac271f1d059c8494d8d",
"https://deno.land/[email protected]/path/separator.ts": "2b5a590d4f1942e70650ee7421d161c24ec7d3b94b49981e4138ae07397fb2d2",
"https://deno.land/[email protected]/path/to_file_url.ts": "88f049b769bce411e2d2db5bd9e6fd9a185a5fbd6b9f5ad8f52bef517c4ece1b",
"https://deno.land/[email protected]/path/to_namespaced_path.ts": "b706a4103b104cfadc09600a5f838c2ba94dbcdb642344557122dda444526e40",
"https://deno.land/[email protected]/path/windows/_util.ts": "d5f47363e5293fced22c984550d5e70e98e266cc3f31769e1710511803d04808",
"https://deno.land/[email protected]/path/windows/basename.ts": "e2dbf31d1d6385bfab1ce38c333aa290b6d7ae9e0ecb8234a654e583cf22f8fe",
"https://deno.land/[email protected]/path/windows/common.ts": "809cc86e79db8171b9a97ac397d56b9588c25a8f3062f483c8d651a2b6739daa",
"https://deno.land/[email protected]/path/windows/dirname.ts": "33e421be5a5558a1346a48e74c330b8e560be7424ed7684ea03c12c21b627bc9",
"https://deno.land/[email protected]/path/windows/extname.ts": "165a61b00d781257fda1e9606a48c78b06815385e7d703232548dbfc95346bef",
"https://deno.land/[email protected]/path/windows/format.ts": "bbb5ecf379305b472b1082cd2fdc010e44a0020030414974d6029be9ad52aeb6",
"https://deno.land/[email protected]/path/windows/from_file_url.ts": "ced2d587b6dff18f963f269d745c4a599cf82b0c4007356bd957cb4cb52efc01",
"https://deno.land/[email protected]/path/windows/glob_to_regexp.ts": "6dcd1242bd8907aa9660cbdd7c93446e6927b201112b0cba37ca5d80f81be51b",
"https://deno.land/[email protected]/path/windows/is_absolute.ts": "4a8f6853f8598cf91a835f41abed42112cebab09478b072e4beb00ec81f8ca8a",
"https://deno.land/[email protected]/path/windows/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9",
"https://deno.land/[email protected]/path/windows/join.ts": "e0b3356615c1a75c56ebb6a7311157911659e11fd533d80d724800126b761ac3",
"https://deno.land/[email protected]/path/windows/join_globs.ts": "35ddd5f321d79e1fc72d2ec9a8d8863f0bb1431125e57bb2661799278d4ee9cd",
"https://deno.land/[email protected]/path/windows/mod.ts": "e739f7e783b69fb7956bed055e117201ccb071a7917c09f87c5c8c2b54369d38",
"https://deno.land/[email protected]/path/windows/normalize.ts": "78126170ab917f0ca355a9af9e65ad6bfa5be14d574c5fb09bb1920f52577780",
"https://deno.land/[email protected]/path/windows/normalize_glob.ts": "49c634af33a7c6bc738885c4b34633278b7ab47bd47bf11281b2190970b823e2",
"https://deno.land/[email protected]/path/windows/parse.ts": "b9239edd892a06a06625c1b58425e199f018ce5649ace024d144495c984da734",
"https://deno.land/[email protected]/path/windows/relative.ts": "3e1abc7977ee6cc0db2730d1f9cb38be87b0ce4806759d271a70e4997fc638d7",
"https://deno.land/[email protected]/path/windows/resolve.ts": "75b2e3e1238d840782cee3d8864d82bfaa593c7af8b22f19c6422cf82f330ab3",
"https://deno.land/[email protected]/path/windows/separator.ts": "2bbcc551f64810fb43252185bd1d33d66e0477d74bd52f03b89f5dc21a3dd486",
"https://deno.land/[email protected]/path/windows/to_file_url.ts": "1cd63fd35ec8d1370feaa4752eccc4cc05ea5362a878be8dc7db733650995484",
"https://deno.land/[email protected]/path/windows/to_namespaced_path.ts": "4ffa4fb6fae321448d5fe810b3ca741d84df4d7897e61ee29be961a6aac89a4c",
"https://deno.land/[email protected]/dotenv/mod.ts": "0fcdf815a78d6f5bc70de92599fef80bc174da708492c4ed50b87ea480a56baa",
"https://deno.land/[email protected]/dotenv/parse.ts": "55d5d1a5ba76c1324e6dc2f2f7917f03c47e5da5c2c55af11fd0fe2d6a3d3a2e",
"https://deno.land/[email protected]/dotenv/stringify.ts": "0047ad7068289735d08964046aea267a750c141b494ca0e38831b89be6c020c2",
"https://deno.land/[email protected]/fmt/colors.ts": "ce9375edade12ca09c257743f223fc469d72578d0c74a55cbf1a34f6198ce3df",
"https://deno.land/x/[email protected]/mod.ts": "de7a3fa2d4ef24b96fc21e1cc4d2d65d1d2b1dcea92f63960e3e11bfa82df0fa",
"https://deno.land/x/[email protected]/src/DomHandler.ts": "5031e2062c95daa5a14fefbf3a54872be944e6ccb3dc75301591333f5607870d",
"https://deno.land/x/[email protected]/src/DomSerializer.ts": "b7248766f7e708716f4c48bf17796a65fe28490efed659c7bdbd62eaffd691b7",
"https://deno.land/x/[email protected]/src/ElementType.ts": "1ebd2f95b3e44dfb76e4700efc0cf33a5b15f09384c227c5da5d35f5af98f55b",
"https://deno.land/x/[email protected]/src/FeedHandler.ts": "44377ed272f63a4b81582fe5523733e0d4d1f1507456d657eaf8dbfaa67d61bb",
"https://deno.land/x/[email protected]/src/Node.ts": "cddecdcf9afc7dedb83cdd8952995dd14a94f272f232be6326e2dea520de83b7",
"https://deno.land/x/[email protected]/src/Parser.ts": "edad95d019e2c4471e8de9df9de0d39772e0e16fb6b35196acae407d6ea64c24",
"https://deno.land/x/[email protected]/src/Tokenizer.ts": "1b063499822abf8f5d265d1642aecfbf56e7862846fc33e03ecc758d87f43da8",
"https://deno.land/x/[email protected]/src/mod.ts": "1209bdc0336244fb77803bba1ef0af4c68208fd03b0d68bc7de59a45e8d501ff",
"https://deno.land/x/[email protected]/src/utils/entities/decode.ts": "e154124a2453841b25c0de8df98bd9ee3aac4cb7e01348fefd0512cf27aaa88f",
"https://deno.land/x/[email protected]/src/utils/entities/decode_codepoint.ts": "9e17c1f957824bf0eb5a91615890370c18d7811bdf2eaae1daf41a9a077217eb",
"https://deno.land/x/[email protected]/src/utils/entities/encode.ts": "1ca9c103ad1aed445f3456176dcf299534b7327a6fa8506718560d92ddee359f",
"https://deno.land/x/[email protected]/src/utils/entities/maps/decode.ts": "e201c7adbdff8056dac535f7c8ef36daf79bf9fd4bdd1c447225e2cd6d8fd955",
"https://deno.land/x/[email protected]/src/utils/entities/maps/entities.ts": "84c2f1ef39cecd6fb8a2a20ab998f6d20fbde71254e6b860926d75d9d53192bb",
"https://deno.land/x/[email protected]/src/utils/entities/maps/legacy.ts": "a665ba8685bf0bfe5e095afcebd0b6d17f49207fc4004c1b6b85c50092aae7d0",
"https://deno.land/x/[email protected]/src/utils/entities/maps/xml.ts": "4dfd749cb05cdd0c108e9219cc3f73f2de6cf0028fdaa28887c63a6bf352f2cd",
"https://deno.land/x/[email protected]/src/utils/entities/mod.ts": "3f501119cdd84f729e586ac6acac12b8273aa0c1556a67a75b370f5a21c52526",
"https://deno.land/x/[email protected]/src/utils/helpers.ts": "0e01ed4aa92197a13e74fcd00483351fb18682d0b9ef0f4c1903e16bd4310e81",
"https://deno.land/x/[email protected]/src/utils/legacy.ts": "138d1cf436fef4be5d8d35521ffe6ca4a74cc46c1ba8e219b44fcbc951f07f5c",
"https://deno.land/x/[email protected]/src/utils/manipulation.ts": "a05e88097e6ac8c706cdd76d06080b7970d84fd7fbd20bda2d9d1b46579430bc",
"https://deno.land/x/[email protected]/src/utils/mod.ts": "cc96619cc04c1424888201f87b85d16d398a41e68e64cebd058d0ee623a38645",
"https://deno.land/x/[email protected]/src/utils/querying.ts": "b8efd0fbbcc38c386633ce6233d91508f3f35115ac3930eb71063e2576429eb3",
"https://deno.land/x/[email protected]/src/utils/stringify.ts": "df98808214552b40b12fe00d833431ef5ae22a4842c3af1373c33d611ffc4e24",
"https://deno.land/x/[email protected]/src/utils/traversal.ts": "84988442d00f83728d87d6e462113ad5107f002e32e08d88a99c7284e0252d60",
"https://deno.land/x/[email protected]/mod.ts": "70287ecc3c983da23eedb4d9e17046f8d928fd894db8b96c4ff027c4280917b1",
"https://deno.land/x/[email protected]/tgcrypto.js": "a220a09bdfc405dd3d5ebc1655769b77451b6afd565d0f0fcdd183e5ea92e1d7",
"https://esm.sh/[email protected]": "dc704b8c247bb6c818fac3f6205b1bb872f7efc3ac7eb617f657b5965b59643a",
"https://esm.sh/[email protected]": "7c564fdd279ec9d5298e4243e572747d1f41f053197854984283cee5a2a32eac",
"https://esm.sh/v135/[email protected]/denonext/async-mutex.mjs": "cf505d897cb9ee6fa14993569c7dfad2e0954337adbb38522770201db5115aa2",
"https://esm.sh/v135/[email protected]/denonext/object-inspect.mjs": "12b0a1b79c54b9ffcc995276d6ce8635a58376c040739bf4072a7df7b4b913dd",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/0_deps.ts": "be41c20ff9789a59aee29c905849a12efa70a760632c202f3a41fc576b3d23ae",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/1_utilities.ts": "9dcf5c58e3d8cdd6072a7703eee3452708fd418efe22ab61ae2d5a8082cf133f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/2_connection.ts": "bea531073ec9d1ab2fa43ab1542725d64e5ae5f69e639f9903f059def97ec324",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/2_tl.ts": "7a10893bf2bc4784e46c46f9fb36e642ad3f5bf4cbc30e1966a370ab5dbccc96",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/3_errors.ts": "d49470f3b9fe19a57b3932926020c0234166948f4d943aba229afbe7688989b4",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/3_storage.ts": "c30d7da3e9a931bde550d01745ae8122fb3dce0727facbfe11d4c8dc4a1f862f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/3_transport.ts": "7f1241951066f8234dd7d5264176fa1c3438b2594557e5aa2e4d5a86cf6b9f4a",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/3_types.ts": "781deb6d986f5a5f8645921e8e936431b7feb5f83051e4290e7cfde8e9140e50",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/4_constants.ts": "3aa430eb60a91a18dba7916cf63562ae85481b3cc4c8595bcefaf1b1e2c2bc20",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/4_errors.ts": "7ba3c8d0049763b361b03689ad4d8ccc69be24ebc05712a1e5257d7085b0ae87",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/5_client.ts": "8c3c39c5db90cc0ee18537761a8873f7224a1fb51924a9433a5a5b7c234520b8",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_client_abstract.ts": "c19aa53946f274c7966e72ce1af86eeea3137d70ebbb4000be048a530d14e8df",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_filters.ts": "9dfe21583807c34e9b43fbb97997c9850f49faf178973d93c04a3a1f29e71d19",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_html.ts": "0c03c2ec075d3e19602b495ca8abf95558acf3d07e5346c028915e9b6cc13f6f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_message.ts": "ffbeade7e0d558d17e2acb0963565216a1936041ae66f0886d217e0ed5fee3e3",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_params.ts": "a59438b778963b137f76b0331723f02b2aa8fe2694e8d08f9d0b17de92de57af",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_password.ts": "b795536f5525d3d62d70d503d549fbcb70d701e0ebd9ad701a2d643c7e8bc2bd",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_types.ts": "f4f0cd598e2b4a49f0e9dcd0b50a0c5a60161aa2269374ab11e0af1d7d387cce",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/0_utilities.ts": "939a7a54a75956d9a23c9db81d50851e32c833aa2568b3a4478587d1ab519312",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/1_bot_info_manager.ts": "2b8249ba2aa8dc2bef4565ab1fbfcb1e614a66952eae282311517d4765dd229a",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/1_composer.ts": "20f71662367c0b0648d7cfb88bff2a804976df63bd923dffe1e13b28e980eced",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/1_file_manager.ts": "a334af98cbb28f85bb224052348cf4ed7d05dbf559785fcb346b7682fe689518",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/1_network_statistics_manager.ts": "73eeaf0c3cd0dc221e5a63e3b7a0e9942a768ec274436c1a29f493bc4abcdeae",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/1_reaction_manager.ts": "6338cd35ba0ea10f182b3c30957718e2694fdd7a03336d7111a29b7dcd0d6e35",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/1_update_manager.ts": "e24e19ce1d1546d56e6e1f5bf895ca406b0f27883cd07181d0911f536d5ea777",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/2_client_plain.ts": "9839c6258fad1469d543d792fb6f2a3e19a2c2bbeda781978aaa2fa8095607a7",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/2_message_manager.ts": "35fe4d9ed8572291b06e03b588074671a3c4e1e760602715df0ff6184b0d5bc8",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/3_callback_query_manager.ts": "f9cb8b28c30120110e9cfe7bc1d8ebbbb74719605c19cec9559fb1c498f82866",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/3_chat_list_manager.ts": "af2fa2c176a0f71039ad3c87c2e6593ba7140eb574fee2baea2b4b7577a58f45",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/3_inline_query_manager.ts": "cf905bb380df88e48412d58818f6882ffca9784d4dcb6e15bdd168f945416cc2",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/4_client.ts": "5646fbd0724b4f2ce50efec4eb642828ce97177aac2c3789836bef1da9f9ff16",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/5_composer.ts": "7bbcc0c57cf2fba04bd81332315206379ca2977f6bf73311eaf8d97be38a1e78",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/client/5_session_string.ts": "b354c041db1ae739fe772dd6dbac5545353cacf3f88f1a21506d44ca5f8bc97f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/connection/0_connection.ts": "0b925c971b21b93cf3907d48705698f0365698b2505112bb4f6521fe1e2f636e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/connection/1_connection_web_socket.ts": "6d93c3cdbe624824bfdd659501de77f43c59f1bfa9e2682c100a8916a172263a",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/mod.ts": "5c0f5a03aa21804b262290afed678401953418ac2921740558adfc108768a066",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/storage/0_storage.ts": "961d5b17d7f3a09a4ff900faa211eb09d14ae7a823a46e8c0d2e8afd2708ca9c",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/storage/0_utilities.ts": "fe7255ff8c980c0a7cbd45335b20682b9eabecf2c87fc765a124a7b5f5348326",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/storage/1_storage_indexed_db.ts": "968912f30c155242d9b29b44fb836c9b64ac539a874a47ed2674db5f880e6f66",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/storage/1_storage_local_storage.ts": "71c60f7e2d7b55d9aa56f71eb110685a5447619ed630b4ad2d015163e688b2b7",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/storage/1_storage_memory.ts": "812835d5f8f3e86c1abcd952bc228c4178b8ed2331977354469dc31a391c945d",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/storage/1_storage_session_storage.ts": "a9bb60f3efae78d75790d230833918a6d4c155d96acf29227dacab21fbe791d1",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/0_tl_raw_reader.ts": "59cf11d85115b0e39a6cafa520902dc2ad7b58636f15ff3bb22debe3089e8256",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/0_tl_raw_writer.ts": "d0d97a6a4d729122abf579809eac4f3b51116e562fe4f3abf855c0d4edb3eb4f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/1_tl_object.ts": "10e2b8437fabd4a1aab6c8b7f8056a3ac2eef0e9065a2fc1b7ff41baf8cb3787",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/2_types.ts": "096dc943c02d5317aea7d6702d7c5f0b1482990464a8953f8a25fa11dfaba8c3",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/3_deserialize.ts": "008fdbaf259d6e0d0ddd21c2b2c3e4bb0628da8f4bbf781abf26a783de784a41",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/3_functions.ts": "f397be8978b193bc9657a45f57cfcea3e54aa62575411cdc4b2ad0899bbedf69",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/3_tl_reader.ts": "21f5425bee86ecdebcc2e996ca3436bd48d02742762ed92dfe812b890fd9bd72",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/3_utilities.ts": "d17c4366d5f6c92553aa5da49102c640e2bcf1a03fa1d15329f7f505d53d6c90",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/4_rpc_result.ts": "620eefc531bba9b1e425dfc8c53f5a29e29140db5861e360a3749ac9c8ab5ee7",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/4_tl_writer.ts": "142ac723f3dc1c69cdf7145d4988efe02274efdabf58e0843035cfcfabdfa50e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/6_message.ts": "18ec3338f6dfedaebb8423815f8cdce70683c47cced5e892c064799f713243cf",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/tl/7_message_container.ts": "a3c447546f8021b1caf10f5220960a03acced7ec8a9d14e77a89fdb71996805c",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/transport/0_obfuscation.ts": "72724e296ea1987c24ed5837bc357287f71e448b31ecd0adcf8bd3c1ccc60296",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/transport/0_transport.ts": "79e4f1c3a77e90205921a6ec3ba1767b39772b6db08010ac2ef36b2313dd326a",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/transport/1_transport_abridged.ts": "510b2fecdf74fcbcd574f800827cef9cdc3ffbb6a44bf8c585de56441e6ee6b9",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/transport/1_transport_intermediate.ts": "ac549a4cc71d2321f6f5042bc6db18b448dac488bd3c1623d766e8a01baa3da6",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/transport/2_transport_provider.ts": "91c6a94b76e31f6ce473a4dcf04fe7246f33aa8a07111973af5a285bf861678b",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/transport/3_transport_provider_web_socket.ts": "d1b46edb7680a54e01490a5a1ad026d572d8029f435ab6ee31b8ee64e19892fb",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0__file_id.ts": "c906dce41362ac516cfe2cdededd2ee7695e972c4a3b4211e5f72e750f288ad1",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_authorization_state.ts": "9cfa1af0773a66e7482f83166cf7e1e7b7552e268e5f3ff702432ed98eb54b94",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_bot_command.ts": "39eb5f9dbcce5c91abe454f416fdb0909e1b9944425d0a3b95f523ef82b5295e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_chat_action.ts": "48cea732e954a57e4685e2555400e3800416da18ee763d63c403c8a4454cad2e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_chat_administrator_rights.ts": "8f289a2ac2be846bf559045d19c26069f3c8eac9921230bd9989c8c4f58fac70",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_chat_member_rights.ts": "eee14673c79f45e5f99ae6a797764c1d4437c7466ce2bdee925e16a2831f7587",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_chat_photo.ts": "d9c03f4550bd37f46440b9684b85a085764efe5eae43d7350c881295c33949af",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_connection_state.ts": "a312b03f8dbafec5a2cabdb8da97f471e863ab5e8f1a4dc4147b64ea6119dbf9",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_contact.ts": "5e80d39ad6b964544aacdb58fe86ecfa3e35b1c35719e776bfdf4531f3130320",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_dice.ts": "9c427880b921c171bca347e16e574832a1783d09d6aa9d85ca3dfce237c8c2a2",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_file_source.ts": "e76b94d6f0d9eed267e15068a9bea16e62b4b9345dcb45ce66d73151fac469a8",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_giveaway_parameters.ts": "887d3d642fe7c6f1e947bd5740bf6a2f6cb9cf66610b48f1cca941205f379b18",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_id.ts": "de66f25e5252c1be1ae36435f2ae0bce8399e9a1afb21e247e7b4876a4243ef5",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_keyboard_button_poll_type.ts": "8dc78f60489057a1ae53192917743b214bc54c78bdae861299845b949fc91093",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_location.ts": "2c64f2c481405a0869dc4d825fce9d681e32d85d807b4e28a6c7a3bf4eec1d98",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_login_url.ts": "11fa49f686d806d49389c6629e6d2726c53c28b27536add210f1e5ba91c1848e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_mask_position.ts": "7cb802ec0c039e81b99f561e2c50be0619458dcf3b2f93f94582c5124106de2b",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_message_entity.ts": "aa824ef2308bfa38cf96411c462ac482a690e8645d4a6c5d2a70b0370eeadf33",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_message_reference.ts": "4f948ad80ffbf4845c651977e80b4b31fd7abb7caa7f3e21291d110b4fc96365",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_mini_app_info.ts": "e9f0848c39a0c6cae0ef7c1d03143e1ead819b3a4e106e38ae7a003ba828e0b0",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_network_statistics_entry.ts": "009e7603e6b777a17f568e7903e9f334348c38c48fcd5c5fb1bc5337711a2aaa",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_parse_mode.ts": "18e069fc508ca9ea1e1d96903698a7fecfc7151ae5249b7367815f2ed451987e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_poll_option.ts": "b822e7bae27cad40ff524a1453b48010474cac2783e5dc4437a6661f615aadaa",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_price_tag.ts": "a54c276a1de101326c398a7120927c355aeacacda19b4fa13e61289498066e43",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_reaction.ts": "f7cc0198a8d7bcadf3db478cdcb5374dbb273b166c38271cf85160e0aaf00177",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_restriction_reason.ts": "8917c228cf46179ee2e323d0f4dcf508c89b14b150e9e14959e8c192857f191b",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_thumbnail.ts": "becb22790b82d06ad7f27fc80c648175540cf6eaffbcd2ce85f186d16917f92e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_venue.ts": "da3409494794cd5f528a24da1d7e6d803291fa99c61e3a7c75d4da6f1b75c650",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/0_voice.ts": "8dd978fd0a1071f3c8588407542e6224be66bee02ab769e11bd0504644a1c113",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1__getters.ts": "4e47105365c5e1a77909958946cda56b3880e686b3756469a0015bf5bb45457c",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_animation.ts": "ed5876e699184f234d758f08d7aee5a8a5348dc1f56acf9ccc535afb21278fd6",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_audio.ts": "895dd9580df33a185ba116e16367878ae72a4c293308aedc9b18f50b6e3b1094",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_bot_command_scope.ts": "a285f17c0e7bab6db01568d07bb6380d9e7de99a984506b4d68db81dc4d91ad0",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_chat_p.ts": "48ea1181d4f41ad41428ef2e57ec243487c8a3670f713ee2ab4d4f0e864ef25b",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_document.ts": "a6ca17da19843d49f65d67a12a648b706e048ba5a73061cdaa44e8364ead6c01",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_giveaway.ts": "e8db06784013bf43c729aedbd5c6b5acc1f5938b15d88003a151711c5790546d",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_inline_query_result_button.ts": "374b65f08bc03afd12a80296075faeb75e8b3ce5864d7ea09f834bdb4e2a0346",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_input_message_content.ts": "a6bf0027ade55ca199232e17b461434d8c719b26f1dbd2cfdbc0917a3043e14f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_keyboard_button.ts": "4a087841c3aca70493595f75e51f601a5f9ea123d781fab936195d81aee5c9b2",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_message_reaction.ts": "41324a2195576844b53767ae0e753a334b3cc286548f8131dd7105d746f44411",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_network_statistics.ts": "b32802de8b9aaf46d113c7ac55ee2bf0843df6aa8831f481c69f3d080ee7d52b",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_photo.ts": "8ccc4902cdb8e877294f480c82ad441a8638e1e04ad1c8ba56555e8c1dcc9c1e",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_poll.ts": "b9e639a2fada1f17604d5b1ce9b952b4287aed00f1987a842161c976e04b12f9",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_reaction_count.ts": "3e775721d581ec278d11c4313c1993ca0224b2a11a3967e930c3af232e6a566a",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_reply_quote.ts": "cff1a48dbd77dd4120a3cdb17cb3de9807dc9f9478fc21f24f91e74b2394a904",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_sticker.ts": "423656c7cf87a75a39f90402dd837f5e1c34223871fe43929330e908af63a1f9",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_user.ts": "bfb36ece17599664da400339ed6b7afec48d205b71a1ab38eafdeff076ea8fea",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_video.ts": "18db9630feaeca784aec67fba1e33ddf091c69367b643219184f489a3150d711",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/1_video_note.ts": "4374bc6a512d072907c687dc97e2f00d21ef28d65d72602833187f6b39abbf10",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_chat_member.ts": "56c336eb7ad59b9016f8366e44b26b38503de2bc31422c993130e5c0003e6c45",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_chosen_inline_result.ts": "b78ad77cabb98e2c74d41bc8ab8e65adafa51a5230c0192a5e1cea5adebbd348",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_game.ts": "f70c500f79f51c98ede99d8aa04f2d99d688acaafe3a887460d6b37f28f39d02",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_inline_keyboard_button.ts": "fdb021ad77ccc9f14e1c6b50720cc53f52595a9a3177cfa72a4e4fa88286b139",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_inline_query.ts": "cac7b803789de59844ab05968b90c66ccaf434c8d79b206d802ff1fa361711ee",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_invite_link.ts": "2136646ef2ac042e90d7349c8f5aede5b2b97ba3ecf744f87044f389d165bcc9",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_message_interactions.ts": "d22872e8ebb348a08f8f259cc4837d891dfd3a6346d4b99a901a91745bcf0723",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_message_reaction_count.ts": "bbfcb2d2a64de6af78913f57251b4c35789000e083a4a2128af38ac316db3ecd",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/2_message_reactions.ts": "758ebe5d111669d5cd9101fe510443fc2773837dfd4277378c2436b2b63a8a62",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/3_chat_member_updated.ts": "d8889eb10d6c79e7ba443c4e25537479ed8ec038a24dcc14dcf5537628104ae1",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/3_reply_markup.ts": "20467179ab1788467cdef1353352b85408a12bf9a9fe5fbecc5824cb0e5e2b9a",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/4_inline_query_result.ts": "c506b26dfd556e51aefd19bc844507fd28133be9161397baad64e55e4891533d",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/4_message.ts": "4427df2e3fdaa203f69407bb5ca03918d65db2473ba348533b2a462d588efdaf",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/5_callback_query.ts": "969a197b1775be67b0ddf91b09e2bdad0fd75d8db7a7e607cdbbb5b9c9d1b7ec",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/5_chat.ts": "2301848867efbcd0cb8eaa5a64367196415077ef12d5795f438febf4e3ad9121",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/types/6_update.ts": "f3e2a1efae4af37ccc9a6d5028119208078e698d5fd68af84e5378185fedc054",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_bigint.ts": "56c87d763fc0717d447cd43425e9589e19b371ce34c6770273180cd2d66dbe0f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_buffer.ts": "f50fc025c788d8f50b0ba010c6bbf33efca021feaf56cff1dcf54dbd620ba035",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_color.ts": "a55fda7f5615d65b93fd9cba25d92d18d89c67619e95667a493ef42ac0991cf0",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_control.ts": "3e6caa2c3a121474ce6635027d8eb004c66ba043c738c56d683d192ff7fb432f",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_crypto.ts": "688d2b79e5bed1db8dd2f60b765642799777226300563b2a19acbbe2806f83d1",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_hash.ts": "65731c5ac92be766aa37c85f03df0cc98911b8aeecf7c8c2df0a586eb2743c78",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_object.ts": "ce1715f0275d618f057c09f658025d92b776ca9e8777b1d8e2d4f924337ee2e9",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_queue.ts": "1b4e7e52e26b69bbfaaf517a4d66fa41ecb9778d6915a354f6d8c4973e1497af",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_rle.ts": "ca2418bd933955f44e497f59f533971d5c52794812bef1f9f02faf663f18bacf",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/0_types.ts": "32115c140f34c50b8931622980975079de004b92fbc3c680979abd7f9d32daa6",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/1_auth.ts": "761a54d9fcca76c075c3a3586de6bbdc8e1a2cb316f79222803712140bf86b54",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/1_base64.ts": "64442f2e20f70ff6a5b2d14ea71172a842383dfe4ee44ef641e6055c191287dd",
"https://ghc.deno.dev/MTKruto/MTKruto@22f1a7a/utilities/1_misc.ts": "c65aefc5df29ef82fb909f74845d7d8e2c573facaf050d545d5640a3cda845c6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/0_deps.ts": "256292a7267e714728d0533fe040373d3faa1fe12e6ea24eb47d7a07d85abaa2",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/1_utilities.ts": "9dcf5c58e3d8cdd6072a7703eee3452708fd418efe22ab61ae2d5a8082cf133f",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/2_connection.ts": "bea531073ec9d1ab2fa43ab1542725d64e5ae5f69e639f9903f059def97ec324",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/2_tl.ts": "7a10893bf2bc4784e46c46f9fb36e642ad3f5bf4cbc30e1966a370ab5dbccc96",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/3_errors.ts": "d49470f3b9fe19a57b3932926020c0234166948f4d943aba229afbe7688989b4",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/3_storage.ts": "c30d7da3e9a931bde550d01745ae8122fb3dce0727facbfe11d4c8dc4a1f862f",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/3_transport.ts": "7f1241951066f8234dd7d5264176fa1c3438b2594557e5aa2e4d5a86cf6b9f4a",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/3_types.ts": "6bb1bd56d24c0c969b9479caaea0067ae00002f387fe69a797d4714374f7e5a1",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/4_constants.ts": "e117bac4fefd199bd7bb1ebfa47c8070fa84be0330186f35833766164003eb40",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/4_errors.ts": "7ba3c8d0049763b361b03689ad4d8ccc69be24ebc05712a1e5257d7085b0ae87",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/5_client.ts": "da2b7825a081db6cc9ca7d862ecddf02d30aef40b45e825018b3ea542879a46b",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/0_client_abstract.ts": "c19aa53946f274c7966e72ce1af86eeea3137d70ebbb4000be048a530d14e8df",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/0_html.ts": "0c03c2ec075d3e19602b495ca8abf95558acf3d07e5346c028915e9b6cc13f6f",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/0_message.ts": "e6ad059e6bb485d8b7024c7d0e36f0d7c0135f7399b5c52edf3a6220ec72e432",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/0_password.ts": "b795536f5525d3d62d70d503d549fbcb70d701e0ebd9ad701a2d643c7e8bc2bd",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/0_utilities.ts": "071546baaffc4eac71699d9078388dc37056fa0c181c79dab6fdd03e109bb8c2",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/1_composer.ts": "de16994f75697303e3c670d3e95a7e344c279874bbdacb9e16b94e57543bb3db",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/2_client_plain.ts": "f7604ce286eedf671276d7ac1d440b5f88bf29d5e5502aa94611ef4ea2aecbdf",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/3_params.ts": "cc2ed7d7ebf9a65cd5c8275046294aa002caf0bc80bc742d3e7f8a7b76299d82",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/4_client.ts": "953d9da21f1f6de1e32831c66059835615bb6c0e5a7f986822a060f737f521e6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/client/5_composer.ts": "7bbcc0c57cf2fba04bd81332315206379ca2977f6bf73311eaf8d97be38a1e78",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/connection/0_connection.ts": "0b925c971b21b93cf3907d48705698f0365698b2505112bb4f6521fe1e2f636e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/connection/1_connection_web_socket.ts": "4cf41ba7e55b6e5f6085cbcfdbf6e2b689e895e719efc47df9424eb3596537ec",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/mod.ts": "5c0f5a03aa21804b262290afed678401953418ac2921740558adfc108768a066",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/storage/0_storage.ts": "63b28fefe202be5650f077c15c6ac8f4a83a598f25ea366d4d07e92435415a24",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/storage/0_utilities.ts": "fe7255ff8c980c0a7cbd45335b20682b9eabecf2c87fc765a124a7b5f5348326",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/storage/1_storage_indexed_db.ts": "968912f30c155242d9b29b44fb836c9b64ac539a874a47ed2674db5f880e6f66",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/storage/1_storage_local_storage.ts": "5c946918ad40beac6b4465f15bd67e1c91fd348a42a5d9e5921e38ea7a1ad9ff",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/storage/1_storage_memory.ts": "b1dd10943c14237152e89111024bba3da5e388a9f7b84b8d419e9c33a20f8839",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/storage/1_storage_session_storage.ts": "9604f574b5a0cd1b3def1ac8e43fbc737344d1fd965bb836438a949955a7af1e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/0_tl_raw_reader.ts": "dafe32cb2604e8e3477071c861b2b21e6d6ba0936ab2a81da0c4a1bc9e24230a",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/0_tl_raw_writer.ts": "bd59e6ad14622f83a9a081888fdc36945583c89cce75b71d2d1d01fcf2891edb",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/1_tl_object.ts": "34d48b848cf300c96c76218e510db43715b607e2aa05fa2659f17ebb0a1ea5ba",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/2_types.ts": "df02338645a3021e124d7cf3a44b31fc085238a59e66efba82dd0e71fe1d2aa7",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/3_deserialize.ts": "008fdbaf259d6e0d0ddd21c2b2c3e4bb0628da8f4bbf781abf26a783de784a41",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/3_functions.ts": "3f6399ba43a7ff848e590b608ccb78aef6a572bfcb81cac84f4802a431e56987",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/3_tl_reader.ts": "21f5425bee86ecdebcc2e996ca3436bd48d02742762ed92dfe812b890fd9bd72",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/3_utilities.ts": "d17c4366d5f6c92553aa5da49102c640e2bcf1a03fa1d15329f7f505d53d6c90",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/4_rpc_result.ts": "620eefc531bba9b1e425dfc8c53f5a29e29140db5861e360a3749ac9c8ab5ee7",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/4_tl_writer.ts": "142ac723f3dc1c69cdf7145d4988efe02274efdabf58e0843035cfcfabdfa50e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/6_message.ts": "18ec3338f6dfedaebb8423815f8cdce70683c47cced5e892c064799f713243cf",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/tl/7_message_container.ts": "a3c447546f8021b1caf10f5220960a03acced7ec8a9d14e77a89fdb71996805c",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/transport/0_obfuscation.ts": "2163a040fe81d647bb7f4f90255c010d5b4e7026daf4f190f16f1c3eafb8141d",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/transport/0_transport.ts": "79e4f1c3a77e90205921a6ec3ba1767b39772b6db08010ac2ef36b2313dd326a",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/transport/1_transport_abridged.ts": "7a19ef3eb09f877ff17b465d4a83736402ceed0e6823e010cba71fd4550c7969",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/transport/1_transport_intermediate.ts": "5e0d4889756f37185ab8912d3571c97692736eca41376bde6c5a5ede23d09e2b",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/transport/2_transport_provider.ts": "91c6a94b76e31f6ce473a4dcf04fe7246f33aa8a07111973af5a285bf861678b",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/transport/3_transport_provider_web_socket.ts": "d1b46edb7680a54e01490a5a1ad026d572d8029f435ab6ee31b8ee64e19892fb",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0__file_id.ts": "7b08a67f777b085755c7612f2aafbaf3ecaf9a82571754f7b98ec8b101141665",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_authorization_state.ts": "9cfa1af0773a66e7482f83166cf7e1e7b7552e268e5f3ff702432ed98eb54b94",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_bot_command.ts": "b15b575ea92174bf87f6f2dc2781723e5a0ee76f89dfb169d5b224242e1e1df1",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_chat_action.ts": "48cea732e954a57e4685e2555400e3800416da18ee763d63c403c8a4454cad2e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_chat_administrator_rights.ts": "8f289a2ac2be846bf559045d19c26069f3c8eac9921230bd9989c8c4f58fac70",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_chat_id.ts": "c3f850cb75f61b25e8a76262857dfd3f1a94d9967df6b36852bb8d26a944f310",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_chat_photo.ts": "67aac5d94073d4ab1495660282e1a291884b030b0941570f6d9435abd7974ca3",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_connection_state.ts": "a312b03f8dbafec5a2cabdb8da97f471e863ab5e8f1a4dc4147b64ea6119dbf9",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_contact.ts": "5e80d39ad6b964544aacdb58fe86ecfa3e35b1c35719e776bfdf4531f3130320",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_dice.ts": "9c427880b921c171bca347e16e574832a1783d09d6aa9d85ca3dfce237c8c2a2",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_force_reply.ts": "14517e74554c2de4b4301f24437425997328b7ceb0f53b38f7cabd067586ade8",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_giveaway_parameters.ts": "e70b5eec48901cbdba068db1d334685a1cf55e506df4cc717dccb65d863ab1b2",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_input_contact_message_content.ts": "6827536d40a14f24c7268a9bdc490ef3271de7dbce504bf94f7003893fcc183f",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_input_location_message_content.ts": "117e849d92c6eed2085c4b006560c060d0f3819cd8e59323dec425b6e086cdcf",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_input_venue_message_content.ts": "7019967bb7d91cbe4c14e997d20eb4c26bc481618143d1c5f55b764aed6bc923",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_keyboard_button_poll_type.ts": "8dc78f60489057a1ae53192917743b214bc54c78bdae861299845b949fc91093",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_labeled_price.ts": "2f019cd172d72efa64fe4882799c7100657e4514ad2efadc1b6babca80ece779",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_location.ts": "2c64f2c481405a0869dc4d825fce9d681e32d85d807b4e28a6c7a3bf4eec1d98",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_login_url.ts": "d6d72cb9362aabdbabfc65b0e25dcf5f9ff3a3129fcf6ae4fe3716e14de06093",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_mask_position.ts": "3567290fd263c479e4f3504a88fb8f02b46ef9a44c68947b551dadf4b30eb036",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_message_entity.ts": "ca8387379dc8f73d7762cf1717dd5e1758be333dc258e1d9e99ba26e04660bd6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_message_identifier.ts": "f399c9aeaf133baf5ed8a72249d5f5dd60ae4d87b6521f1b04c9036d667d8bd1",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_network_statistics_entry.ts": "a92716d98adf66f20c77714d206fb5241e35b61e63be32e20f359257aac57006",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_parse_mode.ts": "18e069fc508ca9ea1e1d96903698a7fecfc7151ae5249b7367815f2ed451987e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_poll_option.ts": "6d369c5f1b5e5772a85ac7f2cd6f66027838f3a03b8fc6456fe29df280316ae8",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_reaction.ts": "81d8844e85123ce33807dafa6c70eab0bbb5ddff7726bbd8b34c71947c1ed8fd",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_reply_keyboard_remove.ts": "9217776935816b70b97401e5c9a6cbe6b8c7949fe784856a7291263585dc6c28",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_restriction_reason.ts": "96bcdd43e49a0791934a401a378d7f5f003dbf1282e062f00c542c9cf20b1dd9",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_thumbnail.ts": "becb22790b82d06ad7f27fc80c648175540cf6eaffbcd2ce85f186d16917f92e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_venue.ts": "da3409494794cd5f528a24da1d7e6d803291fa99c61e3a7c75d4da6f1b75c650",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_voice.ts": "8dd978fd0a1071f3c8588407542e6224be66bee02ab769e11bd0504644a1c113",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/0_web_app_info.ts": "14a61a849b09953c768ae0022192f583209ea50c85a523c0c325aa87cabc823c",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1__getters.ts": "1d266d227812150a8ac6b973ae335619299b9d8f5dfa91a64321540b06e3e974",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_animation.ts": "2327342dd145a0791e140304cfadcec43b8b4212d3804daa47e11bcbe9b52691",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_audio.ts": "895dd9580df33a185ba116e16367878ae72a4c293308aedc9b18f50b6e3b1094",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_bot_command_scope.ts": "c3931ac5e60c1cefe6f6619ada202ee5ea317725099d6896c2e0670bb13bec44",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_chat_p.ts": "ff2f45fcd109fbad438ffe687aa94d661db523c89fc86cbfa3fa452e421576e3",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_document.ts": "6bbef844d25d613c213f795eac9a6a7165c764b86d87c84c38fb6344564605ca",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_giveaway.ts": "dd124e99d51653f3547a54dfd6c6415fa2fa5c9ac4e51f8ec6929e591012ba7d",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_inline_query_result_button.ts": "2c840881be432618a2c0a8762cd900faf2c33efe5152781319d09b588d1a0421",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_input_invoice_message_content.ts": "7be5a30fb445c4d551760f9e23c428bebd84c9de533288b35acf60a837718890",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_input_text_message_content.ts": "6189ddf2999dcba38339d06a39d873bcb1cab4c958dbd7dfca2451b1da4a8904",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_keyboard_button.ts": "768fa1e5a5578984607825d8f8f662dbe5259ae9fbda650f16565927f8fb8d4f",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_message_reaction.ts": "41324a2195576844b53767ae0e753a334b3cc286548f8131dd7105d746f44411",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_network_statistics.ts": "182154f0a8ce88210ff3794693a013cf66f7e01696f3d54ff97261ec17e4b521",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_photo.ts": "8d409cd473018913bba99dbdab6cd9fb3846aa9243946766285f1739fecbefea",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_poll.ts": "efc473c8a158c5bd0cd43f42c5e7197bd2e4d39e92568bf4e7b1c21eff88edb6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_reaction_count.ts": "f6c3a20279870df11b582368f5b871b5d8ed09c729d7152de986abe5c23b6a5e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_reply_quote.ts": "6373451e479c00baf1cb044d031a6bfe3ae98076d7f7d33d4f3b10d51579461a",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_sticker.ts": "83c6d6cdd293114616e05f84502d7dcb9a0aa1b043b3319731e38a3024328973",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_user.ts": "b48fc10b4954df7bb92cc5794d7bbcafd0a7c42eda5b2d2a41dacf8a4b65de9e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_video.ts": "4321366d19669cda1c8c2a3d13a8c85c0f6afc209d0a6d106ee49b79eaf6148a",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/1_video_note.ts": "9e403d4482f1b0264c69a62bd1d9b0b5c51a3725ed2fa6f8df46c5aa556db974",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_chosen_inline_result.ts": "141ee9939e86a42b54231c1137e44cc986f5c11b6f9d3ec222de5c152ccd98b8",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_game.ts": "15447734941ce1497e7f8ac84afbc4689412a9ad7a4c1ba787f858b5fa4b5ce9",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_inline_keyboard_button.ts": "2c028b7cd7aaf35f1c84a1271f06a4ab74eaf2a44f22668403426bd590c1d038",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_inline_query.ts": "652f37fe95d6ec8caea06a326f8d50c678db09955cbd8bb79acb3863a22c371d",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_input_message_content.ts": "cbbdae8f18475111ba68bad53291b5045353eec272c30fbfac09b5c472276d66",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_message_interactions.ts": "67a39b1230b4be7c682c25971c0e1d2b9bcde6f3e208f0e49d79064506e91f0c",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_message_reaction_count.ts": "ce72a108eae31a9a8f672831391dd48d786ea11c5389258628664e5a2bf55808",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/2_reply_keyboard_markup.ts": "a0a7fcece9d9facf085469d8f208a15e217c4e29a640da9be81fc81d95fe39d2",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/3_inline_keyboard_markup.ts": "3a21531fa71292ed5a78fcdc3d27fbe17cbf8cf3c9b6b0646abd8e1a38d89992",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_article.ts": "52db1026a632a6f8bb66fb1af4b0033f216b797ae2b3f1c80e900c187f3d7bbe",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_audio.ts": "91921b8296fd7d8e538fbf1a48faa7da83dd310f75642bb09bcb870d1e9b2afa",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_audio.ts": "4de1ca50e8db6b8df3851d358a4e7895505118df129da088a211afba643305e0",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_document.ts": "cf49c63454a0ecc2ba9605a2aeb8c6e8f1b34d32604edd5f41e47d590c935a76",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_gif.ts": "2dd498893db442cfbf1323d4e599afd2c79a52945836524aae7495f3d14ae594",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_mpeg4_gif.ts": "533d57d468f45c64716eb12ef1090df04badddcb25779f800b9f2525574b77e6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_photo.ts": "e2d51833006de96ab057cf6a327beb5095545f98747f95b5f1174b73814bce2e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_sticker.ts": "19c3bd65f4b31ff96871a0f63abd96a98bc7a39398921a015b0a11f01758bfb4",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_video.ts": "8d5bb461e0a2323cf55e207568a33324a3e1671f0789f35050d9b15267364b16",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_cached_voice.ts": "82199c0ca85f9f726de89c04d5259f8324310cbd5777511322aeec98e095de16",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_contact.ts": "56374503047a76120f100b1febfd5eaa19cf902834ff472688c29945e4ef9c9e",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_document.ts": "53584783e472201d9cfd69fbc6441a5163dc31fbc615e566d4ebd85bde8952e6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_game.ts": "85a55fad5e526576aad9e9cc270783160775b2c561f900eecf61941147b8fbef",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_gif.ts": "05c56a2ee324476001d62a1b60a362d33eee9c73cb58843925fe36cf527c9dc0",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_location.ts": "1da05b4f5a95b0c865029759888ddc21aab65e1e07365d9200df55522ac2b956",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_mpeg4_gif.ts": "7d0403a3f0571517cfdb3c9a8e622b8f2c9d1ce000a0033636d604f3ec40f3bd",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_photo.ts": "bf5dbd8842cc21fd7e89f45fb13a700afb8837ee931b65f3001d834699c593bf",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_venue.ts": "adfe36650294f98cf6e0a4a0c3d760df13c697251867f81cc1bb6a4587d6b4ac",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_video.ts": "ae2d89ff2371873ffc49d69f98abd07d4efffbccef86c01ab3e598dc09b8f982",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_inline_query_result_voice.ts": "753e58ff44e41bc655601f344cb545a246ca07f73705a0c9c7a495a5a68b10b7",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_message.ts": "e8a1cf85ff24b1c2b9c656e95eeb0215d0669d014cd300de69c4f0f1a77ad70b",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/4_reply_markup.ts": "b4b81942ad1b3737ccd3435a636eadb6d65de8a2d03aabc232736ba02d309952",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/5_callback_query.ts": "f5945699cf3cb96928d6e4bd5c0c0bdb0e6e98b942a890ccb1e885c3c170dfd2",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/5_chat.ts": "7e54928d2072205d9a22455d8ad16beea3cfc4df7697e11ecc0ca8f0eb942af6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/5_inline_query_result.ts": "fed219ce1fa05a4b1aefb22593bb1ea8c33189356c79a08c29f33b41611db872",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/types/6_update.ts": "fcef54bca568009a51d260c72e6753ee69bd4c00382bdf1935119edcf95926f6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_bigint.ts": "56c87d763fc0717d447cd43425e9589e19b371ce34c6770273180cd2d66dbe0f",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_buffer.ts": "c1eac806498a42a7c7da4b1b19545fc316e452b62e774a515fa5deb71871c976",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_color.ts": "a55fda7f5615d65b93fd9cba25d92d18d89c67619e95667a493ef42ac0991cf0",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_control.ts": "3e6caa2c3a121474ce6635027d8eb004c66ba043c738c56d683d192ff7fb432f",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_crypto.ts": "688d2b79e5bed1db8dd2f60b765642799777226300563b2a19acbbe2806f83d1",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_hash.ts": "65731c5ac92be766aa37c85f03df0cc98911b8aeecf7c8c2df0a586eb2743c78",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_object.ts": "f9691ee9eb48f877d58edcf18d5c1c44cd14d41c1b07d147d645b7f62a48cfd6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_queue.ts": "1b4e7e52e26b69bbfaaf517a4d66fa41ecb9778d6915a354f6d8c4973e1497af",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_rle.ts": "ca2418bd933955f44e497f59f533971d5c52794812bef1f9f02faf663f18bacf",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/0_types.ts": "32115c140f34c50b8931622980975079de004b92fbc3c680979abd7f9d32daa6",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/1_auth.ts": "761a54d9fcca76c075c3a3586de6bbdc8e1a2cb316f79222803712140bf86b54",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/1_base64.ts": "64442f2e20f70ff6a5b2d14ea71172a842383dfe4ee44ef641e6055c191287dd",
"https://ghc.deno.dev/MTKruto/MTKruto@3cb416e/utilities/1_misc.ts": "01ba153001850272f7c6c82e8928e211c6612d3fa40ea4c1079cb3e4a0482903",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/0_deps.ts": "be41c20ff9789a59aee29c905849a12efa70a760632c202f3a41fc576b3d23ae",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/1_utilities.ts": "9dcf5c58e3d8cdd6072a7703eee3452708fd418efe22ab61ae2d5a8082cf133f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/2_connection.ts": "bea531073ec9d1ab2fa43ab1542725d64e5ae5f69e639f9903f059def97ec324",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/2_tl.ts": "7a10893bf2bc4784e46c46f9fb36e642ad3f5bf4cbc30e1966a370ab5dbccc96",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/3_errors.ts": "d49470f3b9fe19a57b3932926020c0234166948f4d943aba229afbe7688989b4",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/3_storage.ts": "c30d7da3e9a931bde550d01745ae8122fb3dce0727facbfe11d4c8dc4a1f862f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/3_transport.ts": "7f1241951066f8234dd7d5264176fa1c3438b2594557e5aa2e4d5a86cf6b9f4a",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/3_types.ts": "781deb6d986f5a5f8645921e8e936431b7feb5f83051e4290e7cfde8e9140e50",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/4_constants.ts": "3aa430eb60a91a18dba7916cf63562ae85481b3cc4c8595bcefaf1b1e2c2bc20",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/4_errors.ts": "7ba3c8d0049763b361b03689ad4d8ccc69be24ebc05712a1e5257d7085b0ae87",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/5_client.ts": "8c3c39c5db90cc0ee18537761a8873f7224a1fb51924a9433a5a5b7c234520b8",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_client_abstract.ts": "c19aa53946f274c7966e72ce1af86eeea3137d70ebbb4000be048a530d14e8df",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_filters.ts": "9dfe21583807c34e9b43fbb97997c9850f49faf178973d93c04a3a1f29e71d19",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_html.ts": "0c03c2ec075d3e19602b495ca8abf95558acf3d07e5346c028915e9b6cc13f6f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_message.ts": "ffbeade7e0d558d17e2acb0963565216a1936041ae66f0886d217e0ed5fee3e3",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_params.ts": "a59438b778963b137f76b0331723f02b2aa8fe2694e8d08f9d0b17de92de57af",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_password.ts": "b795536f5525d3d62d70d503d549fbcb70d701e0ebd9ad701a2d643c7e8bc2bd",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_types.ts": "19788cf6035181ddda581a6222334711a94c7bc13f8f365a09df5adf537186c9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/0_utilities.ts": "939a7a54a75956d9a23c9db81d50851e32c833aa2568b3a4478587d1ab519312",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/1_bot_info_manager.ts": "2b8249ba2aa8dc2bef4565ab1fbfcb1e614a66952eae282311517d4765dd229a",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/1_composer.ts": "20f71662367c0b0648d7cfb88bff2a804976df63bd923dffe1e13b28e980eced",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/1_file_manager.ts": "a334af98cbb28f85bb224052348cf4ed7d05dbf559785fcb346b7682fe689518",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/1_network_statistics_manager.ts": "73eeaf0c3cd0dc221e5a63e3b7a0e9942a768ec274436c1a29f493bc4abcdeae",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/1_reaction_manager.ts": "c568228d47bd570ce2ac595eb413d9f03551b36b765f9746cc3a39bc614013e9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/1_update_manager.ts": "e24e19ce1d1546d56e6e1f5bf895ca406b0f27883cd07181d0911f536d5ea777",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/2_client_plain.ts": "9839c6258fad1469d543d792fb6f2a3e19a2c2bbeda781978aaa2fa8095607a7",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/2_message_manager.ts": "01de90515dba99c1d87eb0dc744c49475cd5b4c5fe48a85057b7483b1da55de8",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/3_callback_query_manager.ts": "f9cb8b28c30120110e9cfe7bc1d8ebbbb74719605c19cec9559fb1c498f82866",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/3_chat_list_manager.ts": "e2d53e8caf5b7cfb70d8647b088d34370b20b673ce6df5f5397af916f519e0b1",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/3_inline_query_manager.ts": "cf905bb380df88e48412d58818f6882ffca9784d4dcb6e15bdd168f945416cc2",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/4_client.ts": "4e22ea30c09647707dc7ebe72b5ad38e111ce4ac95c1f4562b9f40b77735e9d3",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/5_composer.ts": "7bbcc0c57cf2fba04bd81332315206379ca2977f6bf73311eaf8d97be38a1e78",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/client/5_session_string.ts": "b354c041db1ae739fe772dd6dbac5545353cacf3f88f1a21506d44ca5f8bc97f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/connection/0_connection.ts": "0b925c971b21b93cf3907d48705698f0365698b2505112bb4f6521fe1e2f636e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/connection/1_connection_web_socket.ts": "6d93c3cdbe624824bfdd659501de77f43c59f1bfa9e2682c100a8916a172263a",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/mod.ts": "5c0f5a03aa21804b262290afed678401953418ac2921740558adfc108768a066",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/storage/0_storage.ts": "2f4b44bd38590fd0adacc87a763d43af5b08ddc10b1682e23afd4f5b97c2311e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/storage/0_utilities.ts": "fe7255ff8c980c0a7cbd45335b20682b9eabecf2c87fc765a124a7b5f5348326",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/storage/1_storage_indexed_db.ts": "968912f30c155242d9b29b44fb836c9b64ac539a874a47ed2674db5f880e6f66",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/storage/1_storage_local_storage.ts": "71c60f7e2d7b55d9aa56f71eb110685a5447619ed630b4ad2d015163e688b2b7",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/storage/1_storage_memory.ts": "b1dd10943c14237152e89111024bba3da5e388a9f7b84b8d419e9c33a20f8839",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/storage/1_storage_session_storage.ts": "a9bb60f3efae78d75790d230833918a6d4c155d96acf29227dacab21fbe791d1",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/0_tl_raw_reader.ts": "59cf11d85115b0e39a6cafa520902dc2ad7b58636f15ff3bb22debe3089e8256",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/0_tl_raw_writer.ts": "d0d97a6a4d729122abf579809eac4f3b51116e562fe4f3abf855c0d4edb3eb4f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/1_tl_object.ts": "10e2b8437fabd4a1aab6c8b7f8056a3ac2eef0e9065a2fc1b7ff41baf8cb3787",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/2_types.ts": "096dc943c02d5317aea7d6702d7c5f0b1482990464a8953f8a25fa11dfaba8c3",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/3_deserialize.ts": "008fdbaf259d6e0d0ddd21c2b2c3e4bb0628da8f4bbf781abf26a783de784a41",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/3_functions.ts": "f397be8978b193bc9657a45f57cfcea3e54aa62575411cdc4b2ad0899bbedf69",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/3_tl_reader.ts": "21f5425bee86ecdebcc2e996ca3436bd48d02742762ed92dfe812b890fd9bd72",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/3_utilities.ts": "d17c4366d5f6c92553aa5da49102c640e2bcf1a03fa1d15329f7f505d53d6c90",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/4_rpc_result.ts": "620eefc531bba9b1e425dfc8c53f5a29e29140db5861e360a3749ac9c8ab5ee7",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/4_tl_writer.ts": "142ac723f3dc1c69cdf7145d4988efe02274efdabf58e0843035cfcfabdfa50e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/6_message.ts": "18ec3338f6dfedaebb8423815f8cdce70683c47cced5e892c064799f713243cf",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/tl/7_message_container.ts": "a3c447546f8021b1caf10f5220960a03acced7ec8a9d14e77a89fdb71996805c",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/transport/0_obfuscation.ts": "72724e296ea1987c24ed5837bc357287f71e448b31ecd0adcf8bd3c1ccc60296",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/transport/0_transport.ts": "79e4f1c3a77e90205921a6ec3ba1767b39772b6db08010ac2ef36b2313dd326a",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/transport/1_transport_abridged.ts": "510b2fecdf74fcbcd574f800827cef9cdc3ffbb6a44bf8c585de56441e6ee6b9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/transport/1_transport_intermediate.ts": "ac549a4cc71d2321f6f5042bc6db18b448dac488bd3c1623d766e8a01baa3da6",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/transport/2_transport_provider.ts": "91c6a94b76e31f6ce473a4dcf04fe7246f33aa8a07111973af5a285bf861678b",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/transport/3_transport_provider_web_socket.ts": "d1b46edb7680a54e01490a5a1ad026d572d8029f435ab6ee31b8ee64e19892fb",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0__file_id.ts": "c906dce41362ac516cfe2cdededd2ee7695e972c4a3b4211e5f72e750f288ad1",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_authorization_state.ts": "9cfa1af0773a66e7482f83166cf7e1e7b7552e268e5f3ff702432ed98eb54b94",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_bot_command.ts": "39eb5f9dbcce5c91abe454f416fdb0909e1b9944425d0a3b95f523ef82b5295e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_chat_action.ts": "48cea732e954a57e4685e2555400e3800416da18ee763d63c403c8a4454cad2e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_chat_administrator_rights.ts": "8f289a2ac2be846bf559045d19c26069f3c8eac9921230bd9989c8c4f58fac70",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_chat_member_rights.ts": "eee14673c79f45e5f99ae6a797764c1d4437c7466ce2bdee925e16a2831f7587",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_chat_photo.ts": "d9c03f4550bd37f46440b9684b85a085764efe5eae43d7350c881295c33949af",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_connection_state.ts": "a312b03f8dbafec5a2cabdb8da97f471e863ab5e8f1a4dc4147b64ea6119dbf9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_contact.ts": "5e80d39ad6b964544aacdb58fe86ecfa3e35b1c35719e776bfdf4531f3130320",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_dice.ts": "9c427880b921c171bca347e16e574832a1783d09d6aa9d85ca3dfce237c8c2a2",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_file_source.ts": "e76b94d6f0d9eed267e15068a9bea16e62b4b9345dcb45ce66d73151fac469a8",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_giveaway_parameters.ts": "887d3d642fe7c6f1e947bd5740bf6a2f6cb9cf66610b48f1cca941205f379b18",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_id.ts": "de66f25e5252c1be1ae36435f2ae0bce8399e9a1afb21e247e7b4876a4243ef5",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_keyboard_button_poll_type.ts": "8dc78f60489057a1ae53192917743b214bc54c78bdae861299845b949fc91093",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_location.ts": "2c64f2c481405a0869dc4d825fce9d681e32d85d807b4e28a6c7a3bf4eec1d98",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_login_url.ts": "11fa49f686d806d49389c6629e6d2726c53c28b27536add210f1e5ba91c1848e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_mask_position.ts": "7cb802ec0c039e81b99f561e2c50be0619458dcf3b2f93f94582c5124106de2b",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_message_entity.ts": "aa824ef2308bfa38cf96411c462ac482a690e8645d4a6c5d2a70b0370eeadf33",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_message_reference.ts": "4f948ad80ffbf4845c651977e80b4b31fd7abb7caa7f3e21291d110b4fc96365",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_mini_app_info.ts": "e9f0848c39a0c6cae0ef7c1d03143e1ead819b3a4e106e38ae7a003ba828e0b0",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_network_statistics_entry.ts": "009e7603e6b777a17f568e7903e9f334348c38c48fcd5c5fb1bc5337711a2aaa",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_parse_mode.ts": "18e069fc508ca9ea1e1d96903698a7fecfc7151ae5249b7367815f2ed451987e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_poll_option.ts": "b822e7bae27cad40ff524a1453b48010474cac2783e5dc4437a6661f615aadaa",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_price_tag.ts": "a54c276a1de101326c398a7120927c355aeacacda19b4fa13e61289498066e43",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_reaction.ts": "f7cc0198a8d7bcadf3db478cdcb5374dbb273b166c38271cf85160e0aaf00177",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_restriction_reason.ts": "8917c228cf46179ee2e323d0f4dcf508c89b14b150e9e14959e8c192857f191b",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_thumbnail.ts": "becb22790b82d06ad7f27fc80c648175540cf6eaffbcd2ce85f186d16917f92e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_venue.ts": "da3409494794cd5f528a24da1d7e6d803291fa99c61e3a7c75d4da6f1b75c650",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/0_voice.ts": "8dd978fd0a1071f3c8588407542e6224be66bee02ab769e11bd0504644a1c113",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1__getters.ts": "4e47105365c5e1a77909958946cda56b3880e686b3756469a0015bf5bb45457c",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_animation.ts": "ed5876e699184f234d758f08d7aee5a8a5348dc1f56acf9ccc535afb21278fd6",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_audio.ts": "895dd9580df33a185ba116e16367878ae72a4c293308aedc9b18f50b6e3b1094",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_bot_command_scope.ts": "a285f17c0e7bab6db01568d07bb6380d9e7de99a984506b4d68db81dc4d91ad0",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_chat_p.ts": "48ea1181d4f41ad41428ef2e57ec243487c8a3670f713ee2ab4d4f0e864ef25b",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_document.ts": "a6ca17da19843d49f65d67a12a648b706e048ba5a73061cdaa44e8364ead6c01",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_giveaway.ts": "e8db06784013bf43c729aedbd5c6b5acc1f5938b15d88003a151711c5790546d",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_inline_query_result_button.ts": "374b65f08bc03afd12a80296075faeb75e8b3ce5864d7ea09f834bdb4e2a0346",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_input_message_content.ts": "a6bf0027ade55ca199232e17b461434d8c719b26f1dbd2cfdbc0917a3043e14f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_keyboard_button.ts": "4a087841c3aca70493595f75e51f601a5f9ea123d781fab936195d81aee5c9b2",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_message_reaction.ts": "41324a2195576844b53767ae0e753a334b3cc286548f8131dd7105d746f44411",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_network_statistics.ts": "b32802de8b9aaf46d113c7ac55ee2bf0843df6aa8831f481c69f3d080ee7d52b",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_photo.ts": "8ccc4902cdb8e877294f480c82ad441a8638e1e04ad1c8ba56555e8c1dcc9c1e",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_poll.ts": "b9e639a2fada1f17604d5b1ce9b952b4287aed00f1987a842161c976e04b12f9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_reaction_count.ts": "3e775721d581ec278d11c4313c1993ca0224b2a11a3967e930c3af232e6a566a",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_reply_quote.ts": "cff1a48dbd77dd4120a3cdb17cb3de9807dc9f9478fc21f24f91e74b2394a904",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_sticker.ts": "423656c7cf87a75a39f90402dd837f5e1c34223871fe43929330e908af63a1f9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_user.ts": "bfb36ece17599664da400339ed6b7afec48d205b71a1ab38eafdeff076ea8fea",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_video.ts": "18db9630feaeca784aec67fba1e33ddf091c69367b643219184f489a3150d711",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/1_video_note.ts": "4374bc6a512d072907c687dc97e2f00d21ef28d65d72602833187f6b39abbf10",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_chat_member.ts": "56c336eb7ad59b9016f8366e44b26b38503de2bc31422c993130e5c0003e6c45",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_chosen_inline_result.ts": "b78ad77cabb98e2c74d41bc8ab8e65adafa51a5230c0192a5e1cea5adebbd348",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_game.ts": "f70c500f79f51c98ede99d8aa04f2d99d688acaafe3a887460d6b37f28f39d02",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_inline_keyboard_button.ts": "fdb021ad77ccc9f14e1c6b50720cc53f52595a9a3177cfa72a4e4fa88286b139",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_inline_query.ts": "cac7b803789de59844ab05968b90c66ccaf434c8d79b206d802ff1fa361711ee",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_invite_link.ts": "2136646ef2ac042e90d7349c8f5aede5b2b97ba3ecf744f87044f389d165bcc9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_message_interactions.ts": "d22872e8ebb348a08f8f259cc4837d891dfd3a6346d4b99a901a91745bcf0723",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_message_reaction_count.ts": "bbfcb2d2a64de6af78913f57251b4c35789000e083a4a2128af38ac316db3ecd",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/2_message_reactions.ts": "758ebe5d111669d5cd9101fe510443fc2773837dfd4277378c2436b2b63a8a62",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/3_chat_member_updated.ts": "d8889eb10d6c79e7ba443c4e25537479ed8ec038a24dcc14dcf5537628104ae1",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/3_reply_markup.ts": "20467179ab1788467cdef1353352b85408a12bf9a9fe5fbecc5824cb0e5e2b9a",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/4_inline_query_result.ts": "632204feec44fa476dfb5a82f7e6e5b6a4a05244b59d85aebc7e22a7a73c4c3f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/4_message.ts": "4427df2e3fdaa203f69407bb5ca03918d65db2473ba348533b2a462d588efdaf",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/5_callback_query.ts": "969a197b1775be67b0ddf91b09e2bdad0fd75d8db7a7e607cdbbb5b9c9d1b7ec",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/5_chat.ts": "2301848867efbcd0cb8eaa5a64367196415077ef12d5795f438febf4e3ad9121",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/types/6_update.ts": "f3e2a1efae4af37ccc9a6d5028119208078e698d5fd68af84e5378185fedc054",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_bigint.ts": "56c87d763fc0717d447cd43425e9589e19b371ce34c6770273180cd2d66dbe0f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_buffer.ts": "f50fc025c788d8f50b0ba010c6bbf33efca021feaf56cff1dcf54dbd620ba035",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_color.ts": "a55fda7f5615d65b93fd9cba25d92d18d89c67619e95667a493ef42ac0991cf0",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_control.ts": "3e6caa2c3a121474ce6635027d8eb004c66ba043c738c56d683d192ff7fb432f",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_crypto.ts": "688d2b79e5bed1db8dd2f60b765642799777226300563b2a19acbbe2806f83d1",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_hash.ts": "65731c5ac92be766aa37c85f03df0cc98911b8aeecf7c8c2df0a586eb2743c78",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_object.ts": "ce1715f0275d618f057c09f658025d92b776ca9e8777b1d8e2d4f924337ee2e9",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_queue.ts": "1b4e7e52e26b69bbfaaf517a4d66fa41ecb9778d6915a354f6d8c4973e1497af",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_rle.ts": "ca2418bd933955f44e497f59f533971d5c52794812bef1f9f02faf663f18bacf",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/0_types.ts": "32115c140f34c50b8931622980975079de004b92fbc3c680979abd7f9d32daa6",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/1_auth.ts": "761a54d9fcca76c075c3a3586de6bbdc8e1a2cb316f79222803712140bf86b54",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/1_base64.ts": "64442f2e20f70ff6a5b2d14ea71172a842383dfe4ee44ef641e6055c191287dd",
"https://ghc.deno.dev/MTKruto/MTKruto@4947141/utilities/1_misc.ts": "c65aefc5df29ef82fb909f74845d7d8e2c573facaf050d545d5640a3cda845c6",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/0_deps.ts": "256292a7267e714728d0533fe040373d3faa1fe12e6ea24eb47d7a07d85abaa2",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/1_utilities.ts": "9dcf5c58e3d8cdd6072a7703eee3452708fd418efe22ab61ae2d5a8082cf133f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/2_connection.ts": "bea531073ec9d1ab2fa43ab1542725d64e5ae5f69e639f9903f059def97ec324",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/2_tl.ts": "7a10893bf2bc4784e46c46f9fb36e642ad3f5bf4cbc30e1966a370ab5dbccc96",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/3_errors.ts": "0334d489d8787f2f6b19c1d8a90bfd737b1e22990a5cb8de340e1920cc4a38a9",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/3_storage.ts": "c30d7da3e9a931bde550d01745ae8122fb3dce0727facbfe11d4c8dc4a1f862f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/3_transport.ts": "7f1241951066f8234dd7d5264176fa1c3438b2594557e5aa2e4d5a86cf6b9f4a",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/3_types.ts": "23c3aef24fb6156ae1f5a1d76e2426634ac9185aa9ff03674d40be7ffd3d5802",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/4_constants.ts": "35329cedf493ede1dd7849b4c6e077ccc8953f4f292c79b4f35e5ae8a249e1fa",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/4_errors.ts": "df964ebe7eb6956b0a1680c695e7243333fcac15ddc791404918c8e8e5abcf4b",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/5_client.ts": "a761d864080482967f2cd061fe5573d1801b3d97dd3703efc498e066c57df040",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/0_html.ts": "0c03c2ec075d3e19602b495ca8abf95558acf3d07e5346c028915e9b6cc13f6f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/0_message.ts": "e6ad059e6bb485d8b7024c7d0e36f0d7c0135f7399b5c52edf3a6220ec72e432",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/0_password.ts": "b795536f5525d3d62d70d503d549fbcb70d701e0ebd9ad701a2d643c7e8bc2bd",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/0_utilities.ts": "bd079f6a80dd4a4dab5ae53fb19e4167a08ea52a5fa9df583c83e6e31892b339",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/1_client_abstract.ts": "c19aa53946f274c7966e72ce1af86eeea3137d70ebbb4000be048a530d14e8df",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/2_client_plain.ts": "5de83232605de67148276ada6df8a71bf4144d020bfe9ae08e0c5cfa3688fc61",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/3_types.ts": "9b9a26e4e147b8c21cf142f000f6d7d078b1731e0c55e46cf7bf81a445d5fc64",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/4_composer.ts": "838c804e775a89b5af9f6ed0a5864a2b623175816843bf768c62c31152dfe45b",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/5_client.ts": "01dc1745a8de89f7758ee090b5cca994292f6826a4423de4ce9290346ef70ea1",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/client/6_composer.ts": "744888c92d551137484e7c80647d01d00124422cf2057307864c0be8288d52ba",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/connection/0_connection.ts": "0b925c971b21b93cf3907d48705698f0365698b2505112bb4f6521fe1e2f636e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/connection/1_connection_web_socket.ts": "4cf41ba7e55b6e5f6085cbcfdbf6e2b689e895e719efc47df9424eb3596537ec",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/mod.ts": "5c0f5a03aa21804b262290afed678401953418ac2921740558adfc108768a066",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/storage/0_storage.ts": "921b4fd589a660f6013713f37f87ec22ea425d6a2ededed25678b2816c6adb8d",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/storage/0_utilities.ts": "fe7255ff8c980c0a7cbd45335b20682b9eabecf2c87fc765a124a7b5f5348326",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/storage/1_storage_indexed_db.ts": "b9480f8d1758b41f3b8fa8c04e59c6049b2218ca8f386bd7d000266d56c1725f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/storage/1_storage_local_storage.ts": "b774686cac74fd1445945c5b6556496912b7d62ebe0d03a133ab27dff90db276",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/storage/1_storage_memory.ts": "60838a428fb00dd263dc81fe1fceb3d84036b4f5ac0d07de984d76167bb0366f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/storage/1_storage_session_storage.ts": "79547186f8bb31571922c3fa4a9050e3ef983a863f2a9f01338f04a6886af1d3",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/0_tl_raw_reader.ts": "dafe32cb2604e8e3477071c861b2b21e6d6ba0936ab2a81da0c4a1bc9e24230a",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/0_tl_raw_writer.ts": "bd59e6ad14622f83a9a081888fdc36945583c89cce75b71d2d1d01fcf2891edb",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/1_tl_object.ts": "34d48b848cf300c96c76218e510db43715b607e2aa05fa2659f17ebb0a1ea5ba",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/2_types.ts": "df02338645a3021e124d7cf3a44b31fc085238a59e66efba82dd0e71fe1d2aa7",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/3_deserialize.ts": "008fdbaf259d6e0d0ddd21c2b2c3e4bb0628da8f4bbf781abf26a783de784a41",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/3_functions.ts": "3f6399ba43a7ff848e590b608ccb78aef6a572bfcb81cac84f4802a431e56987",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/3_tl_reader.ts": "21f5425bee86ecdebcc2e996ca3436bd48d02742762ed92dfe812b890fd9bd72",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/3_utilities.ts": "f99936ff56ffac8df005bd855d68d6e0a089060c2240e53344720fc787714e4a",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/4_rpc_result.ts": "620eefc531bba9b1e425dfc8c53f5a29e29140db5861e360a3749ac9c8ab5ee7",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/4_tl_writer.ts": "142ac723f3dc1c69cdf7145d4988efe02274efdabf58e0843035cfcfabdfa50e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/6_message.ts": "fc0dde8ec1edb27348764b2714633dc845f6dec5ef4eaf74555ac2b8f56fb96b",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/tl/7_message_container.ts": "a3c447546f8021b1caf10f5220960a03acced7ec8a9d14e77a89fdb71996805c",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/transport/0_obfuscation.ts": "2163a040fe81d647bb7f4f90255c010d5b4e7026daf4f190f16f1c3eafb8141d",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/transport/0_transport.ts": "79e4f1c3a77e90205921a6ec3ba1767b39772b6db08010ac2ef36b2313dd326a",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/transport/1_transport_abridged.ts": "7a19ef3eb09f877ff17b465d4a83736402ceed0e6823e010cba71fd4550c7969",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/transport/1_transport_intermediate.ts": "5e0d4889756f37185ab8912d3571c97692736eca41376bde6c5a5ede23d09e2b",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/transport/2_transport_provider.ts": "91c6a94b76e31f6ce473a4dcf04fe7246f33aa8a07111973af5a285bf861678b",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/transport/3_transport_provider_web_socket.ts": "d1b46edb7680a54e01490a5a1ad026d572d8029f435ab6ee31b8ee64e19892fb",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0__file_id.ts": "7b08a67f777b085755c7612f2aafbaf3ecaf9a82571754f7b98ec8b101141665",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_audio.ts": "895dd9580df33a185ba116e16367878ae72a4c293308aedc9b18f50b6e3b1094",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_bot_command.ts": "b15b575ea92174bf87f6f2dc2781723e5a0ee76f89dfb169d5b224242e1e1df1",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_chat_action.ts": "48cea732e954a57e4685e2555400e3800416da18ee763d63c403c8a4454cad2e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_chat_administrator_rights.ts": "8f289a2ac2be846bf559045d19c26069f3c8eac9921230bd9989c8c4f58fac70",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_chat_id.ts": "c3f850cb75f61b25e8a76262857dfd3f1a94d9967df6b36852bb8d26a944f310",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_chat_photo.ts": "67aac5d94073d4ab1495660282e1a291884b030b0941570f6d9435abd7974ca3",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_contact.ts": "5e80d39ad6b964544aacdb58fe86ecfa3e35b1c35719e776bfdf4531f3130320",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_dice.ts": "9c427880b921c171bca347e16e574832a1783d09d6aa9d85ca3dfce237c8c2a2",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_force_reply.ts": "14517e74554c2de4b4301f24437425997328b7ceb0f53b38f7cabd067586ade8",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_giveaway_parameters.ts": "e70b5eec48901cbdba068db1d334685a1cf55e506df4cc717dccb65d863ab1b2",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_input_contact_message_content.ts": "6827536d40a14f24c7268a9bdc490ef3271de7dbce504bf94f7003893fcc183f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_input_location_message_content.ts": "117e849d92c6eed2085c4b006560c060d0f3819cd8e59323dec425b6e086cdcf",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_input_venue_message_content.ts": "7019967bb7d91cbe4c14e997d20eb4c26bc481618143d1c5f55b764aed6bc923",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_keyboard_button_poll_type.ts": "8dc78f60489057a1ae53192917743b214bc54c78bdae861299845b949fc91093",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_labeled_price.ts": "2f019cd172d72efa64fe4882799c7100657e4514ad2efadc1b6babca80ece779",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_location.ts": "2c64f2c481405a0869dc4d825fce9d681e32d85d807b4e28a6c7a3bf4eec1d98",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_login_url.ts": "0650e65c2b46f3314bd7605d1b90824c90d28d55ae283ba04cadc59d28665606",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_mask_position.ts": "1c6339fbd137827ed6c283300ef08a230b1e0ef5ca2ebf1373c42ec2a9cda7e5",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_message_entity.ts": "5e2da05021a6795134501a7036b4b34185478f0c27a6405e674753774f8581b0",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_parse_mode.ts": "18e069fc508ca9ea1e1d96903698a7fecfc7151ae5249b7367815f2ed451987e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_poll_option.ts": "6d369c5f1b5e5772a85ac7f2cd6f66027838f3a03b8fc6456fe29df280316ae8",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_reaction.ts": "f8d19d1c788d970c90d9fdd37908d66ffc741491c95c0cdd01b4d88c5f3a8c6f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_reply_keyboard_remove.ts": "9217776935816b70b97401e5c9a6cbe6b8c7949fe784856a7291263585dc6c28",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_restriction_reason.ts": "96bcdd43e49a0791934a401a378d7f5f003dbf1282e062f00c542c9cf20b1dd9",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_thumbnail.ts": "becb22790b82d06ad7f27fc80c648175540cf6eaffbcd2ce85f186d16917f92e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_venue.ts": "da3409494794cd5f528a24da1d7e6d803291fa99c61e3a7c75d4da6f1b75c650",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_voice.ts": "8dd978fd0a1071f3c8588407542e6224be66bee02ab769e11bd0504644a1c113",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/0_web_app_info.ts": "14a61a849b09953c768ae0022192f583209ea50c85a523c0c325aa87cabc823c",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1__getters.ts": "0e1a6320cc618f495624129fb166aa251f18a27866820bb2f0815005408e5c9e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_animation.ts": "2327342dd145a0791e140304cfadcec43b8b4212d3804daa47e11bcbe9b52691",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_bot_command_scope.ts": "c3931ac5e60c1cefe6f6619ada202ee5ea317725099d6896c2e0670bb13bec44",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_chat_p.ts": "a234582937bbc798dfc3ac74fa6acc8fa79ef709227ad02f08732befb85d4b14",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_document.ts": "6bbef844d25d613c213f795eac9a6a7165c764b86d87c84c38fb6344564605ca",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_giveaway.ts": "dd124e99d51653f3547a54dfd6c6415fa2fa5c9ac4e51f8ec6929e591012ba7d",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_inline_query_result_button.ts": "2c840881be432618a2c0a8762cd900faf2c33efe5152781319d09b588d1a0421",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_input_invoice_message_content.ts": "7be5a30fb445c4d551760f9e23c428bebd84c9de533288b35acf60a837718890",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_input_text_message_content.ts": "6189ddf2999dcba38339d06a39d873bcb1cab4c958dbd7dfca2451b1da4a8904",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_keyboard_button.ts": "0e5d3ddc28934f026b07c0f3a34aeec3ee823de194f4747daceacb8431bb0ce9",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_message_reaction.ts": "41324a2195576844b53767ae0e753a334b3cc286548f8131dd7105d746f44411",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_photo.ts": "8d409cd473018913bba99dbdab6cd9fb3846aa9243946766285f1739fecbefea",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_poll.ts": "0831aeefe03139445c83e5c648c217695065f4e561ba13b148200bee2a5a43a3",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_reply_quote.ts": "6373451e479c00baf1cb044d031a6bfe3ae98076d7f7d33d4f3b10d51579461a",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_sticker.ts": "83c6d6cdd293114616e05f84502d7dcb9a0aa1b043b3319731e38a3024328973",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_user.ts": "b48fc10b4954df7bb92cc5794d7bbcafd0a7c42eda5b2d2a41dacf8a4b65de9e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_video.ts": "4321366d19669cda1c8c2a3d13a8c85c0f6afc209d0a6d106ee49b79eaf6148a",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/1_video_note.ts": "9e403d4482f1b0264c69a62bd1d9b0b5c51a3725ed2fa6f8df46c5aa556db974",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/2_chosen_inline_result.ts": "141ee9939e86a42b54231c1137e44cc986f5c11b6f9d3ec222de5c152ccd98b8",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/2_game.ts": "45f36b9ae2a5c1a1ff8d3dad87a4f645abd79c94a64e7bc11337fd3500e81cac",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/2_inline_keyboard_button.ts": "12f333caa4b034ee9eeb5bd889ee603deff7823f7859625dc9b01613722cdb26",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/2_inline_query.ts": "d6a29702a2b23d10cb5eaa01c8c6f76af8891219e66582f275163a57555d38ba",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/2_input_message_content.ts": "cbbdae8f18475111ba68bad53291b5045353eec272c30fbfac09b5c472276d66",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/2_reply_keyboard_markup.ts": "6b0e540408807126cab3e07605517de69d2bf6fae0791bee2c7ae9885e6d0fdf",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/3_inline_keyboard_markup.ts": "1a9ef8e5493205b0f685969831af023cbd6ad3a1f2db050b9a454b822ea62cc5",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/3_message.ts": "460b397e34a93142325f92f773955b55474475c31218c585dcbbfb3fdc3c2977",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_callback_query.ts": "04f7688078dc3073c1aa1457a2fe789cbe41df1742ef497090800edf38add53c",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_chat.ts": "1bf0530dade27cc3ef11fc8c952d4c6a58ef3c00eb02d9b74ad1b9946500f166",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_article.ts": "52db1026a632a6f8bb66fb1af4b0033f216b797ae2b3f1c80e900c187f3d7bbe",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_audio.ts": "91921b8296fd7d8e538fbf1a48faa7da83dd310f75642bb09bcb870d1e9b2afa",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_audio.ts": "4de1ca50e8db6b8df3851d358a4e7895505118df129da088a211afba643305e0",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_document.ts": "cf49c63454a0ecc2ba9605a2aeb8c6e8f1b34d32604edd5f41e47d590c935a76",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_gif.ts": "2dd498893db442cfbf1323d4e599afd2c79a52945836524aae7495f3d14ae594",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_mpeg4_gif.ts": "533d57d468f45c64716eb12ef1090df04badddcb25779f800b9f2525574b77e6",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_photo.ts": "f959be1b645811880c616439d8a64e74520e13db7ee0186f7e8dabe2a18569d4",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_sticker.ts": "19c3bd65f4b31ff96871a0f63abd96a98bc7a39398921a015b0a11f01758bfb4",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_video.ts": "8d5bb461e0a2323cf55e207568a33324a3e1671f0789f35050d9b15267364b16",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_cached_voice.ts": "82199c0ca85f9f726de89c04d5259f8324310cbd5777511322aeec98e095de16",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_contact.ts": "56374503047a76120f100b1febfd5eaa19cf902834ff472688c29945e4ef9c9e",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_document.ts": "53584783e472201d9cfd69fbc6441a5163dc31fbc615e566d4ebd85bde8952e6",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_game.ts": "85a55fad5e526576aad9e9cc270783160775b2c561f900eecf61941147b8fbef",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_gif.ts": "05c56a2ee324476001d62a1b60a362d33eee9c73cb58843925fe36cf527c9dc0",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_location.ts": "1da05b4f5a95b0c865029759888ddc21aab65e1e07365d9200df55522ac2b956",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_mpeg4_gif.ts": "7d0403a3f0571517cfdb3c9a8e622b8f2c9d1ce000a0033636d604f3ec40f3bd",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_photo.ts": "bf5dbd8842cc21fd7e89f45fb13a700afb8837ee931b65f3001d834699c593bf",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_venue.ts": "adfe36650294f98cf6e0a4a0c3d760df13c697251867f81cc1bb6a4587d6b4ac",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_video.ts": "ae2d89ff2371873ffc49d69f98abd07d4efffbccef86c01ab3e598dc09b8f982",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_inline_query_result_voice.ts": "753e58ff44e41bc655601f344cb545a246ca07f73705a0c9c7a495a5a68b10b7",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/4_reply_markup.ts": "b4b81942ad1b3737ccd3435a636eadb6d65de8a2d03aabc232736ba02d309952",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/types/5_inline_query_result.ts": "fed219ce1fa05a4b1aefb22593bb1ea8c33189356c79a08c29f33b41611db872",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_bigint.ts": "56c87d763fc0717d447cd43425e9589e19b371ce34c6770273180cd2d66dbe0f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_buffer.ts": "c1eac806498a42a7c7da4b1b19545fc316e452b62e774a515fa5deb71871c976",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_color.ts": "a55fda7f5615d65b93fd9cba25d92d18d89c67619e95667a493ef42ac0991cf0",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_control.ts": "3e6caa2c3a121474ce6635027d8eb004c66ba043c738c56d683d192ff7fb432f",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_crypto.ts": "688d2b79e5bed1db8dd2f60b765642799777226300563b2a19acbbe2806f83d1",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_hash.ts": "65731c5ac92be766aa37c85f03df0cc98911b8aeecf7c8c2df0a586eb2743c78",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_object.ts": "f9691ee9eb48f877d58edcf18d5c1c44cd14d41c1b07d147d645b7f62a48cfd6",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_queue.ts": "1b4e7e52e26b69bbfaaf517a4d66fa41ecb9778d6915a354f6d8c4973e1497af",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_rle.ts": "ca2418bd933955f44e497f59f533971d5c52794812bef1f9f02faf663f18bacf",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/0_types.ts": "32115c140f34c50b8931622980975079de004b92fbc3c680979abd7f9d32daa6",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/1_auth.ts": "761a54d9fcca76c075c3a3586de6bbdc8e1a2cb316f79222803712140bf86b54",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/1_base64.ts": "64442f2e20f70ff6a5b2d14ea71172a842383dfe4ee44ef641e6055c191287dd",
"https://ghc.deno.dev/MTKruto/MTKruto@5e74609/utilities/1_misc.ts": "01ba153001850272f7c6c82e8928e211c6612d3fa40ea4c1079cb3e4a0482903",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/0_deps.ts": "be41c20ff9789a59aee29c905849a12efa70a760632c202f3a41fc576b3d23ae",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/1_utilities.ts": "9dcf5c58e3d8cdd6072a7703eee3452708fd418efe22ab61ae2d5a8082cf133f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/2_connection.ts": "bea531073ec9d1ab2fa43ab1542725d64e5ae5f69e639f9903f059def97ec324",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/2_tl.ts": "7a10893bf2bc4784e46c46f9fb36e642ad3f5bf4cbc30e1966a370ab5dbccc96",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/3_errors.ts": "d49470f3b9fe19a57b3932926020c0234166948f4d943aba229afbe7688989b4",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/3_storage.ts": "c30d7da3e9a931bde550d01745ae8122fb3dce0727facbfe11d4c8dc4a1f862f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/3_transport.ts": "7f1241951066f8234dd7d5264176fa1c3438b2594557e5aa2e4d5a86cf6b9f4a",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/3_types.ts": "781deb6d986f5a5f8645921e8e936431b7feb5f83051e4290e7cfde8e9140e50",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/4_constants.ts": "3aa430eb60a91a18dba7916cf63562ae85481b3cc4c8595bcefaf1b1e2c2bc20",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/4_errors.ts": "7ba3c8d0049763b361b03689ad4d8ccc69be24ebc05712a1e5257d7085b0ae87",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/5_client.ts": "8c3c39c5db90cc0ee18537761a8873f7224a1fb51924a9433a5a5b7c234520b8",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_client_abstract.ts": "c19aa53946f274c7966e72ce1af86eeea3137d70ebbb4000be048a530d14e8df",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_filters.ts": "9dfe21583807c34e9b43fbb97997c9850f49faf178973d93c04a3a1f29e71d19",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_html.ts": "0c03c2ec075d3e19602b495ca8abf95558acf3d07e5346c028915e9b6cc13f6f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_message.ts": "ffbeade7e0d558d17e2acb0963565216a1936041ae66f0886d217e0ed5fee3e3",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_params.ts": "a59438b778963b137f76b0331723f02b2aa8fe2694e8d08f9d0b17de92de57af",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_password.ts": "b795536f5525d3d62d70d503d549fbcb70d701e0ebd9ad701a2d643c7e8bc2bd",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_types.ts": "19788cf6035181ddda581a6222334711a94c7bc13f8f365a09df5adf537186c9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/0_utilities.ts": "939a7a54a75956d9a23c9db81d50851e32c833aa2568b3a4478587d1ab519312",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/1_bot_info_manager.ts": "2b8249ba2aa8dc2bef4565ab1fbfcb1e614a66952eae282311517d4765dd229a",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/1_composer.ts": "20f71662367c0b0648d7cfb88bff2a804976df63bd923dffe1e13b28e980eced",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/1_file_manager.ts": "a334af98cbb28f85bb224052348cf4ed7d05dbf559785fcb346b7682fe689518",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/1_network_statistics_manager.ts": "73eeaf0c3cd0dc221e5a63e3b7a0e9942a768ec274436c1a29f493bc4abcdeae",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/1_reaction_manager.ts": "c568228d47bd570ce2ac595eb413d9f03551b36b765f9746cc3a39bc614013e9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/1_update_manager.ts": "e24e19ce1d1546d56e6e1f5bf895ca406b0f27883cd07181d0911f536d5ea777",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/2_client_plain.ts": "9839c6258fad1469d543d792fb6f2a3e19a2c2bbeda781978aaa2fa8095607a7",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/2_message_manager.ts": "d73cf85d925d1049497b28704dc1c1c9821400c688e4e246e261d300ae0ba5c1",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/3_callback_query_manager.ts": "f9cb8b28c30120110e9cfe7bc1d8ebbbb74719605c19cec9559fb1c498f82866",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/3_chat_list_manager.ts": "e2d53e8caf5b7cfb70d8647b088d34370b20b673ce6df5f5397af916f519e0b1",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/3_inline_query_manager.ts": "cf905bb380df88e48412d58818f6882ffca9784d4dcb6e15bdd168f945416cc2",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/4_client.ts": "4e22ea30c09647707dc7ebe72b5ad38e111ce4ac95c1f4562b9f40b77735e9d3",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/5_composer.ts": "7bbcc0c57cf2fba04bd81332315206379ca2977f6bf73311eaf8d97be38a1e78",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/client/5_session_string.ts": "b354c041db1ae739fe772dd6dbac5545353cacf3f88f1a21506d44ca5f8bc97f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/connection/0_connection.ts": "0b925c971b21b93cf3907d48705698f0365698b2505112bb4f6521fe1e2f636e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/connection/1_connection_web_socket.ts": "6d93c3cdbe624824bfdd659501de77f43c59f1bfa9e2682c100a8916a172263a",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/mod.ts": "5c0f5a03aa21804b262290afed678401953418ac2921740558adfc108768a066",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/storage/0_storage.ts": "2f4b44bd38590fd0adacc87a763d43af5b08ddc10b1682e23afd4f5b97c2311e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/storage/0_utilities.ts": "fe7255ff8c980c0a7cbd45335b20682b9eabecf2c87fc765a124a7b5f5348326",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/storage/1_storage_indexed_db.ts": "968912f30c155242d9b29b44fb836c9b64ac539a874a47ed2674db5f880e6f66",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/storage/1_storage_local_storage.ts": "71c60f7e2d7b55d9aa56f71eb110685a5447619ed630b4ad2d015163e688b2b7",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/storage/1_storage_memory.ts": "b1dd10943c14237152e89111024bba3da5e388a9f7b84b8d419e9c33a20f8839",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/storage/1_storage_session_storage.ts": "a9bb60f3efae78d75790d230833918a6d4c155d96acf29227dacab21fbe791d1",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/0_tl_raw_reader.ts": "59cf11d85115b0e39a6cafa520902dc2ad7b58636f15ff3bb22debe3089e8256",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/0_tl_raw_writer.ts": "d0d97a6a4d729122abf579809eac4f3b51116e562fe4f3abf855c0d4edb3eb4f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/1_tl_object.ts": "10e2b8437fabd4a1aab6c8b7f8056a3ac2eef0e9065a2fc1b7ff41baf8cb3787",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/2_types.ts": "096dc943c02d5317aea7d6702d7c5f0b1482990464a8953f8a25fa11dfaba8c3",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/3_deserialize.ts": "008fdbaf259d6e0d0ddd21c2b2c3e4bb0628da8f4bbf781abf26a783de784a41",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/3_functions.ts": "f397be8978b193bc9657a45f57cfcea3e54aa62575411cdc4b2ad0899bbedf69",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/3_tl_reader.ts": "21f5425bee86ecdebcc2e996ca3436bd48d02742762ed92dfe812b890fd9bd72",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/3_utilities.ts": "d17c4366d5f6c92553aa5da49102c640e2bcf1a03fa1d15329f7f505d53d6c90",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/4_rpc_result.ts": "620eefc531bba9b1e425dfc8c53f5a29e29140db5861e360a3749ac9c8ab5ee7",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/4_tl_writer.ts": "142ac723f3dc1c69cdf7145d4988efe02274efdabf58e0843035cfcfabdfa50e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/6_message.ts": "18ec3338f6dfedaebb8423815f8cdce70683c47cced5e892c064799f713243cf",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/tl/7_message_container.ts": "a3c447546f8021b1caf10f5220960a03acced7ec8a9d14e77a89fdb71996805c",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/transport/0_obfuscation.ts": "72724e296ea1987c24ed5837bc357287f71e448b31ecd0adcf8bd3c1ccc60296",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/transport/0_transport.ts": "79e4f1c3a77e90205921a6ec3ba1767b39772b6db08010ac2ef36b2313dd326a",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/transport/1_transport_abridged.ts": "510b2fecdf74fcbcd574f800827cef9cdc3ffbb6a44bf8c585de56441e6ee6b9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/transport/1_transport_intermediate.ts": "ac549a4cc71d2321f6f5042bc6db18b448dac488bd3c1623d766e8a01baa3da6",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/transport/2_transport_provider.ts": "91c6a94b76e31f6ce473a4dcf04fe7246f33aa8a07111973af5a285bf861678b",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/transport/3_transport_provider_web_socket.ts": "d1b46edb7680a54e01490a5a1ad026d572d8029f435ab6ee31b8ee64e19892fb",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0__file_id.ts": "c906dce41362ac516cfe2cdededd2ee7695e972c4a3b4211e5f72e750f288ad1",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_authorization_state.ts": "9cfa1af0773a66e7482f83166cf7e1e7b7552e268e5f3ff702432ed98eb54b94",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_bot_command.ts": "39eb5f9dbcce5c91abe454f416fdb0909e1b9944425d0a3b95f523ef82b5295e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_chat_action.ts": "48cea732e954a57e4685e2555400e3800416da18ee763d63c403c8a4454cad2e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_chat_administrator_rights.ts": "8f289a2ac2be846bf559045d19c26069f3c8eac9921230bd9989c8c4f58fac70",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_chat_member_rights.ts": "eee14673c79f45e5f99ae6a797764c1d4437c7466ce2bdee925e16a2831f7587",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_chat_photo.ts": "d9c03f4550bd37f46440b9684b85a085764efe5eae43d7350c881295c33949af",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_connection_state.ts": "a312b03f8dbafec5a2cabdb8da97f471e863ab5e8f1a4dc4147b64ea6119dbf9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_contact.ts": "5e80d39ad6b964544aacdb58fe86ecfa3e35b1c35719e776bfdf4531f3130320",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_dice.ts": "9c427880b921c171bca347e16e574832a1783d09d6aa9d85ca3dfce237c8c2a2",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_file_source.ts": "e76b94d6f0d9eed267e15068a9bea16e62b4b9345dcb45ce66d73151fac469a8",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_giveaway_parameters.ts": "887d3d642fe7c6f1e947bd5740bf6a2f6cb9cf66610b48f1cca941205f379b18",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_id.ts": "de66f25e5252c1be1ae36435f2ae0bce8399e9a1afb21e247e7b4876a4243ef5",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_keyboard_button_poll_type.ts": "8dc78f60489057a1ae53192917743b214bc54c78bdae861299845b949fc91093",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_location.ts": "2c64f2c481405a0869dc4d825fce9d681e32d85d807b4e28a6c7a3bf4eec1d98",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_login_url.ts": "11fa49f686d806d49389c6629e6d2726c53c28b27536add210f1e5ba91c1848e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_mask_position.ts": "7cb802ec0c039e81b99f561e2c50be0619458dcf3b2f93f94582c5124106de2b",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_message_entity.ts": "aa824ef2308bfa38cf96411c462ac482a690e8645d4a6c5d2a70b0370eeadf33",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_message_reference.ts": "4f948ad80ffbf4845c651977e80b4b31fd7abb7caa7f3e21291d110b4fc96365",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_mini_app_info.ts": "e9f0848c39a0c6cae0ef7c1d03143e1ead819b3a4e106e38ae7a003ba828e0b0",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_network_statistics_entry.ts": "009e7603e6b777a17f568e7903e9f334348c38c48fcd5c5fb1bc5337711a2aaa",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_parse_mode.ts": "18e069fc508ca9ea1e1d96903698a7fecfc7151ae5249b7367815f2ed451987e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_poll_option.ts": "b822e7bae27cad40ff524a1453b48010474cac2783e5dc4437a6661f615aadaa",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_price_tag.ts": "a54c276a1de101326c398a7120927c355aeacacda19b4fa13e61289498066e43",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_reaction.ts": "f7cc0198a8d7bcadf3db478cdcb5374dbb273b166c38271cf85160e0aaf00177",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_restriction_reason.ts": "8917c228cf46179ee2e323d0f4dcf508c89b14b150e9e14959e8c192857f191b",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_thumbnail.ts": "becb22790b82d06ad7f27fc80c648175540cf6eaffbcd2ce85f186d16917f92e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_venue.ts": "da3409494794cd5f528a24da1d7e6d803291fa99c61e3a7c75d4da6f1b75c650",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/0_voice.ts": "8dd978fd0a1071f3c8588407542e6224be66bee02ab769e11bd0504644a1c113",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1__getters.ts": "4e47105365c5e1a77909958946cda56b3880e686b3756469a0015bf5bb45457c",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_animation.ts": "ed5876e699184f234d758f08d7aee5a8a5348dc1f56acf9ccc535afb21278fd6",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_audio.ts": "895dd9580df33a185ba116e16367878ae72a4c293308aedc9b18f50b6e3b1094",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_bot_command_scope.ts": "a285f17c0e7bab6db01568d07bb6380d9e7de99a984506b4d68db81dc4d91ad0",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_chat_p.ts": "48ea1181d4f41ad41428ef2e57ec243487c8a3670f713ee2ab4d4f0e864ef25b",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_document.ts": "a6ca17da19843d49f65d67a12a648b706e048ba5a73061cdaa44e8364ead6c01",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_giveaway.ts": "e8db06784013bf43c729aedbd5c6b5acc1f5938b15d88003a151711c5790546d",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_inline_query_result_button.ts": "374b65f08bc03afd12a80296075faeb75e8b3ce5864d7ea09f834bdb4e2a0346",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_input_message_content.ts": "a6bf0027ade55ca199232e17b461434d8c719b26f1dbd2cfdbc0917a3043e14f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_keyboard_button.ts": "4a087841c3aca70493595f75e51f601a5f9ea123d781fab936195d81aee5c9b2",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_message_reaction.ts": "41324a2195576844b53767ae0e753a334b3cc286548f8131dd7105d746f44411",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_network_statistics.ts": "b32802de8b9aaf46d113c7ac55ee2bf0843df6aa8831f481c69f3d080ee7d52b",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_photo.ts": "8ccc4902cdb8e877294f480c82ad441a8638e1e04ad1c8ba56555e8c1dcc9c1e",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_poll.ts": "b9e639a2fada1f17604d5b1ce9b952b4287aed00f1987a842161c976e04b12f9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_reaction_count.ts": "3e775721d581ec278d11c4313c1993ca0224b2a11a3967e930c3af232e6a566a",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_reply_quote.ts": "cff1a48dbd77dd4120a3cdb17cb3de9807dc9f9478fc21f24f91e74b2394a904",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_sticker.ts": "423656c7cf87a75a39f90402dd837f5e1c34223871fe43929330e908af63a1f9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_user.ts": "bfb36ece17599664da400339ed6b7afec48d205b71a1ab38eafdeff076ea8fea",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_video.ts": "18db9630feaeca784aec67fba1e33ddf091c69367b643219184f489a3150d711",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/1_video_note.ts": "4374bc6a512d072907c687dc97e2f00d21ef28d65d72602833187f6b39abbf10",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_chat_member.ts": "56c336eb7ad59b9016f8366e44b26b38503de2bc31422c993130e5c0003e6c45",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_chosen_inline_result.ts": "b78ad77cabb98e2c74d41bc8ab8e65adafa51a5230c0192a5e1cea5adebbd348",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_game.ts": "f70c500f79f51c98ede99d8aa04f2d99d688acaafe3a887460d6b37f28f39d02",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_inline_keyboard_button.ts": "fdb021ad77ccc9f14e1c6b50720cc53f52595a9a3177cfa72a4e4fa88286b139",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_inline_query.ts": "cac7b803789de59844ab05968b90c66ccaf434c8d79b206d802ff1fa361711ee",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_invite_link.ts": "2136646ef2ac042e90d7349c8f5aede5b2b97ba3ecf744f87044f389d165bcc9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_message_interactions.ts": "d22872e8ebb348a08f8f259cc4837d891dfd3a6346d4b99a901a91745bcf0723",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_message_reaction_count.ts": "bbfcb2d2a64de6af78913f57251b4c35789000e083a4a2128af38ac316db3ecd",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/2_message_reactions.ts": "758ebe5d111669d5cd9101fe510443fc2773837dfd4277378c2436b2b63a8a62",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/3_chat_member_updated.ts": "d8889eb10d6c79e7ba443c4e25537479ed8ec038a24dcc14dcf5537628104ae1",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/3_reply_markup.ts": "20467179ab1788467cdef1353352b85408a12bf9a9fe5fbecc5824cb0e5e2b9a",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/4_inline_query_result.ts": "632204feec44fa476dfb5a82f7e6e5b6a4a05244b59d85aebc7e22a7a73c4c3f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/4_message.ts": "4427df2e3fdaa203f69407bb5ca03918d65db2473ba348533b2a462d588efdaf",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/5_callback_query.ts": "969a197b1775be67b0ddf91b09e2bdad0fd75d8db7a7e607cdbbb5b9c9d1b7ec",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/5_chat.ts": "2301848867efbcd0cb8eaa5a64367196415077ef12d5795f438febf4e3ad9121",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/types/6_update.ts": "f3e2a1efae4af37ccc9a6d5028119208078e698d5fd68af84e5378185fedc054",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_bigint.ts": "56c87d763fc0717d447cd43425e9589e19b371ce34c6770273180cd2d66dbe0f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_buffer.ts": "f50fc025c788d8f50b0ba010c6bbf33efca021feaf56cff1dcf54dbd620ba035",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_color.ts": "a55fda7f5615d65b93fd9cba25d92d18d89c67619e95667a493ef42ac0991cf0",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_control.ts": "3e6caa2c3a121474ce6635027d8eb004c66ba043c738c56d683d192ff7fb432f",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_crypto.ts": "688d2b79e5bed1db8dd2f60b765642799777226300563b2a19acbbe2806f83d1",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_hash.ts": "65731c5ac92be766aa37c85f03df0cc98911b8aeecf7c8c2df0a586eb2743c78",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_object.ts": "ce1715f0275d618f057c09f658025d92b776ca9e8777b1d8e2d4f924337ee2e9",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_queue.ts": "1b4e7e52e26b69bbfaaf517a4d66fa41ecb9778d6915a354f6d8c4973e1497af",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_rle.ts": "ca2418bd933955f44e497f59f533971d5c52794812bef1f9f02faf663f18bacf",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/0_types.ts": "32115c140f34c50b8931622980975079de004b92fbc3c680979abd7f9d32daa6",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/1_auth.ts": "761a54d9fcca76c075c3a3586de6bbdc8e1a2cb316f79222803712140bf86b54",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/1_base64.ts": "64442f2e20f70ff6a5b2d14ea71172a842383dfe4ee44ef641e6055c191287dd",
"https://ghc.deno.dev/MTKruto/MTKruto@d10676c/utilities/1_misc.ts": "c65aefc5df29ef82fb909f74845d7d8e2c573facaf050d545d5640a3cda845c6",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/0_deps.ts": "be41c20ff9789a59aee29c905849a12efa70a760632c202f3a41fc576b3d23ae",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/1_utilities.ts": "9dcf5c58e3d8cdd6072a7703eee3452708fd418efe22ab61ae2d5a8082cf133f",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/2_connection.ts": "bea531073ec9d1ab2fa43ab1542725d64e5ae5f69e639f9903f059def97ec324",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/2_tl.ts": "7a10893bf2bc4784e46c46f9fb36e642ad3f5bf4cbc30e1966a370ab5dbccc96",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/3_errors.ts": "d49470f3b9fe19a57b3932926020c0234166948f4d943aba229afbe7688989b4",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/3_storage.ts": "c30d7da3e9a931bde550d01745ae8122fb3dce0727facbfe11d4c8dc4a1f862f",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/3_transport.ts": "7f1241951066f8234dd7d5264176fa1c3438b2594557e5aa2e4d5a86cf6b9f4a",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/3_types.ts": "781deb6d986f5a5f8645921e8e936431b7feb5f83051e4290e7cfde8e9140e50",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/4_constants.ts": "3aa430eb60a91a18dba7916cf63562ae85481b3cc4c8595bcefaf1b1e2c2bc20",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/4_errors.ts": "7ba3c8d0049763b361b03689ad4d8ccc69be24ebc05712a1e5257d7085b0ae87",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/5_client.ts": "8c3c39c5db90cc0ee18537761a8873f7224a1fb51924a9433a5a5b7c234520b8",
"https://ghc.deno.dev/SpEcHiDe/MTKruto@e99fd71/client/0_client_abstract.ts": "c19aa53946f274c7966e72ce1af86eeea3137d70ebbb4000be048a530d14e8df",