ndikzv1 26.0.12
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/WAProto/index.d.ts +55057 -0
- package/WAProto/index.js +169661 -0
- package/WASignalGroup/GroupProtocol.js +1697 -0
- package/WASignalGroup/ciphertext_message.js +16 -0
- package/WASignalGroup/group_cipher.js +120 -0
- package/WASignalGroup/group_session_builder.js +46 -0
- package/WASignalGroup/index.js +5 -0
- package/WASignalGroup/keyhelper.js +21 -0
- package/WASignalGroup/protobufs.js +3 -0
- package/WASignalGroup/queue_job.js +69 -0
- package/WASignalGroup/sender_chain_key.js +50 -0
- package/WASignalGroup/sender_key_distribution_message.js +78 -0
- package/WASignalGroup/sender_key_message.js +92 -0
- package/WASignalGroup/sender_key_name.js +70 -0
- package/WASignalGroup/sender_key_record.js +56 -0
- package/WASignalGroup/sender_key_state.js +129 -0
- package/WASignalGroup/sender_message_key.js +39 -0
- package/engine-requirements.js +10 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +282 -0
- package/lib/Defaults/index.js +122 -0
- package/lib/Defaults/phonenumber-mcc.json +223 -0
- package/lib/Signal/libsignal.d.ts +3 -0
- package/lib/Signal/libsignal.js +161 -0
- package/lib/Socket/Client/abstract-socket-client.d.ts +15 -0
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.d.ts +3 -0
- package/lib/Socket/Client/index.js +19 -0
- package/lib/Socket/Client/mobile-socket-client.d.ts +12 -0
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/web-socket-client.d.ts +12 -0
- package/lib/Socket/Client/web-socket-client.js +62 -0
- package/lib/Socket/business.d.ts +172 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.d.ts +83 -0
- package/lib/Socket/chats.js +871 -0
- package/lib/Socket/groups.d.ts +124 -0
- package/lib/Socket/groups.js +332 -0
- package/lib/Socket/index.d.ts +174 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.d.ts +161 -0
- package/lib/Socket/messages-recv.js +1046 -0
- package/lib/Socket/messages-send.d.ts +151 -0
- package/lib/Socket/messages-send.js +806 -0
- package/lib/Socket/newsletter.d.ts +136 -0
- package/lib/Socket/newsletter.js +250 -0
- package/lib/Socket/registration.d.ts +266 -0
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.d.ts +42 -0
- package/lib/Socket/socket.js +640 -0
- package/lib/Socket/usync.d.ts +36 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +2 -0
- package/lib/Store/index.js +8 -0
- package/lib/Store/make-in-memory-store.d.ts +118 -0
- package/lib/Store/make-in-memory-store.js +431 -0
- package/lib/Store/make-ordered-dictionary.d.ts +13 -0
- package/lib/Store/make-ordered-dictionary.js +81 -0
- package/lib/Store/object-repository.d.ts +10 -0
- package/lib/Store/object-repository.js +27 -0
- package/lib/Types/Auth.d.ts +109 -0
- package/lib/Types/Auth.js +2 -0
- package/lib/Types/Call.d.ts +13 -0
- package/lib/Types/Call.js +2 -0
- package/lib/Types/Chat.d.ts +109 -0
- package/lib/Types/Chat.js +4 -0
- package/lib/Types/Contact.d.ts +23 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.d.ts +199 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.d.ts +64 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Label.d.ts +35 -0
- package/lib/Types/Label.js +27 -0
- package/lib/Types/LabelAssociation.d.ts +29 -0
- package/lib/Types/LabelAssociation.js +9 -0
- package/lib/Types/Message.d.ts +384 -0
- package/lib/Types/Message.js +7 -0
- package/lib/Types/Newsletter.d.ts +79 -0
- package/lib/Types/Newsletter.js +18 -0
- package/lib/Types/Product.d.ts +78 -0
- package/lib/Types/Product.js +2 -0
- package/lib/Types/Signal.d.ts +57 -0
- package/lib/Types/Signal.js +2 -0
- package/lib/Types/Socket.d.ts +119 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.d.ts +27 -0
- package/lib/Types/State.js +2 -0
- package/lib/Types/USync.d.ts +25 -0
- package/lib/Types/USync.js +2 -0
- package/lib/Types/index.d.ts +64 -0
- package/lib/Types/index.js +42 -0
- package/lib/Utils/auth-utils.d.ts +18 -0
- package/lib/Utils/auth-utils.js +206 -0
- package/lib/Utils/baileys-event-stream.d.ts +16 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.d.ts +22 -0
- package/lib/Utils/business.js +234 -0
- package/lib/Utils/chat-utils.d.ts +70 -0
- package/lib/Utils/chat-utils.js +730 -0
- package/lib/Utils/crypto.d.ts +40 -0
- package/lib/Utils/crypto.js +193 -0
- package/lib/Utils/decode-wa-message.d.ts +36 -0
- package/lib/Utils/decode-wa-message.js +204 -0
- package/lib/Utils/event-buffer.d.ts +35 -0
- package/lib/Utils/event-buffer.js +520 -0
- package/lib/Utils/generics.d.ts +89 -0
- package/lib/Utils/generics.js +445 -0
- package/lib/Utils/history.d.ts +19 -0
- package/lib/Utils/history.js +94 -0
- package/lib/Utils/index.d.ts +17 -0
- package/lib/Utils/index.js +33 -0
- package/lib/Utils/link-preview.d.ts +21 -0
- package/lib/Utils/link-preview.js +126 -0
- package/lib/Utils/logger.d.ts +11 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.d.ts +12 -0
- package/lib/Utils/lt-hash.js +51 -0
- package/lib/Utils/make-mutex.d.ts +7 -0
- package/lib/Utils/make-mutex.js +43 -0
- package/lib/Utils/messages-media.d.ts +120 -0
- package/lib/Utils/messages-media.js +879 -0
- package/lib/Utils/messages.d.ts +75 -0
- package/lib/Utils/messages.js +1022 -0
- package/lib/Utils/noise-handler.d.ts +20 -0
- package/lib/Utils/noise-handler.js +155 -0
- package/lib/Utils/process-message.d.ts +42 -0
- package/lib/Utils/process-message.js +372 -0
- package/lib/Utils/signal.d.ts +33 -0
- package/lib/Utils/signal.js +153 -0
- package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
- package/lib/Utils/use-multi-file-auth-state.js +125 -0
- package/lib/Utils/validate-connection.d.ts +11 -0
- package/lib/Utils/validate-connection.js +207 -0
- package/lib/WABinary/constants.d.ts +27 -0
- package/lib/WABinary/constants.js +1303 -0
- package/lib/WABinary/decode.d.ts +6 -0
- package/lib/WABinary/decode.js +265 -0
- package/lib/WABinary/encode.d.ts +2 -0
- package/lib/WABinary/encode.js +250 -0
- package/lib/WABinary/generic-utils.d.ts +14 -0
- package/lib/WABinary/generic-utils.js +110 -0
- package/lib/WABinary/index.d.ts +5 -0
- package/lib/WABinary/index.js +21 -0
- package/lib/WABinary/jid-utils.d.ts +36 -0
- package/lib/WABinary/jid-utils.js +83 -0
- package/lib/WABinary/types.d.ts +18 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.d.ts +8 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.d.ts +38 -0
- package/lib/WAM/constants.js +15350 -0
- package/lib/WAM/encode.d.ts +2 -0
- package/lib/WAM/encode.js +155 -0
- package/lib/WAM/index.d.ts +3 -0
- package/lib/WAM/index.js +19 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +25 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +8 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
- package/lib/WAUSync/Protocols/index.d.ts +4 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.d.ts +28 -0
- package/lib/WAUSync/USyncQuery.js +89 -0
- package/lib/WAUSync/USyncUser.d.ts +12 -0
- package/lib/WAUSync/USyncUser.js +26 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.d.ts +13 -0
- package/lib/index.js +63 -0
- package/package.json +90 -0
@@ -0,0 +1,1303 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TOKEN_MAP = exports.SINGLE_BYTE_TOKENS = exports.DOUBLE_BYTE_TOKENS = exports.TAGS = void 0;
|
4
|
+
exports.TAGS = {
|
5
|
+
LIST_EMPTY: 0,
|
6
|
+
DICTIONARY_0: 236,
|
7
|
+
DICTIONARY_1: 237,
|
8
|
+
DICTIONARY_2: 238,
|
9
|
+
DICTIONARY_3: 239,
|
10
|
+
INTEROP_JID: 245,
|
11
|
+
FB_JID: 246,
|
12
|
+
AD_JID: 247,
|
13
|
+
LIST_8: 248,
|
14
|
+
LIST_16: 249,
|
15
|
+
JID_PAIR: 250,
|
16
|
+
HEX_8: 251,
|
17
|
+
BINARY_8: 252,
|
18
|
+
BINARY_20: 253,
|
19
|
+
BINARY_32: 254,
|
20
|
+
NIBBLE_8: 255,
|
21
|
+
PACKED_MAX: 127
|
22
|
+
};
|
23
|
+
exports.DOUBLE_BYTE_TOKENS = [
|
24
|
+
[
|
25
|
+
'read-self',
|
26
|
+
'active',
|
27
|
+
'fbns',
|
28
|
+
'protocol',
|
29
|
+
'reaction',
|
30
|
+
'screen_width',
|
31
|
+
'heartbeat',
|
32
|
+
'deviceid',
|
33
|
+
'2:47DEQpj8',
|
34
|
+
'uploadfieldstat',
|
35
|
+
'voip_settings',
|
36
|
+
'retry',
|
37
|
+
'priority',
|
38
|
+
'longitude',
|
39
|
+
'conflict',
|
40
|
+
'false',
|
41
|
+
'ig_professional',
|
42
|
+
'replaced',
|
43
|
+
'preaccept',
|
44
|
+
'cover_photo',
|
45
|
+
'uncompressed',
|
46
|
+
'encopt',
|
47
|
+
'ppic',
|
48
|
+
'04',
|
49
|
+
'passive',
|
50
|
+
'status-revoke-drop',
|
51
|
+
'keygen',
|
52
|
+
'540',
|
53
|
+
'offer',
|
54
|
+
'rate',
|
55
|
+
'opus',
|
56
|
+
'latitude',
|
57
|
+
'w:gp2',
|
58
|
+
'ver',
|
59
|
+
'4',
|
60
|
+
'business_profile',
|
61
|
+
'medium',
|
62
|
+
'sender',
|
63
|
+
'prev_v_id',
|
64
|
+
'email',
|
65
|
+
'website',
|
66
|
+
'invited',
|
67
|
+
'sign_credential',
|
68
|
+
'05',
|
69
|
+
'transport',
|
70
|
+
'skey',
|
71
|
+
'reason',
|
72
|
+
'peer_abtest_bucket',
|
73
|
+
'America/Sao_Paulo',
|
74
|
+
'appid',
|
75
|
+
'refresh',
|
76
|
+
'100',
|
77
|
+
'06',
|
78
|
+
'404',
|
79
|
+
'101',
|
80
|
+
'104',
|
81
|
+
'107',
|
82
|
+
'102',
|
83
|
+
'109',
|
84
|
+
'103',
|
85
|
+
'member_add_mode',
|
86
|
+
'105',
|
87
|
+
'transaction-id',
|
88
|
+
'110',
|
89
|
+
'106',
|
90
|
+
'outgoing',
|
91
|
+
'108',
|
92
|
+
'111',
|
93
|
+
'tokens',
|
94
|
+
'followers',
|
95
|
+
'ig_handle',
|
96
|
+
'self_pid',
|
97
|
+
'tue',
|
98
|
+
'dec',
|
99
|
+
'thu',
|
100
|
+
'joinable',
|
101
|
+
'peer_pid',
|
102
|
+
'mon',
|
103
|
+
'features',
|
104
|
+
'wed',
|
105
|
+
'peer_device_presence',
|
106
|
+
'pn',
|
107
|
+
'delete',
|
108
|
+
'07',
|
109
|
+
'fri',
|
110
|
+
'audio_duration',
|
111
|
+
'admin',
|
112
|
+
'connected',
|
113
|
+
'delta',
|
114
|
+
'rcat',
|
115
|
+
'disable',
|
116
|
+
'collection',
|
117
|
+
'08',
|
118
|
+
'480',
|
119
|
+
'sat',
|
120
|
+
'phash',
|
121
|
+
'all',
|
122
|
+
'invite',
|
123
|
+
'accept',
|
124
|
+
'critical_unblock_low',
|
125
|
+
'group_update',
|
126
|
+
'signed_credential',
|
127
|
+
'blinded_credential',
|
128
|
+
'eph_setting',
|
129
|
+
'net',
|
130
|
+
'09',
|
131
|
+
'background_location',
|
132
|
+
'refresh_id',
|
133
|
+
'Asia/Kolkata',
|
134
|
+
'privacy_mode_ts',
|
135
|
+
'account_sync',
|
136
|
+
'voip_payload_type',
|
137
|
+
'service_areas',
|
138
|
+
'acs_public_key',
|
139
|
+
'v_id',
|
140
|
+
'0a',
|
141
|
+
'fallback_class',
|
142
|
+
'relay',
|
143
|
+
'actual_actors',
|
144
|
+
'metadata',
|
145
|
+
'w:biz',
|
146
|
+
'5',
|
147
|
+
'connected-limit',
|
148
|
+
'notice',
|
149
|
+
'0b',
|
150
|
+
'host_storage',
|
151
|
+
'fb_page',
|
152
|
+
'subject',
|
153
|
+
'privatestats',
|
154
|
+
'invis',
|
155
|
+
'groupadd',
|
156
|
+
'010',
|
157
|
+
'note.m4r',
|
158
|
+
'uuid',
|
159
|
+
'0c',
|
160
|
+
'8000',
|
161
|
+
'sun',
|
162
|
+
'372',
|
163
|
+
'1020',
|
164
|
+
'stage',
|
165
|
+
'1200',
|
166
|
+
'720',
|
167
|
+
'canonical',
|
168
|
+
'fb',
|
169
|
+
'011',
|
170
|
+
'video_duration',
|
171
|
+
'0d',
|
172
|
+
'1140',
|
173
|
+
'superadmin',
|
174
|
+
'012',
|
175
|
+
'Opening.m4r',
|
176
|
+
'keystore_attestation',
|
177
|
+
'dleq_proof',
|
178
|
+
'013',
|
179
|
+
'timestamp',
|
180
|
+
'ab_key',
|
181
|
+
'w:sync:app:state',
|
182
|
+
'0e',
|
183
|
+
'vertical',
|
184
|
+
'600',
|
185
|
+
'p_v_id',
|
186
|
+
'6',
|
187
|
+
'likes',
|
188
|
+
'014',
|
189
|
+
'500',
|
190
|
+
'1260',
|
191
|
+
'creator',
|
192
|
+
'0f',
|
193
|
+
'rte',
|
194
|
+
'destination',
|
195
|
+
'group',
|
196
|
+
'group_info',
|
197
|
+
'syncd_anti_tampering_fatal_exception_enabled',
|
198
|
+
'015',
|
199
|
+
'dl_bw',
|
200
|
+
'Asia/Jakarta',
|
201
|
+
'vp8/h.264',
|
202
|
+
'online',
|
203
|
+
'1320',
|
204
|
+
'fb:multiway',
|
205
|
+
'10',
|
206
|
+
'timeout',
|
207
|
+
'016',
|
208
|
+
'nse_retry',
|
209
|
+
'urn:xmpp:whatsapp:dirty',
|
210
|
+
'017',
|
211
|
+
'a_v_id',
|
212
|
+
'web_shops_chat_header_button_enabled',
|
213
|
+
'nse_call',
|
214
|
+
'inactive-upgrade',
|
215
|
+
'none',
|
216
|
+
'web',
|
217
|
+
'groups',
|
218
|
+
'2250',
|
219
|
+
'mms_hot_content_timespan_in_seconds',
|
220
|
+
'contact_blacklist',
|
221
|
+
'nse_read',
|
222
|
+
'suspended_group_deletion_notification',
|
223
|
+
'binary_version',
|
224
|
+
'018',
|
225
|
+
'https://www.whatsapp.com/otp/copy/',
|
226
|
+
'reg_push',
|
227
|
+
'shops_hide_catalog_attachment_entrypoint',
|
228
|
+
'server_sync',
|
229
|
+
'.',
|
230
|
+
'ephemeral_messages_allowed_values',
|
231
|
+
'019',
|
232
|
+
'mms_vcache_aggregation_enabled',
|
233
|
+
'iphone',
|
234
|
+
'America/Argentina/Buenos_Aires',
|
235
|
+
'01a',
|
236
|
+
'mms_vcard_autodownload_size_kb',
|
237
|
+
'nse_ver',
|
238
|
+
'shops_header_dropdown_menu_item',
|
239
|
+
'dhash',
|
240
|
+
'catalog_status',
|
241
|
+
'communities_mvp_new_iqs_serverprop',
|
242
|
+
'blocklist',
|
243
|
+
'default',
|
244
|
+
'11',
|
245
|
+
'ephemeral_messages_enabled',
|
246
|
+
'01b',
|
247
|
+
'original_dimensions',
|
248
|
+
'8',
|
249
|
+
'mms4_media_retry_notification_encryption_enabled',
|
250
|
+
'mms4_server_error_receipt_encryption_enabled',
|
251
|
+
'original_image_url',
|
252
|
+
'sync',
|
253
|
+
'multiway',
|
254
|
+
'420',
|
255
|
+
'companion_enc_static',
|
256
|
+
'shops_profile_drawer_entrypoint',
|
257
|
+
'01c',
|
258
|
+
'vcard_as_document_size_kb',
|
259
|
+
'status_video_max_duration',
|
260
|
+
'request_image_url',
|
261
|
+
'01d',
|
262
|
+
'regular_high',
|
263
|
+
's_t',
|
264
|
+
'abt',
|
265
|
+
'share_ext_min_preliminary_image_quality',
|
266
|
+
'01e',
|
267
|
+
'32',
|
268
|
+
'syncd_key_rotation_enabled',
|
269
|
+
'data_namespace',
|
270
|
+
'md_downgrade_read_receipts2',
|
271
|
+
'patch',
|
272
|
+
'polltype',
|
273
|
+
'ephemeral_messages_setting',
|
274
|
+
'userrate',
|
275
|
+
'15',
|
276
|
+
'partial_pjpeg_bw_threshold',
|
277
|
+
'played-self',
|
278
|
+
'catalog_exists',
|
279
|
+
'01f',
|
280
|
+
'mute_v2'
|
281
|
+
],
|
282
|
+
[
|
283
|
+
'reject',
|
284
|
+
'dirty',
|
285
|
+
'announcement',
|
286
|
+
'020',
|
287
|
+
'13',
|
288
|
+
'9',
|
289
|
+
'status_video_max_bitrate',
|
290
|
+
'fb:thrift_iq',
|
291
|
+
'offline_batch',
|
292
|
+
'022',
|
293
|
+
'full',
|
294
|
+
'ctwa_first_business_reply_logging',
|
295
|
+
'h.264',
|
296
|
+
'smax_id',
|
297
|
+
'group_description_length',
|
298
|
+
'https://www.whatsapp.com/otp/code',
|
299
|
+
'status_image_max_edge',
|
300
|
+
'smb_upsell_business_profile_enabled',
|
301
|
+
'021',
|
302
|
+
'web_upgrade_to_md_modal',
|
303
|
+
'14',
|
304
|
+
'023',
|
305
|
+
's_o',
|
306
|
+
'smaller_video_thumbs_status_enabled',
|
307
|
+
'media_max_autodownload',
|
308
|
+
'960',
|
309
|
+
'blocking_status',
|
310
|
+
'peer_msg',
|
311
|
+
'joinable_group_call_client_version',
|
312
|
+
'group_call_video_maximization_enabled',
|
313
|
+
'return_snapshot',
|
314
|
+
'high',
|
315
|
+
'America/Mexico_City',
|
316
|
+
'entry_point_block_logging_enabled',
|
317
|
+
'pop',
|
318
|
+
'024',
|
319
|
+
'1050',
|
320
|
+
'16',
|
321
|
+
'1380',
|
322
|
+
'one_tap_calling_in_group_chat_size',
|
323
|
+
'regular_low',
|
324
|
+
'inline_joinable_education_enabled',
|
325
|
+
'hq_image_max_edge',
|
326
|
+
'locked',
|
327
|
+
'America/Bogota',
|
328
|
+
'smb_biztools_deeplink_enabled',
|
329
|
+
'status_image_quality',
|
330
|
+
'1088',
|
331
|
+
'025',
|
332
|
+
'payments_upi_intent_transaction_limit',
|
333
|
+
'voip',
|
334
|
+
'w:g2',
|
335
|
+
'027',
|
336
|
+
'md_pin_chat_enabled',
|
337
|
+
'026',
|
338
|
+
'multi_scan_pjpeg_download_enabled',
|
339
|
+
'shops_product_grid',
|
340
|
+
'transaction_id',
|
341
|
+
'ctwa_context_enabled',
|
342
|
+
'20',
|
343
|
+
'fna',
|
344
|
+
'hq_image_quality',
|
345
|
+
'alt_jpeg_doc_detection_quality',
|
346
|
+
'group_call_max_participants',
|
347
|
+
'pkey',
|
348
|
+
'America/Belem',
|
349
|
+
'image_max_kbytes',
|
350
|
+
'web_cart_v1_1_order_message_changes_enabled',
|
351
|
+
'ctwa_context_enterprise_enabled',
|
352
|
+
'urn:xmpp:whatsapp:account',
|
353
|
+
'840',
|
354
|
+
'Asia/Kuala_Lumpur',
|
355
|
+
'max_participants',
|
356
|
+
'video_remux_after_repair_enabled',
|
357
|
+
'stella_addressbook_restriction_type',
|
358
|
+
'660',
|
359
|
+
'900',
|
360
|
+
'780',
|
361
|
+
'context_menu_ios13_enabled',
|
362
|
+
'mute-state',
|
363
|
+
'ref',
|
364
|
+
'payments_request_messages',
|
365
|
+
'029',
|
366
|
+
'frskmsg',
|
367
|
+
'vcard_max_size_kb',
|
368
|
+
'sample_buffer_gif_player_enabled',
|
369
|
+
'match_last_seen',
|
370
|
+
'510',
|
371
|
+
'4983',
|
372
|
+
'video_max_bitrate',
|
373
|
+
'028',
|
374
|
+
'w:comms:chat',
|
375
|
+
'17',
|
376
|
+
'frequently_forwarded_max',
|
377
|
+
'groups_privacy_blacklist',
|
378
|
+
'Asia/Karachi',
|
379
|
+
'02a',
|
380
|
+
'web_download_document_thumb_mms_enabled',
|
381
|
+
'02b',
|
382
|
+
'hist_sync',
|
383
|
+
'biz_block_reasons_version',
|
384
|
+
'1024',
|
385
|
+
'18',
|
386
|
+
'web_is_direct_connection_for_plm_transparent',
|
387
|
+
'view_once_write',
|
388
|
+
'file_max_size',
|
389
|
+
'paid_convo_id',
|
390
|
+
'online_privacy_setting',
|
391
|
+
'video_max_edge',
|
392
|
+
'view_once_read',
|
393
|
+
'enhanced_storage_management',
|
394
|
+
'multi_scan_pjpeg_encoding_enabled',
|
395
|
+
'ctwa_context_forward_enabled',
|
396
|
+
'video_transcode_downgrade_enable',
|
397
|
+
'template_doc_mime_types',
|
398
|
+
'hq_image_bw_threshold',
|
399
|
+
'30',
|
400
|
+
'body',
|
401
|
+
'u_aud_limit_sil_restarts_ctrl',
|
402
|
+
'other',
|
403
|
+
'participating',
|
404
|
+
'w:biz:directory',
|
405
|
+
'1110',
|
406
|
+
'vp8',
|
407
|
+
'4018',
|
408
|
+
'meta',
|
409
|
+
'doc_detection_image_max_edge',
|
410
|
+
'image_quality',
|
411
|
+
'1170',
|
412
|
+
'02c',
|
413
|
+
'smb_upsell_chat_banner_enabled',
|
414
|
+
'key_expiry_time_second',
|
415
|
+
'pid',
|
416
|
+
'stella_interop_enabled',
|
417
|
+
'19',
|
418
|
+
'linked_device_max_count',
|
419
|
+
'md_device_sync_enabled',
|
420
|
+
'02d',
|
421
|
+
'02e',
|
422
|
+
'360',
|
423
|
+
'enhanced_block_enabled',
|
424
|
+
'ephemeral_icon_in_forwarding',
|
425
|
+
'paid_convo_status',
|
426
|
+
'gif_provider',
|
427
|
+
'project_name',
|
428
|
+
'server-error',
|
429
|
+
'canonical_url_validation_enabled',
|
430
|
+
'wallpapers_v2',
|
431
|
+
'syncd_clear_chat_delete_chat_enabled',
|
432
|
+
'medianotify',
|
433
|
+
'02f',
|
434
|
+
'shops_required_tos_version',
|
435
|
+
'vote',
|
436
|
+
'reset_skey_on_id_change',
|
437
|
+
'030',
|
438
|
+
'image_max_edge',
|
439
|
+
'multicast_limit_global',
|
440
|
+
'ul_bw',
|
441
|
+
'21',
|
442
|
+
'25',
|
443
|
+
'5000',
|
444
|
+
'poll',
|
445
|
+
'570',
|
446
|
+
'22',
|
447
|
+
'031',
|
448
|
+
'1280',
|
449
|
+
'WhatsApp',
|
450
|
+
'032',
|
451
|
+
'bloks_shops_enabled',
|
452
|
+
'50',
|
453
|
+
'upload_host_switching_enabled',
|
454
|
+
'web_ctwa_context_compose_enabled',
|
455
|
+
'ptt_forwarded_features_enabled',
|
456
|
+
'unblocked',
|
457
|
+
'partial_pjpeg_enabled',
|
458
|
+
'fbid:devices',
|
459
|
+
'height',
|
460
|
+
'ephemeral_group_query_ts',
|
461
|
+
'group_join_permissions',
|
462
|
+
'order',
|
463
|
+
'033',
|
464
|
+
'alt_jpeg_status_quality',
|
465
|
+
'migrate',
|
466
|
+
'popular-bank',
|
467
|
+
'win_uwp_deprecation_killswitch_enabled',
|
468
|
+
'web_download_status_thumb_mms_enabled',
|
469
|
+
'blocking',
|
470
|
+
'url_text',
|
471
|
+
'035',
|
472
|
+
'web_forwarding_limit_to_groups',
|
473
|
+
'1600',
|
474
|
+
'val',
|
475
|
+
'1000',
|
476
|
+
'syncd_msg_date_enabled',
|
477
|
+
'bank-ref-id',
|
478
|
+
'max_subject',
|
479
|
+
'payments_web_enabled',
|
480
|
+
'web_upload_document_thumb_mms_enabled',
|
481
|
+
'size',
|
482
|
+
'request',
|
483
|
+
'ephemeral',
|
484
|
+
'24',
|
485
|
+
'receipt_agg',
|
486
|
+
'ptt_remember_play_position',
|
487
|
+
'sampling_weight',
|
488
|
+
'enc_rekey',
|
489
|
+
'mute_always',
|
490
|
+
'037',
|
491
|
+
'034',
|
492
|
+
'23',
|
493
|
+
'036',
|
494
|
+
'action',
|
495
|
+
'click_to_chat_qr_enabled',
|
496
|
+
'width',
|
497
|
+
'disabled',
|
498
|
+
'038',
|
499
|
+
'md_blocklist_v2',
|
500
|
+
'played_self_enabled',
|
501
|
+
'web_buttons_message_enabled',
|
502
|
+
'flow_id',
|
503
|
+
'clear',
|
504
|
+
'450',
|
505
|
+
'fbid:thread',
|
506
|
+
'bloks_session_state',
|
507
|
+
'America/Lima',
|
508
|
+
'attachment_picker_refresh',
|
509
|
+
'download_host_switching_enabled',
|
510
|
+
'1792',
|
511
|
+
'u_aud_limit_sil_restarts_test2',
|
512
|
+
'custom_urls',
|
513
|
+
'device_fanout',
|
514
|
+
'optimistic_upload',
|
515
|
+
'2000',
|
516
|
+
'key_cipher_suite',
|
517
|
+
'web_smb_upsell_in_biz_profile_enabled',
|
518
|
+
'e',
|
519
|
+
'039',
|
520
|
+
'siri_post_status_shortcut',
|
521
|
+
'pair-device',
|
522
|
+
'lg',
|
523
|
+
'lc',
|
524
|
+
'stream_attribution_url',
|
525
|
+
'model',
|
526
|
+
'mspjpeg_phash_gen',
|
527
|
+
'catalog_send_all',
|
528
|
+
'new_multi_vcards_ui',
|
529
|
+
'share_biz_vcard_enabled',
|
530
|
+
'-',
|
531
|
+
'clean',
|
532
|
+
'200',
|
533
|
+
'md_blocklist_v2_server',
|
534
|
+
'03b',
|
535
|
+
'03a',
|
536
|
+
'web_md_migration_experience',
|
537
|
+
'ptt_conversation_waveform',
|
538
|
+
'u_aud_limit_sil_restarts_test1'
|
539
|
+
],
|
540
|
+
[
|
541
|
+
'64',
|
542
|
+
'ptt_playback_speed_enabled',
|
543
|
+
'web_product_list_message_enabled',
|
544
|
+
'paid_convo_ts',
|
545
|
+
'27',
|
546
|
+
'manufacturer',
|
547
|
+
'psp-routing',
|
548
|
+
'grp_uii_cleanup',
|
549
|
+
'ptt_draft_enabled',
|
550
|
+
'03c',
|
551
|
+
'business_initiated',
|
552
|
+
'web_catalog_products_onoff',
|
553
|
+
'web_upload_link_thumb_mms_enabled',
|
554
|
+
'03e',
|
555
|
+
'mediaretry',
|
556
|
+
'35',
|
557
|
+
'hfm_string_changes',
|
558
|
+
'28',
|
559
|
+
'America/Fortaleza',
|
560
|
+
'max_keys',
|
561
|
+
'md_mhfs_days',
|
562
|
+
'streaming_upload_chunk_size',
|
563
|
+
'5541',
|
564
|
+
'040',
|
565
|
+
'03d',
|
566
|
+
'2675',
|
567
|
+
'03f',
|
568
|
+
'...',
|
569
|
+
'512',
|
570
|
+
'mute',
|
571
|
+
'48',
|
572
|
+
'041',
|
573
|
+
'alt_jpeg_quality',
|
574
|
+
'60',
|
575
|
+
'042',
|
576
|
+
'md_smb_quick_reply',
|
577
|
+
'5183',
|
578
|
+
'c',
|
579
|
+
'1343',
|
580
|
+
'40',
|
581
|
+
'1230',
|
582
|
+
'043',
|
583
|
+
'044',
|
584
|
+
'mms_cat_v1_forward_hot_override_enabled',
|
585
|
+
'user_notice',
|
586
|
+
'ptt_waveform_send',
|
587
|
+
'047',
|
588
|
+
'Asia/Calcutta',
|
589
|
+
'250',
|
590
|
+
'md_privacy_v2',
|
591
|
+
'31',
|
592
|
+
'29',
|
593
|
+
'128',
|
594
|
+
'md_messaging_enabled',
|
595
|
+
'046',
|
596
|
+
'crypto',
|
597
|
+
'690',
|
598
|
+
'045',
|
599
|
+
'enc_iv',
|
600
|
+
'75',
|
601
|
+
'failure',
|
602
|
+
'ptt_oot_playback',
|
603
|
+
'AIzaSyDR5yfaG7OG8sMTUj8kfQEb8T9pN8BM6Lk',
|
604
|
+
'w',
|
605
|
+
'048',
|
606
|
+
'2201',
|
607
|
+
'web_large_files_ui',
|
608
|
+
'Asia/Makassar',
|
609
|
+
'812',
|
610
|
+
'status_collapse_muted',
|
611
|
+
'1334',
|
612
|
+
'257',
|
613
|
+
'2HP4dm',
|
614
|
+
'049',
|
615
|
+
'patches',
|
616
|
+
'1290',
|
617
|
+
'43cY6T',
|
618
|
+
'America/Caracas',
|
619
|
+
'web_sticker_maker',
|
620
|
+
'campaign',
|
621
|
+
'ptt_pausable_enabled',
|
622
|
+
'33',
|
623
|
+
'42',
|
624
|
+
'attestation',
|
625
|
+
'biz',
|
626
|
+
'04b',
|
627
|
+
'query_linked',
|
628
|
+
's',
|
629
|
+
'125',
|
630
|
+
'04a',
|
631
|
+
'810',
|
632
|
+
'availability',
|
633
|
+
'1411',
|
634
|
+
'responsiveness_v2_m1',
|
635
|
+
'catalog_not_created',
|
636
|
+
'34',
|
637
|
+
'America/Santiago',
|
638
|
+
'1465',
|
639
|
+
'enc_p',
|
640
|
+
'04d',
|
641
|
+
'status_info',
|
642
|
+
'04f',
|
643
|
+
'key_version',
|
644
|
+
'..',
|
645
|
+
'04c',
|
646
|
+
'04e',
|
647
|
+
'md_group_notification',
|
648
|
+
'1598',
|
649
|
+
'1215',
|
650
|
+
'web_cart_enabled',
|
651
|
+
'37',
|
652
|
+
'630',
|
653
|
+
'1920',
|
654
|
+
'2394',
|
655
|
+
'-1',
|
656
|
+
'vcard',
|
657
|
+
'38',
|
658
|
+
'elapsed',
|
659
|
+
'36',
|
660
|
+
'828',
|
661
|
+
'peer',
|
662
|
+
'pricing_category',
|
663
|
+
'1245',
|
664
|
+
'invalid',
|
665
|
+
'stella_ios_enabled',
|
666
|
+
'2687',
|
667
|
+
'45',
|
668
|
+
'1528',
|
669
|
+
'39',
|
670
|
+
'u_is_redial_audio_1104_ctrl',
|
671
|
+
'1025',
|
672
|
+
'1455',
|
673
|
+
'58',
|
674
|
+
'2524',
|
675
|
+
'2603',
|
676
|
+
'054',
|
677
|
+
'bsp_system_message_enabled',
|
678
|
+
'web_pip_redesign',
|
679
|
+
'051',
|
680
|
+
'verify_apps',
|
681
|
+
'1974',
|
682
|
+
'1272',
|
683
|
+
'1322',
|
684
|
+
'1755',
|
685
|
+
'052',
|
686
|
+
'70',
|
687
|
+
'050',
|
688
|
+
'1063',
|
689
|
+
'1135',
|
690
|
+
'1361',
|
691
|
+
'80',
|
692
|
+
'1096',
|
693
|
+
'1828',
|
694
|
+
'1851',
|
695
|
+
'1251',
|
696
|
+
'1921',
|
697
|
+
'key_config_id',
|
698
|
+
'1254',
|
699
|
+
'1566',
|
700
|
+
'1252',
|
701
|
+
'2525',
|
702
|
+
'critical_block',
|
703
|
+
'1669',
|
704
|
+
'max_available',
|
705
|
+
'w:auth:backup:token',
|
706
|
+
'product',
|
707
|
+
'2530',
|
708
|
+
'870',
|
709
|
+
'1022',
|
710
|
+
'participant_uuid',
|
711
|
+
'web_cart_on_off',
|
712
|
+
'1255',
|
713
|
+
'1432',
|
714
|
+
'1867',
|
715
|
+
'41',
|
716
|
+
'1415',
|
717
|
+
'1440',
|
718
|
+
'240',
|
719
|
+
'1204',
|
720
|
+
'1608',
|
721
|
+
'1690',
|
722
|
+
'1846',
|
723
|
+
'1483',
|
724
|
+
'1687',
|
725
|
+
'1749',
|
726
|
+
'69',
|
727
|
+
'url_number',
|
728
|
+
'053',
|
729
|
+
'1325',
|
730
|
+
'1040',
|
731
|
+
'365',
|
732
|
+
'59',
|
733
|
+
'Asia/Riyadh',
|
734
|
+
'1177',
|
735
|
+
'test_recommended',
|
736
|
+
'057',
|
737
|
+
'1612',
|
738
|
+
'43',
|
739
|
+
'1061',
|
740
|
+
'1518',
|
741
|
+
'1635',
|
742
|
+
'055',
|
743
|
+
'1034',
|
744
|
+
'1375',
|
745
|
+
'750',
|
746
|
+
'1430',
|
747
|
+
'event_code',
|
748
|
+
'1682',
|
749
|
+
'503',
|
750
|
+
'55',
|
751
|
+
'865',
|
752
|
+
'78',
|
753
|
+
'1309',
|
754
|
+
'1365',
|
755
|
+
'44',
|
756
|
+
'America/Guayaquil',
|
757
|
+
'535',
|
758
|
+
'LIMITED',
|
759
|
+
'1377',
|
760
|
+
'1613',
|
761
|
+
'1420',
|
762
|
+
'1599',
|
763
|
+
'1822',
|
764
|
+
'05a',
|
765
|
+
'1681',
|
766
|
+
'password',
|
767
|
+
'1111',
|
768
|
+
'1214',
|
769
|
+
'1376',
|
770
|
+
'1478',
|
771
|
+
'47',
|
772
|
+
'1082',
|
773
|
+
'4282',
|
774
|
+
'Europe/Istanbul',
|
775
|
+
'1307',
|
776
|
+
'46',
|
777
|
+
'058',
|
778
|
+
'1124',
|
779
|
+
'256',
|
780
|
+
'rate-overlimit',
|
781
|
+
'retail',
|
782
|
+
'u_a_socket_err_fix_succ_test',
|
783
|
+
'1292',
|
784
|
+
'1370',
|
785
|
+
'1388',
|
786
|
+
'520',
|
787
|
+
'861',
|
788
|
+
'psa',
|
789
|
+
'regular',
|
790
|
+
'1181',
|
791
|
+
'1766',
|
792
|
+
'05b',
|
793
|
+
'1183',
|
794
|
+
'1213',
|
795
|
+
'1304',
|
796
|
+
'1537'
|
797
|
+
],
|
798
|
+
[
|
799
|
+
'1724',
|
800
|
+
'profile_picture',
|
801
|
+
'1071',
|
802
|
+
'1314',
|
803
|
+
'1605',
|
804
|
+
'407',
|
805
|
+
'990',
|
806
|
+
'1710',
|
807
|
+
'746',
|
808
|
+
'pricing_model',
|
809
|
+
'056',
|
810
|
+
'059',
|
811
|
+
'061',
|
812
|
+
'1119',
|
813
|
+
'6027',
|
814
|
+
'65',
|
815
|
+
'877',
|
816
|
+
'1607',
|
817
|
+
'05d',
|
818
|
+
'917',
|
819
|
+
'seen',
|
820
|
+
'1516',
|
821
|
+
'49',
|
822
|
+
'470',
|
823
|
+
'973',
|
824
|
+
'1037',
|
825
|
+
'1350',
|
826
|
+
'1394',
|
827
|
+
'1480',
|
828
|
+
'1796',
|
829
|
+
'keys',
|
830
|
+
'794',
|
831
|
+
'1536',
|
832
|
+
'1594',
|
833
|
+
'2378',
|
834
|
+
'1333',
|
835
|
+
'1524',
|
836
|
+
'1825',
|
837
|
+
'116',
|
838
|
+
'309',
|
839
|
+
'52',
|
840
|
+
'808',
|
841
|
+
'827',
|
842
|
+
'909',
|
843
|
+
'495',
|
844
|
+
'1660',
|
845
|
+
'361',
|
846
|
+
'957',
|
847
|
+
'google',
|
848
|
+
'1357',
|
849
|
+
'1565',
|
850
|
+
'1967',
|
851
|
+
'996',
|
852
|
+
'1775',
|
853
|
+
'586',
|
854
|
+
'736',
|
855
|
+
'1052',
|
856
|
+
'1670',
|
857
|
+
'bank',
|
858
|
+
'177',
|
859
|
+
'1416',
|
860
|
+
'2194',
|
861
|
+
'2222',
|
862
|
+
'1454',
|
863
|
+
'1839',
|
864
|
+
'1275',
|
865
|
+
'53',
|
866
|
+
'997',
|
867
|
+
'1629',
|
868
|
+
'6028',
|
869
|
+
'smba',
|
870
|
+
'1378',
|
871
|
+
'1410',
|
872
|
+
'05c',
|
873
|
+
'1849',
|
874
|
+
'727',
|
875
|
+
'create',
|
876
|
+
'1559',
|
877
|
+
'536',
|
878
|
+
'1106',
|
879
|
+
'1310',
|
880
|
+
'1944',
|
881
|
+
'670',
|
882
|
+
'1297',
|
883
|
+
'1316',
|
884
|
+
'1762',
|
885
|
+
'en',
|
886
|
+
'1148',
|
887
|
+
'1295',
|
888
|
+
'1551',
|
889
|
+
'1853',
|
890
|
+
'1890',
|
891
|
+
'1208',
|
892
|
+
'1784',
|
893
|
+
'7200',
|
894
|
+
'05f',
|
895
|
+
'178',
|
896
|
+
'1283',
|
897
|
+
'1332',
|
898
|
+
'381',
|
899
|
+
'643',
|
900
|
+
'1056',
|
901
|
+
'1238',
|
902
|
+
'2024',
|
903
|
+
'2387',
|
904
|
+
'179',
|
905
|
+
'981',
|
906
|
+
'1547',
|
907
|
+
'1705',
|
908
|
+
'05e',
|
909
|
+
'290',
|
910
|
+
'903',
|
911
|
+
'1069',
|
912
|
+
'1285',
|
913
|
+
'2436',
|
914
|
+
'062',
|
915
|
+
'251',
|
916
|
+
'560',
|
917
|
+
'582',
|
918
|
+
'719',
|
919
|
+
'56',
|
920
|
+
'1700',
|
921
|
+
'2321',
|
922
|
+
'325',
|
923
|
+
'448',
|
924
|
+
'613',
|
925
|
+
'777',
|
926
|
+
'791',
|
927
|
+
'51',
|
928
|
+
'488',
|
929
|
+
'902',
|
930
|
+
'Asia/Almaty',
|
931
|
+
'is_hidden',
|
932
|
+
'1398',
|
933
|
+
'1527',
|
934
|
+
'1893',
|
935
|
+
'1999',
|
936
|
+
'2367',
|
937
|
+
'2642',
|
938
|
+
'237',
|
939
|
+
'busy',
|
940
|
+
'065',
|
941
|
+
'067',
|
942
|
+
'233',
|
943
|
+
'590',
|
944
|
+
'993',
|
945
|
+
'1511',
|
946
|
+
'54',
|
947
|
+
'723',
|
948
|
+
'860',
|
949
|
+
'363',
|
950
|
+
'487',
|
951
|
+
'522',
|
952
|
+
'605',
|
953
|
+
'995',
|
954
|
+
'1321',
|
955
|
+
'1691',
|
956
|
+
'1865',
|
957
|
+
'2447',
|
958
|
+
'2462',
|
959
|
+
'NON_TRANSACTIONAL',
|
960
|
+
'433',
|
961
|
+
'871',
|
962
|
+
'432',
|
963
|
+
'1004',
|
964
|
+
'1207',
|
965
|
+
'2032',
|
966
|
+
'2050',
|
967
|
+
'2379',
|
968
|
+
'2446',
|
969
|
+
'279',
|
970
|
+
'636',
|
971
|
+
'703',
|
972
|
+
'904',
|
973
|
+
'248',
|
974
|
+
'370',
|
975
|
+
'691',
|
976
|
+
'700',
|
977
|
+
'1068',
|
978
|
+
'1655',
|
979
|
+
'2334',
|
980
|
+
'060',
|
981
|
+
'063',
|
982
|
+
'364',
|
983
|
+
'533',
|
984
|
+
'534',
|
985
|
+
'567',
|
986
|
+
'1191',
|
987
|
+
'1210',
|
988
|
+
'1473',
|
989
|
+
'1827',
|
990
|
+
'069',
|
991
|
+
'701',
|
992
|
+
'2531',
|
993
|
+
'514',
|
994
|
+
'prev_dhash',
|
995
|
+
'064',
|
996
|
+
'496',
|
997
|
+
'790',
|
998
|
+
'1046',
|
999
|
+
'1139',
|
1000
|
+
'1505',
|
1001
|
+
'1521',
|
1002
|
+
'1108',
|
1003
|
+
'207',
|
1004
|
+
'544',
|
1005
|
+
'637',
|
1006
|
+
'final',
|
1007
|
+
'1173',
|
1008
|
+
'1293',
|
1009
|
+
'1694',
|
1010
|
+
'1939',
|
1011
|
+
'1951',
|
1012
|
+
'1993',
|
1013
|
+
'2353',
|
1014
|
+
'2515',
|
1015
|
+
'504',
|
1016
|
+
'601',
|
1017
|
+
'857',
|
1018
|
+
'modify',
|
1019
|
+
'spam_request',
|
1020
|
+
'p_121_aa_1101_test4',
|
1021
|
+
'866',
|
1022
|
+
'1427',
|
1023
|
+
'1502',
|
1024
|
+
'1638',
|
1025
|
+
'1744',
|
1026
|
+
'2153',
|
1027
|
+
'068',
|
1028
|
+
'382',
|
1029
|
+
'725',
|
1030
|
+
'1704',
|
1031
|
+
'1864',
|
1032
|
+
'1990',
|
1033
|
+
'2003',
|
1034
|
+
'Asia/Dubai',
|
1035
|
+
'508',
|
1036
|
+
'531',
|
1037
|
+
'1387',
|
1038
|
+
'1474',
|
1039
|
+
'1632',
|
1040
|
+
'2307',
|
1041
|
+
'2386',
|
1042
|
+
'819',
|
1043
|
+
'2014',
|
1044
|
+
'066',
|
1045
|
+
'387',
|
1046
|
+
'1468',
|
1047
|
+
'1706',
|
1048
|
+
'2186',
|
1049
|
+
'2261',
|
1050
|
+
'471',
|
1051
|
+
'728',
|
1052
|
+
'1147',
|
1053
|
+
'1372',
|
1054
|
+
'1961'
|
1055
|
+
]
|
1056
|
+
];
|
1057
|
+
exports.SINGLE_BYTE_TOKENS = [
|
1058
|
+
'',
|
1059
|
+
'xmlstreamstart',
|
1060
|
+
'xmlstreamend',
|
1061
|
+
's.whatsapp.net',
|
1062
|
+
'type',
|
1063
|
+
'participant',
|
1064
|
+
'from',
|
1065
|
+
'receipt',
|
1066
|
+
'id',
|
1067
|
+
'notification',
|
1068
|
+
'disappearing_mode',
|
1069
|
+
'status',
|
1070
|
+
'jid',
|
1071
|
+
'broadcast',
|
1072
|
+
'user',
|
1073
|
+
'devices',
|
1074
|
+
'device_hash',
|
1075
|
+
'to',
|
1076
|
+
'offline',
|
1077
|
+
'message',
|
1078
|
+
'result',
|
1079
|
+
'class',
|
1080
|
+
'xmlns',
|
1081
|
+
'duration',
|
1082
|
+
'notify',
|
1083
|
+
'iq',
|
1084
|
+
't',
|
1085
|
+
'ack',
|
1086
|
+
'g.us',
|
1087
|
+
'enc',
|
1088
|
+
'urn:xmpp:whatsapp:push',
|
1089
|
+
'presence',
|
1090
|
+
'config_value',
|
1091
|
+
'picture',
|
1092
|
+
'verified_name',
|
1093
|
+
'config_code',
|
1094
|
+
'key-index-list',
|
1095
|
+
'contact',
|
1096
|
+
'mediatype',
|
1097
|
+
'routing_info',
|
1098
|
+
'edge_routing',
|
1099
|
+
'get',
|
1100
|
+
'read',
|
1101
|
+
'urn:xmpp:ping',
|
1102
|
+
'fallback_hostname',
|
1103
|
+
'0',
|
1104
|
+
'chatstate',
|
1105
|
+
'business_hours_config',
|
1106
|
+
'unavailable',
|
1107
|
+
'download_buckets',
|
1108
|
+
'skmsg',
|
1109
|
+
'verified_level',
|
1110
|
+
'composing',
|
1111
|
+
'handshake',
|
1112
|
+
'device-list',
|
1113
|
+
'media',
|
1114
|
+
'text',
|
1115
|
+
'fallback_ip4',
|
1116
|
+
'media_conn',
|
1117
|
+
'device',
|
1118
|
+
'creation',
|
1119
|
+
'location',
|
1120
|
+
'config',
|
1121
|
+
'item',
|
1122
|
+
'fallback_ip6',
|
1123
|
+
'count',
|
1124
|
+
'w:profile:picture',
|
1125
|
+
'image',
|
1126
|
+
'business',
|
1127
|
+
'2',
|
1128
|
+
'hostname',
|
1129
|
+
'call-creator',
|
1130
|
+
'display_name',
|
1131
|
+
'relaylatency',
|
1132
|
+
'platform',
|
1133
|
+
'abprops',
|
1134
|
+
'success',
|
1135
|
+
'msg',
|
1136
|
+
'offline_preview',
|
1137
|
+
'prop',
|
1138
|
+
'key-index',
|
1139
|
+
'v',
|
1140
|
+
'day_of_week',
|
1141
|
+
'pkmsg',
|
1142
|
+
'version',
|
1143
|
+
'1',
|
1144
|
+
'ping',
|
1145
|
+
'w:p',
|
1146
|
+
'download',
|
1147
|
+
'video',
|
1148
|
+
'set',
|
1149
|
+
'specific_hours',
|
1150
|
+
'props',
|
1151
|
+
'primary',
|
1152
|
+
'unknown',
|
1153
|
+
'hash',
|
1154
|
+
'commerce_experience',
|
1155
|
+
'last',
|
1156
|
+
'subscribe',
|
1157
|
+
'max_buckets',
|
1158
|
+
'call',
|
1159
|
+
'profile',
|
1160
|
+
'member_since_text',
|
1161
|
+
'close_time',
|
1162
|
+
'call-id',
|
1163
|
+
'sticker',
|
1164
|
+
'mode',
|
1165
|
+
'participants',
|
1166
|
+
'value',
|
1167
|
+
'query',
|
1168
|
+
'profile_options',
|
1169
|
+
'open_time',
|
1170
|
+
'code',
|
1171
|
+
'list',
|
1172
|
+
'host',
|
1173
|
+
'ts',
|
1174
|
+
'contacts',
|
1175
|
+
'upload',
|
1176
|
+
'lid',
|
1177
|
+
'preview',
|
1178
|
+
'update',
|
1179
|
+
'usync',
|
1180
|
+
'w:stats',
|
1181
|
+
'delivery',
|
1182
|
+
'auth_ttl',
|
1183
|
+
'context',
|
1184
|
+
'fail',
|
1185
|
+
'cart_enabled',
|
1186
|
+
'appdata',
|
1187
|
+
'category',
|
1188
|
+
'atn',
|
1189
|
+
'direct_connection',
|
1190
|
+
'decrypt-fail',
|
1191
|
+
'relay_id',
|
1192
|
+
'mmg-fallback.whatsapp.net',
|
1193
|
+
'target',
|
1194
|
+
'available',
|
1195
|
+
'name',
|
1196
|
+
'last_id',
|
1197
|
+
'mmg.whatsapp.net',
|
1198
|
+
'categories',
|
1199
|
+
'401',
|
1200
|
+
'is_new',
|
1201
|
+
'index',
|
1202
|
+
'tctoken',
|
1203
|
+
'ip4',
|
1204
|
+
'token_id',
|
1205
|
+
'latency',
|
1206
|
+
'recipient',
|
1207
|
+
'edit',
|
1208
|
+
'ip6',
|
1209
|
+
'add',
|
1210
|
+
'thumbnail-document',
|
1211
|
+
'26',
|
1212
|
+
'paused',
|
1213
|
+
'true',
|
1214
|
+
'identity',
|
1215
|
+
'stream:error',
|
1216
|
+
'key',
|
1217
|
+
'sidelist',
|
1218
|
+
'background',
|
1219
|
+
'audio',
|
1220
|
+
'3',
|
1221
|
+
'thumbnail-image',
|
1222
|
+
'biz-cover-photo',
|
1223
|
+
'cat',
|
1224
|
+
'gcm',
|
1225
|
+
'thumbnail-video',
|
1226
|
+
'error',
|
1227
|
+
'auth',
|
1228
|
+
'deny',
|
1229
|
+
'serial',
|
1230
|
+
'in',
|
1231
|
+
'registration',
|
1232
|
+
'thumbnail-link',
|
1233
|
+
'remove',
|
1234
|
+
'00',
|
1235
|
+
'gif',
|
1236
|
+
'thumbnail-gif',
|
1237
|
+
'tag',
|
1238
|
+
'capability',
|
1239
|
+
'multicast',
|
1240
|
+
'item-not-found',
|
1241
|
+
'description',
|
1242
|
+
'business_hours',
|
1243
|
+
'config_expo_key',
|
1244
|
+
'md-app-state',
|
1245
|
+
'expiration',
|
1246
|
+
'fallback',
|
1247
|
+
'ttl',
|
1248
|
+
'300',
|
1249
|
+
'md-msg-hist',
|
1250
|
+
'device_orientation',
|
1251
|
+
'out',
|
1252
|
+
'w:m',
|
1253
|
+
'open_24h',
|
1254
|
+
'side_list',
|
1255
|
+
'token',
|
1256
|
+
'inactive',
|
1257
|
+
'01',
|
1258
|
+
'document',
|
1259
|
+
'te2',
|
1260
|
+
'played',
|
1261
|
+
'encrypt',
|
1262
|
+
'msgr',
|
1263
|
+
'hide',
|
1264
|
+
'direct_path',
|
1265
|
+
'12',
|
1266
|
+
'state',
|
1267
|
+
'not-authorized',
|
1268
|
+
'url',
|
1269
|
+
'terminate',
|
1270
|
+
'signature',
|
1271
|
+
'status-revoke-delay',
|
1272
|
+
'02',
|
1273
|
+
'te',
|
1274
|
+
'linked_accounts',
|
1275
|
+
'trusted_contact',
|
1276
|
+
'timezone',
|
1277
|
+
'ptt',
|
1278
|
+
'kyc-id',
|
1279
|
+
'privacy_token',
|
1280
|
+
'readreceipts',
|
1281
|
+
'appointment_only',
|
1282
|
+
'address',
|
1283
|
+
'expected_ts',
|
1284
|
+
'privacy',
|
1285
|
+
'7',
|
1286
|
+
'android',
|
1287
|
+
'interactive',
|
1288
|
+
'device-identity',
|
1289
|
+
'enabled',
|
1290
|
+
'attribute_padding',
|
1291
|
+
'1080',
|
1292
|
+
'03',
|
1293
|
+
'screen_height'
|
1294
|
+
];
|
1295
|
+
exports.TOKEN_MAP = {};
|
1296
|
+
for (const [i, SINGLE_BYTE_TOKEN] of exports.SINGLE_BYTE_TOKENS.entries()) {
|
1297
|
+
exports.TOKEN_MAP[SINGLE_BYTE_TOKEN] = { index: i };
|
1298
|
+
}
|
1299
|
+
for (const [i, DOUBLE_BYTE_TOKEN] of exports.DOUBLE_BYTE_TOKENS.entries()) {
|
1300
|
+
for (const [j, element] of DOUBLE_BYTE_TOKEN.entries()) {
|
1301
|
+
exports.TOKEN_MAP[element] = { dict: i, index: j };
|
1302
|
+
}
|
1303
|
+
}
|