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