@armatofik/tgsnake-core 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/COPYING +674 -0
- package/COPYING.lesser +165 -0
- package/README.md +88 -0
- package/lib/package.json +46 -0
- package/lib/src/Logger.d.ts +3 -0
- package/lib/src/Logger.js +9 -0
- package/lib/src/Queue.d.ts +19 -0
- package/lib/src/Queue.js +52 -0
- package/lib/src/Timeout.d.ts +9 -0
- package/lib/src/Timeout.js +44 -0
- package/lib/src/Version.node.d.ts +4 -0
- package/lib/src/Version.node.js +26 -0
- package/lib/src/client/Auth.d.ts +40 -0
- package/lib/src/client/Auth.js +317 -0
- package/lib/src/client/Client.d.ts +83 -0
- package/lib/src/client/Client.js +461 -0
- package/lib/src/client/Session.d.ts +9 -0
- package/lib/src/client/Session.js +132 -0
- package/lib/src/client/index.d.ts +3 -0
- package/lib/src/client/index.js +39 -0
- package/lib/src/connection/TCP/TCPAbridged.d.ts +9 -0
- package/lib/src/connection/TCP/TCPAbridged.js +47 -0
- package/lib/src/connection/TCP/TCPAbridgedO.d.ts +12 -0
- package/lib/src/connection/TCP/TCPAbridgedO.js +140 -0
- package/lib/src/connection/TCP/TCPFull.d.ts +10 -0
- package/lib/src/connection/TCP/TCPFull.js +43 -0
- package/lib/src/connection/TCP/TCPIntermediate.d.ts +9 -0
- package/lib/src/connection/TCP/TCPIntermediate.js +31 -0
- package/lib/src/connection/TCP/TCPIntermediateO.d.ts +12 -0
- package/lib/src/connection/TCP/TCPIntermediateO.js +123 -0
- package/lib/src/connection/TCP/TCPPaddedIntermediate.d.ts +9 -0
- package/lib/src/connection/TCP/TCPPaddedIntermediate.js +38 -0
- package/lib/src/connection/TCP/index.d.ts +7 -0
- package/lib/src/connection/TCP/index.js +17 -0
- package/lib/src/connection/TCP/tcp.d.ts +17 -0
- package/lib/src/connection/TCP/tcp.js +98 -0
- package/lib/src/connection/WebSocket.d.ts +21 -0
- package/lib/src/connection/WebSocket.js +279 -0
- package/lib/src/connection/connection.d.ts +53 -0
- package/lib/src/connection/connection.js +189 -0
- package/lib/src/connection/index.d.ts +4 -0
- package/lib/src/connection/index.js +41 -0
- package/lib/src/crypto/Aes.d.ts +10 -0
- package/lib/src/crypto/Aes.js +135 -0
- package/lib/src/crypto/Mtproto.d.ts +5 -0
- package/lib/src/crypto/Mtproto.js +123 -0
- package/lib/src/crypto/Password.d.ts +5 -0
- package/lib/src/crypto/Password.js +92 -0
- package/lib/src/crypto/Prime.d.ts +4 -0
- package/lib/src/crypto/Prime.js +64 -0
- package/lib/src/crypto/RSA.d.ts +7 -0
- package/lib/src/crypto/RSA.js +99 -0
- package/lib/src/crypto/SecretChat.d.ts +5 -0
- package/lib/src/crypto/SecretChat.js +136 -0
- package/lib/src/crypto/index.d.ts +6 -0
- package/lib/src/crypto/index.js +42 -0
- package/lib/src/errors/Base.d.ts +9 -0
- package/lib/src/errors/Base.js +50 -0
- package/lib/src/errors/Client.d.ts +21 -0
- package/lib/src/errors/Client.js +29 -0
- package/lib/src/errors/File.d.ts +13 -0
- package/lib/src/errors/File.js +30 -0
- package/lib/src/errors/RpcError.d.ts +22 -0
- package/lib/src/errors/RpcError.js +120 -0
- package/lib/src/errors/SecretChat.d.ts +13 -0
- package/lib/src/errors/SecretChat.js +30 -0
- package/lib/src/errors/WebSocket.d.ts +13 -0
- package/lib/src/errors/WebSocket.js +30 -0
- package/lib/src/errors/exceptions/All.d.ts +774 -0
- package/lib/src/errors/exceptions/All.js +778 -0
- package/lib/src/errors/exceptions/BadRequest400.d.ts +2345 -0
- package/lib/src/errors/exceptions/BadRequest400.js +2945 -0
- package/lib/src/errors/exceptions/Flood420.d.ts +37 -0
- package/lib/src/errors/exceptions/Flood420.js +49 -0
- package/lib/src/errors/exceptions/Forbidden403.d.ts +205 -0
- package/lib/src/errors/exceptions/Forbidden403.js +260 -0
- package/lib/src/errors/exceptions/InternalServerError500.d.ts +221 -0
- package/lib/src/errors/exceptions/InternalServerError500.js +280 -0
- package/lib/src/errors/exceptions/NotAcceptable406.d.ts +117 -0
- package/lib/src/errors/exceptions/NotAcceptable406.js +149 -0
- package/lib/src/errors/exceptions/NotFound404.d.ts +9 -0
- package/lib/src/errors/exceptions/NotFound404.js +14 -0
- package/lib/src/errors/exceptions/SeeOther303.d.ts +25 -0
- package/lib/src/errors/exceptions/SeeOther303.js +34 -0
- package/lib/src/errors/exceptions/ServiceUnavailable503.d.ts +17 -0
- package/lib/src/errors/exceptions/ServiceUnavailable503.js +24 -0
- package/lib/src/errors/exceptions/Unauthorized401.d.ts +41 -0
- package/lib/src/errors/exceptions/Unauthorized401.js +54 -0
- package/lib/src/errors/exceptions/index.d.ts +10 -0
- package/lib/src/errors/exceptions/index.js +48 -0
- package/lib/src/errors/index.d.ts +31 -0
- package/lib/src/errors/index.js +111 -0
- package/lib/src/file/Download.d.ts +11 -0
- package/lib/src/file/Download.js +118 -0
- package/lib/src/file/File.d.ts +20 -0
- package/lib/src/file/File.js +82 -0
- package/lib/src/file/Upload.d.ts +19 -0
- package/lib/src/file/Upload.js +250 -0
- package/lib/src/file/index.d.ts +3 -0
- package/lib/src/file/index.js +11 -0
- package/lib/src/helpers.d.ts +34 -0
- package/lib/src/helpers.js +358 -0
- package/lib/src/index.d.ts +16 -0
- package/lib/src/index.js +56 -0
- package/lib/src/platform.node.d.ts +36 -0
- package/lib/src/platform.node.js +109 -0
- package/lib/src/raw/All.d.ts +2400 -0
- package/lib/src/raw/All.js +2403 -0
- package/lib/src/raw/Raw.d.ts +29195 -0
- package/lib/src/raw/Raw.js +97277 -0
- package/lib/src/raw/core/BytesIO.d.ts +33 -0
- package/lib/src/raw/core/BytesIO.js +145 -0
- package/lib/src/raw/core/GzipPacked.d.ts +10 -0
- package/lib/src/raw/core/GzipPacked.js +60 -0
- package/lib/src/raw/core/Message.d.ts +13 -0
- package/lib/src/raw/core/Message.js +81 -0
- package/lib/src/raw/core/MsgContainer.d.ts +11 -0
- package/lib/src/raw/core/MsgContainer.js +69 -0
- package/lib/src/raw/core/TLObject.d.ts +19 -0
- package/lib/src/raw/core/TLObject.js +108 -0
- package/lib/src/raw/core/UpdateSecretChat.d.ts +40 -0
- package/lib/src/raw/core/UpdateSecretChat.js +88 -0
- package/lib/src/raw/core/index.d.ts +8 -0
- package/lib/src/raw/core/index.js +52 -0
- package/lib/src/raw/core/primitive/Bool.d.ts +20 -0
- package/lib/src/raw/core/primitive/Bool.js +41 -0
- package/lib/src/raw/core/primitive/Bytes.d.ts +7 -0
- package/lib/src/raw/core/primitive/Bytes.js +41 -0
- package/lib/src/raw/core/primitive/Double.d.ts +7 -0
- package/lib/src/raw/core/primitive/Double.js +24 -0
- package/lib/src/raw/core/primitive/Float.d.ts +7 -0
- package/lib/src/raw/core/primitive/Float.js +24 -0
- package/lib/src/raw/core/primitive/Int.d.ts +23 -0
- package/lib/src/raw/core/primitive/Int.js +122 -0
- package/lib/src/raw/core/primitive/String.d.ts +7 -0
- package/lib/src/raw/core/primitive/String.js +15 -0
- package/lib/src/raw/core/primitive/Vector.d.ts +9 -0
- package/lib/src/raw/core/primitive/Vector.js +50 -0
- package/lib/src/raw/core/primitive/index.d.ts +7 -0
- package/lib/src/raw/core/primitive/index.js +22 -0
- package/lib/src/raw/index.d.ts +3 -0
- package/lib/src/raw/index.js +17 -0
- package/lib/src/session/Auth.d.ts +15 -0
- package/lib/src/session/Auth.js +254 -0
- package/lib/src/session/Session.d.ts +58 -0
- package/lib/src/session/Session.js +571 -0
- package/lib/src/session/index.d.ts +7 -0
- package/lib/src/session/index.js +49 -0
- package/lib/src/session/internals/DataCenter.d.ts +42 -0
- package/lib/src/session/internals/DataCenter.js +80 -0
- package/lib/src/session/internals/MsgFactory.d.ts +3 -0
- package/lib/src/session/internals/MsgFactory.js +23 -0
- package/lib/src/session/internals/MsgId.d.ts +9 -0
- package/lib/src/session/internals/MsgId.js +24 -0
- package/lib/src/session/internals/SeqNo.d.ts +6 -0
- package/lib/src/session/internals/SeqNo.js +18 -0
- package/lib/src/session/secretChats/SecretChat.d.ts +29 -0
- package/lib/src/session/secretChats/SecretChat.js +527 -0
- package/lib/src/session/secretChats/index.d.ts +1 -0
- package/lib/src/session/secretChats/index.js +5 -0
- package/lib/src/storage/Abstract.d.ts +68 -0
- package/lib/src/storage/Abstract.js +6 -0
- package/lib/src/storage/SecretChat.d.ts +42 -0
- package/lib/src/storage/SecretChat.js +99 -0
- package/lib/src/storage/Session.d.ts +63 -0
- package/lib/src/storage/Session.js +245 -0
- package/lib/src/storage/StringSession.d.ts +4 -0
- package/lib/src/storage/StringSession.js +77 -0
- package/lib/src/storage/index.d.ts +4 -0
- package/lib/src/storage/index.js +12 -0
- package/package.json +46 -0
|
@@ -0,0 +1,2403 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AllTLObject = void 0;
|
|
4
|
+
exports.AllTLObject = {
|
|
5
|
+
0xbc799737: 'Primitive.BoolFalse',
|
|
6
|
+
0x997275b5: 'Primitive.BoolTrue',
|
|
7
|
+
0x1cb5c415: 'Primitive.Vector',
|
|
8
|
+
0x73f1f8dc: 'MsgContainer',
|
|
9
|
+
0x3072cfa1: 'GzipPacked',
|
|
10
|
+
0x5bb8e511: 'Message',
|
|
11
|
+
0x05162463: 'Raw.ResPQ',
|
|
12
|
+
0x83c95aec: 'Raw.PQInnerData',
|
|
13
|
+
0xa9f55f95: 'Raw.PQInnerDataDc',
|
|
14
|
+
0x3c6a84d4: 'Raw.PQInnerDataTemp',
|
|
15
|
+
0x56fddf88: 'Raw.PQInnerDataTempDc',
|
|
16
|
+
0x75a3f765: 'Raw.BindAuthKeyInner',
|
|
17
|
+
0x79cb045d: 'Raw.ServerDhParamsFail',
|
|
18
|
+
0xd0e8075c: 'Raw.ServerDhParamsOk',
|
|
19
|
+
0xb5890dba: 'Raw.ServerDhInnerData',
|
|
20
|
+
0x6643b654: 'Raw.ClientDhInnerData',
|
|
21
|
+
0x3bcbf734: 'Raw.DhGenOk',
|
|
22
|
+
0x46dc1fb9: 'Raw.DhGenRetry',
|
|
23
|
+
0xa69dae02: 'Raw.DhGenFail',
|
|
24
|
+
0xf660e1d4: 'Raw.DestroyAuthKeyOk',
|
|
25
|
+
0x0a9f2259: 'Raw.DestroyAuthKeyNone',
|
|
26
|
+
0xea109b13: 'Raw.DestroyAuthKeyFail',
|
|
27
|
+
0x60469778: 'Raw.ReqPq',
|
|
28
|
+
0xbe7e8ef1: 'Raw.ReqPqMulti',
|
|
29
|
+
0xd712e4be: 'Raw.ReqDhParams',
|
|
30
|
+
0xf5045f1f: 'Raw.SetClientDhParams',
|
|
31
|
+
0xd1435160: 'Raw.DestroyAuthKey',
|
|
32
|
+
0x62d6b459: 'Raw.MsgsAck',
|
|
33
|
+
0xa7eff811: 'Raw.BadMsgNotification',
|
|
34
|
+
0xedab447b: 'Raw.BadServerSalt',
|
|
35
|
+
0xda69fb52: 'Raw.MsgsStateReq',
|
|
36
|
+
0x04deb57d: 'Raw.MsgsStateInfo',
|
|
37
|
+
0x8cc0d131: 'Raw.MsgsAllInfo',
|
|
38
|
+
0x276d3ec6: 'Raw.MsgDetailedInfo',
|
|
39
|
+
0x809db6df: 'Raw.MsgNewDetailedInfo',
|
|
40
|
+
0x7d861a08: 'Raw.MsgResendReq',
|
|
41
|
+
0xf35c6d01: 'Raw.RpcResult',
|
|
42
|
+
0x2144ca19: 'Raw.RpcError',
|
|
43
|
+
0x5e2ad36e: 'Raw.RpcAnswerUnknown',
|
|
44
|
+
0xcd78e586: 'Raw.RpcAnswerDroppedRunning',
|
|
45
|
+
0xa43ad8b7: 'Raw.RpcAnswerDropped',
|
|
46
|
+
0x0949d9dc: 'Raw.FutureSalt',
|
|
47
|
+
0xae500895: 'Raw.FutureSalts',
|
|
48
|
+
0x347773c5: 'Raw.Pong',
|
|
49
|
+
0xe22045fc: 'Raw.DestroySessionOk',
|
|
50
|
+
0x62d350c9: 'Raw.DestroySessionNone',
|
|
51
|
+
0x9ec20908: 'Raw.NewSessionCreated',
|
|
52
|
+
0x9299359f: 'Raw.HttpWait',
|
|
53
|
+
0xd433ad73: 'Raw.IpPort',
|
|
54
|
+
0x37982646: 'Raw.IpPortSecret',
|
|
55
|
+
0x4679b65f: 'Raw.AccessPointRule',
|
|
56
|
+
0x5a592a6c: 'Raw.help.ConfigSimple',
|
|
57
|
+
0x58e4a740: 'Raw.RpcDropAnswer',
|
|
58
|
+
0xb921bd04: 'Raw.GetFutureSalts',
|
|
59
|
+
0x7abe77ec: 'Raw.Ping',
|
|
60
|
+
0xf3427b8c: 'Raw.PingDelayDisconnect',
|
|
61
|
+
0xe7512126: 'Raw.DestroySession',
|
|
62
|
+
0x7f3b18ea: 'Raw.InputPeerEmpty',
|
|
63
|
+
0x7da07ec9: 'Raw.InputPeerSelf',
|
|
64
|
+
0x35a95cb9: 'Raw.InputPeerChat',
|
|
65
|
+
0xdde8a54c: 'Raw.InputPeerUser',
|
|
66
|
+
0x27bcbbfc: 'Raw.InputPeerChannel',
|
|
67
|
+
0xa87b0a1c: 'Raw.InputPeerUserFromMessage',
|
|
68
|
+
0xbd2a0840: 'Raw.InputPeerChannelFromMessage',
|
|
69
|
+
0xb98886cf: 'Raw.InputUserEmpty',
|
|
70
|
+
0xf7c1b13f: 'Raw.InputUserSelf',
|
|
71
|
+
0xf21158c6: 'Raw.InputUser',
|
|
72
|
+
0x1da448e2: 'Raw.InputUserFromMessage',
|
|
73
|
+
0x6a1dc4be: 'Raw.InputPhoneContact',
|
|
74
|
+
0xf52ff27f: 'Raw.InputFile',
|
|
75
|
+
0xfa4f0bb5: 'Raw.InputFileBig',
|
|
76
|
+
0x62dc8b48: 'Raw.InputFileStoryDocument',
|
|
77
|
+
0x9664f57f: 'Raw.InputMediaEmpty',
|
|
78
|
+
0x1e287d04: 'Raw.InputMediaUploadedPhoto',
|
|
79
|
+
0xb3ba0635: 'Raw.InputMediaPhoto',
|
|
80
|
+
0xf9c44144: 'Raw.InputMediaGeoPoint',
|
|
81
|
+
0xf8ab7dfb: 'Raw.InputMediaContact',
|
|
82
|
+
0x37c9330: 'Raw.InputMediaUploadedDocument',
|
|
83
|
+
0xa8763ab5: 'Raw.InputMediaDocument',
|
|
84
|
+
0xc13d1c11: 'Raw.InputMediaVenue',
|
|
85
|
+
0xe5bbfe1a: 'Raw.InputMediaPhotoExternal',
|
|
86
|
+
0x779600f9: 'Raw.InputMediaDocumentExternal',
|
|
87
|
+
0xd33f43f3: 'Raw.InputMediaGame',
|
|
88
|
+
0x405fef0d: 'Raw.InputMediaInvoice',
|
|
89
|
+
0x971fa843: 'Raw.InputMediaGeoLive',
|
|
90
|
+
0xf94e5f1: 'Raw.InputMediaPoll',
|
|
91
|
+
0xe66fbf7b: 'Raw.InputMediaDice',
|
|
92
|
+
0x89fdd778: 'Raw.InputMediaStory',
|
|
93
|
+
0xc21b8849: 'Raw.InputMediaWebPage',
|
|
94
|
+
0xc4103386: 'Raw.InputMediaPaidMedia',
|
|
95
|
+
0x9fc55fde: 'Raw.InputMediaTodo',
|
|
96
|
+
0xf3a9244a: 'Raw.InputMediaStakeDice',
|
|
97
|
+
0x1ca48f57: 'Raw.InputChatPhotoEmpty',
|
|
98
|
+
0xbdcdaec0: 'Raw.InputChatUploadedPhoto',
|
|
99
|
+
0x8953ad37: 'Raw.InputChatPhoto',
|
|
100
|
+
0xe4c123d6: 'Raw.InputGeoPointEmpty',
|
|
101
|
+
0x48222faf: 'Raw.InputGeoPoint',
|
|
102
|
+
0x1cd7bf0d: 'Raw.InputPhotoEmpty',
|
|
103
|
+
0x3bb3b94a: 'Raw.InputPhoto',
|
|
104
|
+
0xdfdaabe1: 'Raw.InputFileLocation',
|
|
105
|
+
0xf5235d55: 'Raw.InputEncryptedFileLocation',
|
|
106
|
+
0xbad07584: 'Raw.InputDocumentFileLocation',
|
|
107
|
+
0xcbc7ee28: 'Raw.InputSecureFileLocation',
|
|
108
|
+
0x29be5899: 'Raw.InputTakeoutFileLocation',
|
|
109
|
+
0x40181ffe: 'Raw.InputPhotoFileLocation',
|
|
110
|
+
0xd83466f3: 'Raw.InputPhotoLegacyFileLocation',
|
|
111
|
+
0x37257e99: 'Raw.InputPeerPhotoFileLocation',
|
|
112
|
+
0x9d84f3db: 'Raw.InputStickerSetThumb',
|
|
113
|
+
0x598a92a: 'Raw.InputGroupCallStream',
|
|
114
|
+
0x59511722: 'Raw.PeerUser',
|
|
115
|
+
0x36c6019a: 'Raw.PeerChat',
|
|
116
|
+
0xa2a5371e: 'Raw.PeerChannel',
|
|
117
|
+
0xaa963b05: 'Raw.storage.FileUnknown',
|
|
118
|
+
0x40bc6f52: 'Raw.storage.FilePartial',
|
|
119
|
+
0x7efe0e: 'Raw.storage.FileJpeg',
|
|
120
|
+
0xcae1aadf: 'Raw.storage.FileGif',
|
|
121
|
+
0xa4f63c0: 'Raw.storage.FilePng',
|
|
122
|
+
0xae1e508d: 'Raw.storage.FilePdf',
|
|
123
|
+
0x528a0677: 'Raw.storage.FileMp3',
|
|
124
|
+
0x4b09ebbc: 'Raw.storage.FileMov',
|
|
125
|
+
0xb3cea0e4: 'Raw.storage.FileMp4',
|
|
126
|
+
0x1081464c: 'Raw.storage.FileWebp',
|
|
127
|
+
0xd3bc4b7a: 'Raw.UserEmpty',
|
|
128
|
+
0x31774388: 'Raw.User',
|
|
129
|
+
0x4f11bae1: 'Raw.UserProfilePhotoEmpty',
|
|
130
|
+
0x82d1f706: 'Raw.UserProfilePhoto',
|
|
131
|
+
0x9d05049: 'Raw.UserStatusEmpty',
|
|
132
|
+
0xedb93949: 'Raw.UserStatusOnline',
|
|
133
|
+
0x8c703f: 'Raw.UserStatusOffline',
|
|
134
|
+
0x7b197dc8: 'Raw.UserStatusRecently',
|
|
135
|
+
0x541a1d1a: 'Raw.UserStatusLastWeek',
|
|
136
|
+
0x65899777: 'Raw.UserStatusLastMonth',
|
|
137
|
+
0x29562865: 'Raw.ChatEmpty',
|
|
138
|
+
0x41cbf256: 'Raw.Chat',
|
|
139
|
+
0x6592a1a7: 'Raw.ChatForbidden',
|
|
140
|
+
0x1c32b11c: 'Raw.Channel',
|
|
141
|
+
0x17d493d5: 'Raw.ChannelForbidden',
|
|
142
|
+
0x2633421b: 'Raw.ChatFull',
|
|
143
|
+
0xe4e0b29d: 'Raw.ChannelFull',
|
|
144
|
+
0xc02d4007: 'Raw.ChatParticipant',
|
|
145
|
+
0xe46bcee4: 'Raw.ChatParticipantCreator',
|
|
146
|
+
0xa0933f5b: 'Raw.ChatParticipantAdmin',
|
|
147
|
+
0x8763d3e1: 'Raw.ChatParticipantsForbidden',
|
|
148
|
+
0x3cbc93f8: 'Raw.ChatParticipants',
|
|
149
|
+
0x37c1011c: 'Raw.ChatPhotoEmpty',
|
|
150
|
+
0x1c6e1c11: 'Raw.ChatPhoto',
|
|
151
|
+
0x90a6ca84: 'Raw.MessageEmpty',
|
|
152
|
+
0x9cb490e9: 'Raw.Message',
|
|
153
|
+
0x7a800e0a: 'Raw.MessageService',
|
|
154
|
+
0x3ded6320: 'Raw.MessageMediaEmpty',
|
|
155
|
+
0x695150d7: 'Raw.MessageMediaPhoto',
|
|
156
|
+
0x56e0d474: 'Raw.MessageMediaGeo',
|
|
157
|
+
0x70322949: 'Raw.MessageMediaContact',
|
|
158
|
+
0x9f84f49e: 'Raw.MessageMediaUnsupported',
|
|
159
|
+
0x52d8ccd9: 'Raw.MessageMediaDocument',
|
|
160
|
+
0xddf10c3b: 'Raw.MessageMediaWebPage',
|
|
161
|
+
0x2ec0533f: 'Raw.MessageMediaVenue',
|
|
162
|
+
0xfdb19008: 'Raw.MessageMediaGame',
|
|
163
|
+
0xf6a548d3: 'Raw.MessageMediaInvoice',
|
|
164
|
+
0xb940c666: 'Raw.MessageMediaGeoLive',
|
|
165
|
+
0x4bd6e798: 'Raw.MessageMediaPoll',
|
|
166
|
+
0x8cbec07: 'Raw.MessageMediaDice',
|
|
167
|
+
0x68cb6283: 'Raw.MessageMediaStory',
|
|
168
|
+
0xaa073beb: 'Raw.MessageMediaGiveaway',
|
|
169
|
+
0xceaa3ea1: 'Raw.MessageMediaGiveawayResults',
|
|
170
|
+
0xa8852491: 'Raw.MessageMediaPaidMedia',
|
|
171
|
+
0x8a53b014: 'Raw.MessageMediaToDo',
|
|
172
|
+
0xca5cab89: 'Raw.MessageMediaVideoStream',
|
|
173
|
+
0xb6aef7b0: 'Raw.MessageActionEmpty',
|
|
174
|
+
0xbd47cbad: 'Raw.MessageActionChatCreate',
|
|
175
|
+
0xb5a1ce5a: 'Raw.MessageActionChatEditTitle',
|
|
176
|
+
0x7fcb13a8: 'Raw.MessageActionChatEditPhoto',
|
|
177
|
+
0x95e3fbef: 'Raw.MessageActionChatDeletePhoto',
|
|
178
|
+
0x15cefd00: 'Raw.MessageActionChatAddUser',
|
|
179
|
+
0xa43f30cc: 'Raw.MessageActionChatDeleteUser',
|
|
180
|
+
0x31224c3: 'Raw.MessageActionChatJoinedByLink',
|
|
181
|
+
0x95d2ac92: 'Raw.MessageActionChannelCreate',
|
|
182
|
+
0xe1037f92: 'Raw.MessageActionChatMigrateTo',
|
|
183
|
+
0xea3948e9: 'Raw.MessageActionChannelMigrateFrom',
|
|
184
|
+
0x94bd38ed: 'Raw.MessageActionPinMessage',
|
|
185
|
+
0x9fbab604: 'Raw.MessageActionHistoryClear',
|
|
186
|
+
0x92a72876: 'Raw.MessageActionGameScore',
|
|
187
|
+
0xffa00ccc: 'Raw.MessageActionPaymentSentMe',
|
|
188
|
+
0xc624b16e: 'Raw.MessageActionPaymentSent',
|
|
189
|
+
0x80e11a7f: 'Raw.MessageActionPhoneCall',
|
|
190
|
+
0x4792929b: 'Raw.MessageActionScreenshotTaken',
|
|
191
|
+
0xfae69f56: 'Raw.MessageActionCustomAction',
|
|
192
|
+
0xc516d679: 'Raw.MessageActionBotAllowed',
|
|
193
|
+
0x1b287353: 'Raw.MessageActionSecureValuesSentMe',
|
|
194
|
+
0xd95c6154: 'Raw.MessageActionSecureValuesSent',
|
|
195
|
+
0xf3f25f76: 'Raw.MessageActionContactSignUp',
|
|
196
|
+
0x98e0d697: 'Raw.MessageActionGeoProximityReached',
|
|
197
|
+
0x7a0d7f42: 'Raw.MessageActionGroupCall',
|
|
198
|
+
0x502f92f7: 'Raw.MessageActionInviteToGroupCall',
|
|
199
|
+
0x3c134d7b: 'Raw.MessageActionSetMessagesTTL',
|
|
200
|
+
0xb3a07661: 'Raw.MessageActionGroupCallScheduled',
|
|
201
|
+
0xb91bbd3a: 'Raw.MessageActionSetChatTheme',
|
|
202
|
+
0xebbca3cb: 'Raw.MessageActionChatJoinedByRequest',
|
|
203
|
+
0x47dd8079: 'Raw.MessageActionWebViewDataSentMe',
|
|
204
|
+
0xb4c38cb5: 'Raw.MessageActionWebViewDataSent',
|
|
205
|
+
0x48e91302: 'Raw.MessageActionGiftPremium',
|
|
206
|
+
0xd999256: 'Raw.MessageActionTopicCreate',
|
|
207
|
+
0xc0944820: 'Raw.MessageActionTopicEdit',
|
|
208
|
+
0x57de635e: 'Raw.MessageActionSuggestProfilePhoto',
|
|
209
|
+
0x31518e9b: 'Raw.MessageActionRequestedPeer',
|
|
210
|
+
0x5060a3f4: 'Raw.MessageActionSetChatWallPaper',
|
|
211
|
+
0x31c48347: 'Raw.MessageActionGiftCode',
|
|
212
|
+
0xa80f51e4: 'Raw.MessageActionGiveawayLaunch',
|
|
213
|
+
0x87e2f155: 'Raw.MessageActionGiveawayResults',
|
|
214
|
+
0xcc02aa6d: 'Raw.MessageActionBoostApply',
|
|
215
|
+
0x93b31848: 'Raw.MessageActionRequestedPeerSentMe',
|
|
216
|
+
0x41b3e202: 'Raw.MessageActionPaymentRefunded',
|
|
217
|
+
0x45d5b021: 'Raw.MessageActionGiftStars',
|
|
218
|
+
0xb00c47a2: 'Raw.MessageActionPrizeStars',
|
|
219
|
+
0xea2c31d3: 'Raw.MessageActionStarGift',
|
|
220
|
+
0xe6c31522: 'Raw.MessageActionStarGiftUnique',
|
|
221
|
+
0xac1f1fcd: 'Raw.MessageActionPaidMessagesRefunded',
|
|
222
|
+
0x84b88578: 'Raw.MessageActionPaidMessagesPrice',
|
|
223
|
+
0x2ffe2f7a: 'Raw.MessageActionConferenceCall',
|
|
224
|
+
0xcc7c5c89: 'Raw.MessageActionTodoCompletions',
|
|
225
|
+
0xc7edbc83: 'Raw.MessageActionTodoAppendTasks',
|
|
226
|
+
0xee7a1596: 'Raw.MessageActionSuggestedPostApproval',
|
|
227
|
+
0x95ddcf69: 'Raw.MessageActionSuggestedPostSuccess',
|
|
228
|
+
0x69f916f8: 'Raw.MessageActionSuggestedPostRefund',
|
|
229
|
+
0xa8a3c699: 'Raw.MessageActionGiftTon',
|
|
230
|
+
0x2c8f2a25: 'Raw.MessageActionSuggestBirthday',
|
|
231
|
+
0x774278d4: 'Raw.MessageActionStarGiftPurchaseOffer',
|
|
232
|
+
0x73ada76b: 'Raw.MessageActionStarGiftPurchaseOfferDeclined',
|
|
233
|
+
0xb07ed085: 'Raw.MessageActionNewCreatorPending',
|
|
234
|
+
0xe188503b: 'Raw.MessageActionChangeCreator',
|
|
235
|
+
0xd58a08c6: 'Raw.Dialog',
|
|
236
|
+
0x71bd134c: 'Raw.DialogFolder',
|
|
237
|
+
0x2331b22d: 'Raw.PhotoEmpty',
|
|
238
|
+
0xfb197a65: 'Raw.Photo',
|
|
239
|
+
0xe17e23c: 'Raw.PhotoSizeEmpty',
|
|
240
|
+
0x75c78e60: 'Raw.PhotoSize',
|
|
241
|
+
0x21e1ad6: 'Raw.PhotoCachedSize',
|
|
242
|
+
0xe0b0bc2e: 'Raw.PhotoStrippedSize',
|
|
243
|
+
0xfa3efb95: 'Raw.PhotoSizeProgressive',
|
|
244
|
+
0xd8214d41: 'Raw.PhotoPathSize',
|
|
245
|
+
0x1117dd5f: 'Raw.GeoPointEmpty',
|
|
246
|
+
0xb2a2f663: 'Raw.GeoPoint',
|
|
247
|
+
0x5e002502: 'Raw.auth.SentCode',
|
|
248
|
+
0x2390fe44: 'Raw.auth.SentCodeSuccess',
|
|
249
|
+
0xe0955a3c: 'Raw.auth.SentCodePaymentRequired',
|
|
250
|
+
0x2ea2c0d4: 'Raw.auth.Authorization',
|
|
251
|
+
0x44747e9a: 'Raw.auth.AuthorizationSignUpRequired',
|
|
252
|
+
0xb434e2b8: 'Raw.auth.ExportedAuthorization',
|
|
253
|
+
0xb8bc5b0c: 'Raw.InputNotifyPeer',
|
|
254
|
+
0x193b4417: 'Raw.InputNotifyUsers',
|
|
255
|
+
0x4a95e84e: 'Raw.InputNotifyChats',
|
|
256
|
+
0xb1db7c7e: 'Raw.InputNotifyBroadcasts',
|
|
257
|
+
0x5c467992: 'Raw.InputNotifyForumTopic',
|
|
258
|
+
0xcacb6ae2: 'Raw.InputPeerNotifySettings',
|
|
259
|
+
0x99622c0c: 'Raw.PeerNotifySettings',
|
|
260
|
+
0xf47741f7: 'Raw.PeerSettings',
|
|
261
|
+
0xa437c3ed: 'Raw.WallPaper',
|
|
262
|
+
0xe0804116: 'Raw.WallPaperNoFile',
|
|
263
|
+
0x58dbcab8: 'Raw.InputReportReasonSpam',
|
|
264
|
+
0x1e22c78d: 'Raw.InputReportReasonViolence',
|
|
265
|
+
0x2e59d922: 'Raw.InputReportReasonPornography',
|
|
266
|
+
0xadf44ee3: 'Raw.InputReportReasonChildAbuse',
|
|
267
|
+
0xc1e4a2b1: 'Raw.InputReportReasonOther',
|
|
268
|
+
0x9b89f93a: 'Raw.InputReportReasonCopyright',
|
|
269
|
+
0xdbd4feed: 'Raw.InputReportReasonGeoIrrelevant',
|
|
270
|
+
0xf5ddd6e7: 'Raw.InputReportReasonFake',
|
|
271
|
+
0xa8eb2be: 'Raw.InputReportReasonIllegalDrugs',
|
|
272
|
+
0x9ec7863d: 'Raw.InputReportReasonPersonalDetails',
|
|
273
|
+
0xa02bc13e: 'Raw.UserFull',
|
|
274
|
+
0x145ade0b: 'Raw.Contact',
|
|
275
|
+
0xc13e3c50: 'Raw.ImportedContact',
|
|
276
|
+
0x16d9703b: 'Raw.ContactStatus',
|
|
277
|
+
0xb74ba9d2: 'Raw.contacts.ContactsNotModified',
|
|
278
|
+
0xeae87e42: 'Raw.contacts.Contacts',
|
|
279
|
+
0x77d01c3b: 'Raw.contacts.ImportedContacts',
|
|
280
|
+
0xade1591: 'Raw.contacts.Blocked',
|
|
281
|
+
0xe1664194: 'Raw.contacts.BlockedSlice',
|
|
282
|
+
0x15ba6c40: 'Raw.messages.Dialogs',
|
|
283
|
+
0x71e094f3: 'Raw.messages.DialogsSlice',
|
|
284
|
+
0xf0e3e596: 'Raw.messages.DialogsNotModified',
|
|
285
|
+
0x1d73e7ea: 'Raw.messages.Messages',
|
|
286
|
+
0x5f206716: 'Raw.messages.MessagesSlice',
|
|
287
|
+
0xc776ba4e: 'Raw.messages.ChannelMessages',
|
|
288
|
+
0x74535f21: 'Raw.messages.MessagesNotModified',
|
|
289
|
+
0x64ff9fd5: 'Raw.messages.Chats',
|
|
290
|
+
0x9cd81144: 'Raw.messages.ChatsSlice',
|
|
291
|
+
0xe5d7d19c: 'Raw.messages.ChatFull',
|
|
292
|
+
0xb45c69d1: 'Raw.messages.AffectedHistory',
|
|
293
|
+
0x57e2f66c: 'Raw.InputMessagesFilterEmpty',
|
|
294
|
+
0x9609a51c: 'Raw.InputMessagesFilterPhotos',
|
|
295
|
+
0x9fc00e65: 'Raw.InputMessagesFilterVideo',
|
|
296
|
+
0x56e9f0e4: 'Raw.InputMessagesFilterPhotoVideo',
|
|
297
|
+
0x9eddf188: 'Raw.InputMessagesFilterDocument',
|
|
298
|
+
0x7ef0dd87: 'Raw.InputMessagesFilterUrl',
|
|
299
|
+
0xffc86587: 'Raw.InputMessagesFilterGif',
|
|
300
|
+
0x50f5c392: 'Raw.InputMessagesFilterVoice',
|
|
301
|
+
0x3751b49e: 'Raw.InputMessagesFilterMusic',
|
|
302
|
+
0x3a20ecb8: 'Raw.InputMessagesFilterChatPhotos',
|
|
303
|
+
0x80c99768: 'Raw.InputMessagesFilterPhoneCalls',
|
|
304
|
+
0x7a7c17a4: 'Raw.InputMessagesFilterRoundVoice',
|
|
305
|
+
0xb549da53: 'Raw.InputMessagesFilterRoundVideo',
|
|
306
|
+
0xc1f8e69a: 'Raw.InputMessagesFilterMyMentions',
|
|
307
|
+
0xe7026d0d: 'Raw.InputMessagesFilterGeo',
|
|
308
|
+
0xe062db83: 'Raw.InputMessagesFilterContacts',
|
|
309
|
+
0x1bb00451: 'Raw.InputMessagesFilterPinned',
|
|
310
|
+
0x1f2b0afd: 'Raw.UpdateNewMessage',
|
|
311
|
+
0x4e90bfd6: 'Raw.UpdateMessageID',
|
|
312
|
+
0xa20db0e5: 'Raw.UpdateDeleteMessages',
|
|
313
|
+
0x2a17bf5c: 'Raw.UpdateUserTyping',
|
|
314
|
+
0x83487af0: 'Raw.UpdateChatUserTyping',
|
|
315
|
+
0x7761198: 'Raw.UpdateChatParticipants',
|
|
316
|
+
0xe5bdf8de: 'Raw.UpdateUserStatus',
|
|
317
|
+
0xa7848924: 'Raw.UpdateUserName',
|
|
318
|
+
0x8951abef: 'Raw.UpdateNewAuthorization',
|
|
319
|
+
0x12bcbd9a: 'Raw.UpdateNewEncryptedMessage',
|
|
320
|
+
0x1710f156: 'Raw.UpdateEncryptedChatTyping',
|
|
321
|
+
0xb4a2e88d: 'Raw.UpdateEncryption',
|
|
322
|
+
0x38fe25b7: 'Raw.UpdateEncryptedMessagesRead',
|
|
323
|
+
0x3dda5451: 'Raw.UpdateChatParticipantAdd',
|
|
324
|
+
0xe32f3d77: 'Raw.UpdateChatParticipantDelete',
|
|
325
|
+
0x8e5e9873: 'Raw.UpdateDcOptions',
|
|
326
|
+
0xbec268ef: 'Raw.UpdateNotifySettings',
|
|
327
|
+
0xebe46819: 'Raw.UpdateServiceNotification',
|
|
328
|
+
0xee3b272a: 'Raw.UpdatePrivacy',
|
|
329
|
+
0x5492a13: 'Raw.UpdateUserPhone',
|
|
330
|
+
0x9e84bc99: 'Raw.UpdateReadHistoryInbox',
|
|
331
|
+
0x2f2f21bf: 'Raw.UpdateReadHistoryOutbox',
|
|
332
|
+
0x7f891213: 'Raw.UpdateWebPage',
|
|
333
|
+
0xf8227181: 'Raw.UpdateReadMessagesContents',
|
|
334
|
+
0x108d941f: 'Raw.UpdateChannelTooLong',
|
|
335
|
+
0x635b4c09: 'Raw.UpdateChannel',
|
|
336
|
+
0x62ba04d9: 'Raw.UpdateNewChannelMessage',
|
|
337
|
+
0x922e6e10: 'Raw.UpdateReadChannelInbox',
|
|
338
|
+
0xc32d5b12: 'Raw.UpdateDeleteChannelMessages',
|
|
339
|
+
0xf226ac08: 'Raw.UpdateChannelMessageViews',
|
|
340
|
+
0xd7ca61a2: 'Raw.UpdateChatParticipantAdmin',
|
|
341
|
+
0x688a30aa: 'Raw.UpdateNewStickerSet',
|
|
342
|
+
0xbb2d201: 'Raw.UpdateStickerSetsOrder',
|
|
343
|
+
0x31c24808: 'Raw.UpdateStickerSets',
|
|
344
|
+
0x9375341e: 'Raw.UpdateSavedGifs',
|
|
345
|
+
0x496f379c: 'Raw.UpdateBotInlineQuery',
|
|
346
|
+
0x12f12a07: 'Raw.UpdateBotInlineSend',
|
|
347
|
+
0x1b3f4df7: 'Raw.UpdateEditChannelMessage',
|
|
348
|
+
0xb9cfc48d: 'Raw.UpdateBotCallbackQuery',
|
|
349
|
+
0xe40370a3: 'Raw.UpdateEditMessage',
|
|
350
|
+
0x691e9052: 'Raw.UpdateInlineBotCallbackQuery',
|
|
351
|
+
0xb75f99a9: 'Raw.UpdateReadChannelOutbox',
|
|
352
|
+
0xedfc111e: 'Raw.UpdateDraftMessage',
|
|
353
|
+
0x571d2742: 'Raw.UpdateReadFeaturedStickers',
|
|
354
|
+
0x9a422c20: 'Raw.UpdateRecentStickers',
|
|
355
|
+
0xa229dd06: 'Raw.UpdateConfig',
|
|
356
|
+
0x3354678f: 'Raw.UpdatePtsChanged',
|
|
357
|
+
0x2f2ba99f: 'Raw.UpdateChannelWebPage',
|
|
358
|
+
0x6e6fe51c: 'Raw.UpdateDialogPinned',
|
|
359
|
+
0xfa0f3ca2: 'Raw.UpdatePinnedDialogs',
|
|
360
|
+
0x8317c0c3: 'Raw.UpdateBotWebhookJSON',
|
|
361
|
+
0x9b9240a6: 'Raw.UpdateBotWebhookJSONQuery',
|
|
362
|
+
0xb5aefd7d: 'Raw.UpdateBotShippingQuery',
|
|
363
|
+
0x8caa9a96: 'Raw.UpdateBotPrecheckoutQuery',
|
|
364
|
+
0xab0f6b1e: 'Raw.UpdatePhoneCall',
|
|
365
|
+
0x46560264: 'Raw.UpdateLangPackTooLong',
|
|
366
|
+
0x56022f4d: 'Raw.UpdateLangPack',
|
|
367
|
+
0xe511996d: 'Raw.UpdateFavedStickers',
|
|
368
|
+
0x25f324f7: 'Raw.UpdateChannelReadMessagesContents',
|
|
369
|
+
0x7084a7be: 'Raw.UpdateContactsReset',
|
|
370
|
+
0xb23fc698: 'Raw.UpdateChannelAvailableMessages',
|
|
371
|
+
0xb658f23e: 'Raw.UpdateDialogUnreadMark',
|
|
372
|
+
0xaca1657b: 'Raw.UpdateMessagePoll',
|
|
373
|
+
0x54c01850: 'Raw.UpdateChatDefaultBannedRights',
|
|
374
|
+
0x19360dc0: 'Raw.UpdateFolderPeers',
|
|
375
|
+
0x6a7e7366: 'Raw.UpdatePeerSettings',
|
|
376
|
+
0xb4afcfb0: 'Raw.UpdatePeerLocated',
|
|
377
|
+
0x39a51dfb: 'Raw.UpdateNewScheduledMessage',
|
|
378
|
+
0xf2a71983: 'Raw.UpdateDeleteScheduledMessages',
|
|
379
|
+
0x8216fba3: 'Raw.UpdateTheme',
|
|
380
|
+
0x871fb939: 'Raw.UpdateGeoLiveViewed',
|
|
381
|
+
0x564fe691: 'Raw.UpdateLoginToken',
|
|
382
|
+
0x24f40e77: 'Raw.UpdateMessagePollVote',
|
|
383
|
+
0x26ffde7d: 'Raw.UpdateDialogFilter',
|
|
384
|
+
0xa5d72105: 'Raw.UpdateDialogFilterOrder',
|
|
385
|
+
0x3504914f: 'Raw.UpdateDialogFilters',
|
|
386
|
+
0x2661bf09: 'Raw.UpdatePhoneCallSignalingData',
|
|
387
|
+
0xd29a27f4: 'Raw.UpdateChannelMessageForwards',
|
|
388
|
+
0xd6b19546: 'Raw.UpdateReadChannelDiscussionInbox',
|
|
389
|
+
0x695c9e7c: 'Raw.UpdateReadChannelDiscussionOutbox',
|
|
390
|
+
0xebe07752: 'Raw.UpdatePeerBlocked',
|
|
391
|
+
0x8c88c923: 'Raw.UpdateChannelUserTyping',
|
|
392
|
+
0xed85eab5: 'Raw.UpdatePinnedMessages',
|
|
393
|
+
0x5bb98608: 'Raw.UpdatePinnedChannelMessages',
|
|
394
|
+
0xf89a6a4e: 'Raw.UpdateChat',
|
|
395
|
+
0xf2ebdb4e: 'Raw.UpdateGroupCallParticipants',
|
|
396
|
+
0x9d2216e0: 'Raw.UpdateGroupCall',
|
|
397
|
+
0xbb9bb9a5: 'Raw.UpdatePeerHistoryTTL',
|
|
398
|
+
0xd087663a: 'Raw.UpdateChatParticipant',
|
|
399
|
+
0x985d3abb: 'Raw.UpdateChannelParticipant',
|
|
400
|
+
0xc4870a49: 'Raw.UpdateBotStopped',
|
|
401
|
+
0xb783982: 'Raw.UpdateGroupCallConnection',
|
|
402
|
+
0x4d712f2e: 'Raw.UpdateBotCommands',
|
|
403
|
+
0x7063c3db: 'Raw.UpdatePendingJoinRequests',
|
|
404
|
+
0x11dfa986: 'Raw.UpdateBotChatInviteRequester',
|
|
405
|
+
0x1e297bfa: 'Raw.UpdateMessageReactions',
|
|
406
|
+
0x17b7a20b: 'Raw.UpdateAttachMenuBots',
|
|
407
|
+
0x1592b79d: 'Raw.UpdateWebViewResultSent',
|
|
408
|
+
0x14b85813: 'Raw.UpdateBotMenuButton',
|
|
409
|
+
0x74d8be99: 'Raw.UpdateSavedRingtones',
|
|
410
|
+
0x84cd5a: 'Raw.UpdateTranscribedAudio',
|
|
411
|
+
0xfb4c496c: 'Raw.UpdateReadFeaturedEmojiStickers',
|
|
412
|
+
0x28373599: 'Raw.UpdateUserEmojiStatus',
|
|
413
|
+
0x30f443db: 'Raw.UpdateRecentEmojiStatuses',
|
|
414
|
+
0x6f7863f4: 'Raw.UpdateRecentReactions',
|
|
415
|
+
0x86fccf85: 'Raw.UpdateMoveStickerSetToTop',
|
|
416
|
+
0xd5a41724: 'Raw.UpdateMessageExtendedMedia',
|
|
417
|
+
0x20529438: 'Raw.UpdateUser',
|
|
418
|
+
0xec05b097: 'Raw.UpdateAutoSaveSettings',
|
|
419
|
+
0x75b3b798: 'Raw.UpdateStory',
|
|
420
|
+
0xf74e932b: 'Raw.UpdateReadStories',
|
|
421
|
+
0x1bf335b9: 'Raw.UpdateStoryID',
|
|
422
|
+
0x2c084dc1: 'Raw.UpdateStoriesStealthMode',
|
|
423
|
+
0x7d627683: 'Raw.UpdateSentStoryReaction',
|
|
424
|
+
0x904dd49c: 'Raw.UpdateBotChatBoost',
|
|
425
|
+
0x7b68920: 'Raw.UpdateChannelViewForumAsMessages',
|
|
426
|
+
0xae3f101d: 'Raw.UpdatePeerWallpaper',
|
|
427
|
+
0xac21d3ce: 'Raw.UpdateBotMessageReaction',
|
|
428
|
+
0x9cb7759: 'Raw.UpdateBotMessageReactions',
|
|
429
|
+
0xaeaf9e74: 'Raw.UpdateSavedDialogPinned',
|
|
430
|
+
0x686c85a6: 'Raw.UpdatePinnedSavedDialogs',
|
|
431
|
+
0x39c67432: 'Raw.UpdateSavedReactionTags',
|
|
432
|
+
0xf16269d4: 'Raw.UpdateSmsJob',
|
|
433
|
+
0xf9470ab2: 'Raw.UpdateQuickReplies',
|
|
434
|
+
0xf53da717: 'Raw.UpdateNewQuickReply',
|
|
435
|
+
0x53e6f1ec: 'Raw.UpdateDeleteQuickReply',
|
|
436
|
+
0x3e050d0f: 'Raw.UpdateQuickReplyMessage',
|
|
437
|
+
0x566fe7cd: 'Raw.UpdateDeleteQuickReplyMessages',
|
|
438
|
+
0x8ae5c97a: 'Raw.UpdateBotBusinessConnect',
|
|
439
|
+
0x9ddb347c: 'Raw.UpdateBotNewBusinessMessage',
|
|
440
|
+
0x7df587c: 'Raw.UpdateBotEditBusinessMessage',
|
|
441
|
+
0xa02a982e: 'Raw.UpdateBotDeleteBusinessMessage',
|
|
442
|
+
0x1824e40b: 'Raw.UpdateNewStoryReaction',
|
|
443
|
+
0x4e80a379: 'Raw.UpdateStarsBalance',
|
|
444
|
+
0x1ea2fda7: 'Raw.UpdateBusinessBotCallbackQuery',
|
|
445
|
+
0xa584b019: 'Raw.UpdateStarsRevenueStatus',
|
|
446
|
+
0x283bd312: 'Raw.UpdateBotPurchasedPaidMedia',
|
|
447
|
+
0x8b725fce: 'Raw.UpdatePaidReactionPrivacy',
|
|
448
|
+
0x504aa18f: 'Raw.UpdateSentPhoneCode',
|
|
449
|
+
0xa477288f: 'Raw.UpdateGroupCallChainBlocks',
|
|
450
|
+
0x77b0e372: 'Raw.UpdateReadMonoForumInbox',
|
|
451
|
+
0xa4a79376: 'Raw.UpdateReadMonoForumOutbox',
|
|
452
|
+
0x9f812b08: 'Raw.UpdateMonoForumNoPaidException',
|
|
453
|
+
0xd8326f0d: 'Raw.UpdateGroupCallMessage',
|
|
454
|
+
0xc957a766: 'Raw.UpdateGroupCallEncryptedMessage',
|
|
455
|
+
0x683b2c52: 'Raw.UpdatePinnedForumTopic',
|
|
456
|
+
0xdef143d0: 'Raw.UpdatePinnedForumTopics',
|
|
457
|
+
0x3e85e92c: 'Raw.UpdateDeleteGroupCallMessages',
|
|
458
|
+
0x48e246c2: 'Raw.UpdateStarGiftAuctionState',
|
|
459
|
+
0xdc58f31e: 'Raw.UpdateStarGiftAuctionUserState',
|
|
460
|
+
0xfb9c547a: 'Raw.UpdateEmojiGameInfo',
|
|
461
|
+
0xac072444: 'Raw.UpdateStarGiftCraftFail',
|
|
462
|
+
0xa56c2a3e: 'Raw.updates.State',
|
|
463
|
+
0x5d75a138: 'Raw.updates.DifferenceEmpty',
|
|
464
|
+
0xf49ca0: 'Raw.updates.Difference',
|
|
465
|
+
0xa8fb1981: 'Raw.updates.DifferenceSlice',
|
|
466
|
+
0x4afe8f6d: 'Raw.updates.DifferenceTooLong',
|
|
467
|
+
0xe317af7e: 'Raw.UpdatesTooLong',
|
|
468
|
+
0x313bc7f8: 'Raw.UpdateShortMessage',
|
|
469
|
+
0x4d6deea5: 'Raw.UpdateShortChatMessage',
|
|
470
|
+
0x78d4dec1: 'Raw.UpdateShort',
|
|
471
|
+
0x725b04c3: 'Raw.UpdatesCombined',
|
|
472
|
+
0x74ae4240: 'Raw.Updates',
|
|
473
|
+
0x9015e101: 'Raw.UpdateShortSentMessage',
|
|
474
|
+
0x8dca6aa5: 'Raw.photos.Photos',
|
|
475
|
+
0x15051f54: 'Raw.photos.PhotosSlice',
|
|
476
|
+
0x20212ca8: 'Raw.photos.Photo',
|
|
477
|
+
0x96a18d5: 'Raw.upload.File',
|
|
478
|
+
0xf18cda44: 'Raw.upload.FileCdnRedirect',
|
|
479
|
+
0x18b7a10d: 'Raw.DcOption',
|
|
480
|
+
0xcc1a241e: 'Raw.Config',
|
|
481
|
+
0x8e1a1775: 'Raw.NearestDc',
|
|
482
|
+
0xccbbce30: 'Raw.help.AppUpdate',
|
|
483
|
+
0xc45a6536: 'Raw.help.NoAppUpdate',
|
|
484
|
+
0x18cb9f78: 'Raw.help.InviteText',
|
|
485
|
+
0xab7ec0a0: 'Raw.EncryptedChatEmpty',
|
|
486
|
+
0x66b25953: 'Raw.EncryptedChatWaiting',
|
|
487
|
+
0x48f1d94c: 'Raw.EncryptedChatRequested',
|
|
488
|
+
0x61f0d4c7: 'Raw.EncryptedChat',
|
|
489
|
+
0x1e1c7c45: 'Raw.EncryptedChatDiscarded',
|
|
490
|
+
0xf141b5e1: 'Raw.InputEncryptedChat',
|
|
491
|
+
0xc21f497e: 'Raw.EncryptedFileEmpty',
|
|
492
|
+
0xa8008cd8: 'Raw.EncryptedFile',
|
|
493
|
+
0x1837c364: 'Raw.InputEncryptedFileEmpty',
|
|
494
|
+
0x64bd0306: 'Raw.InputEncryptedFileUploaded',
|
|
495
|
+
0x5a17b5e5: 'Raw.InputEncryptedFile',
|
|
496
|
+
0x2dc173c8: 'Raw.InputEncryptedFileBigUploaded',
|
|
497
|
+
0xed18c118: 'Raw.EncryptedMessage',
|
|
498
|
+
0x23734b06: 'Raw.EncryptedMessageService',
|
|
499
|
+
0xc0e24635: 'Raw.messages.DhConfigNotModified',
|
|
500
|
+
0x2c221edd: 'Raw.messages.DhConfig',
|
|
501
|
+
0x560f8935: 'Raw.messages.SentEncryptedMessage',
|
|
502
|
+
0x9493ff32: 'Raw.messages.SentEncryptedFile',
|
|
503
|
+
0x72f0eaae: 'Raw.InputDocumentEmpty',
|
|
504
|
+
0x1abfb575: 'Raw.InputDocument',
|
|
505
|
+
0x36f8c871: 'Raw.DocumentEmpty',
|
|
506
|
+
0x8fd4c4d8: 'Raw.Document',
|
|
507
|
+
0x17c6b5f6: 'Raw.help.Support',
|
|
508
|
+
0x9fd40bd8: 'Raw.NotifyPeer',
|
|
509
|
+
0xb4c83b4c: 'Raw.NotifyUsers',
|
|
510
|
+
0xc007cec3: 'Raw.NotifyChats',
|
|
511
|
+
0xd612e8ef: 'Raw.NotifyBroadcasts',
|
|
512
|
+
0x226e6308: 'Raw.NotifyForumTopic',
|
|
513
|
+
0x16bf744e: 'Raw.SendMessageTypingAction',
|
|
514
|
+
0xfd5ec8f5: 'Raw.SendMessageCancelAction',
|
|
515
|
+
0xa187d66f: 'Raw.SendMessageRecordVideoAction',
|
|
516
|
+
0xe9763aec: 'Raw.SendMessageUploadVideoAction',
|
|
517
|
+
0xd52f73f7: 'Raw.SendMessageRecordAudioAction',
|
|
518
|
+
0xf351d7ab: 'Raw.SendMessageUploadAudioAction',
|
|
519
|
+
0xd1d34a26: 'Raw.SendMessageUploadPhotoAction',
|
|
520
|
+
0xaa0cd9e4: 'Raw.SendMessageUploadDocumentAction',
|
|
521
|
+
0x176f8ba1: 'Raw.SendMessageGeoLocationAction',
|
|
522
|
+
0x628cbc6f: 'Raw.SendMessageChooseContactAction',
|
|
523
|
+
0xdd6a8f48: 'Raw.SendMessageGamePlayAction',
|
|
524
|
+
0x88f27fbc: 'Raw.SendMessageRecordRoundAction',
|
|
525
|
+
0x243e1c66: 'Raw.SendMessageUploadRoundAction',
|
|
526
|
+
0xd92c2285: 'Raw.SpeakingInGroupCallAction',
|
|
527
|
+
0xdbda9246: 'Raw.SendMessageHistoryImportAction',
|
|
528
|
+
0xb05ac6b1: 'Raw.SendMessageChooseStickerAction',
|
|
529
|
+
0x25972bcb: 'Raw.SendMessageEmojiInteraction',
|
|
530
|
+
0xb665902e: 'Raw.SendMessageEmojiInteractionSeen',
|
|
531
|
+
0x376d975c: 'Raw.SendMessageTextDraftAction',
|
|
532
|
+
0xb3134d9d: 'Raw.contacts.Found',
|
|
533
|
+
0x4f96cb18: 'Raw.InputPrivacyKeyStatusTimestamp',
|
|
534
|
+
0xbdfb0426: 'Raw.InputPrivacyKeyChatInvite',
|
|
535
|
+
0xfabadc5f: 'Raw.InputPrivacyKeyPhoneCall',
|
|
536
|
+
0xdb9e70d2: 'Raw.InputPrivacyKeyPhoneP2P',
|
|
537
|
+
0xa4dd4c08: 'Raw.InputPrivacyKeyForwards',
|
|
538
|
+
0x5719bacc: 'Raw.InputPrivacyKeyProfilePhoto',
|
|
539
|
+
0x352dafa: 'Raw.InputPrivacyKeyPhoneNumber',
|
|
540
|
+
0xd1219bdd: 'Raw.InputPrivacyKeyAddedByPhone',
|
|
541
|
+
0xaee69d68: 'Raw.InputPrivacyKeyVoiceMessages',
|
|
542
|
+
0x3823cc40: 'Raw.InputPrivacyKeyAbout',
|
|
543
|
+
0xd65a11cc: 'Raw.InputPrivacyKeyBirthday',
|
|
544
|
+
0xe1732341: 'Raw.InputPrivacyKeyStarGiftsAutoSave',
|
|
545
|
+
0xbdc597b4: 'Raw.InputPrivacyKeyNoPaidMessages',
|
|
546
|
+
0x4dbe9226: 'Raw.InputPrivacyKeySavedMusic',
|
|
547
|
+
0xbc2eab30: 'Raw.PrivacyKeyStatusTimestamp',
|
|
548
|
+
0x500e6dfa: 'Raw.PrivacyKeyChatInvite',
|
|
549
|
+
0x3d662b7b: 'Raw.PrivacyKeyPhoneCall',
|
|
550
|
+
0x39491cc8: 'Raw.PrivacyKeyPhoneP2P',
|
|
551
|
+
0x69ec56a3: 'Raw.PrivacyKeyForwards',
|
|
552
|
+
0x96151fed: 'Raw.PrivacyKeyProfilePhoto',
|
|
553
|
+
0xd19ae46d: 'Raw.PrivacyKeyPhoneNumber',
|
|
554
|
+
0x42ffd42b: 'Raw.PrivacyKeyAddedByPhone',
|
|
555
|
+
0x697f414: 'Raw.PrivacyKeyVoiceMessages',
|
|
556
|
+
0xa486b761: 'Raw.PrivacyKeyAbout',
|
|
557
|
+
0x2000a518: 'Raw.PrivacyKeyBirthday',
|
|
558
|
+
0x2ca4fdf8: 'Raw.PrivacyKeyStarGiftsAutoSave',
|
|
559
|
+
0x17d348d2: 'Raw.PrivacyKeyNoPaidMessages',
|
|
560
|
+
0xff7a571b: 'Raw.PrivacyKeySavedMusic',
|
|
561
|
+
0xd09e07b: 'Raw.InputPrivacyValueAllowContacts',
|
|
562
|
+
0x184b35ce: 'Raw.InputPrivacyValueAllowAll',
|
|
563
|
+
0x131cc67f: 'Raw.InputPrivacyValueAllowUsers',
|
|
564
|
+
0xba52007: 'Raw.InputPrivacyValueDisallowContacts',
|
|
565
|
+
0xd66b66c9: 'Raw.InputPrivacyValueDisallowAll',
|
|
566
|
+
0x90110467: 'Raw.InputPrivacyValueDisallowUsers',
|
|
567
|
+
0x840649cf: 'Raw.InputPrivacyValueAllowChatParticipants',
|
|
568
|
+
0xe94f0f86: 'Raw.InputPrivacyValueDisallowChatParticipants',
|
|
569
|
+
0x2f453e49: 'Raw.InputPrivacyValueAllowCloseFriends',
|
|
570
|
+
0x77cdc9f1: 'Raw.InputPrivacyValueAllowPremium',
|
|
571
|
+
0x5a4fcce5: 'Raw.InputPrivacyValueAllowBots',
|
|
572
|
+
0xc4e57915: 'Raw.InputPrivacyValueDisallowBots',
|
|
573
|
+
0xfffe1bac: 'Raw.PrivacyValueAllowContacts',
|
|
574
|
+
0x65427b82: 'Raw.PrivacyValueAllowAll',
|
|
575
|
+
0xb8905fb2: 'Raw.PrivacyValueAllowUsers',
|
|
576
|
+
0xf888fa1a: 'Raw.PrivacyValueDisallowContacts',
|
|
577
|
+
0x8b73e763: 'Raw.PrivacyValueDisallowAll',
|
|
578
|
+
0xe4621141: 'Raw.PrivacyValueDisallowUsers',
|
|
579
|
+
0x6b134e8e: 'Raw.PrivacyValueAllowChatParticipants',
|
|
580
|
+
0x41c87565: 'Raw.PrivacyValueDisallowChatParticipants',
|
|
581
|
+
0xf7e8d89b: 'Raw.PrivacyValueAllowCloseFriends',
|
|
582
|
+
0xece9814b: 'Raw.PrivacyValueAllowPremium',
|
|
583
|
+
0x21461b5d: 'Raw.PrivacyValueAllowBots',
|
|
584
|
+
0xf6a5f82f: 'Raw.PrivacyValueDisallowBots',
|
|
585
|
+
0x50a04e45: 'Raw.account.PrivacyRules',
|
|
586
|
+
0xb8d0afdf: 'Raw.AccountDaysTTL',
|
|
587
|
+
0x6c37c15c: 'Raw.DocumentAttributeImageSize',
|
|
588
|
+
0x11b58939: 'Raw.DocumentAttributeAnimated',
|
|
589
|
+
0x6319d612: 'Raw.DocumentAttributeSticker',
|
|
590
|
+
0x43c57c48: 'Raw.DocumentAttributeVideo',
|
|
591
|
+
0x9852f9c6: 'Raw.DocumentAttributeAudio',
|
|
592
|
+
0x15590068: 'Raw.DocumentAttributeFilename',
|
|
593
|
+
0x9801d2f7: 'Raw.DocumentAttributeHasStickers',
|
|
594
|
+
0xfd149899: 'Raw.DocumentAttributeCustomEmoji',
|
|
595
|
+
0xf1749a22: 'Raw.messages.StickersNotModified',
|
|
596
|
+
0x30a6ec7e: 'Raw.messages.Stickers',
|
|
597
|
+
0x12b299d4: 'Raw.StickerPack',
|
|
598
|
+
0xe86602c3: 'Raw.messages.AllStickersNotModified',
|
|
599
|
+
0xcdbbcebb: 'Raw.messages.AllStickers',
|
|
600
|
+
0x84d19185: 'Raw.messages.AffectedMessages',
|
|
601
|
+
0x211a1788: 'Raw.WebPageEmpty',
|
|
602
|
+
0xb0d13e47: 'Raw.WebPagePending',
|
|
603
|
+
0xe89c45b2: 'Raw.WebPage',
|
|
604
|
+
0x7311ca11: 'Raw.WebPageNotModified',
|
|
605
|
+
0xad01d61d: 'Raw.Authorization',
|
|
606
|
+
0x4bff8ea0: 'Raw.account.Authorizations',
|
|
607
|
+
0x957b50fb: 'Raw.account.Password',
|
|
608
|
+
0x9a5c33e5: 'Raw.account.PasswordSettings',
|
|
609
|
+
0xc23727c9: 'Raw.account.PasswordInputSettings',
|
|
610
|
+
0x137948a5: 'Raw.auth.PasswordRecovery',
|
|
611
|
+
0xa384b779: 'Raw.ReceivedNotifyMessage',
|
|
612
|
+
0xa22cbd96: 'Raw.ChatInviteExported',
|
|
613
|
+
0xed107ab7: 'Raw.ChatInvitePublicJoinRequests',
|
|
614
|
+
0x5a686d7c: 'Raw.ChatInviteAlready',
|
|
615
|
+
0x5c9d3702: 'Raw.ChatInvite',
|
|
616
|
+
0x61695cb0: 'Raw.ChatInvitePeek',
|
|
617
|
+
0xffb62b95: 'Raw.InputStickerSetEmpty',
|
|
618
|
+
0x9de7a269: 'Raw.InputStickerSetID',
|
|
619
|
+
0x861cc8a0: 'Raw.InputStickerSetShortName',
|
|
620
|
+
0x28703c8: 'Raw.InputStickerSetAnimatedEmoji',
|
|
621
|
+
0xe67f520e: 'Raw.InputStickerSetDice',
|
|
622
|
+
0xcde3739: 'Raw.InputStickerSetAnimatedEmojiAnimations',
|
|
623
|
+
0xc88b3b02: 'Raw.InputStickerSetPremiumGifts',
|
|
624
|
+
0x4c4d4ce: 'Raw.InputStickerSetEmojiGenericAnimations',
|
|
625
|
+
0x29d0f5ee: 'Raw.InputStickerSetEmojiDefaultStatuses',
|
|
626
|
+
0x44c1f8e9: 'Raw.InputStickerSetEmojiDefaultTopicIcons',
|
|
627
|
+
0x49748553: 'Raw.InputStickerSetEmojiChannelDefaultStatuses',
|
|
628
|
+
0x1cf671a0: 'Raw.InputStickerSetTonGifts',
|
|
629
|
+
0x2dd14edc: 'Raw.StickerSet',
|
|
630
|
+
0x6e153f16: 'Raw.messages.StickerSet',
|
|
631
|
+
0xd3f924eb: 'Raw.messages.StickerSetNotModified',
|
|
632
|
+
0xc27ac8c7: 'Raw.BotCommand',
|
|
633
|
+
0x4d8a0299: 'Raw.BotInfo',
|
|
634
|
+
0x7d170cff: 'Raw.KeyboardButton',
|
|
635
|
+
0xd80c25ec: 'Raw.KeyboardButtonUrl',
|
|
636
|
+
0xe62bc960: 'Raw.KeyboardButtonCallback',
|
|
637
|
+
0x417efd8f: 'Raw.KeyboardButtonRequestPhone',
|
|
638
|
+
0xaa40f94d: 'Raw.KeyboardButtonRequestGeoLocation',
|
|
639
|
+
0x991399fc: 'Raw.KeyboardButtonSwitchInline',
|
|
640
|
+
0x89c590f9: 'Raw.KeyboardButtonGame',
|
|
641
|
+
0x3fa53905: 'Raw.KeyboardButtonBuy',
|
|
642
|
+
0xf51006f9: 'Raw.KeyboardButtonUrlAuth',
|
|
643
|
+
0x68013e72: 'Raw.InputKeyboardButtonUrlAuth',
|
|
644
|
+
0x7a11d782: 'Raw.KeyboardButtonRequestPoll',
|
|
645
|
+
0x7d5e07c7: 'Raw.InputKeyboardButtonUserProfile',
|
|
646
|
+
0xc0fd5d09: 'Raw.KeyboardButtonUserProfile',
|
|
647
|
+
0xe846b1a0: 'Raw.KeyboardButtonWebView',
|
|
648
|
+
0xe15c4370: 'Raw.KeyboardButtonSimpleWebView',
|
|
649
|
+
0x5b0f15f5: 'Raw.KeyboardButtonRequestPeer',
|
|
650
|
+
0x2b78156: 'Raw.InputKeyboardButtonRequestPeer',
|
|
651
|
+
0xbcc4af10: 'Raw.KeyboardButtonCopy',
|
|
652
|
+
0x77608b83: 'Raw.KeyboardButtonRow',
|
|
653
|
+
0xa03e5b85: 'Raw.ReplyKeyboardHide',
|
|
654
|
+
0x86b40b08: 'Raw.ReplyKeyboardForceReply',
|
|
655
|
+
0x85dd99d1: 'Raw.ReplyKeyboardMarkup',
|
|
656
|
+
0x48a30254: 'Raw.ReplyInlineMarkup',
|
|
657
|
+
0xbb92ba95: 'Raw.MessageEntityUnknown',
|
|
658
|
+
0xfa04579d: 'Raw.MessageEntityMention',
|
|
659
|
+
0x6f635b0d: 'Raw.MessageEntityHashtag',
|
|
660
|
+
0x6cef8ac7: 'Raw.MessageEntityBotCommand',
|
|
661
|
+
0x6ed02538: 'Raw.MessageEntityUrl',
|
|
662
|
+
0x64e475c2: 'Raw.MessageEntityEmail',
|
|
663
|
+
0xbd610bc9: 'Raw.MessageEntityBold',
|
|
664
|
+
0x826f8b60: 'Raw.MessageEntityItalic',
|
|
665
|
+
0x28a20571: 'Raw.MessageEntityCode',
|
|
666
|
+
0x73924be0: 'Raw.MessageEntityPre',
|
|
667
|
+
0x76a6d327: 'Raw.MessageEntityTextUrl',
|
|
668
|
+
0xdc7b1140: 'Raw.MessageEntityMentionName',
|
|
669
|
+
0x208e68c9: 'Raw.InputMessageEntityMentionName',
|
|
670
|
+
0x9b69e34b: 'Raw.MessageEntityPhone',
|
|
671
|
+
0x4c4e743f: 'Raw.MessageEntityCashtag',
|
|
672
|
+
0x9c4e7e8b: 'Raw.MessageEntityUnderline',
|
|
673
|
+
0xbf0693d4: 'Raw.MessageEntityStrike',
|
|
674
|
+
0x761e6af4: 'Raw.MessageEntityBankCard',
|
|
675
|
+
0x32ca960f: 'Raw.MessageEntitySpoiler',
|
|
676
|
+
0xc8cf05f8: 'Raw.MessageEntityCustomEmoji',
|
|
677
|
+
0xf1ccaaac: 'Raw.MessageEntityBlockquote',
|
|
678
|
+
0xee8c1e86: 'Raw.InputChannelEmpty',
|
|
679
|
+
0xf35aec28: 'Raw.InputChannel',
|
|
680
|
+
0x5b934f9d: 'Raw.InputChannelFromMessage',
|
|
681
|
+
0x7f077ad9: 'Raw.contacts.ResolvedPeer',
|
|
682
|
+
0xae30253: 'Raw.MessageRange',
|
|
683
|
+
0x3e11affb: 'Raw.updates.ChannelDifferenceEmpty',
|
|
684
|
+
0xa4bcc6fe: 'Raw.updates.ChannelDifferenceTooLong',
|
|
685
|
+
0x2064674e: 'Raw.updates.ChannelDifference',
|
|
686
|
+
0x94d42ee7: 'Raw.ChannelMessagesFilterEmpty',
|
|
687
|
+
0xcd77d957: 'Raw.ChannelMessagesFilter',
|
|
688
|
+
0xcb397619: 'Raw.ChannelParticipant',
|
|
689
|
+
0x4f607bef: 'Raw.ChannelParticipantSelf',
|
|
690
|
+
0x2fe601d3: 'Raw.ChannelParticipantCreator',
|
|
691
|
+
0x34c3bb53: 'Raw.ChannelParticipantAdmin',
|
|
692
|
+
0x6df8014e: 'Raw.ChannelParticipantBanned',
|
|
693
|
+
0x1b03f006: 'Raw.ChannelParticipantLeft',
|
|
694
|
+
0xde3f3c79: 'Raw.ChannelParticipantsRecent',
|
|
695
|
+
0xb4608969: 'Raw.ChannelParticipantsAdmins',
|
|
696
|
+
0xa3b54985: 'Raw.ChannelParticipantsKicked',
|
|
697
|
+
0xb0d1865b: 'Raw.ChannelParticipantsBots',
|
|
698
|
+
0x1427a5e1: 'Raw.ChannelParticipantsBanned',
|
|
699
|
+
0x656ac4b: 'Raw.ChannelParticipantsSearch',
|
|
700
|
+
0xbb6ae88d: 'Raw.ChannelParticipantsContacts',
|
|
701
|
+
0xe04b5ceb: 'Raw.ChannelParticipantsMentions',
|
|
702
|
+
0x9ab0feaf: 'Raw.channels.ChannelParticipants',
|
|
703
|
+
0xf0173fe9: 'Raw.channels.ChannelParticipantsNotModified',
|
|
704
|
+
0xdfb80317: 'Raw.channels.ChannelParticipant',
|
|
705
|
+
0x780a0310: 'Raw.help.TermsOfService',
|
|
706
|
+
0xe8025ca2: 'Raw.messages.SavedGifsNotModified',
|
|
707
|
+
0x84a02a0d: 'Raw.messages.SavedGifs',
|
|
708
|
+
0x3380c786: 'Raw.InputBotInlineMessageMediaAuto',
|
|
709
|
+
0x3dcd7a87: 'Raw.InputBotInlineMessageText',
|
|
710
|
+
0x96929a85: 'Raw.InputBotInlineMessageMediaGeo',
|
|
711
|
+
0x417bbf11: 'Raw.InputBotInlineMessageMediaVenue',
|
|
712
|
+
0xa6edbffd: 'Raw.InputBotInlineMessageMediaContact',
|
|
713
|
+
0x4b425864: 'Raw.InputBotInlineMessageGame',
|
|
714
|
+
0xd7e78225: 'Raw.InputBotInlineMessageMediaInvoice',
|
|
715
|
+
0xbddcc510: 'Raw.InputBotInlineMessageMediaWebPage',
|
|
716
|
+
0x88bf9319: 'Raw.InputBotInlineResult',
|
|
717
|
+
0xa8d864a7: 'Raw.InputBotInlineResultPhoto',
|
|
718
|
+
0xfff8fdc4: 'Raw.InputBotInlineResultDocument',
|
|
719
|
+
0x4fa417f2: 'Raw.InputBotInlineResultGame',
|
|
720
|
+
0x764cf810: 'Raw.BotInlineMessageMediaAuto',
|
|
721
|
+
0x8c7f65e2: 'Raw.BotInlineMessageText',
|
|
722
|
+
0x51846fd: 'Raw.BotInlineMessageMediaGeo',
|
|
723
|
+
0x8a86659c: 'Raw.BotInlineMessageMediaVenue',
|
|
724
|
+
0x18d1cdc2: 'Raw.BotInlineMessageMediaContact',
|
|
725
|
+
0x354a9b09: 'Raw.BotInlineMessageMediaInvoice',
|
|
726
|
+
0x809ad9a6: 'Raw.BotInlineMessageMediaWebPage',
|
|
727
|
+
0x11965f3a: 'Raw.BotInlineResult',
|
|
728
|
+
0x17db940b: 'Raw.BotInlineMediaResult',
|
|
729
|
+
0xe021f2f6: 'Raw.messages.BotResults',
|
|
730
|
+
0x5dab1af4: 'Raw.ExportedMessageLink',
|
|
731
|
+
0x4e4df4bb: 'Raw.MessageFwdHeader',
|
|
732
|
+
0x72a3158c: 'Raw.auth.CodeTypeSms',
|
|
733
|
+
0x741cd3e3: 'Raw.auth.CodeTypeCall',
|
|
734
|
+
0x226ccefb: 'Raw.auth.CodeTypeFlashCall',
|
|
735
|
+
0xd61ad6ee: 'Raw.auth.CodeTypeMissedCall',
|
|
736
|
+
0x6ed998c: 'Raw.auth.CodeTypeFragmentSms',
|
|
737
|
+
0x3dbb5986: 'Raw.auth.SentCodeTypeApp',
|
|
738
|
+
0xc000bba2: 'Raw.auth.SentCodeTypeSms',
|
|
739
|
+
0x5353e5a7: 'Raw.auth.SentCodeTypeCall',
|
|
740
|
+
0xab03c6d9: 'Raw.auth.SentCodeTypeFlashCall',
|
|
741
|
+
0x82006484: 'Raw.auth.SentCodeTypeMissedCall',
|
|
742
|
+
0xf450f59b: 'Raw.auth.SentCodeTypeEmailCode',
|
|
743
|
+
0xa5491dea: 'Raw.auth.SentCodeTypeSetUpEmailRequired',
|
|
744
|
+
0xd9565c39: 'Raw.auth.SentCodeTypeFragmentSms',
|
|
745
|
+
0x9fd736: 'Raw.auth.SentCodeTypeFirebaseSms',
|
|
746
|
+
0xa416ac81: 'Raw.auth.SentCodeTypeSmsWord',
|
|
747
|
+
0xb37794af: 'Raw.auth.SentCodeTypeSmsPhrase',
|
|
748
|
+
0x36585ea4: 'Raw.messages.BotCallbackAnswer',
|
|
749
|
+
0x26b5dde6: 'Raw.messages.MessageEditData',
|
|
750
|
+
0x890c3d89: 'Raw.InputBotInlineMessageID',
|
|
751
|
+
0xb6d915d7: 'Raw.InputBotInlineMessageID64',
|
|
752
|
+
0x3c20629f: 'Raw.InlineBotSwitchPM',
|
|
753
|
+
0x3371c354: 'Raw.messages.PeerDialogs',
|
|
754
|
+
0xedcdc05b: 'Raw.TopPeer',
|
|
755
|
+
0xab661b5b: 'Raw.TopPeerCategoryBotsPM',
|
|
756
|
+
0x148677e2: 'Raw.TopPeerCategoryBotsInline',
|
|
757
|
+
0x637b7ed: 'Raw.TopPeerCategoryCorrespondents',
|
|
758
|
+
0xbd17a14a: 'Raw.TopPeerCategoryGroups',
|
|
759
|
+
0x161d9628: 'Raw.TopPeerCategoryChannels',
|
|
760
|
+
0x1e76a78c: 'Raw.TopPeerCategoryPhoneCalls',
|
|
761
|
+
0xa8406ca9: 'Raw.TopPeerCategoryForwardUsers',
|
|
762
|
+
0xfbeec0f0: 'Raw.TopPeerCategoryForwardChats',
|
|
763
|
+
0xfd9e7bec: 'Raw.TopPeerCategoryBotsApp',
|
|
764
|
+
0xfb834291: 'Raw.TopPeerCategoryPeers',
|
|
765
|
+
0xde266ef5: 'Raw.contacts.TopPeersNotModified',
|
|
766
|
+
0x70b772a8: 'Raw.contacts.TopPeers',
|
|
767
|
+
0xb52c939d: 'Raw.contacts.TopPeersDisabled',
|
|
768
|
+
0x1b0c841a: 'Raw.DraftMessageEmpty',
|
|
769
|
+
0x96eaa5eb: 'Raw.DraftMessage',
|
|
770
|
+
0xc6dc0c66: 'Raw.messages.FeaturedStickersNotModified',
|
|
771
|
+
0xbe382906: 'Raw.messages.FeaturedStickers',
|
|
772
|
+
0xb17f890: 'Raw.messages.RecentStickersNotModified',
|
|
773
|
+
0x88d37c56: 'Raw.messages.RecentStickers',
|
|
774
|
+
0x4fcba9c8: 'Raw.messages.ArchivedStickers',
|
|
775
|
+
0x38641628: 'Raw.messages.StickerSetInstallResultSuccess',
|
|
776
|
+
0x35e410a8: 'Raw.messages.StickerSetInstallResultArchive',
|
|
777
|
+
0x6410a5d2: 'Raw.StickerSetCovered',
|
|
778
|
+
0x3407e51b: 'Raw.StickerSetMultiCovered',
|
|
779
|
+
0x40d13c0e: 'Raw.StickerSetFullCovered',
|
|
780
|
+
0x77b15d1c: 'Raw.StickerSetNoCovered',
|
|
781
|
+
0xaed6dbb2: 'Raw.MaskCoords',
|
|
782
|
+
0x4a992157: 'Raw.InputStickeredMediaPhoto',
|
|
783
|
+
0x438865b: 'Raw.InputStickeredMediaDocument',
|
|
784
|
+
0xbdf9653b: 'Raw.Game',
|
|
785
|
+
0x32c3e77: 'Raw.InputGameID',
|
|
786
|
+
0xc331e80a: 'Raw.InputGameShortName',
|
|
787
|
+
0x73a379eb: 'Raw.HighScore',
|
|
788
|
+
0x9a3bfd99: 'Raw.messages.HighScores',
|
|
789
|
+
0xdc3d824f: 'Raw.TextEmpty',
|
|
790
|
+
0x744694e0: 'Raw.TextPlain',
|
|
791
|
+
0x6724abc4: 'Raw.TextBold',
|
|
792
|
+
0xd912a59c: 'Raw.TextItalic',
|
|
793
|
+
0xc12622c4: 'Raw.TextUnderline',
|
|
794
|
+
0x9bf8bb95: 'Raw.TextStrike',
|
|
795
|
+
0x6c3f19b9: 'Raw.TextFixed',
|
|
796
|
+
0x3c2884c1: 'Raw.TextUrl',
|
|
797
|
+
0xde5a0dd6: 'Raw.TextEmail',
|
|
798
|
+
0x7e6260d7: 'Raw.TextConcat',
|
|
799
|
+
0xed6a8504: 'Raw.TextSubscript',
|
|
800
|
+
0xc7fb5e01: 'Raw.TextSuperscript',
|
|
801
|
+
0x34b8621: 'Raw.TextMarked',
|
|
802
|
+
0x1ccb966a: 'Raw.TextPhone',
|
|
803
|
+
0x81ccf4f: 'Raw.TextImage',
|
|
804
|
+
0x35553762: 'Raw.TextAnchor',
|
|
805
|
+
0x13567e8a: 'Raw.PageBlockUnsupported',
|
|
806
|
+
0x70abc3fd: 'Raw.PageBlockTitle',
|
|
807
|
+
0x8ffa9a1f: 'Raw.PageBlockSubtitle',
|
|
808
|
+
0xbaafe5e0: 'Raw.PageBlockAuthorDate',
|
|
809
|
+
0xbfd064ec: 'Raw.PageBlockHeader',
|
|
810
|
+
0xf12bb6e1: 'Raw.PageBlockSubheader',
|
|
811
|
+
0x467a0766: 'Raw.PageBlockParagraph',
|
|
812
|
+
0xc070d93e: 'Raw.PageBlockPreformatted',
|
|
813
|
+
0x48870999: 'Raw.PageBlockFooter',
|
|
814
|
+
0xdb20b188: 'Raw.PageBlockDivider',
|
|
815
|
+
0xce0d37b0: 'Raw.PageBlockAnchor',
|
|
816
|
+
0xe4e88011: 'Raw.PageBlockList',
|
|
817
|
+
0x263d7c26: 'Raw.PageBlockBlockquote',
|
|
818
|
+
0x4f4456d3: 'Raw.PageBlockPullquote',
|
|
819
|
+
0x1759c560: 'Raw.PageBlockPhoto',
|
|
820
|
+
0x7c8fe7b6: 'Raw.PageBlockVideo',
|
|
821
|
+
0x39f23300: 'Raw.PageBlockCover',
|
|
822
|
+
0xa8718dc5: 'Raw.PageBlockEmbed',
|
|
823
|
+
0xf259a80b: 'Raw.PageBlockEmbedPost',
|
|
824
|
+
0x65a0fa4d: 'Raw.PageBlockCollage',
|
|
825
|
+
0x31f9590: 'Raw.PageBlockSlideshow',
|
|
826
|
+
0xef1751b5: 'Raw.PageBlockChannel',
|
|
827
|
+
0x804361ea: 'Raw.PageBlockAudio',
|
|
828
|
+
0x1e148390: 'Raw.PageBlockKicker',
|
|
829
|
+
0xbf4dea82: 'Raw.PageBlockTable',
|
|
830
|
+
0x9a8ae1e1: 'Raw.PageBlockOrderedList',
|
|
831
|
+
0x76768bed: 'Raw.PageBlockDetails',
|
|
832
|
+
0x16115a96: 'Raw.PageBlockRelatedArticles',
|
|
833
|
+
0xa44f3ef6: 'Raw.PageBlockMap',
|
|
834
|
+
0x85e42301: 'Raw.PhoneCallDiscardReasonMissed',
|
|
835
|
+
0xe095c1a0: 'Raw.PhoneCallDiscardReasonDisconnect',
|
|
836
|
+
0x57adc690: 'Raw.PhoneCallDiscardReasonHangup',
|
|
837
|
+
0xfaf7e8c9: 'Raw.PhoneCallDiscardReasonBusy',
|
|
838
|
+
0x9fbbf1f7: 'Raw.PhoneCallDiscardReasonMigrateConferenceCall',
|
|
839
|
+
0x7d748d04: 'Raw.DataJSON',
|
|
840
|
+
0xcb296bf8: 'Raw.LabeledPrice',
|
|
841
|
+
0x49ee584: 'Raw.Invoice',
|
|
842
|
+
0xea02c27e: 'Raw.PaymentCharge',
|
|
843
|
+
0x1e8caaeb: 'Raw.PostAddress',
|
|
844
|
+
0x909c3f94: 'Raw.PaymentRequestedInfo',
|
|
845
|
+
0xcdc27a1f: 'Raw.PaymentSavedCredentialsCard',
|
|
846
|
+
0x1c570ed1: 'Raw.WebDocument',
|
|
847
|
+
0xf9c8bcc6: 'Raw.WebDocumentNoProxy',
|
|
848
|
+
0x9bed434d: 'Raw.InputWebDocument',
|
|
849
|
+
0xc239d686: 'Raw.InputWebFileLocation',
|
|
850
|
+
0x9f2221c9: 'Raw.InputWebFileGeoPointLocation',
|
|
851
|
+
0xf46fe924: 'Raw.InputWebFileAudioAlbumThumbLocation',
|
|
852
|
+
0x21e753bc: 'Raw.upload.WebFile',
|
|
853
|
+
0xa0058751: 'Raw.payments.PaymentForm',
|
|
854
|
+
0x7bf6b15c: 'Raw.payments.PaymentFormStars',
|
|
855
|
+
0xb425cfe1: 'Raw.payments.PaymentFormStarGift',
|
|
856
|
+
0xd1451883: 'Raw.payments.ValidatedRequestedInfo',
|
|
857
|
+
0x4e5f810d: 'Raw.payments.PaymentResult',
|
|
858
|
+
0xd8411139: 'Raw.payments.PaymentVerificationNeeded',
|
|
859
|
+
0x70c4fe03: 'Raw.payments.PaymentReceipt',
|
|
860
|
+
0xdabbf83a: 'Raw.payments.PaymentReceiptStars',
|
|
861
|
+
0xfb8fe43c: 'Raw.payments.SavedInfo',
|
|
862
|
+
0xc10eb2cf: 'Raw.InputPaymentCredentialsSaved',
|
|
863
|
+
0x3417d728: 'Raw.InputPaymentCredentials',
|
|
864
|
+
0xaa1c39f: 'Raw.InputPaymentCredentialsApplePay',
|
|
865
|
+
0x8ac32801: 'Raw.InputPaymentCredentialsGooglePay',
|
|
866
|
+
0xdb64fd34: 'Raw.account.TmpPassword',
|
|
867
|
+
0xb6213cdf: 'Raw.ShippingOption',
|
|
868
|
+
0x32da9e9c: 'Raw.InputStickerSetItem',
|
|
869
|
+
0x1e36fded: 'Raw.InputPhoneCall',
|
|
870
|
+
0x5366c915: 'Raw.PhoneCallEmpty',
|
|
871
|
+
0xc5226f17: 'Raw.PhoneCallWaiting',
|
|
872
|
+
0x14b0ed0c: 'Raw.PhoneCallRequested',
|
|
873
|
+
0x3660c311: 'Raw.PhoneCallAccepted',
|
|
874
|
+
0x30535af5: 'Raw.PhoneCall',
|
|
875
|
+
0x50ca4de1: 'Raw.PhoneCallDiscarded',
|
|
876
|
+
0x9cc123c7: 'Raw.PhoneConnection',
|
|
877
|
+
0x635fe375: 'Raw.PhoneConnectionWebrtc',
|
|
878
|
+
0xfc878fc8: 'Raw.PhoneCallProtocol',
|
|
879
|
+
0xec82e140: 'Raw.phone.PhoneCall',
|
|
880
|
+
0xeea8e46e: 'Raw.upload.CdnFileReuploadNeeded',
|
|
881
|
+
0xa99fca4f: 'Raw.upload.CdnFile',
|
|
882
|
+
0xc982eaba: 'Raw.CdnPublicKey',
|
|
883
|
+
0x5725e40a: 'Raw.CdnConfig',
|
|
884
|
+
0xcad181f6: 'Raw.LangPackString',
|
|
885
|
+
0x6c47ac9f: 'Raw.LangPackStringPluralized',
|
|
886
|
+
0x2979eeb2: 'Raw.LangPackStringDeleted',
|
|
887
|
+
0xf385c1f6: 'Raw.LangPackDifference',
|
|
888
|
+
0xeeca5ce3: 'Raw.LangPackLanguage',
|
|
889
|
+
0xe6dfb825: 'Raw.ChannelAdminLogEventActionChangeTitle',
|
|
890
|
+
0x55188a2e: 'Raw.ChannelAdminLogEventActionChangeAbout',
|
|
891
|
+
0x6a4afc38: 'Raw.ChannelAdminLogEventActionChangeUsername',
|
|
892
|
+
0x434bd2af: 'Raw.ChannelAdminLogEventActionChangePhoto',
|
|
893
|
+
0x1b7907ae: 'Raw.ChannelAdminLogEventActionToggleInvites',
|
|
894
|
+
0x26ae0971: 'Raw.ChannelAdminLogEventActionToggleSignatures',
|
|
895
|
+
0xe9e82c18: 'Raw.ChannelAdminLogEventActionUpdatePinned',
|
|
896
|
+
0x709b2405: 'Raw.ChannelAdminLogEventActionEditMessage',
|
|
897
|
+
0x42e047bb: 'Raw.ChannelAdminLogEventActionDeleteMessage',
|
|
898
|
+
0x183040d3: 'Raw.ChannelAdminLogEventActionParticipantJoin',
|
|
899
|
+
0xf89777f2: 'Raw.ChannelAdminLogEventActionParticipantLeave',
|
|
900
|
+
0xe31c34d8: 'Raw.ChannelAdminLogEventActionParticipantInvite',
|
|
901
|
+
0xe6d83d7e: 'Raw.ChannelAdminLogEventActionParticipantToggleBan',
|
|
902
|
+
0xd5676710: 'Raw.ChannelAdminLogEventActionParticipantToggleAdmin',
|
|
903
|
+
0xb1c3caa7: 'Raw.ChannelAdminLogEventActionChangeStickerSet',
|
|
904
|
+
0x5f5c95f1: 'Raw.ChannelAdminLogEventActionTogglePreHistoryHidden',
|
|
905
|
+
0x2df5fc0a: 'Raw.ChannelAdminLogEventActionDefaultBannedRights',
|
|
906
|
+
0x8f079643: 'Raw.ChannelAdminLogEventActionStopPoll',
|
|
907
|
+
0x50c7ac8: 'Raw.ChannelAdminLogEventActionChangeLinkedChat',
|
|
908
|
+
0xe6b76ae: 'Raw.ChannelAdminLogEventActionChangeLocation',
|
|
909
|
+
0x53909779: 'Raw.ChannelAdminLogEventActionToggleSlowMode',
|
|
910
|
+
0x23209745: 'Raw.ChannelAdminLogEventActionStartGroupCall',
|
|
911
|
+
0xdb9f9140: 'Raw.ChannelAdminLogEventActionDiscardGroupCall',
|
|
912
|
+
0xf92424d2: 'Raw.ChannelAdminLogEventActionParticipantMute',
|
|
913
|
+
0xe64429c0: 'Raw.ChannelAdminLogEventActionParticipantUnmute',
|
|
914
|
+
0x56d6a247: 'Raw.ChannelAdminLogEventActionToggleGroupCallSetting',
|
|
915
|
+
0xfe9fc158: 'Raw.ChannelAdminLogEventActionParticipantJoinByInvite',
|
|
916
|
+
0x5a50fca4: 'Raw.ChannelAdminLogEventActionExportedInviteDelete',
|
|
917
|
+
0x410a134e: 'Raw.ChannelAdminLogEventActionExportedInviteRevoke',
|
|
918
|
+
0xe90ebb59: 'Raw.ChannelAdminLogEventActionExportedInviteEdit',
|
|
919
|
+
0x3e7f6847: 'Raw.ChannelAdminLogEventActionParticipantVolume',
|
|
920
|
+
0x6e941a38: 'Raw.ChannelAdminLogEventActionChangeHistoryTTL',
|
|
921
|
+
0xafb6144a: 'Raw.ChannelAdminLogEventActionParticipantJoinByRequest',
|
|
922
|
+
0xcb2ac766: 'Raw.ChannelAdminLogEventActionToggleNoForwards',
|
|
923
|
+
0x278f2868: 'Raw.ChannelAdminLogEventActionSendMessage',
|
|
924
|
+
0xbe4e0ef8: 'Raw.ChannelAdminLogEventActionChangeAvailableReactions',
|
|
925
|
+
0xf04fb3a9: 'Raw.ChannelAdminLogEventActionChangeUsernames',
|
|
926
|
+
0x2cc6383: 'Raw.ChannelAdminLogEventActionToggleForum',
|
|
927
|
+
0x58707d28: 'Raw.ChannelAdminLogEventActionCreateTopic',
|
|
928
|
+
0xf06fe208: 'Raw.ChannelAdminLogEventActionEditTopic',
|
|
929
|
+
0xae168909: 'Raw.ChannelAdminLogEventActionDeleteTopic',
|
|
930
|
+
0x5d8d353b: 'Raw.ChannelAdminLogEventActionPinTopic',
|
|
931
|
+
0x64f36dfc: 'Raw.ChannelAdminLogEventActionToggleAntiSpam',
|
|
932
|
+
0x5796e780: 'Raw.ChannelAdminLogEventActionChangePeerColor',
|
|
933
|
+
0x5e477b25: 'Raw.ChannelAdminLogEventActionChangeProfilePeerColor',
|
|
934
|
+
0x31bb5d52: 'Raw.ChannelAdminLogEventActionChangeWallpaper',
|
|
935
|
+
0x3ea9feb1: 'Raw.ChannelAdminLogEventActionChangeEmojiStatus',
|
|
936
|
+
0x46d840ab: 'Raw.ChannelAdminLogEventActionChangeEmojiStickerSet',
|
|
937
|
+
0x60a79c79: 'Raw.ChannelAdminLogEventActionToggleSignatureProfiles',
|
|
938
|
+
0x64642db3: 'Raw.ChannelAdminLogEventActionParticipantSubExtend',
|
|
939
|
+
0xc517f77e: 'Raw.ChannelAdminLogEventActionToggleAutotranslation',
|
|
940
|
+
0x1fad68cd: 'Raw.ChannelAdminLogEvent',
|
|
941
|
+
0xed8af74d: 'Raw.channels.AdminLogResults',
|
|
942
|
+
0xea107ae4: 'Raw.ChannelAdminLogEventsFilter',
|
|
943
|
+
0x5ce14175: 'Raw.PopularContact',
|
|
944
|
+
0x9e8fa6d3: 'Raw.messages.FavedStickersNotModified',
|
|
945
|
+
0x2cb51097: 'Raw.messages.FavedStickers',
|
|
946
|
+
0x46e1d13d: 'Raw.RecentMeUrlUnknown',
|
|
947
|
+
0xb92c09e2: 'Raw.RecentMeUrlUser',
|
|
948
|
+
0xb2da71d2: 'Raw.RecentMeUrlChat',
|
|
949
|
+
0xeb49081d: 'Raw.RecentMeUrlChatInvite',
|
|
950
|
+
0xbc0a57dc: 'Raw.RecentMeUrlStickerSet',
|
|
951
|
+
0xe0310d7: 'Raw.help.RecentMeUrls',
|
|
952
|
+
0x1cc6e91f: 'Raw.InputSingleMedia',
|
|
953
|
+
0xa6f8f452: 'Raw.WebAuthorization',
|
|
954
|
+
0xed56c9fc: 'Raw.account.WebAuthorizations',
|
|
955
|
+
0xa676a322: 'Raw.InputMessageID',
|
|
956
|
+
0xbad88395: 'Raw.InputMessageReplyTo',
|
|
957
|
+
0x86872538: 'Raw.InputMessagePinned',
|
|
958
|
+
0xacfa1a7e: 'Raw.InputMessageCallbackQuery',
|
|
959
|
+
0xfcaafeb7: 'Raw.InputDialogPeer',
|
|
960
|
+
0x64600527: 'Raw.InputDialogPeerFolder',
|
|
961
|
+
0xe56dbf05: 'Raw.DialogPeer',
|
|
962
|
+
0x514519e2: 'Raw.DialogPeerFolder',
|
|
963
|
+
0xd54b65d: 'Raw.messages.FoundStickerSetsNotModified',
|
|
964
|
+
0x8af09dd2: 'Raw.messages.FoundStickerSets',
|
|
965
|
+
0xf39b035c: 'Raw.FileHash',
|
|
966
|
+
0x75588b3f: 'Raw.InputClientProxy',
|
|
967
|
+
0xe3309f7f: 'Raw.help.TermsOfServiceUpdateEmpty',
|
|
968
|
+
0x28ecf961: 'Raw.help.TermsOfServiceUpdate',
|
|
969
|
+
0x3334b0f0: 'Raw.InputSecureFileUploaded',
|
|
970
|
+
0x5367e5be: 'Raw.InputSecureFile',
|
|
971
|
+
0x64199744: 'Raw.SecureFileEmpty',
|
|
972
|
+
0x7d09c27e: 'Raw.SecureFile',
|
|
973
|
+
0x8aeabec3: 'Raw.SecureData',
|
|
974
|
+
0x7d6099dd: 'Raw.SecurePlainPhone',
|
|
975
|
+
0x21ec5a5f: 'Raw.SecurePlainEmail',
|
|
976
|
+
0x9d2a81e3: 'Raw.SecureValueTypePersonalDetails',
|
|
977
|
+
0x3dac6a00: 'Raw.SecureValueTypePassport',
|
|
978
|
+
0x6e425c4: 'Raw.SecureValueTypeDriverLicense',
|
|
979
|
+
0xa0d0744b: 'Raw.SecureValueTypeIdentityCard',
|
|
980
|
+
0x99a48f23: 'Raw.SecureValueTypeInternalPassport',
|
|
981
|
+
0xcbe31e26: 'Raw.SecureValueTypeAddress',
|
|
982
|
+
0xfc36954e: 'Raw.SecureValueTypeUtilityBill',
|
|
983
|
+
0x89137c0d: 'Raw.SecureValueTypeBankStatement',
|
|
984
|
+
0x8b883488: 'Raw.SecureValueTypeRentalAgreement',
|
|
985
|
+
0x99e3806a: 'Raw.SecureValueTypePassportRegistration',
|
|
986
|
+
0xea02ec33: 'Raw.SecureValueTypeTemporaryRegistration',
|
|
987
|
+
0xb320aadb: 'Raw.SecureValueTypePhone',
|
|
988
|
+
0x8e3ca7ee: 'Raw.SecureValueTypeEmail',
|
|
989
|
+
0x187fa0ca: 'Raw.SecureValue',
|
|
990
|
+
0xdb21d0a7: 'Raw.InputSecureValue',
|
|
991
|
+
0xed1ecdb0: 'Raw.SecureValueHash',
|
|
992
|
+
0xe8a40bd9: 'Raw.SecureValueErrorData',
|
|
993
|
+
0xbe3dfa: 'Raw.SecureValueErrorFrontSide',
|
|
994
|
+
0x868a2aa5: 'Raw.SecureValueErrorReverseSide',
|
|
995
|
+
0xe537ced6: 'Raw.SecureValueErrorSelfie',
|
|
996
|
+
0x7a700873: 'Raw.SecureValueErrorFile',
|
|
997
|
+
0x666220e9: 'Raw.SecureValueErrorFiles',
|
|
998
|
+
0x869d758f: 'Raw.SecureValueError',
|
|
999
|
+
0xa1144770: 'Raw.SecureValueErrorTranslationFile',
|
|
1000
|
+
0x34636dd8: 'Raw.SecureValueErrorTranslationFiles',
|
|
1001
|
+
0x33f0ea47: 'Raw.SecureCredentialsEncrypted',
|
|
1002
|
+
0xad2e1cd8: 'Raw.account.AuthorizationForm',
|
|
1003
|
+
0x811f854f: 'Raw.account.SentEmailCode',
|
|
1004
|
+
0x66afa166: 'Raw.help.DeepLinkInfoEmpty',
|
|
1005
|
+
0x6a4ee832: 'Raw.help.DeepLinkInfo',
|
|
1006
|
+
0x1142bd56: 'Raw.SavedPhoneContact',
|
|
1007
|
+
0x4dba4501: 'Raw.account.Takeout',
|
|
1008
|
+
0xd45ab096: 'Raw.PasswordKdfAlgoUnknown',
|
|
1009
|
+
0x3a912d4a: 'Raw.PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow',
|
|
1010
|
+
0x4a8537: 'Raw.SecurePasswordKdfAlgoUnknown',
|
|
1011
|
+
0xbbf2dda0: 'Raw.SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000',
|
|
1012
|
+
0x86471d92: 'Raw.SecurePasswordKdfAlgoSHA512',
|
|
1013
|
+
0x1527bcac: 'Raw.SecureSecretSettings',
|
|
1014
|
+
0x9880f658: 'Raw.InputCheckPasswordEmpty',
|
|
1015
|
+
0xd27ff082: 'Raw.InputCheckPasswordSRP',
|
|
1016
|
+
0x829d99da: 'Raw.SecureRequiredType',
|
|
1017
|
+
0x27477b4: 'Raw.SecureRequiredTypeOneOf',
|
|
1018
|
+
0xbfb9f457: 'Raw.help.PassportConfigNotModified',
|
|
1019
|
+
0xa098d6af: 'Raw.help.PassportConfig',
|
|
1020
|
+
0x1d1b1245: 'Raw.InputAppEvent',
|
|
1021
|
+
0xc0de1bd9: 'Raw.JsonObjectValue',
|
|
1022
|
+
0x3f6d7b68: 'Raw.JsonNull',
|
|
1023
|
+
0xc7345e6a: 'Raw.JsonBool',
|
|
1024
|
+
0x2be0dfa4: 'Raw.JsonNumber',
|
|
1025
|
+
0xb71e767a: 'Raw.JsonString',
|
|
1026
|
+
0xf7444763: 'Raw.JsonArray',
|
|
1027
|
+
0x99c1d49d: 'Raw.JsonObject',
|
|
1028
|
+
0x34566b6a: 'Raw.PageTableCell',
|
|
1029
|
+
0xe0c0c5e5: 'Raw.PageTableRow',
|
|
1030
|
+
0x6f747657: 'Raw.PageCaption',
|
|
1031
|
+
0xb92fb6cd: 'Raw.PageListItemText',
|
|
1032
|
+
0x25e073fc: 'Raw.PageListItemBlocks',
|
|
1033
|
+
0x5e068047: 'Raw.PageListOrderedItemText',
|
|
1034
|
+
0x98dd8936: 'Raw.PageListOrderedItemBlocks',
|
|
1035
|
+
0xb390dc08: 'Raw.PageRelatedArticle',
|
|
1036
|
+
0x98657f0d: 'Raw.Page',
|
|
1037
|
+
0x8c05f1c9: 'Raw.help.SupportName',
|
|
1038
|
+
0xf3ae2eed: 'Raw.help.UserInfoEmpty',
|
|
1039
|
+
0x1eb3758: 'Raw.help.UserInfo',
|
|
1040
|
+
0xff16e2ca: 'Raw.PollAnswer',
|
|
1041
|
+
0x58747131: 'Raw.Poll',
|
|
1042
|
+
0x3b6ddad2: 'Raw.PollAnswerVoters',
|
|
1043
|
+
0x7adf2420: 'Raw.PollResults',
|
|
1044
|
+
0xf041e250: 'Raw.ChatOnlines',
|
|
1045
|
+
0x47a971e0: 'Raw.StatsURL',
|
|
1046
|
+
0x5fb224d5: 'Raw.ChatAdminRights',
|
|
1047
|
+
0x9f120418: 'Raw.ChatBannedRights',
|
|
1048
|
+
0xe630b979: 'Raw.InputWallPaper',
|
|
1049
|
+
0x72091c80: 'Raw.InputWallPaperSlug',
|
|
1050
|
+
0x967a462e: 'Raw.InputWallPaperNoFile',
|
|
1051
|
+
0x1c199183: 'Raw.account.WallPapersNotModified',
|
|
1052
|
+
0xcdc3858c: 'Raw.account.WallPapers',
|
|
1053
|
+
0xad253d78: 'Raw.CodeSettings',
|
|
1054
|
+
0x372efcd0: 'Raw.WallPaperSettings',
|
|
1055
|
+
0xbaa57628: 'Raw.AutoDownloadSettings',
|
|
1056
|
+
0x63cacf26: 'Raw.account.AutoDownloadSettings',
|
|
1057
|
+
0xd5b3b9f9: 'Raw.EmojiKeyword',
|
|
1058
|
+
0x236df622: 'Raw.EmojiKeywordDeleted',
|
|
1059
|
+
0x5cc761bd: 'Raw.EmojiKeywordsDifference',
|
|
1060
|
+
0xa575739d: 'Raw.EmojiURL',
|
|
1061
|
+
0xb3fb5361: 'Raw.EmojiLanguage',
|
|
1062
|
+
0xff544e65: 'Raw.Folder',
|
|
1063
|
+
0xfbd2c296: 'Raw.InputFolderPeer',
|
|
1064
|
+
0xe9baa668: 'Raw.FolderPeer',
|
|
1065
|
+
0xe844ebff: 'Raw.messages.SearchCounter',
|
|
1066
|
+
0x32fabf1a: 'Raw.UrlAuthResultRequest',
|
|
1067
|
+
0x623a8fa0: 'Raw.UrlAuthResultAccepted',
|
|
1068
|
+
0xa9d6db1f: 'Raw.UrlAuthResultDefault',
|
|
1069
|
+
0xbfb5ad8b: 'Raw.ChannelLocationEmpty',
|
|
1070
|
+
0x209b82db: 'Raw.ChannelLocation',
|
|
1071
|
+
0xca461b5d: 'Raw.PeerLocated',
|
|
1072
|
+
0xf8ec284b: 'Raw.PeerSelfLocated',
|
|
1073
|
+
0xd072acb4: 'Raw.RestrictionReason',
|
|
1074
|
+
0x3c5693e9: 'Raw.InputTheme',
|
|
1075
|
+
0xf5890df1: 'Raw.InputThemeSlug',
|
|
1076
|
+
0xa00e67d6: 'Raw.Theme',
|
|
1077
|
+
0xf41eb622: 'Raw.account.ThemesNotModified',
|
|
1078
|
+
0x9a3d8c6d: 'Raw.account.Themes',
|
|
1079
|
+
0x629f1980: 'Raw.auth.LoginToken',
|
|
1080
|
+
0x68e9916: 'Raw.auth.LoginTokenMigrateTo',
|
|
1081
|
+
0x390d5c5e: 'Raw.auth.LoginTokenSuccess',
|
|
1082
|
+
0x57e28221: 'Raw.account.ContentSettings',
|
|
1083
|
+
0xa927fec5: 'Raw.messages.InactiveChats',
|
|
1084
|
+
0xc3a12462: 'Raw.BaseThemeClassic',
|
|
1085
|
+
0xfbd81688: 'Raw.BaseThemeDay',
|
|
1086
|
+
0xb7b31ea8: 'Raw.BaseThemeNight',
|
|
1087
|
+
0x6d5f77ee: 'Raw.BaseThemeTinted',
|
|
1088
|
+
0x5b11125a: 'Raw.BaseThemeArctic',
|
|
1089
|
+
0x8fde504f: 'Raw.InputThemeSettings',
|
|
1090
|
+
0xfa58b6d4: 'Raw.ThemeSettings',
|
|
1091
|
+
0x54b56617: 'Raw.WebPageAttributeTheme',
|
|
1092
|
+
0x2e94c3e7: 'Raw.WebPageAttributeStory',
|
|
1093
|
+
0x50cc03d3: 'Raw.WebPageAttributeStickerSet',
|
|
1094
|
+
0xcf6f6db8: 'Raw.WebPageAttributeUniqueStarGift',
|
|
1095
|
+
0x31cad303: 'Raw.WebPageAttributeStarGiftCollection',
|
|
1096
|
+
0x1c641c2: 'Raw.WebPageAttributeStarGiftAuction',
|
|
1097
|
+
0x4899484e: 'Raw.messages.VotesList',
|
|
1098
|
+
0xf568028a: 'Raw.BankCardOpenUrl',
|
|
1099
|
+
0x3e24e573: 'Raw.payments.BankCardData',
|
|
1100
|
+
0xaa472651: 'Raw.DialogFilter',
|
|
1101
|
+
0x363293ae: 'Raw.DialogFilterDefault',
|
|
1102
|
+
0x96537bd7: 'Raw.DialogFilterChatlist',
|
|
1103
|
+
0x77744d4a: 'Raw.DialogFilterSuggested',
|
|
1104
|
+
0xb637edaf: 'Raw.StatsDateRangeDays',
|
|
1105
|
+
0xcb43acde: 'Raw.StatsAbsValueAndPrev',
|
|
1106
|
+
0xcbce2fe0: 'Raw.StatsPercentValue',
|
|
1107
|
+
0x4a27eb2d: 'Raw.StatsGraphAsync',
|
|
1108
|
+
0xbedc9822: 'Raw.StatsGraphError',
|
|
1109
|
+
0x8ea464b6: 'Raw.StatsGraph',
|
|
1110
|
+
0x396ca5fc: 'Raw.stats.BroadcastStats',
|
|
1111
|
+
0x98f6ac75: 'Raw.help.PromoDataEmpty',
|
|
1112
|
+
0x8a4d87a: 'Raw.help.PromoData',
|
|
1113
|
+
0xde33b094: 'Raw.VideoSize',
|
|
1114
|
+
0xf85c413c: 'Raw.VideoSizeEmojiMarkup',
|
|
1115
|
+
0xda082fe: 'Raw.VideoSizeStickerMarkup',
|
|
1116
|
+
0x9d04af9b: 'Raw.StatsGroupTopPoster',
|
|
1117
|
+
0xd7584c87: 'Raw.StatsGroupTopAdmin',
|
|
1118
|
+
0x535f779d: 'Raw.StatsGroupTopInviter',
|
|
1119
|
+
0xef7ff916: 'Raw.stats.MegagroupStats',
|
|
1120
|
+
0xfe41b34f: 'Raw.GlobalPrivacySettings',
|
|
1121
|
+
0x4203c5ef: 'Raw.help.CountryCode',
|
|
1122
|
+
0xc3878e23: 'Raw.help.Country',
|
|
1123
|
+
0x93cc1f32: 'Raw.help.CountriesListNotModified',
|
|
1124
|
+
0x87d0759e: 'Raw.help.CountriesList',
|
|
1125
|
+
0x455b853d: 'Raw.MessageViews',
|
|
1126
|
+
0xb6c4f543: 'Raw.messages.MessageViews',
|
|
1127
|
+
0xa6341782: 'Raw.messages.DiscussionMessage',
|
|
1128
|
+
0x6917560b: 'Raw.MessageReplyHeader',
|
|
1129
|
+
0xe5af939: 'Raw.MessageReplyStoryHeader',
|
|
1130
|
+
0x83d60fc2: 'Raw.MessageReplies',
|
|
1131
|
+
0xe8fd8014: 'Raw.PeerBlocked',
|
|
1132
|
+
0x7fe91c14: 'Raw.stats.MessageStats',
|
|
1133
|
+
0x7780bcb4: 'Raw.GroupCallDiscarded',
|
|
1134
|
+
0xefb2b617: 'Raw.GroupCall',
|
|
1135
|
+
0xd8aa840f: 'Raw.InputGroupCall',
|
|
1136
|
+
0xfe06823f: 'Raw.InputGroupCallSlug',
|
|
1137
|
+
0x8c10603f: 'Raw.InputGroupCallInviteMessage',
|
|
1138
|
+
0x2a3dc7ac: 'Raw.GroupCallParticipant',
|
|
1139
|
+
0x9e727aad: 'Raw.phone.GroupCall',
|
|
1140
|
+
0xf47751b6: 'Raw.phone.GroupParticipants',
|
|
1141
|
+
0x3081ed9d: 'Raw.InlineQueryPeerTypeSameBotPM',
|
|
1142
|
+
0x833c0fac: 'Raw.InlineQueryPeerTypePM',
|
|
1143
|
+
0xd766c50a: 'Raw.InlineQueryPeerTypeChat',
|
|
1144
|
+
0x5ec4be43: 'Raw.InlineQueryPeerTypeMegagroup',
|
|
1145
|
+
0x6334ee9a: 'Raw.InlineQueryPeerTypeBroadcast',
|
|
1146
|
+
0xe3b2d0c: 'Raw.InlineQueryPeerTypeBotPM',
|
|
1147
|
+
0x1662af0b: 'Raw.messages.HistoryImport',
|
|
1148
|
+
0x5e0fb7b9: 'Raw.messages.HistoryImportParsed',
|
|
1149
|
+
0xef8d3e6c: 'Raw.messages.AffectedFoundMessages',
|
|
1150
|
+
0x8c5adfd9: 'Raw.ChatInviteImporter',
|
|
1151
|
+
0xbdc62dcc: 'Raw.messages.ExportedChatInvites',
|
|
1152
|
+
0x1871be50: 'Raw.messages.ExportedChatInvite',
|
|
1153
|
+
0x222600ef: 'Raw.messages.ExportedChatInviteReplaced',
|
|
1154
|
+
0x81b6b00a: 'Raw.messages.ChatInviteImporters',
|
|
1155
|
+
0xf2ecef23: 'Raw.ChatAdminWithInvites',
|
|
1156
|
+
0xb69b72d7: 'Raw.messages.ChatAdminsWithInvites',
|
|
1157
|
+
0xa24de717: 'Raw.messages.CheckedHistoryImportPeer',
|
|
1158
|
+
0xafe5623f: 'Raw.phone.JoinAsPeers',
|
|
1159
|
+
0x204bd158: 'Raw.phone.ExportedGroupCallInvite',
|
|
1160
|
+
0xdcb118b7: 'Raw.GroupCallParticipantVideoSourceGroup',
|
|
1161
|
+
0x67753ac8: 'Raw.GroupCallParticipantVideo',
|
|
1162
|
+
0x85fea03f: 'Raw.stickers.SuggestedShortName',
|
|
1163
|
+
0x2f6cb2ab: 'Raw.BotCommandScopeDefault',
|
|
1164
|
+
0x3c4f04d8: 'Raw.BotCommandScopeUsers',
|
|
1165
|
+
0x6fe1a881: 'Raw.BotCommandScopeChats',
|
|
1166
|
+
0xb9aa606a: 'Raw.BotCommandScopeChatAdmins',
|
|
1167
|
+
0xdb9d897d: 'Raw.BotCommandScopePeer',
|
|
1168
|
+
0x3fd863d1: 'Raw.BotCommandScopePeerAdmins',
|
|
1169
|
+
0xa1321f3: 'Raw.BotCommandScopePeerUser',
|
|
1170
|
+
0xe3779861: 'Raw.account.ResetPasswordFailedWait',
|
|
1171
|
+
0xe9effc7d: 'Raw.account.ResetPasswordRequestedWait',
|
|
1172
|
+
0xe926d63e: 'Raw.account.ResetPasswordOk',
|
|
1173
|
+
0xc3dffc04: 'Raw.ChatTheme',
|
|
1174
|
+
0x3458f9c8: 'Raw.ChatThemeUniqueGift',
|
|
1175
|
+
0xe011e1c4: 'Raw.account.ChatThemesNotModified',
|
|
1176
|
+
0xbe098173: 'Raw.account.ChatThemes',
|
|
1177
|
+
0x7dbf8673: 'Raw.SponsoredMessage',
|
|
1178
|
+
0xffda656d: 'Raw.messages.SponsoredMessages',
|
|
1179
|
+
0x1839490f: 'Raw.messages.SponsoredMessagesEmpty',
|
|
1180
|
+
0xc9b0539f: 'Raw.SearchResultsCalendarPeriod',
|
|
1181
|
+
0x147ee23c: 'Raw.messages.SearchResultsCalendar',
|
|
1182
|
+
0x7f648b67: 'Raw.SearchResultPosition',
|
|
1183
|
+
0x53b22baf: 'Raw.messages.SearchResultsPositions',
|
|
1184
|
+
0xf496b0c6: 'Raw.channels.SendAsPeers',
|
|
1185
|
+
0x3b6d152e: 'Raw.users.UserFull',
|
|
1186
|
+
0x6880b94d: 'Raw.messages.PeerSettings',
|
|
1187
|
+
0xc3a2835f: 'Raw.auth.LoggedOut',
|
|
1188
|
+
0xa3d1cb80: 'Raw.ReactionCount',
|
|
1189
|
+
0xa339f0b: 'Raw.MessageReactions',
|
|
1190
|
+
0x31bd492d: 'Raw.messages.MessageReactionsList',
|
|
1191
|
+
0xc077ec01: 'Raw.AvailableReaction',
|
|
1192
|
+
0x9f071957: 'Raw.messages.AvailableReactionsNotModified',
|
|
1193
|
+
0x768e3aad: 'Raw.messages.AvailableReactions',
|
|
1194
|
+
0x8c79b63c: 'Raw.MessagePeerReaction',
|
|
1195
|
+
0x80eb48af: 'Raw.GroupCallStreamChannel',
|
|
1196
|
+
0xd0e482b2: 'Raw.phone.GroupCallStreamChannels',
|
|
1197
|
+
0x2dbf3432: 'Raw.phone.GroupCallStreamRtmpUrl',
|
|
1198
|
+
0x4576f3f0: 'Raw.AttachMenuBotIconColor',
|
|
1199
|
+
0xb2a7386b: 'Raw.AttachMenuBotIcon',
|
|
1200
|
+
0xd90d8dfe: 'Raw.AttachMenuBot',
|
|
1201
|
+
0xf1d88a5c: 'Raw.AttachMenuBotsNotModified',
|
|
1202
|
+
0x3c4301c0: 'Raw.AttachMenuBots',
|
|
1203
|
+
0x93bf667f: 'Raw.AttachMenuBotsBot',
|
|
1204
|
+
0x4d22ff98: 'Raw.WebViewResultUrl',
|
|
1205
|
+
0xc94511c: 'Raw.WebViewMessageSent',
|
|
1206
|
+
0x7533a588: 'Raw.BotMenuButtonDefault',
|
|
1207
|
+
0x4258c205: 'Raw.BotMenuButtonCommands',
|
|
1208
|
+
0xc7b57ce6: 'Raw.BotMenuButton',
|
|
1209
|
+
0xfbf6e8b1: 'Raw.account.SavedRingtonesNotModified',
|
|
1210
|
+
0xc1e92cc5: 'Raw.account.SavedRingtones',
|
|
1211
|
+
0x97e8bebe: 'Raw.NotificationSoundDefault',
|
|
1212
|
+
0x6f0c34df: 'Raw.NotificationSoundNone',
|
|
1213
|
+
0x830b9ae4: 'Raw.NotificationSoundLocal',
|
|
1214
|
+
0xff6c8049: 'Raw.NotificationSoundRingtone',
|
|
1215
|
+
0xb7263f6d: 'Raw.account.SavedRingtone',
|
|
1216
|
+
0x1f307eb7: 'Raw.account.SavedRingtoneConverted',
|
|
1217
|
+
0x7d6be90e: 'Raw.AttachMenuPeerTypeSameBotPM',
|
|
1218
|
+
0xc32bfa1a: 'Raw.AttachMenuPeerTypeBotPM',
|
|
1219
|
+
0xf146d31f: 'Raw.AttachMenuPeerTypePM',
|
|
1220
|
+
0x509113f: 'Raw.AttachMenuPeerTypeChat',
|
|
1221
|
+
0x7bfbdefc: 'Raw.AttachMenuPeerTypeBroadcast',
|
|
1222
|
+
0xc5b56859: 'Raw.InputInvoiceMessage',
|
|
1223
|
+
0xc326caef: 'Raw.InputInvoiceSlug',
|
|
1224
|
+
0x98986c0d: 'Raw.InputInvoicePremiumGiftCode',
|
|
1225
|
+
0x65f00ce3: 'Raw.InputInvoiceStars',
|
|
1226
|
+
0x34e793f1: 'Raw.InputInvoiceChatInviteSubscription',
|
|
1227
|
+
0xe8625e92: 'Raw.InputInvoiceStarGift',
|
|
1228
|
+
0x4d818d5d: 'Raw.InputInvoiceStarGiftUpgrade',
|
|
1229
|
+
0x4a5f5bd9: 'Raw.InputInvoiceStarGiftTransfer',
|
|
1230
|
+
0xdabab2ef: 'Raw.InputInvoicePremiumGiftStars',
|
|
1231
|
+
0xf4997e42: 'Raw.InputInvoiceBusinessBotTransferStars',
|
|
1232
|
+
0xc39f5324: 'Raw.InputInvoiceStarGiftResale',
|
|
1233
|
+
0x9a0b48b8: 'Raw.InputInvoiceStarGiftPrepaidUpgrade',
|
|
1234
|
+
0x3e77f614: 'Raw.InputInvoicePremiumAuthCode',
|
|
1235
|
+
0x923d8d1: 'Raw.InputInvoiceStarGiftDropOriginalDetails',
|
|
1236
|
+
0x1ecafa10: 'Raw.InputInvoiceStarGiftAuctionBid',
|
|
1237
|
+
0xaed0cbd9: 'Raw.payments.ExportedInvoice',
|
|
1238
|
+
0xcfb9d957: 'Raw.messages.TranscribedAudio',
|
|
1239
|
+
0x5334759c: 'Raw.help.PremiumPromo',
|
|
1240
|
+
0xa6751e66: 'Raw.InputStorePaymentPremiumSubscription',
|
|
1241
|
+
0x616f7fe8: 'Raw.InputStorePaymentGiftPremium',
|
|
1242
|
+
0xfb790393: 'Raw.InputStorePaymentPremiumGiftCode',
|
|
1243
|
+
0x160544ca: 'Raw.InputStorePaymentPremiumGiveaway',
|
|
1244
|
+
0xf9a2a6cb: 'Raw.InputStorePaymentStarsTopup',
|
|
1245
|
+
0x1d741ef7: 'Raw.InputStorePaymentStarsGift',
|
|
1246
|
+
0x751f08fa: 'Raw.InputStorePaymentStarsGiveaway',
|
|
1247
|
+
0x9bb2636d: 'Raw.InputStorePaymentAuthCode',
|
|
1248
|
+
0x88f8f21b: 'Raw.PaymentFormMethod',
|
|
1249
|
+
0x2de11aae: 'Raw.EmojiStatusEmpty',
|
|
1250
|
+
0xe7ff068a: 'Raw.EmojiStatus',
|
|
1251
|
+
0x7184603b: 'Raw.EmojiStatusCollectible',
|
|
1252
|
+
0x7141dbf: 'Raw.InputEmojiStatusCollectible',
|
|
1253
|
+
0xd08ce645: 'Raw.account.EmojiStatusesNotModified',
|
|
1254
|
+
0x90c467d1: 'Raw.account.EmojiStatuses',
|
|
1255
|
+
0x79f5d419: 'Raw.ReactionEmpty',
|
|
1256
|
+
0x1b2286b8: 'Raw.ReactionEmoji',
|
|
1257
|
+
0x8935fc73: 'Raw.ReactionCustomEmoji',
|
|
1258
|
+
0x523da4eb: 'Raw.ReactionPaid',
|
|
1259
|
+
0xeafc32bc: 'Raw.ChatReactionsNone',
|
|
1260
|
+
0x52928bca: 'Raw.ChatReactionsAll',
|
|
1261
|
+
0x661d4037: 'Raw.ChatReactionsSome',
|
|
1262
|
+
0xb06fdbdf: 'Raw.messages.ReactionsNotModified',
|
|
1263
|
+
0xeafdf716: 'Raw.messages.Reactions',
|
|
1264
|
+
0x4345be73: 'Raw.EmailVerifyPurposeLoginSetup',
|
|
1265
|
+
0x527d22eb: 'Raw.EmailVerifyPurposeLoginChange',
|
|
1266
|
+
0xbbf51685: 'Raw.EmailVerifyPurposePassport',
|
|
1267
|
+
0x922e55a9: 'Raw.EmailVerificationCode',
|
|
1268
|
+
0xdb909ec2: 'Raw.EmailVerificationGoogle',
|
|
1269
|
+
0x96d074fd: 'Raw.EmailVerificationApple',
|
|
1270
|
+
0x2b96cd1b: 'Raw.account.EmailVerified',
|
|
1271
|
+
0xe1bb0d61: 'Raw.account.EmailVerifiedLogin',
|
|
1272
|
+
0x5f2d1df2: 'Raw.PremiumSubscriptionOption',
|
|
1273
|
+
0xb81c7034: 'Raw.SendAsPeer',
|
|
1274
|
+
0xad628cc8: 'Raw.MessageExtendedMediaPreview',
|
|
1275
|
+
0xee479c64: 'Raw.MessageExtendedMedia',
|
|
1276
|
+
0xfcfeb29c: 'Raw.StickerKeyword',
|
|
1277
|
+
0xb4073647: 'Raw.Username',
|
|
1278
|
+
0x23f109b: 'Raw.ForumTopicDeleted',
|
|
1279
|
+
0xcdff0eca: 'Raw.ForumTopic',
|
|
1280
|
+
0x367617d3: 'Raw.messages.ForumTopics',
|
|
1281
|
+
0x43b46b20: 'Raw.DefaultHistoryTTL',
|
|
1282
|
+
0x41bf109b: 'Raw.ExportedContactToken',
|
|
1283
|
+
0x5f3b8a00: 'Raw.RequestPeerTypeUser',
|
|
1284
|
+
0xc9f06e1b: 'Raw.RequestPeerTypeChat',
|
|
1285
|
+
0x339bef6c: 'Raw.RequestPeerTypeBroadcast',
|
|
1286
|
+
0x481eadfa: 'Raw.EmojiListNotModified',
|
|
1287
|
+
0x7a1e11d1: 'Raw.EmojiList',
|
|
1288
|
+
0x7a9abda9: 'Raw.EmojiGroup',
|
|
1289
|
+
0x80d26cc7: 'Raw.EmojiGroupGreeting',
|
|
1290
|
+
0x93bcf34: 'Raw.EmojiGroupPremium',
|
|
1291
|
+
0x6fb4ad87: 'Raw.messages.EmojiGroupsNotModified',
|
|
1292
|
+
0x881fb94b: 'Raw.messages.EmojiGroups',
|
|
1293
|
+
0x751f3146: 'Raw.TextWithEntities',
|
|
1294
|
+
0x33db32f8: 'Raw.messages.TranslateResult',
|
|
1295
|
+
0xc84834ce: 'Raw.AutoSaveSettings',
|
|
1296
|
+
0x81602d47: 'Raw.AutoSaveException',
|
|
1297
|
+
0x4c3e069d: 'Raw.account.AutoSaveSettings',
|
|
1298
|
+
0x7cde641d: 'Raw.help.AppConfigNotModified',
|
|
1299
|
+
0xdd18782e: 'Raw.help.AppConfig',
|
|
1300
|
+
0xa920bd7a: 'Raw.InputBotAppID',
|
|
1301
|
+
0x908c0407: 'Raw.InputBotAppShortName',
|
|
1302
|
+
0x5da674b7: 'Raw.BotAppNotModified',
|
|
1303
|
+
0x95fcd1d6: 'Raw.BotApp',
|
|
1304
|
+
0xeb50adf5: 'Raw.messages.BotApp',
|
|
1305
|
+
0xb57295d5: 'Raw.InlineBotWebView',
|
|
1306
|
+
0x4a4ff172: 'Raw.ReadParticipantDate',
|
|
1307
|
+
0xf3e0da33: 'Raw.InputChatlistDialogFilter',
|
|
1308
|
+
0xc5181ac: 'Raw.ExportedChatlistInvite',
|
|
1309
|
+
0x10e6e3a6: 'Raw.chatlists.ExportedChatlistInvite',
|
|
1310
|
+
0x10ab6dc7: 'Raw.chatlists.ExportedInvites',
|
|
1311
|
+
0xfa87f659: 'Raw.chatlists.ChatlistInviteAlready',
|
|
1312
|
+
0xf10ece2f: 'Raw.chatlists.ChatlistInvite',
|
|
1313
|
+
0x93bd878d: 'Raw.chatlists.ChatlistUpdates',
|
|
1314
|
+
0xe8a775b0: 'Raw.bots.BotInfo',
|
|
1315
|
+
0xb6cc2d5c: 'Raw.MessagePeerVote',
|
|
1316
|
+
0x74cda504: 'Raw.MessagePeerVoteInputOption',
|
|
1317
|
+
0x4628f6e6: 'Raw.MessagePeerVoteMultiple',
|
|
1318
|
+
0x8d595cd6: 'Raw.StoryViews',
|
|
1319
|
+
0x51e6ee4f: 'Raw.StoryItemDeleted',
|
|
1320
|
+
0xffadc913: 'Raw.StoryItemSkipped',
|
|
1321
|
+
0xedf164f1: 'Raw.StoryItem',
|
|
1322
|
+
0x1158fe3e: 'Raw.stories.AllStoriesNotModified',
|
|
1323
|
+
0x6efc5e81: 'Raw.stories.AllStories',
|
|
1324
|
+
0x63c3dd0a: 'Raw.stories.Stories',
|
|
1325
|
+
0xb0bdeac5: 'Raw.StoryView',
|
|
1326
|
+
0x9083670b: 'Raw.StoryViewPublicForward',
|
|
1327
|
+
0xbd74cf49: 'Raw.StoryViewPublicRepost',
|
|
1328
|
+
0x59d78fc5: 'Raw.stories.StoryViewsList',
|
|
1329
|
+
0xde9eed1d: 'Raw.stories.StoryViews',
|
|
1330
|
+
0x869fbe10: 'Raw.InputReplyToMessage',
|
|
1331
|
+
0x5881323a: 'Raw.InputReplyToStory',
|
|
1332
|
+
0x69d66c45: 'Raw.InputReplyToMonoForum',
|
|
1333
|
+
0x3fc9053b: 'Raw.ExportedStoryLink',
|
|
1334
|
+
0x712e27fd: 'Raw.StoriesStealthMode',
|
|
1335
|
+
0xcfc9e002: 'Raw.MediaAreaCoordinates',
|
|
1336
|
+
0xbe82db9c: 'Raw.MediaAreaVenue',
|
|
1337
|
+
0xb282217f: 'Raw.InputMediaAreaVenue',
|
|
1338
|
+
0xcad5452d: 'Raw.MediaAreaGeoPoint',
|
|
1339
|
+
0x14455871: 'Raw.MediaAreaSuggestedReaction',
|
|
1340
|
+
0x770416af: 'Raw.MediaAreaChannelPost',
|
|
1341
|
+
0x2271f2bf: 'Raw.InputMediaAreaChannelPost',
|
|
1342
|
+
0x37381085: 'Raw.MediaAreaUrl',
|
|
1343
|
+
0x49a6549c: 'Raw.MediaAreaWeather',
|
|
1344
|
+
0x5787686d: 'Raw.MediaAreaStarGift',
|
|
1345
|
+
0x9a35e999: 'Raw.PeerStories',
|
|
1346
|
+
0xcae68768: 'Raw.stories.PeerStories',
|
|
1347
|
+
0xfd5e12bd: 'Raw.messages.WebPage',
|
|
1348
|
+
0x257e962b: 'Raw.PremiumGiftCodeOption',
|
|
1349
|
+
0xeb983f8f: 'Raw.payments.CheckedGiftCode',
|
|
1350
|
+
0x4367daa0: 'Raw.payments.GiveawayInfo',
|
|
1351
|
+
0xe175e66f: 'Raw.payments.GiveawayInfoResults',
|
|
1352
|
+
0xb2539d54: 'Raw.PrepaidGiveaway',
|
|
1353
|
+
0x9a9d77e0: 'Raw.PrepaidStarsGiveaway',
|
|
1354
|
+
0x4b3e14d6: 'Raw.Boost',
|
|
1355
|
+
0x86f8613c: 'Raw.premium.BoostsList',
|
|
1356
|
+
0xc448415c: 'Raw.MyBoost',
|
|
1357
|
+
0x9ae228e2: 'Raw.premium.MyBoosts',
|
|
1358
|
+
0x4959427a: 'Raw.premium.BoostsStatus',
|
|
1359
|
+
0xb826e150: 'Raw.StoryFwdHeader',
|
|
1360
|
+
0xe7058e7f: 'Raw.PostInteractionCountersMessage',
|
|
1361
|
+
0x8a480e27: 'Raw.PostInteractionCountersStory',
|
|
1362
|
+
0x50cd067c: 'Raw.stats.StoryStats',
|
|
1363
|
+
0x1f2bf4a: 'Raw.PublicForwardMessage',
|
|
1364
|
+
0xedf3add0: 'Raw.PublicForwardStory',
|
|
1365
|
+
0x93037e20: 'Raw.stats.PublicForwards',
|
|
1366
|
+
0xb54b5acf: 'Raw.PeerColor',
|
|
1367
|
+
0xb9c0639a: 'Raw.PeerColorCollectible',
|
|
1368
|
+
0xb8ea86a9: 'Raw.InputPeerColorCollectible',
|
|
1369
|
+
0x26219a58: 'Raw.help.PeerColorSet',
|
|
1370
|
+
0x767d61eb: 'Raw.help.PeerColorProfileSet',
|
|
1371
|
+
0xadec6ebe: 'Raw.help.PeerColorOption',
|
|
1372
|
+
0x2ba1f5ce: 'Raw.help.PeerColorsNotModified',
|
|
1373
|
+
0xf8ed08: 'Raw.help.PeerColors',
|
|
1374
|
+
0x6090d6d5: 'Raw.StoryReaction',
|
|
1375
|
+
0xbbab2643: 'Raw.StoryReactionPublicForward',
|
|
1376
|
+
0xcfcd0f13: 'Raw.StoryReactionPublicRepost',
|
|
1377
|
+
0xaa5f789c: 'Raw.stories.StoryReactionsList',
|
|
1378
|
+
0xbd87cb6c: 'Raw.SavedDialog',
|
|
1379
|
+
0x64407ea7: 'Raw.MonoForumDialog',
|
|
1380
|
+
0xf83ae221: 'Raw.messages.SavedDialogs',
|
|
1381
|
+
0x44ba9dd9: 'Raw.messages.SavedDialogsSlice',
|
|
1382
|
+
0xc01f6fe8: 'Raw.messages.SavedDialogsNotModified',
|
|
1383
|
+
0xcb6ff828: 'Raw.SavedReactionTag',
|
|
1384
|
+
0x889b59ef: 'Raw.messages.SavedReactionTagsNotModified',
|
|
1385
|
+
0x3259950a: 'Raw.messages.SavedReactionTags',
|
|
1386
|
+
0x3bb842ac: 'Raw.OutboxReadDate',
|
|
1387
|
+
0xdc8b44cf: 'Raw.smsjobs.EligibleToJoin',
|
|
1388
|
+
0x2aee9191: 'Raw.smsjobs.Status',
|
|
1389
|
+
0xe6a1eeb8: 'Raw.SmsJob',
|
|
1390
|
+
0x120b1ab9: 'Raw.BusinessWeeklyOpen',
|
|
1391
|
+
0x8c92b098: 'Raw.BusinessWorkHours',
|
|
1392
|
+
0xac5c1af7: 'Raw.BusinessLocation',
|
|
1393
|
+
0x6f8b32aa: 'Raw.InputBusinessRecipients',
|
|
1394
|
+
0x21108ff7: 'Raw.BusinessRecipients',
|
|
1395
|
+
0xc9b9e2b9: 'Raw.BusinessAwayMessageScheduleAlways',
|
|
1396
|
+
0xc3f2f501: 'Raw.BusinessAwayMessageScheduleOutsideWorkHours',
|
|
1397
|
+
0xcc4d9ecc: 'Raw.BusinessAwayMessageScheduleCustom',
|
|
1398
|
+
0x194cb3b: 'Raw.InputBusinessGreetingMessage',
|
|
1399
|
+
0xe519abab: 'Raw.BusinessGreetingMessage',
|
|
1400
|
+
0x832175e0: 'Raw.InputBusinessAwayMessage',
|
|
1401
|
+
0xef156a5c: 'Raw.BusinessAwayMessage',
|
|
1402
|
+
0xff9289f5: 'Raw.Timezone',
|
|
1403
|
+
0x970708cc: 'Raw.help.TimezonesListNotModified',
|
|
1404
|
+
0x7b74ed71: 'Raw.help.TimezonesList',
|
|
1405
|
+
0x697102b: 'Raw.QuickReply',
|
|
1406
|
+
0x24596d41: 'Raw.InputQuickReplyShortcut',
|
|
1407
|
+
0x1190cf1: 'Raw.InputQuickReplyShortcutId',
|
|
1408
|
+
0xc68d6695: 'Raw.messages.QuickReplies',
|
|
1409
|
+
0x5f91eb5b: 'Raw.messages.QuickRepliesNotModified',
|
|
1410
|
+
0xcd64636c: 'Raw.ConnectedBot',
|
|
1411
|
+
0x17d7f87b: 'Raw.account.ConnectedBots',
|
|
1412
|
+
0x2ad93719: 'Raw.messages.DialogFilters',
|
|
1413
|
+
0x6c8e1e06: 'Raw.Birthday',
|
|
1414
|
+
0x8f34b2f5: 'Raw.BotBusinessConnection',
|
|
1415
|
+
0x9c469cd: 'Raw.InputBusinessIntro',
|
|
1416
|
+
0x5a0a066d: 'Raw.BusinessIntro',
|
|
1417
|
+
0xfaff629d: 'Raw.messages.MyStickers',
|
|
1418
|
+
0xe39460a9: 'Raw.InputCollectibleUsername',
|
|
1419
|
+
0xa2e214a4: 'Raw.InputCollectiblePhone',
|
|
1420
|
+
0x6ebdff91: 'Raw.fragment.CollectibleInfo',
|
|
1421
|
+
0xc4e5921e: 'Raw.InputBusinessBotRecipients',
|
|
1422
|
+
0xb88cf373: 'Raw.BusinessBotRecipients',
|
|
1423
|
+
0x1d998733: 'Raw.ContactBirthday',
|
|
1424
|
+
0x114ff30d: 'Raw.contacts.ContactBirthdays',
|
|
1425
|
+
0x628c9224: 'Raw.MissingInvitee',
|
|
1426
|
+
0x7f5defa6: 'Raw.messages.InvitedUsers',
|
|
1427
|
+
0x11679fa7: 'Raw.InputBusinessChatLink',
|
|
1428
|
+
0xb4ae666f: 'Raw.BusinessChatLink',
|
|
1429
|
+
0xec43a2d1: 'Raw.account.BusinessChatLinks',
|
|
1430
|
+
0x9a23af21: 'Raw.account.ResolvedBusinessChatLinks',
|
|
1431
|
+
0xd62ff46a: 'Raw.RequestedPeerUser',
|
|
1432
|
+
0x7307544f: 'Raw.RequestedPeerChat',
|
|
1433
|
+
0x8ba403e4: 'Raw.RequestedPeerChannel',
|
|
1434
|
+
0x430d3150: 'Raw.SponsoredMessageReportOption',
|
|
1435
|
+
0x846f9e42: 'Raw.channels.SponsoredMessageReportResultChooseOption',
|
|
1436
|
+
0x3e3bcf2f: 'Raw.channels.SponsoredMessageReportResultAdsHidden',
|
|
1437
|
+
0xad798849: 'Raw.channels.SponsoredMessageReportResultReported',
|
|
1438
|
+
0xbac3a61a: 'Raw.ReactionNotificationsFromContacts',
|
|
1439
|
+
0x4b9e22a0: 'Raw.ReactionNotificationsFromAll',
|
|
1440
|
+
0x56e34970: 'Raw.ReactionsNotifySettings',
|
|
1441
|
+
0x93c3e27e: 'Raw.AvailableEffect',
|
|
1442
|
+
0xd1ed9a5b: 'Raw.messages.AvailableEffectsNotModified',
|
|
1443
|
+
0xbddb616e: 'Raw.messages.AvailableEffects',
|
|
1444
|
+
0xb89bfccf: 'Raw.FactCheck',
|
|
1445
|
+
0x95f2bfe4: 'Raw.StarsTransactionPeerUnsupported',
|
|
1446
|
+
0xb457b375: 'Raw.StarsTransactionPeerAppStore',
|
|
1447
|
+
0x7b560a0b: 'Raw.StarsTransactionPeerPlayMarket',
|
|
1448
|
+
0x250dbaf8: 'Raw.StarsTransactionPeerPremiumBot',
|
|
1449
|
+
0xe92fd902: 'Raw.StarsTransactionPeerFragment',
|
|
1450
|
+
0xd80da15d: 'Raw.StarsTransactionPeer',
|
|
1451
|
+
0x60682812: 'Raw.StarsTransactionPeerAds',
|
|
1452
|
+
0xf9677aad: 'Raw.StarsTransactionPeerAPI',
|
|
1453
|
+
0xbd915c0: 'Raw.StarsTopupOption',
|
|
1454
|
+
0x13659eb0: 'Raw.StarsTransaction',
|
|
1455
|
+
0x6c9ce8ed: 'Raw.payments.StarsStatus',
|
|
1456
|
+
0xe87acbc0: 'Raw.FoundStory',
|
|
1457
|
+
0xe2de7737: 'Raw.stories.FoundStories',
|
|
1458
|
+
0xde4c5d93: 'Raw.GeoPointAddress',
|
|
1459
|
+
0xfebe5491: 'Raw.StarsRevenueStatus',
|
|
1460
|
+
0x6c207376: 'Raw.payments.StarsRevenueStats',
|
|
1461
|
+
0x1dab80b7: 'Raw.payments.StarsRevenueWithdrawalUrl',
|
|
1462
|
+
0x394e7f21: 'Raw.payments.StarsRevenueAdsAccountUrl',
|
|
1463
|
+
0x206ae6d1: 'Raw.InputStarsTransaction',
|
|
1464
|
+
0x5e0589f1: 'Raw.StarsGiftOption',
|
|
1465
|
+
0x1991b13b: 'Raw.bots.PopularAppBots',
|
|
1466
|
+
0x23e91ba3: 'Raw.BotPreviewMedia',
|
|
1467
|
+
0xca71d64: 'Raw.bots.PreviewInfo',
|
|
1468
|
+
0x5416d58: 'Raw.StarsSubscriptionPricing',
|
|
1469
|
+
0x2e6eab1a: 'Raw.StarsSubscription',
|
|
1470
|
+
0x4ba3a95a: 'Raw.MessageReactor',
|
|
1471
|
+
0x94ce852a: 'Raw.StarsGiveawayOption',
|
|
1472
|
+
0x54236209: 'Raw.StarsGiveawayWinnersOption',
|
|
1473
|
+
0x313a9547: 'Raw.StarGift',
|
|
1474
|
+
0x85f0a9cd: 'Raw.StarGiftUnique',
|
|
1475
|
+
0xa388a368: 'Raw.payments.StarGiftsNotModified',
|
|
1476
|
+
0x2ed82995: 'Raw.payments.StarGifts',
|
|
1477
|
+
0x7903e3d9: 'Raw.MessageReportOption',
|
|
1478
|
+
0xf0e4e0b6: 'Raw.ReportResultChooseOption',
|
|
1479
|
+
0x6f09ac31: 'Raw.ReportResultAddComment',
|
|
1480
|
+
0x8db33c4b: 'Raw.ReportResultReported',
|
|
1481
|
+
0x8ecf0511: 'Raw.messages.BotPreparedInlineMessage',
|
|
1482
|
+
0xff57708d: 'Raw.messages.PreparedInlineMessage',
|
|
1483
|
+
0xc99b1950: 'Raw.BotAppSettings',
|
|
1484
|
+
0xdd0c66f2: 'Raw.StarRefProgram',
|
|
1485
|
+
0x19a13f71: 'Raw.ConnectedBotStarRef',
|
|
1486
|
+
0x98d5ea1d: 'Raw.payments.ConnectedStarRefBots',
|
|
1487
|
+
0xb4d5d859: 'Raw.payments.SuggestedStarRefBots',
|
|
1488
|
+
0xbbb6b4a3: 'Raw.StarsAmount',
|
|
1489
|
+
0x74aee3e0: 'Raw.StarsTonAmount',
|
|
1490
|
+
0x6010c534: 'Raw.messages.FoundStickersNotModified',
|
|
1491
|
+
0x82c9e290: 'Raw.messages.FoundStickers',
|
|
1492
|
+
0xb0cd6617: 'Raw.BotVerifierSettings',
|
|
1493
|
+
0xf93cd45c: 'Raw.BotVerification',
|
|
1494
|
+
0x565251e2: 'Raw.StarGiftAttributeModel',
|
|
1495
|
+
0x4e7085ea: 'Raw.StarGiftAttributePattern',
|
|
1496
|
+
0x9f2504e4: 'Raw.StarGiftAttributeBackdrop',
|
|
1497
|
+
0xe0bff26c: 'Raw.StarGiftAttributeOriginalDetails',
|
|
1498
|
+
0x3de1dfed: 'Raw.payments.StarGiftUpgradePreview',
|
|
1499
|
+
0x62d706b8: 'Raw.users.Users',
|
|
1500
|
+
0x315a4974: 'Raw.users.UsersSlice',
|
|
1501
|
+
0x416c56e8: 'Raw.payments.UniqueStarGift',
|
|
1502
|
+
0x8c9a88ac: 'Raw.messages.WebPagePreview',
|
|
1503
|
+
0x41df43fc: 'Raw.SavedStarGift',
|
|
1504
|
+
0x95f389b1: 'Raw.payments.SavedStarGifts',
|
|
1505
|
+
0x69279795: 'Raw.InputSavedStarGiftUser',
|
|
1506
|
+
0xf101aa7f: 'Raw.InputSavedStarGiftChat',
|
|
1507
|
+
0x2085c238: 'Raw.InputSavedStarGiftSlug',
|
|
1508
|
+
0x84aa3a9c: 'Raw.payments.StarGiftWithdrawalUrl',
|
|
1509
|
+
0x206ad49e: 'Raw.PaidReactionPrivacyDefault',
|
|
1510
|
+
0x1f0c1ad9: 'Raw.PaidReactionPrivacyAnonymous',
|
|
1511
|
+
0xdc6cfcf0: 'Raw.PaidReactionPrivacyPeer',
|
|
1512
|
+
0x1e109708: 'Raw.account.PaidMessagesRevenue',
|
|
1513
|
+
0x50a9839: 'Raw.RequirementToContactEmpty',
|
|
1514
|
+
0xe581e4e9: 'Raw.RequirementToContactPremium',
|
|
1515
|
+
0xb4f67e93: 'Raw.RequirementToContactPaidMessages',
|
|
1516
|
+
0xa0624cf7: 'Raw.BusinessBotRights',
|
|
1517
|
+
0x71f276c4: 'Raw.DisallowedGiftsSettings',
|
|
1518
|
+
0xc69708d3: 'Raw.SponsoredPeer',
|
|
1519
|
+
0xea32b4b1: 'Raw.contacts.SponsoredPeersEmpty',
|
|
1520
|
+
0xeb032884: 'Raw.contacts.SponsoredPeers',
|
|
1521
|
+
0x48aaae3c: 'Raw.StarGiftAttributeIdModel',
|
|
1522
|
+
0x4a162433: 'Raw.StarGiftAttributeIdPattern',
|
|
1523
|
+
0x1f01c757: 'Raw.StarGiftAttributeIdBackdrop',
|
|
1524
|
+
0x2eb1b658: 'Raw.StarGiftAttributeCounter',
|
|
1525
|
+
0x947a12df: 'Raw.payments.ResaleStarGifts',
|
|
1526
|
+
0xc387c04e: 'Raw.stories.CanSendStoryCount',
|
|
1527
|
+
0xe7e82e12: 'Raw.PendingSuggestion',
|
|
1528
|
+
0xcba9a52f: 'Raw.TodoItem',
|
|
1529
|
+
0x49b92a26: 'Raw.TodoList',
|
|
1530
|
+
0x221bb5e4: 'Raw.TodoCompletion',
|
|
1531
|
+
0xe8e37e5: 'Raw.SuggestedPost',
|
|
1532
|
+
0x1b0e4f07: 'Raw.StarsRating',
|
|
1533
|
+
0x9d6b13b0: 'Raw.StarGiftCollection',
|
|
1534
|
+
0xa0ba4f17: 'Raw.payments.StarGiftCollectionsNotModified',
|
|
1535
|
+
0x8a2932f3: 'Raw.payments.StarGiftCollections',
|
|
1536
|
+
0x9325705a: 'Raw.StoryAlbum',
|
|
1537
|
+
0x564edaeb: 'Raw.stories.AlbumsNotModified',
|
|
1538
|
+
0xc3987a3a: 'Raw.stories.Albums',
|
|
1539
|
+
0x3e0b5b6a: 'Raw.SearchPostsFlood',
|
|
1540
|
+
0x512fe446: 'Raw.payments.UniqueStarGiftValueInfo',
|
|
1541
|
+
0xb98cd696: 'Raw.ProfileTabPosts',
|
|
1542
|
+
0x4d4bd46a: 'Raw.ProfileTabGifts',
|
|
1543
|
+
0x72c64955: 'Raw.ProfileTabMedia',
|
|
1544
|
+
0xab339c00: 'Raw.ProfileTabFiles',
|
|
1545
|
+
0x9f27d26e: 'Raw.ProfileTabMusic',
|
|
1546
|
+
0xe477092e: 'Raw.ProfileTabVoice',
|
|
1547
|
+
0xd3656499: 'Raw.ProfileTabLinks',
|
|
1548
|
+
0xa2c0f695: 'Raw.ProfileTabGifs',
|
|
1549
|
+
0xe3878aa4: 'Raw.users.SavedMusicNotModified',
|
|
1550
|
+
0x34a2f297: 'Raw.users.SavedMusic',
|
|
1551
|
+
0x4fc81d6e: 'Raw.account.SavedMusicIdsNotModified',
|
|
1552
|
+
0x998d6636: 'Raw.account.SavedMusicIds',
|
|
1553
|
+
0x374fa7ad: 'Raw.payments.CheckCanSendGiftResultOk',
|
|
1554
|
+
0xd5e58274: 'Raw.payments.CheckCanSendGiftResultFail',
|
|
1555
|
+
0x83268483: 'Raw.InputChatThemeEmpty',
|
|
1556
|
+
0xc93de95c: 'Raw.InputChatTheme',
|
|
1557
|
+
0x87e5dfe4: 'Raw.InputChatThemeUniqueGift',
|
|
1558
|
+
0x99ea331d: 'Raw.StarGiftUpgradePrice',
|
|
1559
|
+
0x1a8afc7e: 'Raw.GroupCallMessage',
|
|
1560
|
+
0xee430c85: 'Raw.GroupCallDonor',
|
|
1561
|
+
0x9d1dbd26: 'Raw.phone.GroupCallStars',
|
|
1562
|
+
0x711d692d: 'Raw.RecentStory',
|
|
1563
|
+
0x310240cc: 'Raw.AuctionBidLevel',
|
|
1564
|
+
0xfe333952: 'Raw.StarGiftAuctionStateNotModified',
|
|
1565
|
+
0x771a4e66: 'Raw.StarGiftAuctionState',
|
|
1566
|
+
0x972dabbf: 'Raw.StarGiftAuctionStateFinished',
|
|
1567
|
+
0x2eeed1c4: 'Raw.StarGiftAuctionUserState',
|
|
1568
|
+
0x6b39f4ec: 'Raw.payments.StarGiftAuctionState',
|
|
1569
|
+
0x42b00348: 'Raw.StarGiftAuctionAcquiredGift',
|
|
1570
|
+
0x7d5bd1f0: 'Raw.payments.StarGiftAuctionAcquiredGifts',
|
|
1571
|
+
0xd31bc45d: 'Raw.StarGiftActiveAuctionState',
|
|
1572
|
+
0xdb33dad0: 'Raw.payments.StarGiftActiveAuctionsNotModified',
|
|
1573
|
+
0xaef6abbc: 'Raw.payments.StarGiftActiveAuctions',
|
|
1574
|
+
0x2e16c98: 'Raw.InputStarGiftAuction',
|
|
1575
|
+
0x7ab58308: 'Raw.InputStarGiftAuctionSlug',
|
|
1576
|
+
0x98613ebf: 'Raw.Passkey',
|
|
1577
|
+
0xf8e0aa1c: 'Raw.account.Passkeys',
|
|
1578
|
+
0xe16b5ce1: 'Raw.account.PasskeyRegistrationOptions',
|
|
1579
|
+
0xe2037789: 'Raw.auth.PasskeyLoginOptions',
|
|
1580
|
+
0x3e63935c: 'Raw.InputPasskeyResponseRegister',
|
|
1581
|
+
0xc31fc14a: 'Raw.InputPasskeyResponseLogin',
|
|
1582
|
+
0x3c27b78f: 'Raw.InputPasskeyCredentialPublicKey',
|
|
1583
|
+
0x5b1ccb28: 'Raw.InputPasskeyCredentialFirebasePNV',
|
|
1584
|
+
0xaff56398: 'Raw.StarGiftBackground',
|
|
1585
|
+
0x3aae0528: 'Raw.StarGiftAuctionRound',
|
|
1586
|
+
0xaa021e5: 'Raw.StarGiftAuctionRoundExtendable',
|
|
1587
|
+
0x46c6e36f: 'Raw.payments.StarGiftUpgradeAttributes',
|
|
1588
|
+
0xda2ad647: 'Raw.messages.EmojiGameOutcome',
|
|
1589
|
+
0x59e65335: 'Raw.messages.EmojiGameUnavailable',
|
|
1590
|
+
0x44e56023: 'Raw.messages.EmojiGameDiceInfo',
|
|
1591
|
+
0x36437737: 'Raw.StarGiftAttributeRarity',
|
|
1592
|
+
0xdbce6389: 'Raw.StarGiftAttributeRarityUncommon',
|
|
1593
|
+
0xf08d516b: 'Raw.StarGiftAttributeRarityRare',
|
|
1594
|
+
0x78fbf3a8: 'Raw.StarGiftAttributeRarityEpic',
|
|
1595
|
+
0xcef7e7a8: 'Raw.StarGiftAttributeRarityLegendary',
|
|
1596
|
+
0x4fdd3430: 'Raw.KeyboardButtonStyle',
|
|
1597
|
+
0xcb9f372d: 'Raw.InvokeAfterMsg',
|
|
1598
|
+
0x3dc4b4f0: 'Raw.InvokeAfterMsgs',
|
|
1599
|
+
0xc1cd5ea9: 'Raw.InitConnection',
|
|
1600
|
+
0xda9b0d0d: 'Raw.InvokeWithLayer',
|
|
1601
|
+
0xbf9459b7: 'Raw.InvokeWithoutUpdates',
|
|
1602
|
+
0x365275f2: 'Raw.InvokeWithMessagesRange',
|
|
1603
|
+
0xaca9fd2e: 'Raw.InvokeWithTakeout',
|
|
1604
|
+
0xdd289f8e: 'Raw.InvokeWithBusinessConnection',
|
|
1605
|
+
0x1df92984: 'Raw.InvokeWithGooglePlayIntegrity',
|
|
1606
|
+
0x0dae54f8: 'Raw.InvokeWithApnsSecret',
|
|
1607
|
+
0xadbb0f94: 'Raw.InvokeWithReCaptcha',
|
|
1608
|
+
0xa677244f: 'Raw.auth.SendCode',
|
|
1609
|
+
0xaac7b717: 'Raw.auth.SignUp',
|
|
1610
|
+
0x8d52a951: 'Raw.auth.SignIn',
|
|
1611
|
+
0x3e72ba19: 'Raw.auth.LogOut',
|
|
1612
|
+
0x9fab0d1a: 'Raw.auth.ResetAuthorizations',
|
|
1613
|
+
0xe5bfffcd: 'Raw.auth.ExportAuthorization',
|
|
1614
|
+
0xa57a7dad: 'Raw.auth.ImportAuthorization',
|
|
1615
|
+
0xcdd42a05: 'Raw.auth.BindTempAuthKey',
|
|
1616
|
+
0x67a3ff2c: 'Raw.auth.ImportBotAuthorization',
|
|
1617
|
+
0xd18b4d16: 'Raw.auth.CheckPassword',
|
|
1618
|
+
0xd897bc66: 'Raw.auth.RequestPasswordRecovery',
|
|
1619
|
+
0x37096c70: 'Raw.auth.RecoverPassword',
|
|
1620
|
+
0xcae47523: 'Raw.auth.ResendCode',
|
|
1621
|
+
0x1f040578: 'Raw.auth.CancelCode',
|
|
1622
|
+
0x8e48a188: 'Raw.auth.DropTempAuthKeys',
|
|
1623
|
+
0xb7e085fe: 'Raw.auth.ExportLoginToken',
|
|
1624
|
+
0x95ac5ce4: 'Raw.auth.ImportLoginToken',
|
|
1625
|
+
0xe894ad4d: 'Raw.auth.AcceptLoginToken',
|
|
1626
|
+
0xd36bf79: 'Raw.auth.CheckRecoveryPassword',
|
|
1627
|
+
0x2db873a9: 'Raw.auth.ImportWebTokenAuthorization',
|
|
1628
|
+
0x8e39261e: 'Raw.auth.RequestFirebaseSms',
|
|
1629
|
+
0x7e960193: 'Raw.auth.ResetLoginEmail',
|
|
1630
|
+
0xcb9deff6: 'Raw.auth.ReportMissingCode',
|
|
1631
|
+
0x56e59f9c: 'Raw.auth.CheckPaidAuth',
|
|
1632
|
+
0x518ad0b7: 'Raw.auth.InitPasskeyLogin',
|
|
1633
|
+
0x9857ad07: 'Raw.auth.FinishPasskeyLogin',
|
|
1634
|
+
0xec86017a: 'Raw.account.RegisterDevice',
|
|
1635
|
+
0x6a0d3206: 'Raw.account.UnregisterDevice',
|
|
1636
|
+
0x84be5b93: 'Raw.account.UpdateNotifySettings',
|
|
1637
|
+
0x12b3ad31: 'Raw.account.GetNotifySettings',
|
|
1638
|
+
0xdb7e1747: 'Raw.account.ResetNotifySettings',
|
|
1639
|
+
0x78515775: 'Raw.account.UpdateProfile',
|
|
1640
|
+
0x6628562c: 'Raw.account.UpdateStatus',
|
|
1641
|
+
0x7967d36: 'Raw.account.GetWallPapers',
|
|
1642
|
+
0xc5ba3d86: 'Raw.account.ReportPeer',
|
|
1643
|
+
0x2714d86c: 'Raw.account.CheckUsername',
|
|
1644
|
+
0x3e0bdd7c: 'Raw.account.UpdateUsername',
|
|
1645
|
+
0xdadbc950: 'Raw.account.GetPrivacy',
|
|
1646
|
+
0xc9f81ce8: 'Raw.account.SetPrivacy',
|
|
1647
|
+
0xa2c0cf74: 'Raw.account.DeleteAccount',
|
|
1648
|
+
0x8fc711d: 'Raw.account.GetAccountTTL',
|
|
1649
|
+
0x2442485e: 'Raw.account.SetAccountTTL',
|
|
1650
|
+
0x82574ae5: 'Raw.account.SendChangePhoneCode',
|
|
1651
|
+
0x70c32edb: 'Raw.account.ChangePhone',
|
|
1652
|
+
0x38df3532: 'Raw.account.UpdateDeviceLocked',
|
|
1653
|
+
0xe320c158: 'Raw.account.GetAuthorizations',
|
|
1654
|
+
0xdf77f3bc: 'Raw.account.ResetAuthorization',
|
|
1655
|
+
0x548a30f5: 'Raw.account.GetPassword',
|
|
1656
|
+
0x9cd4eaf9: 'Raw.account.GetPasswordSettings',
|
|
1657
|
+
0xa59b102f: 'Raw.account.UpdatePasswordSettings',
|
|
1658
|
+
0x1b3faa88: 'Raw.account.SendConfirmPhoneCode',
|
|
1659
|
+
0x5f2178c3: 'Raw.account.ConfirmPhone',
|
|
1660
|
+
0x449e0b51: 'Raw.account.GetTmpPassword',
|
|
1661
|
+
0x182e6d6f: 'Raw.account.GetWebAuthorizations',
|
|
1662
|
+
0x2d01b9ef: 'Raw.account.ResetWebAuthorization',
|
|
1663
|
+
0x682d2594: 'Raw.account.ResetWebAuthorizations',
|
|
1664
|
+
0xb288bc7d: 'Raw.account.GetAllSecureValues',
|
|
1665
|
+
0x73665bc2: 'Raw.account.GetSecureValue',
|
|
1666
|
+
0x899fe31d: 'Raw.account.SaveSecureValue',
|
|
1667
|
+
0xb880bc4b: 'Raw.account.DeleteSecureValue',
|
|
1668
|
+
0xa929597a: 'Raw.account.GetAuthorizationForm',
|
|
1669
|
+
0xf3ed4c73: 'Raw.account.AcceptAuthorization',
|
|
1670
|
+
0xa5a356f9: 'Raw.account.SendVerifyPhoneCode',
|
|
1671
|
+
0x4dd3a7f6: 'Raw.account.VerifyPhone',
|
|
1672
|
+
0x98e037bb: 'Raw.account.SendVerifyEmailCode',
|
|
1673
|
+
0x32da4cf: 'Raw.account.VerifyEmail',
|
|
1674
|
+
0x8ef3eab0: 'Raw.account.InitTakeoutSession',
|
|
1675
|
+
0x1d2652ee: 'Raw.account.FinishTakeoutSession',
|
|
1676
|
+
0x8fdf1920: 'Raw.account.ConfirmPasswordEmail',
|
|
1677
|
+
0x7a7f2a15: 'Raw.account.ResendPasswordEmail',
|
|
1678
|
+
0xc1cbd5b6: 'Raw.account.CancelPasswordEmail',
|
|
1679
|
+
0x9f07c728: 'Raw.account.GetContactSignUpNotification',
|
|
1680
|
+
0xcff43f61: 'Raw.account.SetContactSignUpNotification',
|
|
1681
|
+
0x53577479: 'Raw.account.GetNotifyExceptions',
|
|
1682
|
+
0xfc8ddbea: 'Raw.account.GetWallPaper',
|
|
1683
|
+
0xe39a8f03: 'Raw.account.UploadWallPaper',
|
|
1684
|
+
0x6c5a5b37: 'Raw.account.SaveWallPaper',
|
|
1685
|
+
0xfeed5769: 'Raw.account.InstallWallPaper',
|
|
1686
|
+
0xbb3b9804: 'Raw.account.ResetWallPapers',
|
|
1687
|
+
0x56da0b3f: 'Raw.account.GetAutoDownloadSettings',
|
|
1688
|
+
0x76f36233: 'Raw.account.SaveAutoDownloadSettings',
|
|
1689
|
+
0x1c3db333: 'Raw.account.UploadTheme',
|
|
1690
|
+
0x652e4400: 'Raw.account.CreateTheme',
|
|
1691
|
+
0x2bf40ccc: 'Raw.account.UpdateTheme',
|
|
1692
|
+
0xf257106c: 'Raw.account.SaveTheme',
|
|
1693
|
+
0xc727bb3b: 'Raw.account.InstallTheme',
|
|
1694
|
+
0x3a5869ec: 'Raw.account.GetTheme',
|
|
1695
|
+
0x7206e458: 'Raw.account.GetThemes',
|
|
1696
|
+
0xb574b16b: 'Raw.account.SetContentSettings',
|
|
1697
|
+
0x8b9b4dae: 'Raw.account.GetContentSettings',
|
|
1698
|
+
0x65ad71dc: 'Raw.account.GetMultiWallPapers',
|
|
1699
|
+
0xeb2b4cf6: 'Raw.account.GetGlobalPrivacySettings',
|
|
1700
|
+
0x1edaaac2: 'Raw.account.SetGlobalPrivacySettings',
|
|
1701
|
+
0xfa8cc6f5: 'Raw.account.ReportProfilePhoto',
|
|
1702
|
+
0x9308ce1b: 'Raw.account.ResetPassword',
|
|
1703
|
+
0x4c9409f6: 'Raw.account.DeclinePasswordReset',
|
|
1704
|
+
0xd638de89: 'Raw.account.GetChatThemes',
|
|
1705
|
+
0xbf899aa0: 'Raw.account.SetAuthorizationTTL',
|
|
1706
|
+
0x40f48462: 'Raw.account.ChangeAuthorizationSettings',
|
|
1707
|
+
0xe1902288: 'Raw.account.GetSavedRingtones',
|
|
1708
|
+
0x3dea5b03: 'Raw.account.SaveRingtone',
|
|
1709
|
+
0x831a83a2: 'Raw.account.UploadRingtone',
|
|
1710
|
+
0xfbd3de6b: 'Raw.account.UpdateEmojiStatus',
|
|
1711
|
+
0xd6753386: 'Raw.account.GetDefaultEmojiStatuses',
|
|
1712
|
+
0xf578105: 'Raw.account.GetRecentEmojiStatuses',
|
|
1713
|
+
0x18201aae: 'Raw.account.ClearRecentEmojiStatuses',
|
|
1714
|
+
0xef500eab: 'Raw.account.ReorderUsernames',
|
|
1715
|
+
0x58d6b376: 'Raw.account.ToggleUsername',
|
|
1716
|
+
0xe2750328: 'Raw.account.GetDefaultProfilePhotoEmojis',
|
|
1717
|
+
0x915860ae: 'Raw.account.GetDefaultGroupPhotoEmojis',
|
|
1718
|
+
0xadcbbcda: 'Raw.account.GetAutoSaveSettings',
|
|
1719
|
+
0xd69b8361: 'Raw.account.SaveAutoSaveSettings',
|
|
1720
|
+
0x53bc0020: 'Raw.account.DeleteAutoSaveExceptions',
|
|
1721
|
+
0xca8ae8ba: 'Raw.account.InvalidateSignInCodes',
|
|
1722
|
+
0x684d214e: 'Raw.account.UpdateColor',
|
|
1723
|
+
0xa60ab9ce: 'Raw.account.GetDefaultBackgroundEmojis',
|
|
1724
|
+
0x7727a7d5: 'Raw.account.GetChannelDefaultEmojiStatuses',
|
|
1725
|
+
0x35a9e0d5: 'Raw.account.GetChannelRestrictedStatusEmojis',
|
|
1726
|
+
0x4b00e066: 'Raw.account.UpdateBusinessWorkHours',
|
|
1727
|
+
0x9e6b131a: 'Raw.account.UpdateBusinessLocation',
|
|
1728
|
+
0x66cdafc4: 'Raw.account.UpdateBusinessGreetingMessage',
|
|
1729
|
+
0xa26a7fa5: 'Raw.account.UpdateBusinessAwayMessage',
|
|
1730
|
+
0x66a08c7e: 'Raw.account.UpdateConnectedBot',
|
|
1731
|
+
0x4ea4c80f: 'Raw.account.GetConnectedBots',
|
|
1732
|
+
0x76a86270: 'Raw.account.GetBotBusinessConnection',
|
|
1733
|
+
0xa614d034: 'Raw.account.UpdateBusinessIntro',
|
|
1734
|
+
0x646e1097: 'Raw.account.ToggleConnectedBotPaused',
|
|
1735
|
+
0x5e437ed9: 'Raw.account.DisablePeerConnectedBot',
|
|
1736
|
+
0xcc6e0c11: 'Raw.account.UpdateBirthday',
|
|
1737
|
+
0x8851e68e: 'Raw.account.CreateBusinessChatLink',
|
|
1738
|
+
0x8c3410af: 'Raw.account.EditBusinessChatLink',
|
|
1739
|
+
0x60073674: 'Raw.account.DeleteBusinessChatLink',
|
|
1740
|
+
0x6f70dde1: 'Raw.account.GetBusinessChatLinks',
|
|
1741
|
+
0x5492e5ee: 'Raw.account.ResolveBusinessChatLink',
|
|
1742
|
+
0xd94305e0: 'Raw.account.UpdatePersonalChannel',
|
|
1743
|
+
0xb9d9a38d: 'Raw.account.ToggleSponsoredMessages',
|
|
1744
|
+
0x6dd654c: 'Raw.account.GetReactionsNotifySettings',
|
|
1745
|
+
0x316ce548: 'Raw.account.SetReactionsNotifySettings',
|
|
1746
|
+
0x2e7b4543: 'Raw.account.GetCollectibleEmojiStatuses',
|
|
1747
|
+
0x19ba4a67: 'Raw.account.GetPaidMessagesRevenue',
|
|
1748
|
+
0xfe2eda76: 'Raw.account.ToggleNoPaidMessagesException',
|
|
1749
|
+
0x5dee78b0: 'Raw.account.SetMainProfileTab',
|
|
1750
|
+
0xb26732a9: 'Raw.account.SaveMusic',
|
|
1751
|
+
0xe09d5faf: 'Raw.account.GetSavedMusicIds',
|
|
1752
|
+
0xe42ce9c9: 'Raw.account.GetUniqueGiftChatThemes',
|
|
1753
|
+
0x429547e8: 'Raw.account.InitPasskeyRegistration',
|
|
1754
|
+
0x55b41fd6: 'Raw.account.RegisterPasskey',
|
|
1755
|
+
0xea1f0c52: 'Raw.account.GetPasskeys',
|
|
1756
|
+
0xf5b5563f: 'Raw.account.DeletePasskey',
|
|
1757
|
+
0xd91a548: 'Raw.users.GetUsers',
|
|
1758
|
+
0xb60f5918: 'Raw.users.GetFullUser',
|
|
1759
|
+
0x90c894b5: 'Raw.users.SetSecureValueErrors',
|
|
1760
|
+
0xd89a83a3: 'Raw.users.GetRequirementsToContact',
|
|
1761
|
+
0x788d7fe3: 'Raw.users.GetSavedMusic',
|
|
1762
|
+
0x7573a4e9: 'Raw.users.GetSavedMusicByID',
|
|
1763
|
+
0xfc533372: 'Raw.users.SuggestBirthday',
|
|
1764
|
+
0x7adc669d: 'Raw.contacts.GetContactIDs',
|
|
1765
|
+
0xc4a353ee: 'Raw.contacts.GetStatuses',
|
|
1766
|
+
0x5dd69e12: 'Raw.contacts.GetContacts',
|
|
1767
|
+
0x2c800be5: 'Raw.contacts.ImportContacts',
|
|
1768
|
+
0x96a0e00: 'Raw.contacts.DeleteContacts',
|
|
1769
|
+
0x1013fd9e: 'Raw.contacts.DeleteByPhones',
|
|
1770
|
+
0x2e2e8734: 'Raw.contacts.Block',
|
|
1771
|
+
0xb550d328: 'Raw.contacts.Unblock',
|
|
1772
|
+
0x9a868f80: 'Raw.contacts.GetBlocked',
|
|
1773
|
+
0x11f812d8: 'Raw.contacts.Search',
|
|
1774
|
+
0x725afbbc: 'Raw.contacts.ResolveUsername',
|
|
1775
|
+
0x973478b6: 'Raw.contacts.GetTopPeers',
|
|
1776
|
+
0x1ae373ac: 'Raw.contacts.ResetTopPeerRating',
|
|
1777
|
+
0x879537f1: 'Raw.contacts.ResetSaved',
|
|
1778
|
+
0x82f1e39f: 'Raw.contacts.GetSaved',
|
|
1779
|
+
0x8514bdda: 'Raw.contacts.ToggleTopPeers',
|
|
1780
|
+
0xd9ba2e54: 'Raw.contacts.AddContact',
|
|
1781
|
+
0xf831a20f: 'Raw.contacts.AcceptContact',
|
|
1782
|
+
0xd348bc44: 'Raw.contacts.GetLocated',
|
|
1783
|
+
0x29a8962c: 'Raw.contacts.BlockFromReplies',
|
|
1784
|
+
0x8af94344: 'Raw.contacts.ResolvePhone',
|
|
1785
|
+
0xf8654027: 'Raw.contacts.ExportContactToken',
|
|
1786
|
+
0x13005788: 'Raw.contacts.ImportContactToken',
|
|
1787
|
+
0xba6705f0: 'Raw.contacts.EditCloseFriends',
|
|
1788
|
+
0x94c65c76: 'Raw.contacts.SetBlocked',
|
|
1789
|
+
0xdaeda864: 'Raw.contacts.GetBirthdays',
|
|
1790
|
+
0xb6c8c393: 'Raw.contacts.GetSponsoredPeers',
|
|
1791
|
+
0x139f63fb: 'Raw.contacts.UpdateContactNote',
|
|
1792
|
+
0x63c66506: 'Raw.messages.GetMessages',
|
|
1793
|
+
0xa0f4cb4f: 'Raw.messages.GetDialogs',
|
|
1794
|
+
0x4423e6c5: 'Raw.messages.GetHistory',
|
|
1795
|
+
0x29ee847a: 'Raw.messages.Search',
|
|
1796
|
+
0xe306d3a: 'Raw.messages.ReadHistory',
|
|
1797
|
+
0xb08f922a: 'Raw.messages.DeleteHistory',
|
|
1798
|
+
0xe58e95d2: 'Raw.messages.DeleteMessages',
|
|
1799
|
+
0x5a954c0: 'Raw.messages.ReceivedMessages',
|
|
1800
|
+
0x58943ee2: 'Raw.messages.SetTyping',
|
|
1801
|
+
0x545cd15a: 'Raw.messages.SendMessage',
|
|
1802
|
+
0x330e77f: 'Raw.messages.SendMedia',
|
|
1803
|
+
0x13704a7c: 'Raw.messages.ForwardMessages',
|
|
1804
|
+
0xcf1592db: 'Raw.messages.ReportSpam',
|
|
1805
|
+
0xefd9a6a2: 'Raw.messages.GetPeerSettings',
|
|
1806
|
+
0xfc78af9b: 'Raw.messages.Report',
|
|
1807
|
+
0x49e9528f: 'Raw.messages.GetChats',
|
|
1808
|
+
0xaeb00b34: 'Raw.messages.GetFullChat',
|
|
1809
|
+
0x73783ffd: 'Raw.messages.EditChatTitle',
|
|
1810
|
+
0x35ddd674: 'Raw.messages.EditChatPhoto',
|
|
1811
|
+
0xcbc6d107: 'Raw.messages.AddChatUser',
|
|
1812
|
+
0xa2185cab: 'Raw.messages.DeleteChatUser',
|
|
1813
|
+
0x92ceddd4: 'Raw.messages.CreateChat',
|
|
1814
|
+
0x26cf8950: 'Raw.messages.GetDhConfig',
|
|
1815
|
+
0xf64daf43: 'Raw.messages.RequestEncryption',
|
|
1816
|
+
0x3dbc0415: 'Raw.messages.AcceptEncryption',
|
|
1817
|
+
0xf393aea0: 'Raw.messages.DiscardEncryption',
|
|
1818
|
+
0x791451ed: 'Raw.messages.SetEncryptedTyping',
|
|
1819
|
+
0x7f4b690a: 'Raw.messages.ReadEncryptedHistory',
|
|
1820
|
+
0x44fa7a15: 'Raw.messages.SendEncrypted',
|
|
1821
|
+
0x5559481d: 'Raw.messages.SendEncryptedFile',
|
|
1822
|
+
0x32d439a4: 'Raw.messages.SendEncryptedService',
|
|
1823
|
+
0x55a5bb66: 'Raw.messages.ReceivedQueue',
|
|
1824
|
+
0x4b0c8c0f: 'Raw.messages.ReportEncryptedSpam',
|
|
1825
|
+
0x36a73f77: 'Raw.messages.ReadMessageContents',
|
|
1826
|
+
0xd5a5d3a1: 'Raw.messages.GetStickers',
|
|
1827
|
+
0xb8a0a1a8: 'Raw.messages.GetAllStickers',
|
|
1828
|
+
0x570d6f6f: 'Raw.messages.GetWebPagePreview',
|
|
1829
|
+
0xa455de90: 'Raw.messages.ExportChatInvite',
|
|
1830
|
+
0x3eadb1bb: 'Raw.messages.CheckChatInvite',
|
|
1831
|
+
0x6c50051c: 'Raw.messages.ImportChatInvite',
|
|
1832
|
+
0xc8a0ec74: 'Raw.messages.GetStickerSet',
|
|
1833
|
+
0xc78fe460: 'Raw.messages.InstallStickerSet',
|
|
1834
|
+
0xf96e55de: 'Raw.messages.UninstallStickerSet',
|
|
1835
|
+
0xe6df7378: 'Raw.messages.StartBot',
|
|
1836
|
+
0x5784d3e1: 'Raw.messages.GetMessagesViews',
|
|
1837
|
+
0xa85bd1c2: 'Raw.messages.EditChatAdmin',
|
|
1838
|
+
0xa2875319: 'Raw.messages.MigrateChat',
|
|
1839
|
+
0x4bc6589a: 'Raw.messages.SearchGlobal',
|
|
1840
|
+
0x78337739: 'Raw.messages.ReorderStickerSets',
|
|
1841
|
+
0xb1f2061f: 'Raw.messages.GetDocumentByHash',
|
|
1842
|
+
0x5cf09635: 'Raw.messages.GetSavedGifs',
|
|
1843
|
+
0x327a30cb: 'Raw.messages.SaveGif',
|
|
1844
|
+
0x514e999d: 'Raw.messages.GetInlineBotResults',
|
|
1845
|
+
0xbb12a419: 'Raw.messages.SetInlineBotResults',
|
|
1846
|
+
0xc0cf7646: 'Raw.messages.SendInlineBotResult',
|
|
1847
|
+
0xfda68d36: 'Raw.messages.GetMessageEditData',
|
|
1848
|
+
0x51e842e1: 'Raw.messages.EditMessage',
|
|
1849
|
+
0x83557dba: 'Raw.messages.EditInlineBotMessage',
|
|
1850
|
+
0x9342ca07: 'Raw.messages.GetBotCallbackAnswer',
|
|
1851
|
+
0xd58f130a: 'Raw.messages.SetBotCallbackAnswer',
|
|
1852
|
+
0xe470bcfd: 'Raw.messages.GetPeerDialogs',
|
|
1853
|
+
0x54ae308e: 'Raw.messages.SaveDraft',
|
|
1854
|
+
0x6a3f8d65: 'Raw.messages.GetAllDrafts',
|
|
1855
|
+
0x64780b14: 'Raw.messages.GetFeaturedStickers',
|
|
1856
|
+
0x5b118126: 'Raw.messages.ReadFeaturedStickers',
|
|
1857
|
+
0x9da9403b: 'Raw.messages.GetRecentStickers',
|
|
1858
|
+
0x392718f8: 'Raw.messages.SaveRecentSticker',
|
|
1859
|
+
0x8999602d: 'Raw.messages.ClearRecentStickers',
|
|
1860
|
+
0x57f17692: 'Raw.messages.GetArchivedStickers',
|
|
1861
|
+
0x640f82b8: 'Raw.messages.GetMaskStickers',
|
|
1862
|
+
0xcc5b67cc: 'Raw.messages.GetAttachedStickers',
|
|
1863
|
+
0x8ef8ecc0: 'Raw.messages.SetGameScore',
|
|
1864
|
+
0x15ad9f64: 'Raw.messages.SetInlineGameScore',
|
|
1865
|
+
0xe822649d: 'Raw.messages.GetGameHighScores',
|
|
1866
|
+
0xf635e1b: 'Raw.messages.GetInlineGameHighScores',
|
|
1867
|
+
0xe40ca104: 'Raw.messages.GetCommonChats',
|
|
1868
|
+
0x8d9692a3: 'Raw.messages.GetWebPage',
|
|
1869
|
+
0xa731e257: 'Raw.messages.ToggleDialogPin',
|
|
1870
|
+
0x3b1adf37: 'Raw.messages.ReorderPinnedDialogs',
|
|
1871
|
+
0xd6b94df2: 'Raw.messages.GetPinnedDialogs',
|
|
1872
|
+
0xe5f672fa: 'Raw.messages.SetBotShippingResults',
|
|
1873
|
+
0x9c2dd95: 'Raw.messages.SetBotPrecheckoutResults',
|
|
1874
|
+
0x14967978: 'Raw.messages.UploadMedia',
|
|
1875
|
+
0xa1405817: 'Raw.messages.SendScreenshotNotification',
|
|
1876
|
+
0x4f1aaa9: 'Raw.messages.GetFavedStickers',
|
|
1877
|
+
0xb9ffc55b: 'Raw.messages.FaveSticker',
|
|
1878
|
+
0xf107e790: 'Raw.messages.GetUnreadMentions',
|
|
1879
|
+
0x36e5bf4d: 'Raw.messages.ReadMentions',
|
|
1880
|
+
0x702a40e0: 'Raw.messages.GetRecentLocations',
|
|
1881
|
+
0x1bf89d74: 'Raw.messages.SendMultiMedia',
|
|
1882
|
+
0x5057c497: 'Raw.messages.UploadEncryptedFile',
|
|
1883
|
+
0x35705b8a: 'Raw.messages.SearchStickerSets',
|
|
1884
|
+
0x1cff7e08: 'Raw.messages.GetSplitRanges',
|
|
1885
|
+
0x8c5006f8: 'Raw.messages.MarkDialogUnread',
|
|
1886
|
+
0x21202222: 'Raw.messages.GetDialogUnreadMarks',
|
|
1887
|
+
0x7e58ee9c: 'Raw.messages.ClearAllDrafts',
|
|
1888
|
+
0xd2aaf7ec: 'Raw.messages.UpdatePinnedMessage',
|
|
1889
|
+
0x10ea6184: 'Raw.messages.SendVote',
|
|
1890
|
+
0x73bb643b: 'Raw.messages.GetPollResults',
|
|
1891
|
+
0x6e2be050: 'Raw.messages.GetOnlines',
|
|
1892
|
+
0xdef60797: 'Raw.messages.EditChatAbout',
|
|
1893
|
+
0xa5866b41: 'Raw.messages.EditChatDefaultBannedRights',
|
|
1894
|
+
0x35a0e062: 'Raw.messages.GetEmojiKeywords',
|
|
1895
|
+
0x1508b6af: 'Raw.messages.GetEmojiKeywordsDifference',
|
|
1896
|
+
0x4e9963b2: 'Raw.messages.GetEmojiKeywordsLanguages',
|
|
1897
|
+
0xd5b10c26: 'Raw.messages.GetEmojiURL',
|
|
1898
|
+
0x1bbcf300: 'Raw.messages.GetSearchCounters',
|
|
1899
|
+
0x198fb446: 'Raw.messages.RequestUrlAuth',
|
|
1900
|
+
0xb12c7125: 'Raw.messages.AcceptUrlAuth',
|
|
1901
|
+
0x4facb138: 'Raw.messages.HidePeerSettingsBar',
|
|
1902
|
+
0xf516760b: 'Raw.messages.GetScheduledHistory',
|
|
1903
|
+
0xbdbb0464: 'Raw.messages.GetScheduledMessages',
|
|
1904
|
+
0xbd38850a: 'Raw.messages.SendScheduledMessages',
|
|
1905
|
+
0x59ae2b16: 'Raw.messages.DeleteScheduledMessages',
|
|
1906
|
+
0xb86e380e: 'Raw.messages.GetPollVotes',
|
|
1907
|
+
0xb5052fea: 'Raw.messages.ToggleStickerSets',
|
|
1908
|
+
0xefd48c89: 'Raw.messages.GetDialogFilters',
|
|
1909
|
+
0xa29cd42c: 'Raw.messages.GetSuggestedDialogFilters',
|
|
1910
|
+
0x1ad4a04a: 'Raw.messages.UpdateDialogFilter',
|
|
1911
|
+
0xc563c1e4: 'Raw.messages.UpdateDialogFiltersOrder',
|
|
1912
|
+
0x7ed094a1: 'Raw.messages.GetOldFeaturedStickers',
|
|
1913
|
+
0x22ddd30c: 'Raw.messages.GetReplies',
|
|
1914
|
+
0x446972fd: 'Raw.messages.GetDiscussionMessage',
|
|
1915
|
+
0xf731a9f4: 'Raw.messages.ReadDiscussion',
|
|
1916
|
+
0x62dd747: 'Raw.messages.UnpinAllMessages',
|
|
1917
|
+
0x5bd0ee50: 'Raw.messages.DeleteChat',
|
|
1918
|
+
0xf9cbe409: 'Raw.messages.DeletePhoneCallHistory',
|
|
1919
|
+
0x43fe19f3: 'Raw.messages.CheckHistoryImport',
|
|
1920
|
+
0x34090c3b: 'Raw.messages.InitHistoryImport',
|
|
1921
|
+
0x2a862092: 'Raw.messages.UploadImportedMedia',
|
|
1922
|
+
0xb43df344: 'Raw.messages.StartHistoryImport',
|
|
1923
|
+
0xa2b5a3f6: 'Raw.messages.GetExportedChatInvites',
|
|
1924
|
+
0x73746f5c: 'Raw.messages.GetExportedChatInvite',
|
|
1925
|
+
0xbdca2f75: 'Raw.messages.EditExportedChatInvite',
|
|
1926
|
+
0x56987bd5: 'Raw.messages.DeleteRevokedExportedChatInvites',
|
|
1927
|
+
0xd464a42b: 'Raw.messages.DeleteExportedChatInvite',
|
|
1928
|
+
0x3920e6ef: 'Raw.messages.GetAdminsWithInvites',
|
|
1929
|
+
0xdf04dd4e: 'Raw.messages.GetChatInviteImporters',
|
|
1930
|
+
0xb80e5fe4: 'Raw.messages.SetHistoryTTL',
|
|
1931
|
+
0x5dc60f03: 'Raw.messages.CheckHistoryImportPeer',
|
|
1932
|
+
0x81202c9: 'Raw.messages.SetChatTheme',
|
|
1933
|
+
0x31c1c44f: 'Raw.messages.GetMessageReadParticipants',
|
|
1934
|
+
0x6aa3f6bd: 'Raw.messages.GetSearchResultsCalendar',
|
|
1935
|
+
0x9c7f2f10: 'Raw.messages.GetSearchResultsPositions',
|
|
1936
|
+
0x7fe7e815: 'Raw.messages.HideChatJoinRequest',
|
|
1937
|
+
0xe085f4ea: 'Raw.messages.HideAllChatJoinRequests',
|
|
1938
|
+
0xb11eafa2: 'Raw.messages.ToggleNoForwards',
|
|
1939
|
+
0xccfddf96: 'Raw.messages.SaveDefaultSendAs',
|
|
1940
|
+
0xd30d78d4: 'Raw.messages.SendReaction',
|
|
1941
|
+
0x8bba90e6: 'Raw.messages.GetMessagesReactions',
|
|
1942
|
+
0x461b3f48: 'Raw.messages.GetMessageReactionsList',
|
|
1943
|
+
0x864b2581: 'Raw.messages.SetChatAvailableReactions',
|
|
1944
|
+
0x18dea0ac: 'Raw.messages.GetAvailableReactions',
|
|
1945
|
+
0x4f47a016: 'Raw.messages.SetDefaultReaction',
|
|
1946
|
+
0x63183030: 'Raw.messages.TranslateText',
|
|
1947
|
+
0xbd7f90ac: 'Raw.messages.GetUnreadReactions',
|
|
1948
|
+
0x9ec44f93: 'Raw.messages.ReadReactions',
|
|
1949
|
+
0x107e31a0: 'Raw.messages.SearchSentMedia',
|
|
1950
|
+
0x16fcc2cb: 'Raw.messages.GetAttachMenuBots',
|
|
1951
|
+
0x77216192: 'Raw.messages.GetAttachMenuBot',
|
|
1952
|
+
0x69f59d69: 'Raw.messages.ToggleBotInAttachMenu',
|
|
1953
|
+
0x269dc2c1: 'Raw.messages.RequestWebView',
|
|
1954
|
+
0xb0d81a83: 'Raw.messages.ProlongWebView',
|
|
1955
|
+
0x413a3e73: 'Raw.messages.RequestSimpleWebView',
|
|
1956
|
+
0xa4314f5: 'Raw.messages.SendWebViewResultMessage',
|
|
1957
|
+
0xdc0242c8: 'Raw.messages.SendWebViewData',
|
|
1958
|
+
0x269e9a49: 'Raw.messages.TranscribeAudio',
|
|
1959
|
+
0x7f1d072f: 'Raw.messages.RateTranscribedAudio',
|
|
1960
|
+
0xd9ab0f54: 'Raw.messages.GetCustomEmojiDocuments',
|
|
1961
|
+
0xfbfca18f: 'Raw.messages.GetEmojiStickers',
|
|
1962
|
+
0xecf6736: 'Raw.messages.GetFeaturedEmojiStickers',
|
|
1963
|
+
0x3f64c076: 'Raw.messages.ReportReaction',
|
|
1964
|
+
0xbb8125ba: 'Raw.messages.GetTopReactions',
|
|
1965
|
+
0x39461db2: 'Raw.messages.GetRecentReactions',
|
|
1966
|
+
0x9dfeefb4: 'Raw.messages.ClearRecentReactions',
|
|
1967
|
+
0x84f80814: 'Raw.messages.GetExtendedMedia',
|
|
1968
|
+
0x9eb51445: 'Raw.messages.SetDefaultHistoryTTL',
|
|
1969
|
+
0x658b7188: 'Raw.messages.GetDefaultHistoryTTL',
|
|
1970
|
+
0x91b2d060: 'Raw.messages.SendBotRequestedPeer',
|
|
1971
|
+
0x7488ce5b: 'Raw.messages.GetEmojiGroups',
|
|
1972
|
+
0x2ecd56cd: 'Raw.messages.GetEmojiStatusGroups',
|
|
1973
|
+
0x21a548f3: 'Raw.messages.GetEmojiProfilePhotoGroups',
|
|
1974
|
+
0x2c11c0d7: 'Raw.messages.SearchCustomEmoji',
|
|
1975
|
+
0xe47cb579: 'Raw.messages.TogglePeerTranslations',
|
|
1976
|
+
0x34fdc5c3: 'Raw.messages.GetBotApp',
|
|
1977
|
+
0x53618bce: 'Raw.messages.RequestAppWebView',
|
|
1978
|
+
0x8ffacae1: 'Raw.messages.SetChatWallPaper',
|
|
1979
|
+
0x92b4494c: 'Raw.messages.SearchEmojiStickerSets',
|
|
1980
|
+
0x1e91fc99: 'Raw.messages.GetSavedDialogs',
|
|
1981
|
+
0x998ab009: 'Raw.messages.GetSavedHistory',
|
|
1982
|
+
0x4dc5085f: 'Raw.messages.DeleteSavedHistory',
|
|
1983
|
+
0xd63d94e0: 'Raw.messages.GetPinnedSavedDialogs',
|
|
1984
|
+
0xac81bbde: 'Raw.messages.ToggleSavedDialogPin',
|
|
1985
|
+
0x8b716587: 'Raw.messages.ReorderPinnedSavedDialogs',
|
|
1986
|
+
0x3637e05b: 'Raw.messages.GetSavedReactionTags',
|
|
1987
|
+
0x60297dec: 'Raw.messages.UpdateSavedReactionTag',
|
|
1988
|
+
0xbdf93428: 'Raw.messages.GetDefaultTagReactions',
|
|
1989
|
+
0x8c4bfe5d: 'Raw.messages.GetOutboxReadDate',
|
|
1990
|
+
0xd483f2a8: 'Raw.messages.GetQuickReplies',
|
|
1991
|
+
0x60331907: 'Raw.messages.ReorderQuickReplies',
|
|
1992
|
+
0xf1d0fbd3: 'Raw.messages.CheckQuickReplyShortcut',
|
|
1993
|
+
0x5c003cef: 'Raw.messages.EditQuickReplyShortcut',
|
|
1994
|
+
0x3cc04740: 'Raw.messages.DeleteQuickReplyShortcut',
|
|
1995
|
+
0x94a495c3: 'Raw.messages.GetQuickReplyMessages',
|
|
1996
|
+
0x6c750de1: 'Raw.messages.SendQuickReplyMessages',
|
|
1997
|
+
0xe105e910: 'Raw.messages.DeleteQuickReplyMessages',
|
|
1998
|
+
0xfd2dda49: 'Raw.messages.ToggleDialogFilterTags',
|
|
1999
|
+
0xd0b5e1fc: 'Raw.messages.GetMyStickers',
|
|
2000
|
+
0x1dd840f5: 'Raw.messages.GetEmojiStickerGroups',
|
|
2001
|
+
0xdea20a39: 'Raw.messages.GetAvailableEffects',
|
|
2002
|
+
0x589ee75: 'Raw.messages.EditFactCheck',
|
|
2003
|
+
0xd1da940c: 'Raw.messages.DeleteFactCheck',
|
|
2004
|
+
0xb9cdc5ee: 'Raw.messages.GetFactCheck',
|
|
2005
|
+
0xc9e01e7b: 'Raw.messages.RequestMainWebView',
|
|
2006
|
+
0x58bbcb50: 'Raw.messages.SendPaidReaction',
|
|
2007
|
+
0x435885b5: 'Raw.messages.TogglePaidReactionPrivacy',
|
|
2008
|
+
0x472455aa: 'Raw.messages.GetPaidReactionPrivacy',
|
|
2009
|
+
0x269e3643: 'Raw.messages.ViewSponsoredMessage',
|
|
2010
|
+
0x8235057e: 'Raw.messages.ClickSponsoredMessage',
|
|
2011
|
+
0x12cbf0c4: 'Raw.messages.ReportSponsoredMessage',
|
|
2012
|
+
0x3d6ce850: 'Raw.messages.GetSponsoredMessages',
|
|
2013
|
+
0xf21f7f2f: 'Raw.messages.SavePreparedInlineMessage',
|
|
2014
|
+
0x857ebdb8: 'Raw.messages.GetPreparedInlineMessage',
|
|
2015
|
+
0x29b1c66a: 'Raw.messages.SearchStickers',
|
|
2016
|
+
0x5a6d7395: 'Raw.messages.ReportMessagesDelivery',
|
|
2017
|
+
0x6f6f9c96: 'Raw.messages.GetSavedDialogsByID',
|
|
2018
|
+
0xba4a3b5b: 'Raw.messages.ReadSavedHistory',
|
|
2019
|
+
0xd3e03124: 'Raw.messages.ToggleTodoCompleted',
|
|
2020
|
+
0x21a61057: 'Raw.messages.AppendTodoList',
|
|
2021
|
+
0x8107455c: 'Raw.messages.ToggleSuggestedPostApproval',
|
|
2022
|
+
0x3ba47bff: 'Raw.messages.GetForumTopics',
|
|
2023
|
+
0xaf0a4a08: 'Raw.messages.GetForumTopicsByID',
|
|
2024
|
+
0xcecc1134: 'Raw.messages.EditForumTopic',
|
|
2025
|
+
0x175df251: 'Raw.messages.UpdatePinnedForumTopic',
|
|
2026
|
+
0xe7841f0: 'Raw.messages.ReorderPinnedForumTopics',
|
|
2027
|
+
0x2f98c3d5: 'Raw.messages.CreateForumTopic',
|
|
2028
|
+
0xd2816f10: 'Raw.messages.DeleteTopicHistory',
|
|
2029
|
+
0xfb7e8ca7: 'Raw.messages.GetEmojiGameInfo',
|
|
2030
|
+
0x9d4104e2: 'Raw.messages.SummarizeText',
|
|
2031
|
+
0xedd4882a: 'Raw.updates.GetState',
|
|
2032
|
+
0x19c2f763: 'Raw.updates.GetDifference',
|
|
2033
|
+
0x3173d78: 'Raw.updates.GetChannelDifference',
|
|
2034
|
+
0x9e82039: 'Raw.photos.UpdateProfilePhoto',
|
|
2035
|
+
0x388a3b5: 'Raw.photos.UploadProfilePhoto',
|
|
2036
|
+
0x87cf7f2f: 'Raw.photos.DeletePhotos',
|
|
2037
|
+
0x91cd32a8: 'Raw.photos.GetUserPhotos',
|
|
2038
|
+
0xe14c4a71: 'Raw.photos.UploadContactProfilePhoto',
|
|
2039
|
+
0xb304a621: 'Raw.upload.SaveFilePart',
|
|
2040
|
+
0xbe5335be: 'Raw.upload.GetFile',
|
|
2041
|
+
0xde7b673d: 'Raw.upload.SaveBigFilePart',
|
|
2042
|
+
0x24e6818d: 'Raw.upload.GetWebFile',
|
|
2043
|
+
0x395f69da: 'Raw.upload.GetCdnFile',
|
|
2044
|
+
0x9b2754a8: 'Raw.upload.ReuploadCdnFile',
|
|
2045
|
+
0x91dc3f31: 'Raw.upload.GetCdnFileHashes',
|
|
2046
|
+
0x9156982a: 'Raw.upload.GetFileHashes',
|
|
2047
|
+
0xc4f9186b: 'Raw.help.GetConfig',
|
|
2048
|
+
0x1fb33026: 'Raw.help.GetNearestDc',
|
|
2049
|
+
0x522d5a7d: 'Raw.help.GetAppUpdate',
|
|
2050
|
+
0x4d392343: 'Raw.help.GetInviteText',
|
|
2051
|
+
0x9cdf08cd: 'Raw.help.GetSupport',
|
|
2052
|
+
0xec22cfcd: 'Raw.help.SetBotUpdatesStatus',
|
|
2053
|
+
0x52029342: 'Raw.help.GetCdnConfig',
|
|
2054
|
+
0x3dc0f114: 'Raw.help.GetRecentMeUrls',
|
|
2055
|
+
0x2ca51fd1: 'Raw.help.GetTermsOfServiceUpdate',
|
|
2056
|
+
0xee72f79a: 'Raw.help.AcceptTermsOfService',
|
|
2057
|
+
0x3fedc75f: 'Raw.help.GetDeepLinkInfo',
|
|
2058
|
+
0x61e3f854: 'Raw.help.GetAppConfig',
|
|
2059
|
+
0x6f02f748: 'Raw.help.SaveAppLog',
|
|
2060
|
+
0xc661ad08: 'Raw.help.GetPassportConfig',
|
|
2061
|
+
0xd360e72c: 'Raw.help.GetSupportName',
|
|
2062
|
+
0x38a08d3: 'Raw.help.GetUserInfo',
|
|
2063
|
+
0x66b91b70: 'Raw.help.EditUserInfo',
|
|
2064
|
+
0xc0977421: 'Raw.help.GetPromoData',
|
|
2065
|
+
0x1e251c95: 'Raw.help.HidePromoData',
|
|
2066
|
+
0xf50dbaa1: 'Raw.help.DismissSuggestion',
|
|
2067
|
+
0x735787a8: 'Raw.help.GetCountriesList',
|
|
2068
|
+
0xb81b93d4: 'Raw.help.GetPremiumPromo',
|
|
2069
|
+
0xda80f42f: 'Raw.help.GetPeerColors',
|
|
2070
|
+
0xabcfa9fd: 'Raw.help.GetPeerProfileColors',
|
|
2071
|
+
0x49b30240: 'Raw.help.GetTimezonesList',
|
|
2072
|
+
0xcc104937: 'Raw.channels.ReadHistory',
|
|
2073
|
+
0x84c1fd4e: 'Raw.channels.DeleteMessages',
|
|
2074
|
+
0xf44a8315: 'Raw.channels.ReportSpam',
|
|
2075
|
+
0xad8c9a23: 'Raw.channels.GetMessages',
|
|
2076
|
+
0x77ced9d0: 'Raw.channels.GetParticipants',
|
|
2077
|
+
0xa0ab6cc6: 'Raw.channels.GetParticipant',
|
|
2078
|
+
0xa7f6bbb: 'Raw.channels.GetChannels',
|
|
2079
|
+
0x8736a09: 'Raw.channels.GetFullChannel',
|
|
2080
|
+
0x91006707: 'Raw.channels.CreateChannel',
|
|
2081
|
+
0xd33c8902: 'Raw.channels.EditAdmin',
|
|
2082
|
+
0x566decd0: 'Raw.channels.EditTitle',
|
|
2083
|
+
0xf12e57c9: 'Raw.channels.EditPhoto',
|
|
2084
|
+
0x10e6bd2c: 'Raw.channels.CheckUsername',
|
|
2085
|
+
0x3514b3de: 'Raw.channels.UpdateUsername',
|
|
2086
|
+
0x24b524c5: 'Raw.channels.JoinChannel',
|
|
2087
|
+
0xf836aa95: 'Raw.channels.LeaveChannel',
|
|
2088
|
+
0xc9e33d54: 'Raw.channels.InviteToChannel',
|
|
2089
|
+
0xc0111fe3: 'Raw.channels.DeleteChannel',
|
|
2090
|
+
0xe63fadeb: 'Raw.channels.ExportMessageLink',
|
|
2091
|
+
0x418d549c: 'Raw.channels.ToggleSignatures',
|
|
2092
|
+
0xf8b036af: 'Raw.channels.GetAdminedPublicChannels',
|
|
2093
|
+
0x96e6cd81: 'Raw.channels.EditBanned',
|
|
2094
|
+
0x33ddf480: 'Raw.channels.GetAdminLog',
|
|
2095
|
+
0xea8ca4f9: 'Raw.channels.SetStickers',
|
|
2096
|
+
0xeab5dc38: 'Raw.channels.ReadMessageContents',
|
|
2097
|
+
0x9baa9647: 'Raw.channels.DeleteHistory',
|
|
2098
|
+
0xeabbb94c: 'Raw.channels.TogglePreHistoryHidden',
|
|
2099
|
+
0x8341ecc0: 'Raw.channels.GetLeftChannels',
|
|
2100
|
+
0xf5dad378: 'Raw.channels.GetGroupsForDiscussion',
|
|
2101
|
+
0x40582bb2: 'Raw.channels.SetDiscussionGroup',
|
|
2102
|
+
0x8f38cd1f: 'Raw.channels.EditCreator',
|
|
2103
|
+
0x58e63f6d: 'Raw.channels.EditLocation',
|
|
2104
|
+
0xedd49ef0: 'Raw.channels.ToggleSlowMode',
|
|
2105
|
+
0x11e831ee: 'Raw.channels.GetInactiveChannels',
|
|
2106
|
+
0xb290c69: 'Raw.channels.ConvertToGigagroup',
|
|
2107
|
+
0xe785a43f: 'Raw.channels.GetSendAs',
|
|
2108
|
+
0x367544db: 'Raw.channels.DeleteParticipantHistory',
|
|
2109
|
+
0xe4cb9580: 'Raw.channels.ToggleJoinToSend',
|
|
2110
|
+
0x4c2985b6: 'Raw.channels.ToggleJoinRequest',
|
|
2111
|
+
0xb45ced1d: 'Raw.channels.ReorderUsernames',
|
|
2112
|
+
0x50f24105: 'Raw.channels.ToggleUsername',
|
|
2113
|
+
0xa245dd3: 'Raw.channels.DeactivateAllUsernames',
|
|
2114
|
+
0x3ff75734: 'Raw.channels.ToggleForum',
|
|
2115
|
+
0x68f3e4eb: 'Raw.channels.ToggleAntiSpam',
|
|
2116
|
+
0xa850a693: 'Raw.channels.ReportAntiSpamFalsePositive',
|
|
2117
|
+
0x6a6e7854: 'Raw.channels.ToggleParticipantsHidden',
|
|
2118
|
+
0xd8aa3671: 'Raw.channels.UpdateColor',
|
|
2119
|
+
0x9738bb15: 'Raw.channels.ToggleViewForumAsMessages',
|
|
2120
|
+
0x25a71742: 'Raw.channels.GetChannelRecommendations',
|
|
2121
|
+
0xf0d3e6a8: 'Raw.channels.UpdateEmojiStatus',
|
|
2122
|
+
0xad399cee: 'Raw.channels.SetBoostsToUnblockRestrictions',
|
|
2123
|
+
0x3cd930b7: 'Raw.channels.SetEmojiStickers',
|
|
2124
|
+
0x9ae91519: 'Raw.channels.RestrictSponsoredMessages',
|
|
2125
|
+
0xf2c4f24d: 'Raw.channels.SearchPosts',
|
|
2126
|
+
0x4b12327b: 'Raw.channels.UpdatePaidMessagesPrice',
|
|
2127
|
+
0x167fc0a1: 'Raw.channels.ToggleAutotranslation',
|
|
2128
|
+
0xece2a0e6: 'Raw.channels.GetMessageAuthor',
|
|
2129
|
+
0x22567115: 'Raw.channels.CheckSearchPostsFlood',
|
|
2130
|
+
0x3583fcb1: 'Raw.channels.SetMainProfileTab',
|
|
2131
|
+
0xa00918af: 'Raw.channels.GetFutureCreatorAfterLeave',
|
|
2132
|
+
0xaa2769ed: 'Raw.bots.SendCustomRequest',
|
|
2133
|
+
0xe6213f4d: 'Raw.bots.AnswerWebhookJSONQuery',
|
|
2134
|
+
0x517165a: 'Raw.bots.SetBotCommands',
|
|
2135
|
+
0x3d8de0f9: 'Raw.bots.ResetBotCommands',
|
|
2136
|
+
0xe34c0dd6: 'Raw.bots.GetBotCommands',
|
|
2137
|
+
0x4504d54f: 'Raw.bots.SetBotMenuButton',
|
|
2138
|
+
0x9c60eb28: 'Raw.bots.GetBotMenuButton',
|
|
2139
|
+
0x788464e1: 'Raw.bots.SetBotBroadcastDefaultAdminRights',
|
|
2140
|
+
0x925ec9ea: 'Raw.bots.SetBotGroupDefaultAdminRights',
|
|
2141
|
+
0x10cf3123: 'Raw.bots.SetBotInfo',
|
|
2142
|
+
0xdcd914fd: 'Raw.bots.GetBotInfo',
|
|
2143
|
+
0x9709b1c2: 'Raw.bots.ReorderUsernames',
|
|
2144
|
+
0x53ca973: 'Raw.bots.ToggleUsername',
|
|
2145
|
+
0x1359f4e6: 'Raw.bots.CanSendMessage',
|
|
2146
|
+
0xf132e3ef: 'Raw.bots.AllowSendMessage',
|
|
2147
|
+
0x87fc5e7: 'Raw.bots.InvokeWebViewCustomMethod',
|
|
2148
|
+
0xc2510192: 'Raw.bots.GetPopularAppBots',
|
|
2149
|
+
0x17aeb75a: 'Raw.bots.AddPreviewMedia',
|
|
2150
|
+
0x8525606f: 'Raw.bots.EditPreviewMedia',
|
|
2151
|
+
0x2d0135b3: 'Raw.bots.DeletePreviewMedia',
|
|
2152
|
+
0xb627f3aa: 'Raw.bots.ReorderPreviewMedias',
|
|
2153
|
+
0x423ab3ad: 'Raw.bots.GetPreviewInfo',
|
|
2154
|
+
0xa2a5594d: 'Raw.bots.GetPreviewMedias',
|
|
2155
|
+
0xed9f30c5: 'Raw.bots.UpdateUserEmojiStatus',
|
|
2156
|
+
0x6de6392: 'Raw.bots.ToggleUserEmojiStatusPermission',
|
|
2157
|
+
0x50077589: 'Raw.bots.CheckDownloadFileParams',
|
|
2158
|
+
0xb0711d83: 'Raw.bots.GetAdminedBots',
|
|
2159
|
+
0x778b5ab3: 'Raw.bots.UpdateStarRefProgram',
|
|
2160
|
+
0x8b89dfbd: 'Raw.bots.SetCustomVerification',
|
|
2161
|
+
0xa1b70815: 'Raw.bots.GetBotRecommendations',
|
|
2162
|
+
0x37148dbb: 'Raw.payments.GetPaymentForm',
|
|
2163
|
+
0x2478d1cc: 'Raw.payments.GetPaymentReceipt',
|
|
2164
|
+
0xb6c8f12b: 'Raw.payments.ValidateRequestedInfo',
|
|
2165
|
+
0x2d03522f: 'Raw.payments.SendPaymentForm',
|
|
2166
|
+
0x227d824b: 'Raw.payments.GetSavedInfo',
|
|
2167
|
+
0xd83d70c1: 'Raw.payments.ClearSavedInfo',
|
|
2168
|
+
0x2e79d779: 'Raw.payments.GetBankCardData',
|
|
2169
|
+
0xf91b065: 'Raw.payments.ExportInvoice',
|
|
2170
|
+
0x80ed747d: 'Raw.payments.AssignAppStoreTransaction',
|
|
2171
|
+
0xdffd50d3: 'Raw.payments.AssignPlayMarketTransaction',
|
|
2172
|
+
0x2757ba54: 'Raw.payments.GetPremiumGiftCodeOptions',
|
|
2173
|
+
0x8e51b4c1: 'Raw.payments.CheckGiftCode',
|
|
2174
|
+
0xf6e26854: 'Raw.payments.ApplyGiftCode',
|
|
2175
|
+
0xf4239425: 'Raw.payments.GetGiveawayInfo',
|
|
2176
|
+
0x5ff58f20: 'Raw.payments.LaunchPrepaidGiveaway',
|
|
2177
|
+
0xc00ec7d3: 'Raw.payments.GetStarsTopupOptions',
|
|
2178
|
+
0x4ea9b3bf: 'Raw.payments.GetStarsStatus',
|
|
2179
|
+
0x69da4557: 'Raw.payments.GetStarsTransactions',
|
|
2180
|
+
0x7998c914: 'Raw.payments.SendStarsForm',
|
|
2181
|
+
0x25ae8f4a: 'Raw.payments.RefundStarsCharge',
|
|
2182
|
+
0xd91ffad6: 'Raw.payments.GetStarsRevenueStats',
|
|
2183
|
+
0x2433dc92: 'Raw.payments.GetStarsRevenueWithdrawalUrl',
|
|
2184
|
+
0xd1d7efc5: 'Raw.payments.GetStarsRevenueAdsAccountUrl',
|
|
2185
|
+
0x2dca16b8: 'Raw.payments.GetStarsTransactionsByID',
|
|
2186
|
+
0xd3c96bc8: 'Raw.payments.GetStarsGiftOptions',
|
|
2187
|
+
0x32512c5: 'Raw.payments.GetStarsSubscriptions',
|
|
2188
|
+
0xc7770878: 'Raw.payments.ChangeStarsSubscription',
|
|
2189
|
+
0xcc5bebb3: 'Raw.payments.FulfillStarsSubscription',
|
|
2190
|
+
0xbd1efd3e: 'Raw.payments.GetStarsGiveawayOptions',
|
|
2191
|
+
0xc4563590: 'Raw.payments.GetStarGifts',
|
|
2192
|
+
0x2a2a697c: 'Raw.payments.SaveStarGift',
|
|
2193
|
+
0x74bf076b: 'Raw.payments.ConvertStarGift',
|
|
2194
|
+
0x6dfa0622: 'Raw.payments.BotCancelStarsSubscription',
|
|
2195
|
+
0x5869a553: 'Raw.payments.GetConnectedStarRefBots',
|
|
2196
|
+
0xb7d998f0: 'Raw.payments.GetConnectedStarRefBot',
|
|
2197
|
+
0xd6b48f7: 'Raw.payments.GetSuggestedStarRefBots',
|
|
2198
|
+
0x7ed5348a: 'Raw.payments.ConnectStarRefBot',
|
|
2199
|
+
0xe4fca4a3: 'Raw.payments.EditConnectedStarRefBot',
|
|
2200
|
+
0x9c9abcb1: 'Raw.payments.GetStarGiftUpgradePreview',
|
|
2201
|
+
0xaed6e4f5: 'Raw.payments.UpgradeStarGift',
|
|
2202
|
+
0x7f18176a: 'Raw.payments.TransferStarGift',
|
|
2203
|
+
0xa1974d72: 'Raw.payments.GetUniqueStarGift',
|
|
2204
|
+
0xa319e569: 'Raw.payments.GetSavedStarGifts',
|
|
2205
|
+
0xb455a106: 'Raw.payments.GetSavedStarGift',
|
|
2206
|
+
0xd06e93a8: 'Raw.payments.GetStarGiftWithdrawalUrl',
|
|
2207
|
+
0x60eaefa1: 'Raw.payments.ToggleChatStarGiftNotifications',
|
|
2208
|
+
0x1513e7b0: 'Raw.payments.ToggleStarGiftsPinnedToTop',
|
|
2209
|
+
0x4fdc5ea7: 'Raw.payments.CanPurchaseStore',
|
|
2210
|
+
0x7a5fa236: 'Raw.payments.GetResaleStarGifts',
|
|
2211
|
+
0xedbe6ccb: 'Raw.payments.UpdateStarGiftPrice',
|
|
2212
|
+
0x1f4a0e87: 'Raw.payments.CreateStarGiftCollection',
|
|
2213
|
+
0x4fddbee7: 'Raw.payments.UpdateStarGiftCollection',
|
|
2214
|
+
0xc32af4cc: 'Raw.payments.ReorderStarGiftCollections',
|
|
2215
|
+
0xad5648e8: 'Raw.payments.DeleteStarGiftCollection',
|
|
2216
|
+
0x981b91dd: 'Raw.payments.GetStarGiftCollections',
|
|
2217
|
+
0x4365af6b: 'Raw.payments.GetUniqueStarGiftValueInfo',
|
|
2218
|
+
0xc0c4edc9: 'Raw.payments.CheckCanSendGift',
|
|
2219
|
+
0x5c9ff4d6: 'Raw.payments.GetStarGiftAuctionState',
|
|
2220
|
+
0x6ba2cbec: 'Raw.payments.GetStarGiftAuctionAcquiredGifts',
|
|
2221
|
+
0xa5d0514d: 'Raw.payments.GetStarGiftActiveAuctions',
|
|
2222
|
+
0xe9ce781c: 'Raw.payments.ResolveStarGiftOffer',
|
|
2223
|
+
0x8fb86b41: 'Raw.payments.SendStarGiftOffer',
|
|
2224
|
+
0x6d038b58: 'Raw.payments.GetStarGiftUpgradeAttributes',
|
|
2225
|
+
0xfd05dd00: 'Raw.payments.GetCraftStarGifts',
|
|
2226
|
+
0xb0f9684f: 'Raw.payments.CraftStarGift',
|
|
2227
|
+
0x9021ab67: 'Raw.stickers.CreateStickerSet',
|
|
2228
|
+
0xf7760f51: 'Raw.stickers.RemoveStickerFromSet',
|
|
2229
|
+
0xffb6d4ca: 'Raw.stickers.ChangeStickerPosition',
|
|
2230
|
+
0x8653febe: 'Raw.stickers.AddStickerToSet',
|
|
2231
|
+
0xa76a5392: 'Raw.stickers.SetStickerSetThumb',
|
|
2232
|
+
0x284b3639: 'Raw.stickers.CheckShortName',
|
|
2233
|
+
0x4dafc503: 'Raw.stickers.SuggestShortName',
|
|
2234
|
+
0xf5537ebc: 'Raw.stickers.ChangeSticker',
|
|
2235
|
+
0x124b1c00: 'Raw.stickers.RenameStickerSet',
|
|
2236
|
+
0x87704394: 'Raw.stickers.DeleteStickerSet',
|
|
2237
|
+
0x4696459a: 'Raw.stickers.ReplaceSticker',
|
|
2238
|
+
0x55451fa9: 'Raw.phone.GetCallConfig',
|
|
2239
|
+
0x42ff96ed: 'Raw.phone.RequestCall',
|
|
2240
|
+
0x3bd2b4a0: 'Raw.phone.AcceptCall',
|
|
2241
|
+
0x2efe1722: 'Raw.phone.ConfirmCall',
|
|
2242
|
+
0x17d54f61: 'Raw.phone.ReceivedCall',
|
|
2243
|
+
0xb2cbc1c0: 'Raw.phone.DiscardCall',
|
|
2244
|
+
0x59ead627: 'Raw.phone.SetCallRating',
|
|
2245
|
+
0x277add7e: 'Raw.phone.SaveCallDebug',
|
|
2246
|
+
0xff7a9383: 'Raw.phone.SendSignalingData',
|
|
2247
|
+
0x48cdc6d8: 'Raw.phone.CreateGroupCall',
|
|
2248
|
+
0x8fb53057: 'Raw.phone.JoinGroupCall',
|
|
2249
|
+
0x500377f9: 'Raw.phone.LeaveGroupCall',
|
|
2250
|
+
0x7b393160: 'Raw.phone.InviteToGroupCall',
|
|
2251
|
+
0x7a777135: 'Raw.phone.DiscardGroupCall',
|
|
2252
|
+
0x974392f2: 'Raw.phone.ToggleGroupCallSettings',
|
|
2253
|
+
0x41845db: 'Raw.phone.GetGroupCall',
|
|
2254
|
+
0xc558d8ab: 'Raw.phone.GetGroupParticipants',
|
|
2255
|
+
0xb59cf977: 'Raw.phone.CheckGroupCall',
|
|
2256
|
+
0xf128c708: 'Raw.phone.ToggleGroupCallRecord',
|
|
2257
|
+
0xa5273abf: 'Raw.phone.EditGroupCallParticipant',
|
|
2258
|
+
0x1ca6ac0a: 'Raw.phone.EditGroupCallTitle',
|
|
2259
|
+
0xef7c213a: 'Raw.phone.GetGroupCallJoinAs',
|
|
2260
|
+
0xe6aa647f: 'Raw.phone.ExportGroupCallInvite',
|
|
2261
|
+
0x219c34e6: 'Raw.phone.ToggleGroupCallStartSubscription',
|
|
2262
|
+
0x5680e342: 'Raw.phone.StartScheduledGroupCall',
|
|
2263
|
+
0x575e1f8c: 'Raw.phone.SaveDefaultGroupCallJoinAs',
|
|
2264
|
+
0xcbea6bc4: 'Raw.phone.JoinGroupCallPresentation',
|
|
2265
|
+
0x1c50d144: 'Raw.phone.LeaveGroupCallPresentation',
|
|
2266
|
+
0x1ab21940: 'Raw.phone.GetGroupCallStreamChannels',
|
|
2267
|
+
0x5af4c73a: 'Raw.phone.GetGroupCallStreamRtmpUrl',
|
|
2268
|
+
0x41248786: 'Raw.phone.SaveCallLog',
|
|
2269
|
+
0x7d0444bb: 'Raw.phone.CreateConferenceCall',
|
|
2270
|
+
0x8ca60525: 'Raw.phone.DeleteConferenceCallParticipants',
|
|
2271
|
+
0xc6701900: 'Raw.phone.SendConferenceCallBroadcast',
|
|
2272
|
+
0xbcf22685: 'Raw.phone.InviteConferenceCallParticipant',
|
|
2273
|
+
0x3c479971: 'Raw.phone.DeclineConferenceCallInvite',
|
|
2274
|
+
0xee9f88a6: 'Raw.phone.GetGroupCallChainBlocks',
|
|
2275
|
+
0xb1d11410: 'Raw.phone.SendGroupCallMessage',
|
|
2276
|
+
0xe5afa56d: 'Raw.phone.SendGroupCallEncryptedMessage',
|
|
2277
|
+
0xf64f54f7: 'Raw.phone.DeleteGroupCallMessages',
|
|
2278
|
+
0x1dbfeca0: 'Raw.phone.DeleteGroupCallParticipantMessages',
|
|
2279
|
+
0x6f636302: 'Raw.phone.GetGroupCallStars',
|
|
2280
|
+
0x4167add1: 'Raw.phone.SaveDefaultSendAs',
|
|
2281
|
+
0xf2f2330a: 'Raw.langpack.GetLangPack',
|
|
2282
|
+
0xefea3803: 'Raw.langpack.GetStrings',
|
|
2283
|
+
0xcd984aa5: 'Raw.langpack.GetDifference',
|
|
2284
|
+
0x42c6978f: 'Raw.langpack.GetLanguages',
|
|
2285
|
+
0x6a596502: 'Raw.langpack.GetLanguage',
|
|
2286
|
+
0x6847d0ab: 'Raw.folders.EditPeerFolders',
|
|
2287
|
+
0xab42441a: 'Raw.stats.GetBroadcastStats',
|
|
2288
|
+
0x621d5fa0: 'Raw.stats.LoadAsyncGraph',
|
|
2289
|
+
0xdcdf8607: 'Raw.stats.GetMegagroupStats',
|
|
2290
|
+
0x5f150144: 'Raw.stats.GetMessagePublicForwards',
|
|
2291
|
+
0xb6e0a3f5: 'Raw.stats.GetMessageStats',
|
|
2292
|
+
0x374fef40: 'Raw.stats.GetStoryStats',
|
|
2293
|
+
0xa6437ef6: 'Raw.stats.GetStoryPublicForwards',
|
|
2294
|
+
0x8472478e: 'Raw.chatlists.ExportChatlistInvite',
|
|
2295
|
+
0x719c5c5e: 'Raw.chatlists.DeleteExportedInvite',
|
|
2296
|
+
0x653db63d: 'Raw.chatlists.EditExportedInvite',
|
|
2297
|
+
0xce03da83: 'Raw.chatlists.GetExportedInvites',
|
|
2298
|
+
0x41c10fff: 'Raw.chatlists.CheckChatlistInvite',
|
|
2299
|
+
0xa6b1e39a: 'Raw.chatlists.JoinChatlistInvite',
|
|
2300
|
+
0x89419521: 'Raw.chatlists.GetChatlistUpdates',
|
|
2301
|
+
0xe089f8f5: 'Raw.chatlists.JoinChatlistUpdates',
|
|
2302
|
+
0x66e486fb: 'Raw.chatlists.HideChatlistUpdates',
|
|
2303
|
+
0xfdbcd714: 'Raw.chatlists.GetLeaveChatlistSuggestions',
|
|
2304
|
+
0x74fae13a: 'Raw.chatlists.LeaveChatlist',
|
|
2305
|
+
0x30eb63f0: 'Raw.stories.CanSendStory',
|
|
2306
|
+
0x737fc2ec: 'Raw.stories.SendStory',
|
|
2307
|
+
0xb583ba46: 'Raw.stories.EditStory',
|
|
2308
|
+
0xae59db5f: 'Raw.stories.DeleteStories',
|
|
2309
|
+
0x9a75a1ef: 'Raw.stories.TogglePinned',
|
|
2310
|
+
0xeeb0d625: 'Raw.stories.GetAllStories',
|
|
2311
|
+
0x5821a5dc: 'Raw.stories.GetPinnedStories',
|
|
2312
|
+
0xb4352016: 'Raw.stories.GetStoriesArchive',
|
|
2313
|
+
0x5774ca74: 'Raw.stories.GetStoriesByID',
|
|
2314
|
+
0x7c2557c4: 'Raw.stories.ToggleAllStoriesHidden',
|
|
2315
|
+
0xa556dac8: 'Raw.stories.ReadStories',
|
|
2316
|
+
0xb2028afb: 'Raw.stories.IncrementStoryViews',
|
|
2317
|
+
0x7ed23c57: 'Raw.stories.GetStoryViewsList',
|
|
2318
|
+
0x28e16cc8: 'Raw.stories.GetStoriesViews',
|
|
2319
|
+
0x7b8def20: 'Raw.stories.ExportStoryLink',
|
|
2320
|
+
0x19d8eb45: 'Raw.stories.Report',
|
|
2321
|
+
0x57bbd166: 'Raw.stories.ActivateStealthMode',
|
|
2322
|
+
0x7fd736b2: 'Raw.stories.SendReaction',
|
|
2323
|
+
0x2c4ada50: 'Raw.stories.GetPeerStories',
|
|
2324
|
+
0x9b5ae7f9: 'Raw.stories.GetAllReadPeerStories',
|
|
2325
|
+
0x78499170: 'Raw.stories.GetPeerMaxIDs',
|
|
2326
|
+
0xa56a8b60: 'Raw.stories.GetChatsToSend',
|
|
2327
|
+
0xbd0415c4: 'Raw.stories.TogglePeerStoriesHidden',
|
|
2328
|
+
0xb9b2881f: 'Raw.stories.GetStoryReactionsList',
|
|
2329
|
+
0xb297e9b: 'Raw.stories.TogglePinnedToTop',
|
|
2330
|
+
0xd1810907: 'Raw.stories.SearchPosts',
|
|
2331
|
+
0xa36396e5: 'Raw.stories.CreateAlbum',
|
|
2332
|
+
0x5e5259b6: 'Raw.stories.UpdateAlbum',
|
|
2333
|
+
0x8535fbd9: 'Raw.stories.ReorderAlbums',
|
|
2334
|
+
0x8d3456d0: 'Raw.stories.DeleteAlbum',
|
|
2335
|
+
0x25b3eac7: 'Raw.stories.GetAlbums',
|
|
2336
|
+
0xac806d61: 'Raw.stories.GetAlbumStories',
|
|
2337
|
+
0xd069ccde: 'Raw.stories.StartLive',
|
|
2338
|
+
0x60f67660: 'Raw.premium.GetBoostsList',
|
|
2339
|
+
0xbe77b4a: 'Raw.premium.GetMyBoosts',
|
|
2340
|
+
0x6b7da746: 'Raw.premium.ApplyBoost',
|
|
2341
|
+
0x42f1f61: 'Raw.premium.GetBoostsStatus',
|
|
2342
|
+
0x39854d1f: 'Raw.premium.GetUserBoosts',
|
|
2343
|
+
0xedc39d0: 'Raw.smsjobs.IsEligibleToJoin',
|
|
2344
|
+
0xa74ece2d: 'Raw.smsjobs.Join',
|
|
2345
|
+
0x9898ad73: 'Raw.smsjobs.Leave',
|
|
2346
|
+
0x93fa0bf: 'Raw.smsjobs.UpdateSettings',
|
|
2347
|
+
0x10a698e8: 'Raw.smsjobs.GetStatus',
|
|
2348
|
+
0x778d902f: 'Raw.smsjobs.GetSmsJob',
|
|
2349
|
+
0x4f1ebf24: 'Raw.smsjobs.FinishJob',
|
|
2350
|
+
0xbe1e85ba: 'Raw.fragment.GetCollectibleInfo',
|
|
2351
|
+
0x1f814f1f: 'Raw.DecryptedMessage8',
|
|
2352
|
+
0xaa48327d: 'Raw.DecryptedMessageService8',
|
|
2353
|
+
0x89f5c4a: 'Raw.DecryptedMessageMediaEmpty8',
|
|
2354
|
+
0x32798a8c: 'Raw.DecryptedMessageMediaPhoto8',
|
|
2355
|
+
0x4cee6ef3: 'Raw.DecryptedMessageMediaVideo8',
|
|
2356
|
+
0x35480a59: 'Raw.DecryptedMessageMediaGeoPoint8',
|
|
2357
|
+
0x588a0a97: 'Raw.DecryptedMessageMediaContact8',
|
|
2358
|
+
0xa1733aec: 'Raw.DecryptedMessageActionSetMessageTTL8',
|
|
2359
|
+
0xb095434b: 'Raw.DecryptedMessageMediaDocument8',
|
|
2360
|
+
0x6080758f: 'Raw.DecryptedMessageMediaAudio8',
|
|
2361
|
+
0xc4f40be: 'Raw.DecryptedMessageActionReadMessages8',
|
|
2362
|
+
0x65614304: 'Raw.DecryptedMessageActionDeleteMessages8',
|
|
2363
|
+
0x8ac1f475: 'Raw.DecryptedMessageActionScreenshotMessages8',
|
|
2364
|
+
0x6719e45c: 'Raw.DecryptedMessageActionFlushHistory8',
|
|
2365
|
+
0x204d3878: 'Raw.DecryptedMessage17',
|
|
2366
|
+
0x73164160: 'Raw.DecryptedMessageService17',
|
|
2367
|
+
0x524a415d: 'Raw.DecryptedMessageMediaVideo17',
|
|
2368
|
+
0x57e0a9cb: 'Raw.DecryptedMessageMediaAudio17',
|
|
2369
|
+
0x1be31789: 'Raw.DecryptedMessageLayer17',
|
|
2370
|
+
0x92042ff7: 'Raw.SendMessageUploadVideoAction17',
|
|
2371
|
+
0xe6ac8a6f: 'Raw.SendMessageUploadAudioAction17',
|
|
2372
|
+
0x990a3c1a: 'Raw.SendMessageUploadPhotoAction17',
|
|
2373
|
+
0x8faee98e: 'Raw.SendMessageUploadDocumentAction17',
|
|
2374
|
+
0x511110b0: 'Raw.DecryptedMessageActionResend17',
|
|
2375
|
+
0xf3048883: 'Raw.DecryptedMessageActionNotifyLayer17',
|
|
2376
|
+
0xccb27641: 'Raw.DecryptedMessageActionTyping17',
|
|
2377
|
+
0xf3c9611b: 'Raw.DecryptedMessageActionRequestKey20',
|
|
2378
|
+
0x6fe1735b: 'Raw.DecryptedMessageActionAcceptKey20',
|
|
2379
|
+
0xdd05ec6b: 'Raw.DecryptedMessageActionAbortKey20',
|
|
2380
|
+
0xec2e0b9b: 'Raw.DecryptedMessageActionCommitKey20',
|
|
2381
|
+
0xa82fdd63: 'Raw.DecryptedMessageActionNoop20',
|
|
2382
|
+
0xfb0a5727: 'Raw.DocumentAttributeSticker23',
|
|
2383
|
+
0x5910cccb: 'Raw.DocumentAttributeVideo23',
|
|
2384
|
+
0x51448e5: 'Raw.DocumentAttributeAudio23',
|
|
2385
|
+
0x77bfb61b: 'Raw.PhotoSize23',
|
|
2386
|
+
0xe9a734fa: 'Raw.PhotoCachedSize23',
|
|
2387
|
+
0x7c596b46: 'Raw.FileLocationUnavailable23',
|
|
2388
|
+
0x53d69076: 'Raw.FileLocation23',
|
|
2389
|
+
0xfa95b0dd: 'Raw.DecryptedMessageMediaExternalDocument23',
|
|
2390
|
+
0x36b091de: 'Raw.DecryptedMessage45',
|
|
2391
|
+
0xf1fa8d78: 'Raw.DecryptedMessageMediaPhoto45',
|
|
2392
|
+
0x970c8c0e: 'Raw.DecryptedMessageMediaVideo45',
|
|
2393
|
+
0x7afe8ae2: 'Raw.DecryptedMessageMediaDocument45',
|
|
2394
|
+
0x3a556302: 'Raw.DocumentAttributeSticker45',
|
|
2395
|
+
0xded218e0: 'Raw.DocumentAttributeAudio45',
|
|
2396
|
+
0x8a0df56f: 'Raw.DecryptedMessageMediaVenue45',
|
|
2397
|
+
0xe50511d8: 'Raw.DecryptedMessageMediaWebPage45',
|
|
2398
|
+
0xef02ce6: 'Raw.DocumentAttributeVideo66',
|
|
2399
|
+
0xbb718624: 'Raw.SendMessageUploadRoundAction66',
|
|
2400
|
+
0x91cc4674: 'Raw.DecryptedMessage73',
|
|
2401
|
+
0x20df5d0: 'Raw.MessageEntityBlockquote101',
|
|
2402
|
+
0x6abd9782: 'Raw.DecryptedMessageMediaDocument143',
|
|
2403
|
+
};
|