electrogram 1.184.0__py3-none-any.whl

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 (3066) hide show
  1. electrogram-1.184.0.dist-info/METADATA +27 -0
  2. electrogram-1.184.0.dist-info/RECORD +3066 -0
  3. electrogram-1.184.0.dist-info/WHEEL +4 -0
  4. electrogram-1.184.0.dist-info/licenses/LICENSE +21 -0
  5. pyrogram/__init__.py +37 -0
  6. pyrogram/client.py +903 -0
  7. pyrogram/connection/__init__.py +5 -0
  8. pyrogram/connection/connection.py +59 -0
  9. pyrogram/connection/transport/__init__.py +11 -0
  10. pyrogram/connection/transport/tcp/__init__.py +16 -0
  11. pyrogram/connection/transport/tcp/tcp.py +149 -0
  12. pyrogram/connection/transport/tcp/tcp_abridged.py +39 -0
  13. pyrogram/connection/transport/tcp/tcp_abridged_o.py +68 -0
  14. pyrogram/connection/transport/tcp/tcp_full.py +46 -0
  15. pyrogram/connection/transport/tcp/tcp_intermediate.py +27 -0
  16. pyrogram/connection/transport/tcp/tcp_intermediate_o.py +61 -0
  17. pyrogram/crypto/__init__.py +0 -0
  18. pyrogram/crypto/aes.py +20 -0
  19. pyrogram/crypto/mtproto.py +75 -0
  20. pyrogram/crypto/prime.py +59 -0
  21. pyrogram/crypto/rsa.py +147 -0
  22. pyrogram/dispatcher.py +280 -0
  23. pyrogram/emoji.py +4001 -0
  24. pyrogram/enums/__init__.py +39 -0
  25. pyrogram/enums/auto_name.py +9 -0
  26. pyrogram/enums/chat_action.py +22 -0
  27. pyrogram/enums/chat_event_action.py +32 -0
  28. pyrogram/enums/chat_member_status.py +10 -0
  29. pyrogram/enums/chat_members_filter.py +10 -0
  30. pyrogram/enums/chat_type.py +9 -0
  31. pyrogram/enums/client_platform.py +13 -0
  32. pyrogram/enums/listerner_types.py +6 -0
  33. pyrogram/enums/message_entity_type.py +26 -0
  34. pyrogram/enums/message_media_type.py +22 -0
  35. pyrogram/enums/message_service_type.py +34 -0
  36. pyrogram/enums/messages_filter.py +21 -0
  37. pyrogram/enums/next_code_type.py +9 -0
  38. pyrogram/enums/parse_mode.py +8 -0
  39. pyrogram/enums/profile_color.py +19 -0
  40. pyrogram/enums/reaction_type.py +7 -0
  41. pyrogram/enums/reply_color.py +25 -0
  42. pyrogram/enums/sent_code_type.py +11 -0
  43. pyrogram/enums/user_status.py +10 -0
  44. pyrogram/errors/__init__.py +40 -0
  45. pyrogram/errors/exceptions/__init__.py +10 -0
  46. pyrogram/errors/exceptions/all.py +634 -0
  47. pyrogram/errors/exceptions/bad_request_400.py +3273 -0
  48. pyrogram/errors/exceptions/flood_420.py +67 -0
  49. pyrogram/errors/exceptions/forbidden_403.py +326 -0
  50. pyrogram/errors/exceptions/internal_server_error_500.py +340 -0
  51. pyrogram/errors/exceptions/not_acceptable_406.py +158 -0
  52. pyrogram/errors/exceptions/see_other_303.py +46 -0
  53. pyrogram/errors/exceptions/service_unavailable_503.py +32 -0
  54. pyrogram/errors/exceptions/unauthorized_401.py +74 -0
  55. pyrogram/errors/rpc_error.py +84 -0
  56. pyrogram/file_id.py +412 -0
  57. pyrogram/filters.py +674 -0
  58. pyrogram/handlers/__init__.py +31 -0
  59. pyrogram/handlers/callback_query_handler.py +6 -0
  60. pyrogram/handlers/chat_join_request_handler.py +6 -0
  61. pyrogram/handlers/chat_member_updated_handler.py +6 -0
  62. pyrogram/handlers/chosen_inline_result_handler.py +6 -0
  63. pyrogram/handlers/conversation_handler.py +49 -0
  64. pyrogram/handlers/deleted_messages_handler.py +16 -0
  65. pyrogram/handlers/disconnect_handler.py +6 -0
  66. pyrogram/handlers/edited_message_handler.py +6 -0
  67. pyrogram/handlers/handler.py +23 -0
  68. pyrogram/handlers/inline_query_handler.py +6 -0
  69. pyrogram/handlers/message_handler.py +6 -0
  70. pyrogram/handlers/message_reaction_count_updated_handler.py +7 -0
  71. pyrogram/handlers/message_reaction_updated_handler.py +7 -0
  72. pyrogram/handlers/raw_update_handler.py +6 -0
  73. pyrogram/handlers/user_status_handler.py +6 -0
  74. pyrogram/methods/__init__.py +29 -0
  75. pyrogram/methods/advanced/__init__.py +11 -0
  76. pyrogram/methods/advanced/invoke.py +38 -0
  77. pyrogram/methods/advanced/resolve_peer.py +86 -0
  78. pyrogram/methods/advanced/save_file.py +174 -0
  79. pyrogram/methods/auth/__init__.py +35 -0
  80. pyrogram/methods/auth/accept_terms_of_service.py +18 -0
  81. pyrogram/methods/auth/check_password.py +28 -0
  82. pyrogram/methods/auth/connect.py +23 -0
  83. pyrogram/methods/auth/disconnect.py +16 -0
  84. pyrogram/methods/auth/get_password_hint.py +13 -0
  85. pyrogram/methods/auth/initialize.py +25 -0
  86. pyrogram/methods/auth/log_out.py +17 -0
  87. pyrogram/methods/auth/recover_password.py +24 -0
  88. pyrogram/methods/auth/resend_code.py +25 -0
  89. pyrogram/methods/auth/send_code.py +46 -0
  90. pyrogram/methods/auth/send_recovery_code.py +15 -0
  91. pyrogram/methods/auth/sign_in.py +37 -0
  92. pyrogram/methods/auth/sign_in_bot.py +47 -0
  93. pyrogram/methods/auth/sign_up.py +32 -0
  94. pyrogram/methods/auth/terminate.py +35 -0
  95. pyrogram/methods/bots/__init__.py +35 -0
  96. pyrogram/methods/bots/answer_callback_query.py +22 -0
  97. pyrogram/methods/bots/answer_inline_query.py +33 -0
  98. pyrogram/methods/bots/answer_web_app_query.py +19 -0
  99. pyrogram/methods/bots/delete_bot_commands.py +16 -0
  100. pyrogram/methods/bots/get_bot_commands.py +20 -0
  101. pyrogram/methods/bots/get_bot_default_privileges.py +23 -0
  102. pyrogram/methods/bots/get_bot_info.py +17 -0
  103. pyrogram/methods/bots/get_chat_menu_button.py +38 -0
  104. pyrogram/methods/bots/get_inline_bot_results.py +34 -0
  105. pyrogram/methods/bots/request_callback_answer.py +33 -0
  106. pyrogram/methods/bots/send_inline_bot_result.py +39 -0
  107. pyrogram/methods/bots/set_bot_commands.py +21 -0
  108. pyrogram/methods/bots/set_bot_default_privileges.py +32 -0
  109. pyrogram/methods/bots/set_bot_info.py +20 -0
  110. pyrogram/methods/bots/set_chat_menu_button.py +24 -0
  111. pyrogram/methods/chats/__init__.py +109 -0
  112. pyrogram/methods/chats/add_chat_members.py +39 -0
  113. pyrogram/methods/chats/archive_chats.py +31 -0
  114. pyrogram/methods/chats/ban_chat_member.py +56 -0
  115. pyrogram/methods/chats/close_forum_topic.py +19 -0
  116. pyrogram/methods/chats/close_general_topic.py +18 -0
  117. pyrogram/methods/chats/create_channel.py +20 -0
  118. pyrogram/methods/chats/create_forum_topic.py +25 -0
  119. pyrogram/methods/chats/create_group.py +24 -0
  120. pyrogram/methods/chats/create_supergroup.py +20 -0
  121. pyrogram/methods/chats/delete_channel.py +18 -0
  122. pyrogram/methods/chats/delete_chat_photo.py +31 -0
  123. pyrogram/methods/chats/delete_forum_topic.py +22 -0
  124. pyrogram/methods/chats/delete_supergroup.py +18 -0
  125. pyrogram/methods/chats/delete_user_history.py +20 -0
  126. pyrogram/methods/chats/edit_forum_topic.py +22 -0
  127. pyrogram/methods/chats/edit_general_topic.py +19 -0
  128. pyrogram/methods/chats/get_chat.py +43 -0
  129. pyrogram/methods/chats/get_chat_event_log.py +51 -0
  130. pyrogram/methods/chats/get_chat_member.py +52 -0
  131. pyrogram/methods/chats/get_chat_members.py +93 -0
  132. pyrogram/methods/chats/get_chat_members_count.py +31 -0
  133. pyrogram/methods/chats/get_chat_online_count.py +16 -0
  134. pyrogram/methods/chats/get_dialogs.py +71 -0
  135. pyrogram/methods/chats/get_dialogs_count.py +26 -0
  136. pyrogram/methods/chats/get_forum_topics.py +24 -0
  137. pyrogram/methods/chats/get_forum_topics_by_id.py +43 -0
  138. pyrogram/methods/chats/get_nearby_chats.py +39 -0
  139. pyrogram/methods/chats/get_send_as_chats.py +30 -0
  140. pyrogram/methods/chats/hide_general_topic.py +18 -0
  141. pyrogram/methods/chats/join_chat.py +32 -0
  142. pyrogram/methods/chats/leave_chat.py +37 -0
  143. pyrogram/methods/chats/mark_chat_unread.py +17 -0
  144. pyrogram/methods/chats/pin_chat_message.py +30 -0
  145. pyrogram/methods/chats/promote_chat_member.py +59 -0
  146. pyrogram/methods/chats/reopen_forum_topic.py +19 -0
  147. pyrogram/methods/chats/reopen_general_topic.py +18 -0
  148. pyrogram/methods/chats/restrict_chat_member.py +133 -0
  149. pyrogram/methods/chats/set_administrator_title.py +40 -0
  150. pyrogram/methods/chats/set_chat_description.py +25 -0
  151. pyrogram/methods/chats/set_chat_permissions.py +129 -0
  152. pyrogram/methods/chats/set_chat_photo.py +55 -0
  153. pyrogram/methods/chats/set_chat_protected_content.py +20 -0
  154. pyrogram/methods/chats/set_chat_title.py +32 -0
  155. pyrogram/methods/chats/set_chat_username.py +25 -0
  156. pyrogram/methods/chats/set_send_as_chat.py +18 -0
  157. pyrogram/methods/chats/set_slow_mode.py +20 -0
  158. pyrogram/methods/chats/unarchive_chats.py +31 -0
  159. pyrogram/methods/chats/unban_chat_member.py +23 -0
  160. pyrogram/methods/chats/unhide_general_topic.py +18 -0
  161. pyrogram/methods/chats/unpin_all_chat_messages.py +18 -0
  162. pyrogram/methods/chats/unpin_chat_message.py +21 -0
  163. pyrogram/methods/chats/update_color.py +33 -0
  164. pyrogram/methods/contacts/__init__.py +15 -0
  165. pyrogram/methods/contacts/add_contact.py +27 -0
  166. pyrogram/methods/contacts/delete_contacts.py +28 -0
  167. pyrogram/methods/contacts/get_contacts.py +16 -0
  168. pyrogram/methods/contacts/get_contacts_count.py +9 -0
  169. pyrogram/methods/contacts/import_contacts.py +19 -0
  170. pyrogram/methods/decorators/__init__.py +30 -0
  171. pyrogram/methods/decorators/on_callback_query.py +29 -0
  172. pyrogram/methods/decorators/on_chat_join_request.py +29 -0
  173. pyrogram/methods/decorators/on_chat_member_updated.py +29 -0
  174. pyrogram/methods/decorators/on_chosen_inline_result.py +29 -0
  175. pyrogram/methods/decorators/on_deleted_messages.py +29 -0
  176. pyrogram/methods/decorators/on_disconnect.py +19 -0
  177. pyrogram/methods/decorators/on_edited_message.py +29 -0
  178. pyrogram/methods/decorators/on_inline_query.py +29 -0
  179. pyrogram/methods/decorators/on_message.py +29 -0
  180. pyrogram/methods/decorators/on_message_reaction_count_updated.py +29 -0
  181. pyrogram/methods/decorators/on_message_reaction_updated.py +30 -0
  182. pyrogram/methods/decorators/on_raw_update.py +27 -0
  183. pyrogram/methods/decorators/on_user_status.py +29 -0
  184. pyrogram/methods/invite_links/__init__.py +39 -0
  185. pyrogram/methods/invite_links/approve_all_chat_join_requests.py +21 -0
  186. pyrogram/methods/invite_links/approve_chat_join_request.py +21 -0
  187. pyrogram/methods/invite_links/create_chat_invite_link.py +28 -0
  188. pyrogram/methods/invite_links/decline_all_chat_join_requests.py +21 -0
  189. pyrogram/methods/invite_links/decline_chat_join_request.py +21 -0
  190. pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +18 -0
  191. pyrogram/methods/invite_links/delete_chat_invite_link.py +18 -0
  192. pyrogram/methods/invite_links/edit_chat_invite_link.py +32 -0
  193. pyrogram/methods/invite_links/export_chat_invite_link.py +20 -0
  194. pyrogram/methods/invite_links/get_chat_admin_invite_links.py +49 -0
  195. pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +23 -0
  196. pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +23 -0
  197. pyrogram/methods/invite_links/get_chat_invite_link.py +23 -0
  198. pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +47 -0
  199. pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +23 -0
  200. pyrogram/methods/invite_links/get_chat_join_requests.py +48 -0
  201. pyrogram/methods/invite_links/revoke_chat_invite_link.py +30 -0
  202. pyrogram/methods/messages/__init__.py +91 -0
  203. pyrogram/methods/messages/copy_media_group.py +81 -0
  204. pyrogram/methods/messages/copy_message.py +49 -0
  205. pyrogram/methods/messages/delete_messages.py +32 -0
  206. pyrogram/methods/messages/download_media.py +88 -0
  207. pyrogram/methods/messages/edit_inline_caption.py +20 -0
  208. pyrogram/methods/messages/edit_inline_media.py +188 -0
  209. pyrogram/methods/messages/edit_inline_reply_markup.py +25 -0
  210. pyrogram/methods/messages/edit_inline_text.py +32 -0
  211. pyrogram/methods/messages/edit_message_caption.py +26 -0
  212. pyrogram/methods/messages/edit_message_media.py +226 -0
  213. pyrogram/methods/messages/edit_message_reply_markup.py +29 -0
  214. pyrogram/methods/messages/edit_message_text.py +38 -0
  215. pyrogram/methods/messages/forward_messages.py +54 -0
  216. pyrogram/methods/messages/get_available_effects.py +28 -0
  217. pyrogram/methods/messages/get_chat_history.py +74 -0
  218. pyrogram/methods/messages/get_chat_history_count.py +31 -0
  219. pyrogram/methods/messages/get_custom_emoji_stickers.py +28 -0
  220. pyrogram/methods/messages/get_discussion_message.py +24 -0
  221. pyrogram/methods/messages/get_discussion_replies.py +46 -0
  222. pyrogram/methods/messages/get_discussion_replies_count.py +27 -0
  223. pyrogram/methods/messages/get_media_group.py +30 -0
  224. pyrogram/methods/messages/get_messages.py +48 -0
  225. pyrogram/methods/messages/inline_session.py +46 -0
  226. pyrogram/methods/messages/read_chat_history.py +28 -0
  227. pyrogram/methods/messages/search_global.py +58 -0
  228. pyrogram/methods/messages/search_global_count.py +27 -0
  229. pyrogram/methods/messages/search_messages.py +77 -0
  230. pyrogram/methods/messages/search_messages_count.py +39 -0
  231. pyrogram/methods/messages/send_animation.py +159 -0
  232. pyrogram/methods/messages/send_audio.py +131 -0
  233. pyrogram/methods/messages/send_cached_media.py +78 -0
  234. pyrogram/methods/messages/send_chat_action.py +69 -0
  235. pyrogram/methods/messages/send_contact.py +72 -0
  236. pyrogram/methods/messages/send_document.py +120 -0
  237. pyrogram/methods/messages/send_media_group.py +395 -0
  238. pyrogram/methods/messages/send_message.py +101 -0
  239. pyrogram/methods/messages/send_photo.py +115 -0
  240. pyrogram/methods/messages/send_reaction.py +53 -0
  241. pyrogram/methods/messages/send_sticker.py +111 -0
  242. pyrogram/methods/messages/send_video.py +145 -0
  243. pyrogram/methods/messages/send_video_note.py +125 -0
  244. pyrogram/methods/messages/send_voice.py +119 -0
  245. pyrogram/methods/messages/send_web_page.py +103 -0
  246. pyrogram/methods/messages/stream_media.py +46 -0
  247. pyrogram/methods/password/__init__.py +11 -0
  248. pyrogram/methods/password/change_cloud_password.py +35 -0
  249. pyrogram/methods/password/enable_cloud_password.py +36 -0
  250. pyrogram/methods/password/remove_cloud_password.py +27 -0
  251. pyrogram/methods/stickers/__init__.py +10 -0
  252. pyrogram/methods/stickers/add_sticker_to_set.py +40 -0
  253. pyrogram/methods/stickers/create_sticker_set.py +50 -0
  254. pyrogram/methods/stickers/get_sticker_set.py +18 -0
  255. pyrogram/methods/users/__init__.py +35 -0
  256. pyrogram/methods/users/block_user.py +18 -0
  257. pyrogram/methods/users/delete_profile_photos.py +21 -0
  258. pyrogram/methods/users/get_chat_photos.py +117 -0
  259. pyrogram/methods/users/get_chat_photos_count.py +36 -0
  260. pyrogram/methods/users/get_common_chats.py +26 -0
  261. pyrogram/methods/users/get_default_emoji_statuses.py +16 -0
  262. pyrogram/methods/users/get_me.py +18 -0
  263. pyrogram/methods/users/get_users.py +29 -0
  264. pyrogram/methods/users/set_emoji_status.py +22 -0
  265. pyrogram/methods/users/set_profile_photo.py +21 -0
  266. pyrogram/methods/users/set_username.py +18 -0
  267. pyrogram/methods/users/unblock_user.py +18 -0
  268. pyrogram/methods/users/update_birthday.py +18 -0
  269. pyrogram/methods/users/update_personal_chat.py +15 -0
  270. pyrogram/methods/users/update_profile.py +20 -0
  271. pyrogram/methods/utilities/__init__.py +23 -0
  272. pyrogram/methods/utilities/add_handler.py +17 -0
  273. pyrogram/methods/utilities/compose.py +24 -0
  274. pyrogram/methods/utilities/export_session_string.py +8 -0
  275. pyrogram/methods/utilities/idle.py +30 -0
  276. pyrogram/methods/utilities/remove_handler.py +15 -0
  277. pyrogram/methods/utilities/restart.py +18 -0
  278. pyrogram/methods/utilities/run.py +26 -0
  279. pyrogram/methods/utilities/run_sync.py +8 -0
  280. pyrogram/methods/utilities/start.py +31 -0
  281. pyrogram/methods/utilities/stop.py +18 -0
  282. pyrogram/methods/utilities/stop_transmission.py +7 -0
  283. pyrogram/mime_types.py +1861 -0
  284. pyrogram/parser/__init__.py +3 -0
  285. pyrogram/parser/html.py +215 -0
  286. pyrogram/parser/markdown.py +212 -0
  287. pyrogram/parser/parser.py +43 -0
  288. pyrogram/parser/utils.py +20 -0
  289. pyrogram/py.typed +0 -0
  290. pyrogram/raw/__init__.py +8 -0
  291. pyrogram/raw/all.py +2039 -0
  292. pyrogram/raw/base/__init__.py +351 -0
  293. pyrogram/raw/base/access_point_rule.py +35 -0
  294. pyrogram/raw/base/account/__init__.py +29 -0
  295. pyrogram/raw/base/account/authorization_form.py +44 -0
  296. pyrogram/raw/base/account/authorizations.py +44 -0
  297. pyrogram/raw/base/account/auto_download_settings.py +44 -0
  298. pyrogram/raw/base/account/auto_save_settings.py +44 -0
  299. pyrogram/raw/base/account/business_chat_links.py +44 -0
  300. pyrogram/raw/base/account/connected_bots.py +44 -0
  301. pyrogram/raw/base/account/content_settings.py +44 -0
  302. pyrogram/raw/base/account/email_verified.py +45 -0
  303. pyrogram/raw/base/account/emoji_statuses.py +47 -0
  304. pyrogram/raw/base/account/password.py +44 -0
  305. pyrogram/raw/base/account/password_input_settings.py +34 -0
  306. pyrogram/raw/base/account/password_settings.py +44 -0
  307. pyrogram/raw/base/account/privacy_rules.py +45 -0
  308. pyrogram/raw/base/account/reset_password_result.py +46 -0
  309. pyrogram/raw/base/account/resolved_business_chat_links.py +44 -0
  310. pyrogram/raw/base/account/saved_ringtone.py +45 -0
  311. pyrogram/raw/base/account/saved_ringtones.py +45 -0
  312. pyrogram/raw/base/account/sent_email_code.py +44 -0
  313. pyrogram/raw/base/account/takeout.py +44 -0
  314. pyrogram/raw/base/account/themes.py +46 -0
  315. pyrogram/raw/base/account/tmp_password.py +44 -0
  316. pyrogram/raw/base/account/wall_papers.py +45 -0
  317. pyrogram/raw/base/account/web_authorizations.py +44 -0
  318. pyrogram/raw/base/account_days_ttl.py +44 -0
  319. pyrogram/raw/base/attach_menu_bot.py +34 -0
  320. pyrogram/raw/base/attach_menu_bot_icon.py +34 -0
  321. pyrogram/raw/base/attach_menu_bot_icon_color.py +34 -0
  322. pyrogram/raw/base/attach_menu_bots.py +45 -0
  323. pyrogram/raw/base/attach_menu_bots_bot.py +44 -0
  324. pyrogram/raw/base/attach_menu_peer_type.py +38 -0
  325. pyrogram/raw/base/auth/__init__.py +14 -0
  326. pyrogram/raw/base/auth/authorization.py +51 -0
  327. pyrogram/raw/base/auth/code_type.py +38 -0
  328. pyrogram/raw/base/auth/exported_authorization.py +44 -0
  329. pyrogram/raw/base/auth/logged_out.py +44 -0
  330. pyrogram/raw/base/auth/login_token.py +47 -0
  331. pyrogram/raw/base/auth/password_recovery.py +44 -0
  332. pyrogram/raw/base/auth/sent_code.py +50 -0
  333. pyrogram/raw/base/auth/sent_code_type.py +44 -0
  334. pyrogram/raw/base/authorization.py +44 -0
  335. pyrogram/raw/base/auto_download_settings.py +34 -0
  336. pyrogram/raw/base/auto_save_exception.py +34 -0
  337. pyrogram/raw/base/auto_save_settings.py +34 -0
  338. pyrogram/raw/base/available_effect.py +34 -0
  339. pyrogram/raw/base/available_reaction.py +34 -0
  340. pyrogram/raw/base/bad_msg_notification.py +35 -0
  341. pyrogram/raw/base/bank_card_open_url.py +34 -0
  342. pyrogram/raw/base/base_theme.py +38 -0
  343. pyrogram/raw/base/bind_auth_key_inner.py +34 -0
  344. pyrogram/raw/base/birthday.py +34 -0
  345. pyrogram/raw/base/boost.py +34 -0
  346. pyrogram/raw/base/bot_app.py +35 -0
  347. pyrogram/raw/base/bot_business_connection.py +34 -0
  348. pyrogram/raw/base/bot_command.py +44 -0
  349. pyrogram/raw/base/bot_command_scope.py +40 -0
  350. pyrogram/raw/base/bot_info.py +34 -0
  351. pyrogram/raw/base/bot_inline_message.py +40 -0
  352. pyrogram/raw/base/bot_inline_result.py +35 -0
  353. pyrogram/raw/base/bot_menu_button.py +46 -0
  354. pyrogram/raw/base/bots/__init__.py +7 -0
  355. pyrogram/raw/base/bots/bot_info.py +44 -0
  356. pyrogram/raw/base/broadcast_revenue_balances.py +34 -0
  357. pyrogram/raw/base/broadcast_revenue_transaction.py +36 -0
  358. pyrogram/raw/base/business_away_message.py +34 -0
  359. pyrogram/raw/base/business_away_message_schedule.py +36 -0
  360. pyrogram/raw/base/business_bot_recipients.py +34 -0
  361. pyrogram/raw/base/business_chat_link.py +45 -0
  362. pyrogram/raw/base/business_greeting_message.py +34 -0
  363. pyrogram/raw/base/business_intro.py +34 -0
  364. pyrogram/raw/base/business_location.py +34 -0
  365. pyrogram/raw/base/business_recipients.py +34 -0
  366. pyrogram/raw/base/business_weekly_open.py +34 -0
  367. pyrogram/raw/base/business_work_hours.py +34 -0
  368. pyrogram/raw/base/cdn_config.py +44 -0
  369. pyrogram/raw/base/cdn_public_key.py +34 -0
  370. pyrogram/raw/base/channel_admin_log_event.py +34 -0
  371. pyrogram/raw/base/channel_admin_log_event_action.py +81 -0
  372. pyrogram/raw/base/channel_admin_log_events_filter.py +34 -0
  373. pyrogram/raw/base/channel_location.py +35 -0
  374. pyrogram/raw/base/channel_messages_filter.py +35 -0
  375. pyrogram/raw/base/channel_participant.py +39 -0
  376. pyrogram/raw/base/channel_participants_filter.py +41 -0
  377. pyrogram/raw/base/channels/__init__.py +11 -0
  378. pyrogram/raw/base/channels/admin_log_results.py +44 -0
  379. pyrogram/raw/base/channels/channel_participant.py +44 -0
  380. pyrogram/raw/base/channels/channel_participants.py +45 -0
  381. pyrogram/raw/base/channels/send_as_peers.py +44 -0
  382. pyrogram/raw/base/channels/sponsored_message_report_result.py +46 -0
  383. pyrogram/raw/base/chat.py +38 -0
  384. pyrogram/raw/base/chat_admin_rights.py +34 -0
  385. pyrogram/raw/base/chat_admin_with_invites.py +34 -0
  386. pyrogram/raw/base/chat_banned_rights.py +34 -0
  387. pyrogram/raw/base/chat_full.py +35 -0
  388. pyrogram/raw/base/chat_invite.py +46 -0
  389. pyrogram/raw/base/chat_invite_importer.py +34 -0
  390. pyrogram/raw/base/chat_onlines.py +44 -0
  391. pyrogram/raw/base/chat_participant.py +36 -0
  392. pyrogram/raw/base/chat_participants.py +35 -0
  393. pyrogram/raw/base/chat_photo.py +35 -0
  394. pyrogram/raw/base/chat_reactions.py +36 -0
  395. pyrogram/raw/base/chatlists/__init__.py +10 -0
  396. pyrogram/raw/base/chatlists/chatlist_invite.py +45 -0
  397. pyrogram/raw/base/chatlists/chatlist_updates.py +44 -0
  398. pyrogram/raw/base/chatlists/exported_chatlist_invite.py +44 -0
  399. pyrogram/raw/base/chatlists/exported_invites.py +44 -0
  400. pyrogram/raw/base/client_dh_inner_data.py +34 -0
  401. pyrogram/raw/base/code_settings.py +34 -0
  402. pyrogram/raw/base/config.py +44 -0
  403. pyrogram/raw/base/connected_bot.py +34 -0
  404. pyrogram/raw/base/contact.py +34 -0
  405. pyrogram/raw/base/contact_birthday.py +34 -0
  406. pyrogram/raw/base/contact_status.py +44 -0
  407. pyrogram/raw/base/contacts/__init__.py +13 -0
  408. pyrogram/raw/base/contacts/blocked.py +45 -0
  409. pyrogram/raw/base/contacts/contact_birthdays.py +44 -0
  410. pyrogram/raw/base/contacts/contacts.py +45 -0
  411. pyrogram/raw/base/contacts/found.py +44 -0
  412. pyrogram/raw/base/contacts/imported_contacts.py +44 -0
  413. pyrogram/raw/base/contacts/resolved_peer.py +45 -0
  414. pyrogram/raw/base/contacts/top_peers.py +46 -0
  415. pyrogram/raw/base/data_json.py +46 -0
  416. pyrogram/raw/base/dc_option.py +34 -0
  417. pyrogram/raw/base/default_history_ttl.py +44 -0
  418. pyrogram/raw/base/destroy_auth_key_res.py +46 -0
  419. pyrogram/raw/base/destroy_session_res.py +45 -0
  420. pyrogram/raw/base/dialog.py +35 -0
  421. pyrogram/raw/base/dialog_filter.py +36 -0
  422. pyrogram/raw/base/dialog_filter_suggested.py +44 -0
  423. pyrogram/raw/base/dialog_peer.py +45 -0
  424. pyrogram/raw/base/document.py +48 -0
  425. pyrogram/raw/base/document_attribute.py +41 -0
  426. pyrogram/raw/base/draft_message.py +35 -0
  427. pyrogram/raw/base/email_verification.py +36 -0
  428. pyrogram/raw/base/email_verify_purpose.py +36 -0
  429. pyrogram/raw/base/emoji_group.py +36 -0
  430. pyrogram/raw/base/emoji_keyword.py +35 -0
  431. pyrogram/raw/base/emoji_keywords_difference.py +45 -0
  432. pyrogram/raw/base/emoji_language.py +44 -0
  433. pyrogram/raw/base/emoji_list.py +49 -0
  434. pyrogram/raw/base/emoji_status.py +36 -0
  435. pyrogram/raw/base/emoji_url.py +44 -0
  436. pyrogram/raw/base/encrypted_chat.py +49 -0
  437. pyrogram/raw/base/encrypted_file.py +45 -0
  438. pyrogram/raw/base/encrypted_message.py +35 -0
  439. pyrogram/raw/base/exported_chat_invite.py +45 -0
  440. pyrogram/raw/base/exported_chatlist_invite.py +44 -0
  441. pyrogram/raw/base/exported_contact_token.py +44 -0
  442. pyrogram/raw/base/exported_message_link.py +44 -0
  443. pyrogram/raw/base/exported_story_link.py +44 -0
  444. pyrogram/raw/base/fact_check.py +44 -0
  445. pyrogram/raw/base/file_hash.py +46 -0
  446. pyrogram/raw/base/folder.py +34 -0
  447. pyrogram/raw/base/folder_peer.py +34 -0
  448. pyrogram/raw/base/forum_topic.py +35 -0
  449. pyrogram/raw/base/found_story.py +34 -0
  450. pyrogram/raw/base/fragment/__init__.py +7 -0
  451. pyrogram/raw/base/fragment/collectible_info.py +44 -0
  452. pyrogram/raw/base/game.py +34 -0
  453. pyrogram/raw/base/geo_point.py +35 -0
  454. pyrogram/raw/base/geo_point_address.py +34 -0
  455. pyrogram/raw/base/global_privacy_settings.py +45 -0
  456. pyrogram/raw/base/group_call.py +35 -0
  457. pyrogram/raw/base/group_call_participant.py +34 -0
  458. pyrogram/raw/base/group_call_participant_video.py +34 -0
  459. pyrogram/raw/base/group_call_participant_video_source_group.py +34 -0
  460. pyrogram/raw/base/group_call_stream_channel.py +34 -0
  461. pyrogram/raw/base/help/__init__.py +27 -0
  462. pyrogram/raw/base/help/app_config.py +45 -0
  463. pyrogram/raw/base/help/app_update.py +45 -0
  464. pyrogram/raw/base/help/config_simple.py +35 -0
  465. pyrogram/raw/base/help/countries_list.py +45 -0
  466. pyrogram/raw/base/help/country.py +34 -0
  467. pyrogram/raw/base/help/country_code.py +34 -0
  468. pyrogram/raw/base/help/deep_link_info.py +45 -0
  469. pyrogram/raw/base/help/invite_text.py +44 -0
  470. pyrogram/raw/base/help/passport_config.py +45 -0
  471. pyrogram/raw/base/help/peer_color_option.py +34 -0
  472. pyrogram/raw/base/help/peer_color_set.py +35 -0
  473. pyrogram/raw/base/help/peer_colors.py +46 -0
  474. pyrogram/raw/base/help/premium_promo.py +44 -0
  475. pyrogram/raw/base/help/promo_data.py +45 -0
  476. pyrogram/raw/base/help/recent_me_urls.py +44 -0
  477. pyrogram/raw/base/help/support.py +44 -0
  478. pyrogram/raw/base/help/support_name.py +44 -0
  479. pyrogram/raw/base/help/terms_of_service.py +34 -0
  480. pyrogram/raw/base/help/terms_of_service_update.py +45 -0
  481. pyrogram/raw/base/help/timezones_list.py +45 -0
  482. pyrogram/raw/base/help/user_info.py +46 -0
  483. pyrogram/raw/base/high_score.py +34 -0
  484. pyrogram/raw/base/http_wait.py +34 -0
  485. pyrogram/raw/base/imported_contact.py +34 -0
  486. pyrogram/raw/base/inline_bot_switch_pm.py +34 -0
  487. pyrogram/raw/base/inline_bot_web_view.py +34 -0
  488. pyrogram/raw/base/inline_query_peer_type.py +39 -0
  489. pyrogram/raw/base/input_app_event.py +34 -0
  490. pyrogram/raw/base/input_bot_app.py +35 -0
  491. pyrogram/raw/base/input_bot_inline_message.py +41 -0
  492. pyrogram/raw/base/input_bot_inline_message_id.py +35 -0
  493. pyrogram/raw/base/input_bot_inline_result.py +37 -0
  494. pyrogram/raw/base/input_business_away_message.py +34 -0
  495. pyrogram/raw/base/input_business_bot_recipients.py +34 -0
  496. pyrogram/raw/base/input_business_chat_link.py +34 -0
  497. pyrogram/raw/base/input_business_greeting_message.py +34 -0
  498. pyrogram/raw/base/input_business_intro.py +34 -0
  499. pyrogram/raw/base/input_business_recipients.py +34 -0
  500. pyrogram/raw/base/input_channel.py +36 -0
  501. pyrogram/raw/base/input_chat_photo.py +36 -0
  502. pyrogram/raw/base/input_chatlist.py +34 -0
  503. pyrogram/raw/base/input_check_password_srp.py +35 -0
  504. pyrogram/raw/base/input_client_proxy.py +34 -0
  505. pyrogram/raw/base/input_collectible.py +35 -0
  506. pyrogram/raw/base/input_contact.py +34 -0
  507. pyrogram/raw/base/input_dialog_peer.py +35 -0
  508. pyrogram/raw/base/input_document.py +35 -0
  509. pyrogram/raw/base/input_encrypted_chat.py +34 -0
  510. pyrogram/raw/base/input_encrypted_file.py +37 -0
  511. pyrogram/raw/base/input_file.py +35 -0
  512. pyrogram/raw/base/input_file_location.py +45 -0
  513. pyrogram/raw/base/input_folder_peer.py +34 -0
  514. pyrogram/raw/base/input_game.py +35 -0
  515. pyrogram/raw/base/input_geo_point.py +35 -0
  516. pyrogram/raw/base/input_group_call.py +34 -0
  517. pyrogram/raw/base/input_invoice.py +37 -0
  518. pyrogram/raw/base/input_media.py +51 -0
  519. pyrogram/raw/base/input_message.py +37 -0
  520. pyrogram/raw/base/input_notify_peer.py +38 -0
  521. pyrogram/raw/base/input_payment_credentials.py +37 -0
  522. pyrogram/raw/base/input_peer.py +40 -0
  523. pyrogram/raw/base/input_peer_notify_settings.py +34 -0
  524. pyrogram/raw/base/input_phone_call.py +34 -0
  525. pyrogram/raw/base/input_photo.py +35 -0
  526. pyrogram/raw/base/input_privacy_key.py +44 -0
  527. pyrogram/raw/base/input_privacy_rule.py +43 -0
  528. pyrogram/raw/base/input_quick_reply_shortcut.py +35 -0
  529. pyrogram/raw/base/input_reply_to.py +35 -0
  530. pyrogram/raw/base/input_secure_file.py +35 -0
  531. pyrogram/raw/base/input_secure_value.py +34 -0
  532. pyrogram/raw/base/input_single_media.py +34 -0
  533. pyrogram/raw/base/input_stars_transaction.py +34 -0
  534. pyrogram/raw/base/input_sticker_set.py +44 -0
  535. pyrogram/raw/base/input_sticker_set_item.py +34 -0
  536. pyrogram/raw/base/input_stickered_media.py +35 -0
  537. pyrogram/raw/base/input_store_payment_purpose.py +38 -0
  538. pyrogram/raw/base/input_theme.py +35 -0
  539. pyrogram/raw/base/input_theme_settings.py +34 -0
  540. pyrogram/raw/base/input_user.py +37 -0
  541. pyrogram/raw/base/input_wall_paper.py +36 -0
  542. pyrogram/raw/base/input_web_document.py +34 -0
  543. pyrogram/raw/base/input_web_file_location.py +36 -0
  544. pyrogram/raw/base/invoice.py +34 -0
  545. pyrogram/raw/base/ip_port.py +37 -0
  546. pyrogram/raw/base/json_object_value.py +34 -0
  547. pyrogram/raw/base/json_value.py +39 -0
  548. pyrogram/raw/base/keyboard_button.py +50 -0
  549. pyrogram/raw/base/keyboard_button_row.py +34 -0
  550. pyrogram/raw/base/labeled_price.py +34 -0
  551. pyrogram/raw/base/lang_pack_difference.py +45 -0
  552. pyrogram/raw/base/lang_pack_language.py +45 -0
  553. pyrogram/raw/base/lang_pack_string.py +46 -0
  554. pyrogram/raw/base/mask_coords.py +34 -0
  555. pyrogram/raw/base/media_area.py +40 -0
  556. pyrogram/raw/base/media_area_coordinates.py +34 -0
  557. pyrogram/raw/base/message.py +36 -0
  558. pyrogram/raw/base/message_action.py +77 -0
  559. pyrogram/raw/base/message_entity.py +54 -0
  560. pyrogram/raw/base/message_extended_media.py +35 -0
  561. pyrogram/raw/base/message_fwd_header.py +34 -0
  562. pyrogram/raw/base/message_media.py +62 -0
  563. pyrogram/raw/base/message_peer_reaction.py +34 -0
  564. pyrogram/raw/base/message_peer_vote.py +36 -0
  565. pyrogram/raw/base/message_range.py +44 -0
  566. pyrogram/raw/base/message_reactions.py +34 -0
  567. pyrogram/raw/base/message_replies.py +34 -0
  568. pyrogram/raw/base/message_reply_header.py +35 -0
  569. pyrogram/raw/base/message_views.py +34 -0
  570. pyrogram/raw/base/messages/__init__.py +62 -0
  571. pyrogram/raw/base/messages/affected_found_messages.py +44 -0
  572. pyrogram/raw/base/messages/affected_history.py +50 -0
  573. pyrogram/raw/base/messages/affected_messages.py +47 -0
  574. pyrogram/raw/base/messages/all_stickers.py +47 -0
  575. pyrogram/raw/base/messages/archived_stickers.py +44 -0
  576. pyrogram/raw/base/messages/available_effects.py +45 -0
  577. pyrogram/raw/base/messages/available_reactions.py +45 -0
  578. pyrogram/raw/base/messages/bot_app.py +44 -0
  579. pyrogram/raw/base/messages/bot_callback_answer.py +44 -0
  580. pyrogram/raw/base/messages/bot_results.py +44 -0
  581. pyrogram/raw/base/messages/chat_admins_with_invites.py +44 -0
  582. pyrogram/raw/base/messages/chat_full.py +45 -0
  583. pyrogram/raw/base/messages/chat_invite_importers.py +44 -0
  584. pyrogram/raw/base/messages/chats.py +52 -0
  585. pyrogram/raw/base/messages/checked_history_import_peer.py +44 -0
  586. pyrogram/raw/base/messages/dh_config.py +45 -0
  587. pyrogram/raw/base/messages/dialog_filters.py +44 -0
  588. pyrogram/raw/base/messages/dialogs.py +46 -0
  589. pyrogram/raw/base/messages/discussion_message.py +44 -0
  590. pyrogram/raw/base/messages/emoji_groups.py +48 -0
  591. pyrogram/raw/base/messages/exported_chat_invite.py +46 -0
  592. pyrogram/raw/base/messages/exported_chat_invites.py +44 -0
  593. pyrogram/raw/base/messages/faved_stickers.py +45 -0
  594. pyrogram/raw/base/messages/featured_stickers.py +47 -0
  595. pyrogram/raw/base/messages/forum_topics.py +45 -0
  596. pyrogram/raw/base/messages/found_sticker_sets.py +46 -0
  597. pyrogram/raw/base/messages/high_scores.py +45 -0
  598. pyrogram/raw/base/messages/history_import.py +44 -0
  599. pyrogram/raw/base/messages/history_import_parsed.py +44 -0
  600. pyrogram/raw/base/messages/inactive_chats.py +44 -0
  601. pyrogram/raw/base/messages/invited_users.py +46 -0
  602. pyrogram/raw/base/messages/message_edit_data.py +44 -0
  603. pyrogram/raw/base/messages/message_reactions_list.py +44 -0
  604. pyrogram/raw/base/messages/message_views.py +44 -0
  605. pyrogram/raw/base/messages/messages.py +61 -0
  606. pyrogram/raw/base/messages/my_stickers.py +44 -0
  607. pyrogram/raw/base/messages/peer_dialogs.py +45 -0
  608. pyrogram/raw/base/messages/peer_settings.py +44 -0
  609. pyrogram/raw/base/messages/quick_replies.py +45 -0
  610. pyrogram/raw/base/messages/reactions.py +47 -0
  611. pyrogram/raw/base/messages/recent_stickers.py +45 -0
  612. pyrogram/raw/base/messages/saved_dialogs.py +47 -0
  613. pyrogram/raw/base/messages/saved_gifs.py +45 -0
  614. pyrogram/raw/base/messages/saved_reaction_tags.py +45 -0
  615. pyrogram/raw/base/messages/search_counter.py +44 -0
  616. pyrogram/raw/base/messages/search_results_calendar.py +44 -0
  617. pyrogram/raw/base/messages/search_results_positions.py +44 -0
  618. pyrogram/raw/base/messages/sent_encrypted_message.py +47 -0
  619. pyrogram/raw/base/messages/sponsored_messages.py +45 -0
  620. pyrogram/raw/base/messages/sticker_set.py +53 -0
  621. pyrogram/raw/base/messages/sticker_set_install_result.py +45 -0
  622. pyrogram/raw/base/messages/stickers.py +45 -0
  623. pyrogram/raw/base/messages/transcribed_audio.py +44 -0
  624. pyrogram/raw/base/messages/translated_text.py +44 -0
  625. pyrogram/raw/base/messages/votes_list.py +44 -0
  626. pyrogram/raw/base/messages/web_page.py +44 -0
  627. pyrogram/raw/base/messages_filter.py +50 -0
  628. pyrogram/raw/base/missing_invitee.py +34 -0
  629. pyrogram/raw/base/msg_detailed_info.py +35 -0
  630. pyrogram/raw/base/msg_resend_req.py +35 -0
  631. pyrogram/raw/base/msgs_ack.py +34 -0
  632. pyrogram/raw/base/msgs_all_info.py +34 -0
  633. pyrogram/raw/base/msgs_state_info.py +34 -0
  634. pyrogram/raw/base/msgs_state_req.py +34 -0
  635. pyrogram/raw/base/my_boost.py +34 -0
  636. pyrogram/raw/base/nearest_dc.py +44 -0
  637. pyrogram/raw/base/new_session.py +34 -0
  638. pyrogram/raw/base/notification_sound.py +37 -0
  639. pyrogram/raw/base/notify_peer.py +38 -0
  640. pyrogram/raw/base/outbox_read_date.py +44 -0
  641. pyrogram/raw/base/page.py +34 -0
  642. pyrogram/raw/base/page_block.py +62 -0
  643. pyrogram/raw/base/page_caption.py +34 -0
  644. pyrogram/raw/base/page_list_item.py +35 -0
  645. pyrogram/raw/base/page_list_ordered_item.py +35 -0
  646. pyrogram/raw/base/page_related_article.py +34 -0
  647. pyrogram/raw/base/page_table_cell.py +34 -0
  648. pyrogram/raw/base/page_table_row.py +34 -0
  649. pyrogram/raw/base/password_kdf_algo.py +35 -0
  650. pyrogram/raw/base/payment_charge.py +34 -0
  651. pyrogram/raw/base/payment_form_method.py +34 -0
  652. pyrogram/raw/base/payment_requested_info.py +34 -0
  653. pyrogram/raw/base/payment_saved_credentials.py +34 -0
  654. pyrogram/raw/base/payments/__init__.py +19 -0
  655. pyrogram/raw/base/payments/bank_card_data.py +44 -0
  656. pyrogram/raw/base/payments/checked_gift_code.py +44 -0
  657. pyrogram/raw/base/payments/exported_invoice.py +44 -0
  658. pyrogram/raw/base/payments/giveaway_info.py +45 -0
  659. pyrogram/raw/base/payments/payment_form.py +45 -0
  660. pyrogram/raw/base/payments/payment_receipt.py +45 -0
  661. pyrogram/raw/base/payments/payment_result.py +46 -0
  662. pyrogram/raw/base/payments/saved_info.py +44 -0
  663. pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +44 -0
  664. pyrogram/raw/base/payments/stars_revenue_stats.py +44 -0
  665. pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +44 -0
  666. pyrogram/raw/base/payments/stars_status.py +46 -0
  667. pyrogram/raw/base/payments/validated_requested_info.py +44 -0
  668. pyrogram/raw/base/peer.py +46 -0
  669. pyrogram/raw/base/peer_blocked.py +34 -0
  670. pyrogram/raw/base/peer_color.py +34 -0
  671. pyrogram/raw/base/peer_located.py +35 -0
  672. pyrogram/raw/base/peer_notify_settings.py +44 -0
  673. pyrogram/raw/base/peer_settings.py +34 -0
  674. pyrogram/raw/base/peer_stories.py +34 -0
  675. pyrogram/raw/base/phone/__init__.py +13 -0
  676. pyrogram/raw/base/phone/exported_group_call_invite.py +44 -0
  677. pyrogram/raw/base/phone/group_call.py +44 -0
  678. pyrogram/raw/base/phone/group_call_stream_channels.py +44 -0
  679. pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +44 -0
  680. pyrogram/raw/base/phone/group_participants.py +44 -0
  681. pyrogram/raw/base/phone/join_as_peers.py +44 -0
  682. pyrogram/raw/base/phone/phone_call.py +46 -0
  683. pyrogram/raw/base/phone_call.py +39 -0
  684. pyrogram/raw/base/phone_call_discard_reason.py +37 -0
  685. pyrogram/raw/base/phone_call_protocol.py +34 -0
  686. pyrogram/raw/base/phone_connection.py +35 -0
  687. pyrogram/raw/base/photo.py +35 -0
  688. pyrogram/raw/base/photo_size.py +39 -0
  689. pyrogram/raw/base/photos/__init__.py +8 -0
  690. pyrogram/raw/base/photos/photo.py +46 -0
  691. pyrogram/raw/base/photos/photos.py +45 -0
  692. pyrogram/raw/base/poll.py +34 -0
  693. pyrogram/raw/base/poll_answer.py +34 -0
  694. pyrogram/raw/base/poll_answer_voters.py +34 -0
  695. pyrogram/raw/base/poll_results.py +34 -0
  696. pyrogram/raw/base/pong.py +45 -0
  697. pyrogram/raw/base/popular_contact.py +34 -0
  698. pyrogram/raw/base/post_address.py +34 -0
  699. pyrogram/raw/base/post_interaction_counters.py +35 -0
  700. pyrogram/raw/base/pq_inner_data.py +37 -0
  701. pyrogram/raw/base/premium/__init__.py +9 -0
  702. pyrogram/raw/base/premium/boosts_list.py +45 -0
  703. pyrogram/raw/base/premium/boosts_status.py +44 -0
  704. pyrogram/raw/base/premium/my_boosts.py +45 -0
  705. pyrogram/raw/base/premium_gift_code_option.py +44 -0
  706. pyrogram/raw/base/premium_gift_option.py +34 -0
  707. pyrogram/raw/base/premium_subscription_option.py +34 -0
  708. pyrogram/raw/base/prepaid_giveaway.py +34 -0
  709. pyrogram/raw/base/privacy_key.py +44 -0
  710. pyrogram/raw/base/privacy_rule.py +43 -0
  711. pyrogram/raw/base/public_forward.py +35 -0
  712. pyrogram/raw/base/quick_reply.py +34 -0
  713. pyrogram/raw/base/reaction.py +36 -0
  714. pyrogram/raw/base/reaction_count.py +34 -0
  715. pyrogram/raw/base/reaction_notifications_from.py +35 -0
  716. pyrogram/raw/base/reactions_notify_settings.py +45 -0
  717. pyrogram/raw/base/read_participant_date.py +44 -0
  718. pyrogram/raw/base/received_notify_message.py +44 -0
  719. pyrogram/raw/base/recent_me_url.py +38 -0
  720. pyrogram/raw/base/reply_markup.py +37 -0
  721. pyrogram/raw/base/report_reason.py +43 -0
  722. pyrogram/raw/base/request_peer_type.py +36 -0
  723. pyrogram/raw/base/requested_peer.py +36 -0
  724. pyrogram/raw/base/res_pq.py +45 -0
  725. pyrogram/raw/base/restriction_reason.py +34 -0
  726. pyrogram/raw/base/rich_text.py +49 -0
  727. pyrogram/raw/base/rpc_drop_answer.py +46 -0
  728. pyrogram/raw/base/rpc_error.py +34 -0
  729. pyrogram/raw/base/rpc_result.py +34 -0
  730. pyrogram/raw/base/saved_contact.py +44 -0
  731. pyrogram/raw/base/saved_dialog.py +34 -0
  732. pyrogram/raw/base/saved_reaction_tag.py +34 -0
  733. pyrogram/raw/base/search_results_calendar_period.py +34 -0
  734. pyrogram/raw/base/search_results_position.py +34 -0
  735. pyrogram/raw/base/secure_credentials_encrypted.py +34 -0
  736. pyrogram/raw/base/secure_data.py +34 -0
  737. pyrogram/raw/base/secure_file.py +35 -0
  738. pyrogram/raw/base/secure_password_kdf_algo.py +36 -0
  739. pyrogram/raw/base/secure_plain_data.py +35 -0
  740. pyrogram/raw/base/secure_required_type.py +35 -0
  741. pyrogram/raw/base/secure_secret_settings.py +34 -0
  742. pyrogram/raw/base/secure_value.py +46 -0
  743. pyrogram/raw/base/secure_value_error.py +42 -0
  744. pyrogram/raw/base/secure_value_hash.py +34 -0
  745. pyrogram/raw/base/secure_value_type.py +46 -0
  746. pyrogram/raw/base/send_as_peer.py +34 -0
  747. pyrogram/raw/base/send_message_action.py +51 -0
  748. pyrogram/raw/base/server_dh_inner_data.py +34 -0
  749. pyrogram/raw/base/server_dh_params.py +45 -0
  750. pyrogram/raw/base/set_client_dh_params_answer.py +46 -0
  751. pyrogram/raw/base/shipping_option.py +34 -0
  752. pyrogram/raw/base/sms_job.py +44 -0
  753. pyrogram/raw/base/smsjobs/__init__.py +8 -0
  754. pyrogram/raw/base/smsjobs/eligibility_to_join.py +44 -0
  755. pyrogram/raw/base/smsjobs/status.py +44 -0
  756. pyrogram/raw/base/sponsored_message.py +34 -0
  757. pyrogram/raw/base/sponsored_message_report_option.py +34 -0
  758. pyrogram/raw/base/stars_revenue_status.py +34 -0
  759. pyrogram/raw/base/stars_topup_option.py +44 -0
  760. pyrogram/raw/base/stars_transaction.py +34 -0
  761. pyrogram/raw/base/stars_transaction_peer.py +40 -0
  762. pyrogram/raw/base/stats/__init__.py +14 -0
  763. pyrogram/raw/base/stats/broadcast_revenue_stats.py +44 -0
  764. pyrogram/raw/base/stats/broadcast_revenue_transactions.py +44 -0
  765. pyrogram/raw/base/stats/broadcast_revenue_withdrawal_url.py +44 -0
  766. pyrogram/raw/base/stats/broadcast_stats.py +44 -0
  767. pyrogram/raw/base/stats/megagroup_stats.py +44 -0
  768. pyrogram/raw/base/stats/message_stats.py +44 -0
  769. pyrogram/raw/base/stats/public_forwards.py +45 -0
  770. pyrogram/raw/base/stats/story_stats.py +44 -0
  771. pyrogram/raw/base/stats_abs_value_and_prev.py +34 -0
  772. pyrogram/raw/base/stats_date_range_days.py +34 -0
  773. pyrogram/raw/base/stats_graph.py +46 -0
  774. pyrogram/raw/base/stats_group_top_admin.py +34 -0
  775. pyrogram/raw/base/stats_group_top_inviter.py +34 -0
  776. pyrogram/raw/base/stats_group_top_poster.py +34 -0
  777. pyrogram/raw/base/stats_percent_value.py +34 -0
  778. pyrogram/raw/base/stats_url.py +34 -0
  779. pyrogram/raw/base/sticker_keyword.py +34 -0
  780. pyrogram/raw/base/sticker_pack.py +34 -0
  781. pyrogram/raw/base/sticker_set.py +34 -0
  782. pyrogram/raw/base/sticker_set_covered.py +47 -0
  783. pyrogram/raw/base/stickers/__init__.py +7 -0
  784. pyrogram/raw/base/stickers/suggested_short_name.py +44 -0
  785. pyrogram/raw/base/storage/__init__.py +7 -0
  786. pyrogram/raw/base/storage/file_type.py +43 -0
  787. pyrogram/raw/base/stories/__init__.py +13 -0
  788. pyrogram/raw/base/stories/all_stories.py +45 -0
  789. pyrogram/raw/base/stories/found_stories.py +44 -0
  790. pyrogram/raw/base/stories/peer_stories.py +44 -0
  791. pyrogram/raw/base/stories/stories.py +46 -0
  792. pyrogram/raw/base/stories/story_reactions_list.py +44 -0
  793. pyrogram/raw/base/stories/story_views.py +44 -0
  794. pyrogram/raw/base/stories/story_views_list.py +44 -0
  795. pyrogram/raw/base/stories_stealth_mode.py +34 -0
  796. pyrogram/raw/base/story_fwd_header.py +34 -0
  797. pyrogram/raw/base/story_item.py +36 -0
  798. pyrogram/raw/base/story_reaction.py +36 -0
  799. pyrogram/raw/base/story_view.py +36 -0
  800. pyrogram/raw/base/story_views.py +34 -0
  801. pyrogram/raw/base/text_with_entities.py +34 -0
  802. pyrogram/raw/base/theme.py +46 -0
  803. pyrogram/raw/base/theme_settings.py +34 -0
  804. pyrogram/raw/base/timezone.py +34 -0
  805. pyrogram/raw/base/top_peer.py +34 -0
  806. pyrogram/raw/base/top_peer_category.py +41 -0
  807. pyrogram/raw/base/top_peer_category_peers.py +34 -0
  808. pyrogram/raw/base/update.py +172 -0
  809. pyrogram/raw/base/updates/__init__.py +9 -0
  810. pyrogram/raw/base/updates/channel_difference.py +46 -0
  811. pyrogram/raw/base/updates/difference.py +47 -0
  812. pyrogram/raw/base/updates/state.py +44 -0
  813. pyrogram/raw/base/updates_t.py +152 -0
  814. pyrogram/raw/base/upload/__init__.py +9 -0
  815. pyrogram/raw/base/upload/cdn_file.py +45 -0
  816. pyrogram/raw/base/upload/file.py +45 -0
  817. pyrogram/raw/base/upload/web_file.py +44 -0
  818. pyrogram/raw/base/url_auth_result.py +47 -0
  819. pyrogram/raw/base/user.py +49 -0
  820. pyrogram/raw/base/user_full.py +34 -0
  821. pyrogram/raw/base/user_profile_photo.py +35 -0
  822. pyrogram/raw/base/user_status.py +39 -0
  823. pyrogram/raw/base/username.py +34 -0
  824. pyrogram/raw/base/users/__init__.py +7 -0
  825. pyrogram/raw/base/users/user_full.py +44 -0
  826. pyrogram/raw/base/video_size.py +36 -0
  827. pyrogram/raw/base/wall_paper.py +47 -0
  828. pyrogram/raw/base/wall_paper_settings.py +34 -0
  829. pyrogram/raw/base/web_authorization.py +34 -0
  830. pyrogram/raw/base/web_document.py +35 -0
  831. pyrogram/raw/base/web_page.py +37 -0
  832. pyrogram/raw/base/web_page_attribute.py +36 -0
  833. pyrogram/raw/base/web_view_message_sent.py +44 -0
  834. pyrogram/raw/base/web_view_result.py +46 -0
  835. pyrogram/raw/core/__init__.py +13 -0
  836. pyrogram/raw/core/future_salt.py +35 -0
  837. pyrogram/raw/core/future_salts.py +45 -0
  838. pyrogram/raw/core/gzip_packed.py +43 -0
  839. pyrogram/raw/core/list.py +8 -0
  840. pyrogram/raw/core/message.py +38 -0
  841. pyrogram/raw/core/msg_container.py +35 -0
  842. pyrogram/raw/core/primitives/__init__.py +6 -0
  843. pyrogram/raw/core/primitives/bool.py +30 -0
  844. pyrogram/raw/core/primitives/bytes.py +37 -0
  845. pyrogram/raw/core/primitives/double.py +14 -0
  846. pyrogram/raw/core/primitives/int.py +27 -0
  847. pyrogram/raw/core/primitives/string.py +13 -0
  848. pyrogram/raw/core/primitives/vector.py +51 -0
  849. pyrogram/raw/core/tl_object.py +64 -0
  850. pyrogram/raw/functions/__init__.py +27 -0
  851. pyrogram/raw/functions/account/__init__.py +118 -0
  852. pyrogram/raw/functions/account/accept_authorization.py +86 -0
  853. pyrogram/raw/functions/account/cancel_password_email.py +49 -0
  854. pyrogram/raw/functions/account/change_authorization_settings.py +80 -0
  855. pyrogram/raw/functions/account/change_phone.py +70 -0
  856. pyrogram/raw/functions/account/check_username.py +54 -0
  857. pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +49 -0
  858. pyrogram/raw/functions/account/confirm_password_email.py +54 -0
  859. pyrogram/raw/functions/account/confirm_phone.py +62 -0
  860. pyrogram/raw/functions/account/create_business_chat_link.py +54 -0
  861. pyrogram/raw/functions/account/create_theme.py +84 -0
  862. pyrogram/raw/functions/account/decline_password_reset.py +49 -0
  863. pyrogram/raw/functions/account/delete_account.py +66 -0
  864. pyrogram/raw/functions/account/delete_auto_save_exceptions.py +49 -0
  865. pyrogram/raw/functions/account/delete_business_chat_link.py +54 -0
  866. pyrogram/raw/functions/account/delete_secure_value.py +54 -0
  867. pyrogram/raw/functions/account/disable_peer_connected_bot.py +54 -0
  868. pyrogram/raw/functions/account/edit_business_chat_link.py +62 -0
  869. pyrogram/raw/functions/account/finish_takeout_session.py +54 -0
  870. pyrogram/raw/functions/account/get_account_ttl.py +49 -0
  871. pyrogram/raw/functions/account/get_all_secure_values.py +49 -0
  872. pyrogram/raw/functions/account/get_authorization_form.py +70 -0
  873. pyrogram/raw/functions/account/get_authorizations.py +49 -0
  874. pyrogram/raw/functions/account/get_auto_download_settings.py +49 -0
  875. pyrogram/raw/functions/account/get_auto_save_settings.py +49 -0
  876. pyrogram/raw/functions/account/get_bot_business_connection.py +54 -0
  877. pyrogram/raw/functions/account/get_business_chat_links.py +49 -0
  878. pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +54 -0
  879. pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +54 -0
  880. pyrogram/raw/functions/account/get_chat_themes.py +54 -0
  881. pyrogram/raw/functions/account/get_connected_bots.py +49 -0
  882. pyrogram/raw/functions/account/get_contact_sign_up_notification.py +49 -0
  883. pyrogram/raw/functions/account/get_content_settings.py +49 -0
  884. pyrogram/raw/functions/account/get_default_background_emojis.py +54 -0
  885. pyrogram/raw/functions/account/get_default_emoji_statuses.py +54 -0
  886. pyrogram/raw/functions/account/get_default_group_photo_emojis.py +54 -0
  887. pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +54 -0
  888. pyrogram/raw/functions/account/get_global_privacy_settings.py +49 -0
  889. pyrogram/raw/functions/account/get_multi_wall_papers.py +54 -0
  890. pyrogram/raw/functions/account/get_notify_exceptions.py +70 -0
  891. pyrogram/raw/functions/account/get_notify_settings.py +54 -0
  892. pyrogram/raw/functions/account/get_password.py +49 -0
  893. pyrogram/raw/functions/account/get_password_settings.py +54 -0
  894. pyrogram/raw/functions/account/get_privacy.py +54 -0
  895. pyrogram/raw/functions/account/get_reactions_notify_settings.py +49 -0
  896. pyrogram/raw/functions/account/get_recent_emoji_statuses.py +54 -0
  897. pyrogram/raw/functions/account/get_saved_ringtones.py +54 -0
  898. pyrogram/raw/functions/account/get_secure_value.py +54 -0
  899. pyrogram/raw/functions/account/get_theme.py +62 -0
  900. pyrogram/raw/functions/account/get_themes.py +62 -0
  901. pyrogram/raw/functions/account/get_tmp_password.py +62 -0
  902. pyrogram/raw/functions/account/get_wall_paper.py +54 -0
  903. pyrogram/raw/functions/account/get_wall_papers.py +54 -0
  904. pyrogram/raw/functions/account/get_web_authorizations.py +49 -0
  905. pyrogram/raw/functions/account/init_takeout_session.py +93 -0
  906. pyrogram/raw/functions/account/install_theme.py +83 -0
  907. pyrogram/raw/functions/account/install_wall_paper.py +62 -0
  908. pyrogram/raw/functions/account/invalidate_sign_in_codes.py +54 -0
  909. pyrogram/raw/functions/account/register_device.py +94 -0
  910. pyrogram/raw/functions/account/reorder_usernames.py +54 -0
  911. pyrogram/raw/functions/account/report_peer.py +70 -0
  912. pyrogram/raw/functions/account/report_profile_photo.py +78 -0
  913. pyrogram/raw/functions/account/resend_password_email.py +49 -0
  914. pyrogram/raw/functions/account/reset_authorization.py +54 -0
  915. pyrogram/raw/functions/account/reset_notify_settings.py +49 -0
  916. pyrogram/raw/functions/account/reset_password.py +49 -0
  917. pyrogram/raw/functions/account/reset_wall_papers.py +49 -0
  918. pyrogram/raw/functions/account/reset_web_authorization.py +54 -0
  919. pyrogram/raw/functions/account/reset_web_authorizations.py +49 -0
  920. pyrogram/raw/functions/account/resolve_business_chat_link.py +54 -0
  921. pyrogram/raw/functions/account/save_auto_download_settings.py +68 -0
  922. pyrogram/raw/functions/account/save_auto_save_settings.py +84 -0
  923. pyrogram/raw/functions/account/save_ringtone.py +62 -0
  924. pyrogram/raw/functions/account/save_secure_value.py +62 -0
  925. pyrogram/raw/functions/account/save_theme.py +62 -0
  926. pyrogram/raw/functions/account/save_wall_paper.py +70 -0
  927. pyrogram/raw/functions/account/send_change_phone_code.py +62 -0
  928. pyrogram/raw/functions/account/send_confirm_phone_code.py +62 -0
  929. pyrogram/raw/functions/account/send_verify_email_code.py +62 -0
  930. pyrogram/raw/functions/account/send_verify_phone_code.py +62 -0
  931. pyrogram/raw/functions/account/set_account_ttl.py +54 -0
  932. pyrogram/raw/functions/account/set_authorization_ttl.py +54 -0
  933. pyrogram/raw/functions/account/set_contact_sign_up_notification.py +54 -0
  934. pyrogram/raw/functions/account/set_content_settings.py +54 -0
  935. pyrogram/raw/functions/account/set_global_privacy_settings.py +54 -0
  936. pyrogram/raw/functions/account/set_privacy.py +62 -0
  937. pyrogram/raw/functions/account/set_reactions_notify_settings.py +54 -0
  938. pyrogram/raw/functions/account/toggle_connected_bot_paused.py +62 -0
  939. pyrogram/raw/functions/account/toggle_sponsored_messages.py +54 -0
  940. pyrogram/raw/functions/account/toggle_username.py +62 -0
  941. pyrogram/raw/functions/account/unregister_device.py +70 -0
  942. pyrogram/raw/functions/account/update_birthday.py +58 -0
  943. pyrogram/raw/functions/account/update_business_away_message.py +58 -0
  944. pyrogram/raw/functions/account/update_business_greeting_message.py +58 -0
  945. pyrogram/raw/functions/account/update_business_intro.py +58 -0
  946. pyrogram/raw/functions/account/update_business_location.py +67 -0
  947. pyrogram/raw/functions/account/update_business_work_hours.py +58 -0
  948. pyrogram/raw/functions/account/update_color.py +72 -0
  949. pyrogram/raw/functions/account/update_connected_bot.py +76 -0
  950. pyrogram/raw/functions/account/update_device_locked.py +54 -0
  951. pyrogram/raw/functions/account/update_emoji_status.py +54 -0
  952. pyrogram/raw/functions/account/update_notify_settings.py +62 -0
  953. pyrogram/raw/functions/account/update_password_settings.py +62 -0
  954. pyrogram/raw/functions/account/update_personal_channel.py +54 -0
  955. pyrogram/raw/functions/account/update_profile.py +75 -0
  956. pyrogram/raw/functions/account/update_status.py +54 -0
  957. pyrogram/raw/functions/account/update_theme.py +102 -0
  958. pyrogram/raw/functions/account/update_username.py +54 -0
  959. pyrogram/raw/functions/account/upload_ringtone.py +70 -0
  960. pyrogram/raw/functions/account/upload_theme.py +82 -0
  961. pyrogram/raw/functions/account/upload_wall_paper.py +78 -0
  962. pyrogram/raw/functions/account/verify_email.py +62 -0
  963. pyrogram/raw/functions/account/verify_phone.py +70 -0
  964. pyrogram/raw/functions/auth/__init__.py +29 -0
  965. pyrogram/raw/functions/auth/accept_login_token.py +54 -0
  966. pyrogram/raw/functions/auth/bind_temp_auth_key.py +78 -0
  967. pyrogram/raw/functions/auth/cancel_code.py +62 -0
  968. pyrogram/raw/functions/auth/check_password.py +54 -0
  969. pyrogram/raw/functions/auth/check_recovery_password.py +54 -0
  970. pyrogram/raw/functions/auth/drop_temp_auth_keys.py +54 -0
  971. pyrogram/raw/functions/auth/export_authorization.py +54 -0
  972. pyrogram/raw/functions/auth/export_login_token.py +70 -0
  973. pyrogram/raw/functions/auth/import_authorization.py +62 -0
  974. pyrogram/raw/functions/auth/import_bot_authorization.py +78 -0
  975. pyrogram/raw/functions/auth/import_login_token.py +54 -0
  976. pyrogram/raw/functions/auth/import_web_token_authorization.py +70 -0
  977. pyrogram/raw/functions/auth/log_out.py +49 -0
  978. pyrogram/raw/functions/auth/recover_password.py +66 -0
  979. pyrogram/raw/functions/auth/report_missing_code.py +70 -0
  980. pyrogram/raw/functions/auth/request_firebase_sms.py +91 -0
  981. pyrogram/raw/functions/auth/request_password_recovery.py +49 -0
  982. pyrogram/raw/functions/auth/resend_code.py +73 -0
  983. pyrogram/raw/functions/auth/reset_authorizations.py +49 -0
  984. pyrogram/raw/functions/auth/reset_login_email.py +62 -0
  985. pyrogram/raw/functions/auth/send_code.py +78 -0
  986. pyrogram/raw/functions/auth/sign_in.py +83 -0
  987. pyrogram/raw/functions/auth/sign_up.py +86 -0
  988. pyrogram/raw/functions/bots/__init__.py +22 -0
  989. pyrogram/raw/functions/bots/allow_send_message.py +54 -0
  990. pyrogram/raw/functions/bots/answer_webhook_json_query.py +62 -0
  991. pyrogram/raw/functions/bots/can_send_message.py +54 -0
  992. pyrogram/raw/functions/bots/get_bot_commands.py +62 -0
  993. pyrogram/raw/functions/bots/get_bot_info.py +66 -0
  994. pyrogram/raw/functions/bots/get_bot_menu_button.py +54 -0
  995. pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +70 -0
  996. pyrogram/raw/functions/bots/reorder_usernames.py +62 -0
  997. pyrogram/raw/functions/bots/reset_bot_commands.py +62 -0
  998. pyrogram/raw/functions/bots/send_custom_request.py +62 -0
  999. pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +54 -0
  1000. pyrogram/raw/functions/bots/set_bot_commands.py +70 -0
  1001. pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +54 -0
  1002. pyrogram/raw/functions/bots/set_bot_info.py +93 -0
  1003. pyrogram/raw/functions/bots/set_bot_menu_button.py +62 -0
  1004. pyrogram/raw/functions/bots/toggle_username.py +70 -0
  1005. pyrogram/raw/functions/channels/__init__.py +71 -0
  1006. pyrogram/raw/functions/channels/check_username.py +62 -0
  1007. pyrogram/raw/functions/channels/click_sponsored_message.py +62 -0
  1008. pyrogram/raw/functions/channels/convert_to_gigagroup.py +54 -0
  1009. pyrogram/raw/functions/channels/create_channel.py +116 -0
  1010. pyrogram/raw/functions/channels/create_forum_topic.py +100 -0
  1011. pyrogram/raw/functions/channels/deactivate_all_usernames.py +54 -0
  1012. pyrogram/raw/functions/channels/delete_channel.py +54 -0
  1013. pyrogram/raw/functions/channels/delete_history.py +70 -0
  1014. pyrogram/raw/functions/channels/delete_messages.py +62 -0
  1015. pyrogram/raw/functions/channels/delete_participant_history.py +62 -0
  1016. pyrogram/raw/functions/channels/delete_topic_history.py +62 -0
  1017. pyrogram/raw/functions/channels/edit_admin.py +78 -0
  1018. pyrogram/raw/functions/channels/edit_banned.py +70 -0
  1019. pyrogram/raw/functions/channels/edit_creator.py +70 -0
  1020. pyrogram/raw/functions/channels/edit_forum_topic.py +100 -0
  1021. pyrogram/raw/functions/channels/edit_location.py +70 -0
  1022. pyrogram/raw/functions/channels/edit_photo.py +62 -0
  1023. pyrogram/raw/functions/channels/edit_title.py +62 -0
  1024. pyrogram/raw/functions/channels/export_message_link.py +76 -0
  1025. pyrogram/raw/functions/channels/get_admin_log.py +108 -0
  1026. pyrogram/raw/functions/channels/get_admined_public_channels.py +66 -0
  1027. pyrogram/raw/functions/channels/get_channel_recommendations.py +58 -0
  1028. pyrogram/raw/functions/channels/get_channels.py +54 -0
  1029. pyrogram/raw/functions/channels/get_forum_topics.py +97 -0
  1030. pyrogram/raw/functions/channels/get_forum_topics_by_id.py +62 -0
  1031. pyrogram/raw/functions/channels/get_full_channel.py +54 -0
  1032. pyrogram/raw/functions/channels/get_groups_for_discussion.py +49 -0
  1033. pyrogram/raw/functions/channels/get_inactive_channels.py +49 -0
  1034. pyrogram/raw/functions/channels/get_left_channels.py +54 -0
  1035. pyrogram/raw/functions/channels/get_messages.py +62 -0
  1036. pyrogram/raw/functions/channels/get_participant.py +62 -0
  1037. pyrogram/raw/functions/channels/get_participants.py +86 -0
  1038. pyrogram/raw/functions/channels/get_send_as.py +54 -0
  1039. pyrogram/raw/functions/channels/get_sponsored_messages.py +54 -0
  1040. pyrogram/raw/functions/channels/invite_to_channel.py +62 -0
  1041. pyrogram/raw/functions/channels/join_channel.py +54 -0
  1042. pyrogram/raw/functions/channels/leave_channel.py +54 -0
  1043. pyrogram/raw/functions/channels/read_history.py +62 -0
  1044. pyrogram/raw/functions/channels/read_message_contents.py +62 -0
  1045. pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py +70 -0
  1046. pyrogram/raw/functions/channels/reorder_usernames.py +62 -0
  1047. pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +62 -0
  1048. pyrogram/raw/functions/channels/report_spam.py +70 -0
  1049. pyrogram/raw/functions/channels/report_sponsored_message.py +70 -0
  1050. pyrogram/raw/functions/channels/restrict_sponsored_messages.py +62 -0
  1051. pyrogram/raw/functions/channels/search_posts.py +86 -0
  1052. pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +62 -0
  1053. pyrogram/raw/functions/channels/set_discussion_group.py +62 -0
  1054. pyrogram/raw/functions/channels/set_emoji_stickers.py +62 -0
  1055. pyrogram/raw/functions/channels/set_stickers.py +62 -0
  1056. pyrogram/raw/functions/channels/toggle_anti_spam.py +62 -0
  1057. pyrogram/raw/functions/channels/toggle_forum.py +62 -0
  1058. pyrogram/raw/functions/channels/toggle_join_request.py +62 -0
  1059. pyrogram/raw/functions/channels/toggle_join_to_send.py +62 -0
  1060. pyrogram/raw/functions/channels/toggle_participants_hidden.py +62 -0
  1061. pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +62 -0
  1062. pyrogram/raw/functions/channels/toggle_signatures.py +62 -0
  1063. pyrogram/raw/functions/channels/toggle_slow_mode.py +62 -0
  1064. pyrogram/raw/functions/channels/toggle_username.py +70 -0
  1065. pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +62 -0
  1066. pyrogram/raw/functions/channels/update_color.py +80 -0
  1067. pyrogram/raw/functions/channels/update_emoji_status.py +62 -0
  1068. pyrogram/raw/functions/channels/update_pinned_forum_topic.py +70 -0
  1069. pyrogram/raw/functions/channels/update_username.py +62 -0
  1070. pyrogram/raw/functions/channels/view_sponsored_message.py +62 -0
  1071. pyrogram/raw/functions/chatlists/__init__.py +17 -0
  1072. pyrogram/raw/functions/chatlists/check_chatlist_invite.py +54 -0
  1073. pyrogram/raw/functions/chatlists/delete_exported_invite.py +62 -0
  1074. pyrogram/raw/functions/chatlists/edit_exported_invite.py +83 -0
  1075. pyrogram/raw/functions/chatlists/export_chatlist_invite.py +70 -0
  1076. pyrogram/raw/functions/chatlists/get_chatlist_updates.py +54 -0
  1077. pyrogram/raw/functions/chatlists/get_exported_invites.py +54 -0
  1078. pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +54 -0
  1079. pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +54 -0
  1080. pyrogram/raw/functions/chatlists/join_chatlist_invite.py +62 -0
  1081. pyrogram/raw/functions/chatlists/join_chatlist_updates.py +62 -0
  1082. pyrogram/raw/functions/chatlists/leave_chatlist.py +62 -0
  1083. pyrogram/raw/functions/contacts/__init__.py +32 -0
  1084. pyrogram/raw/functions/contacts/accept_contact.py +54 -0
  1085. pyrogram/raw/functions/contacts/add_contact.py +86 -0
  1086. pyrogram/raw/functions/contacts/block.py +62 -0
  1087. pyrogram/raw/functions/contacts/block_from_replies.py +74 -0
  1088. pyrogram/raw/functions/contacts/delete_by_phones.py +54 -0
  1089. pyrogram/raw/functions/contacts/delete_contacts.py +54 -0
  1090. pyrogram/raw/functions/contacts/edit_close_friends.py +54 -0
  1091. pyrogram/raw/functions/contacts/export_contact_token.py +49 -0
  1092. pyrogram/raw/functions/contacts/get_birthdays.py +49 -0
  1093. pyrogram/raw/functions/contacts/get_blocked.py +70 -0
  1094. pyrogram/raw/functions/contacts/get_contact_i_ds.py +54 -0
  1095. pyrogram/raw/functions/contacts/get_contacts.py +54 -0
  1096. pyrogram/raw/functions/contacts/get_located.py +71 -0
  1097. pyrogram/raw/functions/contacts/get_saved.py +49 -0
  1098. pyrogram/raw/functions/contacts/get_statuses.py +49 -0
  1099. pyrogram/raw/functions/contacts/get_top_peers.py +120 -0
  1100. pyrogram/raw/functions/contacts/import_contact_token.py +54 -0
  1101. pyrogram/raw/functions/contacts/import_contacts.py +54 -0
  1102. pyrogram/raw/functions/contacts/reset_saved.py +49 -0
  1103. pyrogram/raw/functions/contacts/reset_top_peer_rating.py +62 -0
  1104. pyrogram/raw/functions/contacts/resolve_phone.py +54 -0
  1105. pyrogram/raw/functions/contacts/resolve_username.py +54 -0
  1106. pyrogram/raw/functions/contacts/search.py +62 -0
  1107. pyrogram/raw/functions/contacts/set_blocked.py +70 -0
  1108. pyrogram/raw/functions/contacts/toggle_top_peers.py +54 -0
  1109. pyrogram/raw/functions/contacts/unblock.py +62 -0
  1110. pyrogram/raw/functions/contest/__init__.py +7 -0
  1111. pyrogram/raw/functions/contest/save_developer_info.py +86 -0
  1112. pyrogram/raw/functions/destroy_auth_key.py +49 -0
  1113. pyrogram/raw/functions/destroy_session.py +54 -0
  1114. pyrogram/raw/functions/folders/__init__.py +7 -0
  1115. pyrogram/raw/functions/folders/edit_peer_folders.py +54 -0
  1116. pyrogram/raw/functions/fragment/__init__.py +7 -0
  1117. pyrogram/raw/functions/fragment/get_collectible_info.py +54 -0
  1118. pyrogram/raw/functions/get_future_salts.py +54 -0
  1119. pyrogram/raw/functions/help/__init__.py +31 -0
  1120. pyrogram/raw/functions/help/accept_terms_of_service.py +54 -0
  1121. pyrogram/raw/functions/help/dismiss_suggestion.py +62 -0
  1122. pyrogram/raw/functions/help/edit_user_info.py +70 -0
  1123. pyrogram/raw/functions/help/get_app_config.py +54 -0
  1124. pyrogram/raw/functions/help/get_app_update.py +54 -0
  1125. pyrogram/raw/functions/help/get_cdn_config.py +49 -0
  1126. pyrogram/raw/functions/help/get_config.py +49 -0
  1127. pyrogram/raw/functions/help/get_countries_list.py +62 -0
  1128. pyrogram/raw/functions/help/get_deep_link_info.py +54 -0
  1129. pyrogram/raw/functions/help/get_invite_text.py +49 -0
  1130. pyrogram/raw/functions/help/get_nearest_dc.py +49 -0
  1131. pyrogram/raw/functions/help/get_passport_config.py +54 -0
  1132. pyrogram/raw/functions/help/get_peer_colors.py +54 -0
  1133. pyrogram/raw/functions/help/get_peer_profile_colors.py +54 -0
  1134. pyrogram/raw/functions/help/get_premium_promo.py +49 -0
  1135. pyrogram/raw/functions/help/get_promo_data.py +49 -0
  1136. pyrogram/raw/functions/help/get_recent_me_urls.py +54 -0
  1137. pyrogram/raw/functions/help/get_support.py +49 -0
  1138. pyrogram/raw/functions/help/get_support_name.py +49 -0
  1139. pyrogram/raw/functions/help/get_terms_of_service_update.py +49 -0
  1140. pyrogram/raw/functions/help/get_timezones_list.py +54 -0
  1141. pyrogram/raw/functions/help/get_user_info.py +54 -0
  1142. pyrogram/raw/functions/help/hide_promo_data.py +54 -0
  1143. pyrogram/raw/functions/help/save_app_log.py +54 -0
  1144. pyrogram/raw/functions/help/set_bot_updates_status.py +62 -0
  1145. pyrogram/raw/functions/init_connection.py +132 -0
  1146. pyrogram/raw/functions/invoke_after_msg.py +62 -0
  1147. pyrogram/raw/functions/invoke_after_msgs.py +62 -0
  1148. pyrogram/raw/functions/invoke_with_apns_secret.py +70 -0
  1149. pyrogram/raw/functions/invoke_with_business_connection.py +62 -0
  1150. pyrogram/raw/functions/invoke_with_google_play_integrity.py +70 -0
  1151. pyrogram/raw/functions/invoke_with_layer.py +62 -0
  1152. pyrogram/raw/functions/invoke_with_messages_range.py +62 -0
  1153. pyrogram/raw/functions/invoke_with_takeout.py +62 -0
  1154. pyrogram/raw/functions/invoke_without_updates.py +54 -0
  1155. pyrogram/raw/functions/langpack/__init__.py +11 -0
  1156. pyrogram/raw/functions/langpack/get_difference.py +70 -0
  1157. pyrogram/raw/functions/langpack/get_lang_pack.py +62 -0
  1158. pyrogram/raw/functions/langpack/get_language.py +62 -0
  1159. pyrogram/raw/functions/langpack/get_languages.py +54 -0
  1160. pyrogram/raw/functions/langpack/get_strings.py +70 -0
  1161. pyrogram/raw/functions/messages/__init__.py +219 -0
  1162. pyrogram/raw/functions/messages/accept_encryption.py +70 -0
  1163. pyrogram/raw/functions/messages/accept_url_auth.py +91 -0
  1164. pyrogram/raw/functions/messages/add_chat_user.py +70 -0
  1165. pyrogram/raw/functions/messages/check_chat_invite.py +54 -0
  1166. pyrogram/raw/functions/messages/check_history_import.py +54 -0
  1167. pyrogram/raw/functions/messages/check_history_import_peer.py +54 -0
  1168. pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +54 -0
  1169. pyrogram/raw/functions/messages/clear_all_drafts.py +49 -0
  1170. pyrogram/raw/functions/messages/clear_recent_reactions.py +49 -0
  1171. pyrogram/raw/functions/messages/clear_recent_stickers.py +54 -0
  1172. pyrogram/raw/functions/messages/create_chat.py +73 -0
  1173. pyrogram/raw/functions/messages/delete_chat.py +54 -0
  1174. pyrogram/raw/functions/messages/delete_chat_user.py +70 -0
  1175. pyrogram/raw/functions/messages/delete_exported_chat_invite.py +62 -0
  1176. pyrogram/raw/functions/messages/delete_fact_check.py +62 -0
  1177. pyrogram/raw/functions/messages/delete_history.py +94 -0
  1178. pyrogram/raw/functions/messages/delete_messages.py +62 -0
  1179. pyrogram/raw/functions/messages/delete_phone_call_history.py +54 -0
  1180. pyrogram/raw/functions/messages/delete_quick_reply_messages.py +62 -0
  1181. pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +54 -0
  1182. pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +62 -0
  1183. pyrogram/raw/functions/messages/delete_saved_history.py +82 -0
  1184. pyrogram/raw/functions/messages/delete_scheduled_messages.py +62 -0
  1185. pyrogram/raw/functions/messages/discard_encryption.py +62 -0
  1186. pyrogram/raw/functions/messages/edit_chat_about.py +62 -0
  1187. pyrogram/raw/functions/messages/edit_chat_admin.py +70 -0
  1188. pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +62 -0
  1189. pyrogram/raw/functions/messages/edit_chat_photo.py +62 -0
  1190. pyrogram/raw/functions/messages/edit_chat_title.py +62 -0
  1191. pyrogram/raw/functions/messages/edit_exported_chat_invite.py +106 -0
  1192. pyrogram/raw/functions/messages/edit_fact_check.py +70 -0
  1193. pyrogram/raw/functions/messages/edit_inline_bot_message.py +107 -0
  1194. pyrogram/raw/functions/messages/edit_message.py +133 -0
  1195. pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +62 -0
  1196. pyrogram/raw/functions/messages/export_chat_invite.py +95 -0
  1197. pyrogram/raw/functions/messages/fave_sticker.py +62 -0
  1198. pyrogram/raw/functions/messages/forward_messages.py +154 -0
  1199. pyrogram/raw/functions/messages/get_admins_with_invites.py +54 -0
  1200. pyrogram/raw/functions/messages/get_all_drafts.py +49 -0
  1201. pyrogram/raw/functions/messages/get_all_stickers.py +54 -0
  1202. pyrogram/raw/functions/messages/get_archived_stickers.py +76 -0
  1203. pyrogram/raw/functions/messages/get_attach_menu_bot.py +54 -0
  1204. pyrogram/raw/functions/messages/get_attach_menu_bots.py +54 -0
  1205. pyrogram/raw/functions/messages/get_attached_stickers.py +54 -0
  1206. pyrogram/raw/functions/messages/get_available_effects.py +54 -0
  1207. pyrogram/raw/functions/messages/get_available_reactions.py +54 -0
  1208. pyrogram/raw/functions/messages/get_bot_app.py +62 -0
  1209. pyrogram/raw/functions/messages/get_bot_callback_answer.py +89 -0
  1210. pyrogram/raw/functions/messages/get_chat_invite_importers.py +104 -0
  1211. pyrogram/raw/functions/messages/get_chats.py +54 -0
  1212. pyrogram/raw/functions/messages/get_common_chats.py +70 -0
  1213. pyrogram/raw/functions/messages/get_custom_emoji_documents.py +54 -0
  1214. pyrogram/raw/functions/messages/get_default_history_ttl.py +49 -0
  1215. pyrogram/raw/functions/messages/get_default_tag_reactions.py +54 -0
  1216. pyrogram/raw/functions/messages/get_dh_config.py +62 -0
  1217. pyrogram/raw/functions/messages/get_dialog_filters.py +49 -0
  1218. pyrogram/raw/functions/messages/get_dialog_unread_marks.py +49 -0
  1219. pyrogram/raw/functions/messages/get_dialogs.py +103 -0
  1220. pyrogram/raw/functions/messages/get_discussion_message.py +62 -0
  1221. pyrogram/raw/functions/messages/get_document_by_hash.py +70 -0
  1222. pyrogram/raw/functions/messages/get_emoji_groups.py +54 -0
  1223. pyrogram/raw/functions/messages/get_emoji_keywords.py +54 -0
  1224. pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +62 -0
  1225. pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +54 -0
  1226. pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +54 -0
  1227. pyrogram/raw/functions/messages/get_emoji_status_groups.py +54 -0
  1228. pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +54 -0
  1229. pyrogram/raw/functions/messages/get_emoji_stickers.py +54 -0
  1230. pyrogram/raw/functions/messages/get_emoji_url.py +54 -0
  1231. pyrogram/raw/functions/messages/get_exported_chat_invite.py +62 -0
  1232. pyrogram/raw/functions/messages/get_exported_chat_invites.py +96 -0
  1233. pyrogram/raw/functions/messages/get_extended_media.py +62 -0
  1234. pyrogram/raw/functions/messages/get_fact_check.py +62 -0
  1235. pyrogram/raw/functions/messages/get_faved_stickers.py +54 -0
  1236. pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +54 -0
  1237. pyrogram/raw/functions/messages/get_featured_stickers.py +54 -0
  1238. pyrogram/raw/functions/messages/get_full_chat.py +54 -0
  1239. pyrogram/raw/functions/messages/get_game_high_scores.py +70 -0
  1240. pyrogram/raw/functions/messages/get_history.py +110 -0
  1241. pyrogram/raw/functions/messages/get_inline_bot_results.py +90 -0
  1242. pyrogram/raw/functions/messages/get_inline_game_high_scores.py +62 -0
  1243. pyrogram/raw/functions/messages/get_mask_stickers.py +54 -0
  1244. pyrogram/raw/functions/messages/get_message_edit_data.py +62 -0
  1245. pyrogram/raw/functions/messages/get_message_reactions_list.py +91 -0
  1246. pyrogram/raw/functions/messages/get_message_read_participants.py +62 -0
  1247. pyrogram/raw/functions/messages/get_messages.py +54 -0
  1248. pyrogram/raw/functions/messages/get_messages_reactions.py +62 -0
  1249. pyrogram/raw/functions/messages/get_messages_views.py +70 -0
  1250. pyrogram/raw/functions/messages/get_my_stickers.py +62 -0
  1251. pyrogram/raw/functions/messages/get_old_featured_stickers.py +70 -0
  1252. pyrogram/raw/functions/messages/get_onlines.py +54 -0
  1253. pyrogram/raw/functions/messages/get_outbox_read_date.py +62 -0
  1254. pyrogram/raw/functions/messages/get_peer_dialogs.py +54 -0
  1255. pyrogram/raw/functions/messages/get_peer_settings.py +54 -0
  1256. pyrogram/raw/functions/messages/get_pinned_dialogs.py +54 -0
  1257. pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +49 -0
  1258. pyrogram/raw/functions/messages/get_poll_results.py +62 -0
  1259. pyrogram/raw/functions/messages/get_poll_votes.py +90 -0
  1260. pyrogram/raw/functions/messages/get_quick_replies.py +54 -0
  1261. pyrogram/raw/functions/messages/get_quick_reply_messages.py +74 -0
  1262. pyrogram/raw/functions/messages/get_recent_locations.py +70 -0
  1263. pyrogram/raw/functions/messages/get_recent_reactions.py +62 -0
  1264. pyrogram/raw/functions/messages/get_recent_stickers.py +62 -0
  1265. pyrogram/raw/functions/messages/get_replies.py +118 -0
  1266. pyrogram/raw/functions/messages/get_saved_dialogs.py +94 -0
  1267. pyrogram/raw/functions/messages/get_saved_gifs.py +54 -0
  1268. pyrogram/raw/functions/messages/get_saved_history.py +110 -0
  1269. pyrogram/raw/functions/messages/get_saved_reaction_tags.py +66 -0
  1270. pyrogram/raw/functions/messages/get_scheduled_history.py +62 -0
  1271. pyrogram/raw/functions/messages/get_scheduled_messages.py +62 -0
  1272. pyrogram/raw/functions/messages/get_search_counters.py +83 -0
  1273. pyrogram/raw/functions/messages/get_search_results_calendar.py +90 -0
  1274. pyrogram/raw/functions/messages/get_search_results_positions.py +90 -0
  1275. pyrogram/raw/functions/messages/get_split_ranges.py +49 -0
  1276. pyrogram/raw/functions/messages/get_sticker_set.py +62 -0
  1277. pyrogram/raw/functions/messages/get_stickers.py +62 -0
  1278. pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +49 -0
  1279. pyrogram/raw/functions/messages/get_top_reactions.py +62 -0
  1280. pyrogram/raw/functions/messages/get_unread_mentions.py +105 -0
  1281. pyrogram/raw/functions/messages/get_unread_reactions.py +105 -0
  1282. pyrogram/raw/functions/messages/get_web_page.py +62 -0
  1283. pyrogram/raw/functions/messages/get_web_page_preview.py +66 -0
  1284. pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +71 -0
  1285. pyrogram/raw/functions/messages/hide_chat_join_request.py +70 -0
  1286. pyrogram/raw/functions/messages/hide_peer_settings_bar.py +54 -0
  1287. pyrogram/raw/functions/messages/import_chat_invite.py +54 -0
  1288. pyrogram/raw/functions/messages/init_history_import.py +70 -0
  1289. pyrogram/raw/functions/messages/install_sticker_set.py +62 -0
  1290. pyrogram/raw/functions/messages/mark_dialog_unread.py +62 -0
  1291. pyrogram/raw/functions/messages/migrate_chat.py +54 -0
  1292. pyrogram/raw/functions/messages/prolong_web_view.py +98 -0
  1293. pyrogram/raw/functions/messages/rate_transcribed_audio.py +78 -0
  1294. pyrogram/raw/functions/messages/read_discussion.py +70 -0
  1295. pyrogram/raw/functions/messages/read_encrypted_history.py +62 -0
  1296. pyrogram/raw/functions/messages/read_featured_stickers.py +54 -0
  1297. pyrogram/raw/functions/messages/read_history.py +62 -0
  1298. pyrogram/raw/functions/messages/read_mentions.py +65 -0
  1299. pyrogram/raw/functions/messages/read_message_contents.py +54 -0
  1300. pyrogram/raw/functions/messages/read_reactions.py +65 -0
  1301. pyrogram/raw/functions/messages/received_messages.py +54 -0
  1302. pyrogram/raw/functions/messages/received_queue.py +54 -0
  1303. pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +70 -0
  1304. pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +62 -0
  1305. pyrogram/raw/functions/messages/reorder_quick_replies.py +54 -0
  1306. pyrogram/raw/functions/messages/reorder_sticker_sets.py +68 -0
  1307. pyrogram/raw/functions/messages/report.py +78 -0
  1308. pyrogram/raw/functions/messages/report_encrypted_spam.py +54 -0
  1309. pyrogram/raw/functions/messages/report_reaction.py +70 -0
  1310. pyrogram/raw/functions/messages/report_spam.py +54 -0
  1311. pyrogram/raw/functions/messages/request_app_web_view.py +103 -0
  1312. pyrogram/raw/functions/messages/request_encryption.py +70 -0
  1313. pyrogram/raw/functions/messages/request_simple_web_view.py +110 -0
  1314. pyrogram/raw/functions/messages/request_url_auth.py +85 -0
  1315. pyrogram/raw/functions/messages/request_web_view.py +138 -0
  1316. pyrogram/raw/functions/messages/save_default_send_as.py +62 -0
  1317. pyrogram/raw/functions/messages/save_draft.py +115 -0
  1318. pyrogram/raw/functions/messages/save_gif.py +62 -0
  1319. pyrogram/raw/functions/messages/save_recent_sticker.py +70 -0
  1320. pyrogram/raw/functions/messages/search.py +175 -0
  1321. pyrogram/raw/functions/messages/search_custom_emoji.py +62 -0
  1322. pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +70 -0
  1323. pyrogram/raw/functions/messages/search_global.py +127 -0
  1324. pyrogram/raw/functions/messages/search_sent_media.py +70 -0
  1325. pyrogram/raw/functions/messages/search_sticker_sets.py +70 -0
  1326. pyrogram/raw/functions/messages/send_bot_requested_peer.py +78 -0
  1327. pyrogram/raw/functions/messages/send_encrypted.py +78 -0
  1328. pyrogram/raw/functions/messages/send_encrypted_file.py +86 -0
  1329. pyrogram/raw/functions/messages/send_encrypted_service.py +70 -0
  1330. pyrogram/raw/functions/messages/send_inline_bot_result.py +143 -0
  1331. pyrogram/raw/functions/messages/send_media.py +184 -0
  1332. pyrogram/raw/functions/messages/send_message.py +182 -0
  1333. pyrogram/raw/functions/messages/send_multi_media.py +148 -0
  1334. pyrogram/raw/functions/messages/send_quick_reply_messages.py +78 -0
  1335. pyrogram/raw/functions/messages/send_reaction.py +86 -0
  1336. pyrogram/raw/functions/messages/send_scheduled_messages.py +62 -0
  1337. pyrogram/raw/functions/messages/send_screenshot_notification.py +70 -0
  1338. pyrogram/raw/functions/messages/send_vote.py +70 -0
  1339. pyrogram/raw/functions/messages/send_web_view_data.py +78 -0
  1340. pyrogram/raw/functions/messages/send_web_view_result_message.py +62 -0
  1341. pyrogram/raw/functions/messages/set_bot_callback_answer.py +88 -0
  1342. pyrogram/raw/functions/messages/set_bot_precheckout_results.py +71 -0
  1343. pyrogram/raw/functions/messages/set_bot_shipping_results.py +75 -0
  1344. pyrogram/raw/functions/messages/set_chat_available_reactions.py +73 -0
  1345. pyrogram/raw/functions/messages/set_chat_theme.py +62 -0
  1346. pyrogram/raw/functions/messages/set_chat_wall_paper.py +97 -0
  1347. pyrogram/raw/functions/messages/set_default_history_ttl.py +54 -0
  1348. pyrogram/raw/functions/messages/set_default_reaction.py +54 -0
  1349. pyrogram/raw/functions/messages/set_encrypted_typing.py +62 -0
  1350. pyrogram/raw/functions/messages/set_game_score.py +92 -0
  1351. pyrogram/raw/functions/messages/set_history_ttl.py +62 -0
  1352. pyrogram/raw/functions/messages/set_inline_bot_results.py +113 -0
  1353. pyrogram/raw/functions/messages/set_inline_game_score.py +84 -0
  1354. pyrogram/raw/functions/messages/set_typing.py +73 -0
  1355. pyrogram/raw/functions/messages/start_bot.py +78 -0
  1356. pyrogram/raw/functions/messages/start_history_import.py +62 -0
  1357. pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +70 -0
  1358. pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +54 -0
  1359. pyrogram/raw/functions/messages/toggle_dialog_pin.py +62 -0
  1360. pyrogram/raw/functions/messages/toggle_no_forwards.py +62 -0
  1361. pyrogram/raw/functions/messages/toggle_peer_translations.py +62 -0
  1362. pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +62 -0
  1363. pyrogram/raw/functions/messages/toggle_sticker_sets.py +74 -0
  1364. pyrogram/raw/functions/messages/transcribe_audio.py +62 -0
  1365. pyrogram/raw/functions/messages/translate_text.py +86 -0
  1366. pyrogram/raw/functions/messages/uninstall_sticker_set.py +54 -0
  1367. pyrogram/raw/functions/messages/unpin_all_messages.py +65 -0
  1368. pyrogram/raw/functions/messages/update_dialog_filter.py +66 -0
  1369. pyrogram/raw/functions/messages/update_dialog_filters_order.py +54 -0
  1370. pyrogram/raw/functions/messages/update_pinned_message.py +82 -0
  1371. pyrogram/raw/functions/messages/update_saved_reaction_tag.py +65 -0
  1372. pyrogram/raw/functions/messages/upload_encrypted_file.py +62 -0
  1373. pyrogram/raw/functions/messages/upload_imported_media.py +78 -0
  1374. pyrogram/raw/functions/messages/upload_media.py +73 -0
  1375. pyrogram/raw/functions/payments/__init__.py +31 -0
  1376. pyrogram/raw/functions/payments/apply_gift_code.py +54 -0
  1377. pyrogram/raw/functions/payments/assign_app_store_transaction.py +62 -0
  1378. pyrogram/raw/functions/payments/assign_play_market_transaction.py +62 -0
  1379. pyrogram/raw/functions/payments/can_purchase_premium.py +54 -0
  1380. pyrogram/raw/functions/payments/check_gift_code.py +54 -0
  1381. pyrogram/raw/functions/payments/clear_saved_info.py +60 -0
  1382. pyrogram/raw/functions/payments/export_invoice.py +54 -0
  1383. pyrogram/raw/functions/payments/get_bank_card_data.py +54 -0
  1384. pyrogram/raw/functions/payments/get_giveaway_info.py +62 -0
  1385. pyrogram/raw/functions/payments/get_payment_form.py +66 -0
  1386. pyrogram/raw/functions/payments/get_payment_receipt.py +62 -0
  1387. pyrogram/raw/functions/payments/get_premium_gift_code_options.py +58 -0
  1388. pyrogram/raw/functions/payments/get_saved_info.py +49 -0
  1389. pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +54 -0
  1390. pyrogram/raw/functions/payments/get_stars_revenue_stats.py +62 -0
  1391. pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +70 -0
  1392. pyrogram/raw/functions/payments/get_stars_status.py +54 -0
  1393. pyrogram/raw/functions/payments/get_stars_topup_options.py +49 -0
  1394. pyrogram/raw/functions/payments/get_stars_transactions.py +90 -0
  1395. pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +62 -0
  1396. pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +70 -0
  1397. pyrogram/raw/functions/payments/refund_stars_charge.py +62 -0
  1398. pyrogram/raw/functions/payments/send_payment_form.py +99 -0
  1399. pyrogram/raw/functions/payments/send_stars_form.py +65 -0
  1400. pyrogram/raw/functions/payments/validate_requested_info.py +70 -0
  1401. pyrogram/raw/functions/phone/__init__.py +37 -0
  1402. pyrogram/raw/functions/phone/accept_call.py +70 -0
  1403. pyrogram/raw/functions/phone/check_group_call.py +62 -0
  1404. pyrogram/raw/functions/phone/confirm_call.py +78 -0
  1405. pyrogram/raw/functions/phone/create_group_call.py +88 -0
  1406. pyrogram/raw/functions/phone/discard_call.py +86 -0
  1407. pyrogram/raw/functions/phone/discard_group_call.py +54 -0
  1408. pyrogram/raw/functions/phone/edit_group_call_participant.py +118 -0
  1409. pyrogram/raw/functions/phone/edit_group_call_title.py +62 -0
  1410. pyrogram/raw/functions/phone/export_group_call_invite.py +62 -0
  1411. pyrogram/raw/functions/phone/get_call_config.py +49 -0
  1412. pyrogram/raw/functions/phone/get_group_call.py +62 -0
  1413. pyrogram/raw/functions/phone/get_group_call_join_as.py +54 -0
  1414. pyrogram/raw/functions/phone/get_group_call_stream_channels.py +54 -0
  1415. pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +62 -0
  1416. pyrogram/raw/functions/phone/get_group_participants.py +86 -0
  1417. pyrogram/raw/functions/phone/invite_to_group_call.py +62 -0
  1418. pyrogram/raw/functions/phone/join_group_call.py +93 -0
  1419. pyrogram/raw/functions/phone/join_group_call_presentation.py +62 -0
  1420. pyrogram/raw/functions/phone/leave_group_call.py +62 -0
  1421. pyrogram/raw/functions/phone/leave_group_call_presentation.py +54 -0
  1422. pyrogram/raw/functions/phone/received_call.py +54 -0
  1423. pyrogram/raw/functions/phone/request_call.py +86 -0
  1424. pyrogram/raw/functions/phone/save_call_debug.py +62 -0
  1425. pyrogram/raw/functions/phone/save_call_log.py +62 -0
  1426. pyrogram/raw/functions/phone/save_default_group_call_join_as.py +62 -0
  1427. pyrogram/raw/functions/phone/send_signaling_data.py +62 -0
  1428. pyrogram/raw/functions/phone/set_call_rating.py +78 -0
  1429. pyrogram/raw/functions/phone/start_scheduled_group_call.py +54 -0
  1430. pyrogram/raw/functions/phone/toggle_group_call_record.py +86 -0
  1431. pyrogram/raw/functions/phone/toggle_group_call_settings.py +71 -0
  1432. pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +62 -0
  1433. pyrogram/raw/functions/photos/__init__.py +11 -0
  1434. pyrogram/raw/functions/photos/delete_photos.py +54 -0
  1435. pyrogram/raw/functions/photos/get_user_photos.py +78 -0
  1436. pyrogram/raw/functions/photos/update_profile_photo.py +72 -0
  1437. pyrogram/raw/functions/photos/upload_contact_profile_photo.py +107 -0
  1438. pyrogram/raw/functions/photos/upload_profile_photo.py +103 -0
  1439. pyrogram/raw/functions/ping.py +54 -0
  1440. pyrogram/raw/functions/ping_delay_disconnect.py +62 -0
  1441. pyrogram/raw/functions/premium/__init__.py +11 -0
  1442. pyrogram/raw/functions/premium/apply_boost.py +66 -0
  1443. pyrogram/raw/functions/premium/get_boosts_list.py +78 -0
  1444. pyrogram/raw/functions/premium/get_boosts_status.py +54 -0
  1445. pyrogram/raw/functions/premium/get_my_boosts.py +49 -0
  1446. pyrogram/raw/functions/premium/get_user_boosts.py +62 -0
  1447. pyrogram/raw/functions/req_dh_params.py +94 -0
  1448. pyrogram/raw/functions/req_pq.py +54 -0
  1449. pyrogram/raw/functions/req_pq_multi.py +54 -0
  1450. pyrogram/raw/functions/rpc_drop_answer.py +54 -0
  1451. pyrogram/raw/functions/set_client_dh_params.py +70 -0
  1452. pyrogram/raw/functions/smsjobs/__init__.py +13 -0
  1453. pyrogram/raw/functions/smsjobs/finish_job.py +65 -0
  1454. pyrogram/raw/functions/smsjobs/get_sms_job.py +54 -0
  1455. pyrogram/raw/functions/smsjobs/get_status.py +49 -0
  1456. pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +49 -0
  1457. pyrogram/raw/functions/smsjobs/join.py +49 -0
  1458. pyrogram/raw/functions/smsjobs/leave.py +49 -0
  1459. pyrogram/raw/functions/smsjobs/update_settings.py +54 -0
  1460. pyrogram/raw/functions/stats/__init__.py +16 -0
  1461. pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py +62 -0
  1462. pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py +70 -0
  1463. pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py +62 -0
  1464. pyrogram/raw/functions/stats/get_broadcast_stats.py +62 -0
  1465. pyrogram/raw/functions/stats/get_megagroup_stats.py +62 -0
  1466. pyrogram/raw/functions/stats/get_message_public_forwards.py +78 -0
  1467. pyrogram/raw/functions/stats/get_message_stats.py +70 -0
  1468. pyrogram/raw/functions/stats/get_story_public_forwards.py +78 -0
  1469. pyrogram/raw/functions/stats/get_story_stats.py +70 -0
  1470. pyrogram/raw/functions/stats/load_async_graph.py +65 -0
  1471. pyrogram/raw/functions/stickers/__init__.py +17 -0
  1472. pyrogram/raw/functions/stickers/add_sticker_to_set.py +62 -0
  1473. pyrogram/raw/functions/stickers/change_sticker.py +84 -0
  1474. pyrogram/raw/functions/stickers/change_sticker_position.py +62 -0
  1475. pyrogram/raw/functions/stickers/check_short_name.py +54 -0
  1476. pyrogram/raw/functions/stickers/create_sticker_set.py +117 -0
  1477. pyrogram/raw/functions/stickers/delete_sticker_set.py +54 -0
  1478. pyrogram/raw/functions/stickers/remove_sticker_from_set.py +54 -0
  1479. pyrogram/raw/functions/stickers/rename_sticker_set.py +62 -0
  1480. pyrogram/raw/functions/stickers/replace_sticker.py +62 -0
  1481. pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +75 -0
  1482. pyrogram/raw/functions/stickers/suggest_short_name.py +54 -0
  1483. pyrogram/raw/functions/stories/__init__.py +32 -0
  1484. pyrogram/raw/functions/stories/activate_stealth_mode.py +60 -0
  1485. pyrogram/raw/functions/stories/can_send_story.py +54 -0
  1486. pyrogram/raw/functions/stories/delete_stories.py +62 -0
  1487. pyrogram/raw/functions/stories/edit_story.py +113 -0
  1488. pyrogram/raw/functions/stories/export_story_link.py +62 -0
  1489. pyrogram/raw/functions/stories/get_all_read_peer_stories.py +49 -0
  1490. pyrogram/raw/functions/stories/get_all_stories.py +69 -0
  1491. pyrogram/raw/functions/stories/get_chats_to_send.py +49 -0
  1492. pyrogram/raw/functions/stories/get_peer_max_i_ds.py +54 -0
  1493. pyrogram/raw/functions/stories/get_peer_stories.py +54 -0
  1494. pyrogram/raw/functions/stories/get_pinned_stories.py +70 -0
  1495. pyrogram/raw/functions/stories/get_stories_archive.py +70 -0
  1496. pyrogram/raw/functions/stories/get_stories_by_id.py +62 -0
  1497. pyrogram/raw/functions/stories/get_stories_views.py +62 -0
  1498. pyrogram/raw/functions/stories/get_story_reactions_list.py +97 -0
  1499. pyrogram/raw/functions/stories/get_story_views_list.py +107 -0
  1500. pyrogram/raw/functions/stories/increment_story_views.py +62 -0
  1501. pyrogram/raw/functions/stories/read_stories.py +62 -0
  1502. pyrogram/raw/functions/stories/report.py +78 -0
  1503. pyrogram/raw/functions/stories/search_posts.py +83 -0
  1504. pyrogram/raw/functions/stories/send_reaction.py +78 -0
  1505. pyrogram/raw/functions/stories/send_story.py +155 -0
  1506. pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +54 -0
  1507. pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +62 -0
  1508. pyrogram/raw/functions/stories/toggle_pinned.py +70 -0
  1509. pyrogram/raw/functions/stories/toggle_pinned_to_top.py +62 -0
  1510. pyrogram/raw/functions/updates/__init__.py +9 -0
  1511. pyrogram/raw/functions/updates/get_channel_difference.py +86 -0
  1512. pyrogram/raw/functions/updates/get_difference.py +99 -0
  1513. pyrogram/raw/functions/updates/get_state.py +49 -0
  1514. pyrogram/raw/functions/upload/__init__.py +14 -0
  1515. pyrogram/raw/functions/upload/get_cdn_file.py +70 -0
  1516. pyrogram/raw/functions/upload/get_cdn_file_hashes.py +62 -0
  1517. pyrogram/raw/functions/upload/get_file.py +84 -0
  1518. pyrogram/raw/functions/upload/get_file_hashes.py +62 -0
  1519. pyrogram/raw/functions/upload/get_web_file.py +70 -0
  1520. pyrogram/raw/functions/upload/reupload_cdn_file.py +62 -0
  1521. pyrogram/raw/functions/upload/save_big_file_part.py +78 -0
  1522. pyrogram/raw/functions/upload/save_file_part.py +70 -0
  1523. pyrogram/raw/functions/users/__init__.py +10 -0
  1524. pyrogram/raw/functions/users/get_full_user.py +54 -0
  1525. pyrogram/raw/functions/users/get_is_premium_required_to_contact.py +54 -0
  1526. pyrogram/raw/functions/users/get_users.py +54 -0
  1527. pyrogram/raw/functions/users/set_secure_value_errors.py +62 -0
  1528. pyrogram/raw/types/__init__.py +1102 -0
  1529. pyrogram/raw/types/access_point_rule.py +70 -0
  1530. pyrogram/raw/types/account/__init__.py +37 -0
  1531. pyrogram/raw/types/account/authorization_form.py +98 -0
  1532. pyrogram/raw/types/account/authorizations.py +71 -0
  1533. pyrogram/raw/types/account/auto_download_settings.py +79 -0
  1534. pyrogram/raw/types/account/auto_save_settings.py +103 -0
  1535. pyrogram/raw/types/account/business_chat_links.py +79 -0
  1536. pyrogram/raw/types/account/connected_bots.py +71 -0
  1537. pyrogram/raw/types/account/content_settings.py +69 -0
  1538. pyrogram/raw/types/account/email_verified.py +63 -0
  1539. pyrogram/raw/types/account/email_verified_login.py +71 -0
  1540. pyrogram/raw/types/account/emoji_statuses.py +73 -0
  1541. pyrogram/raw/types/account/emoji_statuses_not_modified.py +60 -0
  1542. pyrogram/raw/types/account/password.py +163 -0
  1543. pyrogram/raw/types/account/password_input_settings.py +95 -0
  1544. pyrogram/raw/types/account/password_settings.py +76 -0
  1545. pyrogram/raw/types/account/privacy_rules.py +80 -0
  1546. pyrogram/raw/types/account/reset_password_failed_wait.py +63 -0
  1547. pyrogram/raw/types/account/reset_password_ok.py +58 -0
  1548. pyrogram/raw/types/account/reset_password_requested_wait.py +63 -0
  1549. pyrogram/raw/types/account/resolved_business_chat_links.py +99 -0
  1550. pyrogram/raw/types/account/saved_ringtone.py +58 -0
  1551. pyrogram/raw/types/account/saved_ringtone_converted.py +63 -0
  1552. pyrogram/raw/types/account/saved_ringtones.py +71 -0
  1553. pyrogram/raw/types/account/saved_ringtones_not_modified.py +58 -0
  1554. pyrogram/raw/types/account/sent_email_code.py +71 -0
  1555. pyrogram/raw/types/account/takeout.py +63 -0
  1556. pyrogram/raw/types/account/themes.py +72 -0
  1557. pyrogram/raw/types/account/themes_not_modified.py +59 -0
  1558. pyrogram/raw/types/account/tmp_password.py +71 -0
  1559. pyrogram/raw/types/account/wall_papers.py +71 -0
  1560. pyrogram/raw/types/account/wall_papers_not_modified.py +58 -0
  1561. pyrogram/raw/types/account/web_authorizations.py +71 -0
  1562. pyrogram/raw/types/account_days_ttl.py +63 -0
  1563. pyrogram/raw/types/attach_menu_bot.py +118 -0
  1564. pyrogram/raw/types/attach_menu_bot_icon.py +74 -0
  1565. pyrogram/raw/types/attach_menu_bot_icon_color.py +62 -0
  1566. pyrogram/raw/types/attach_menu_bots.py +79 -0
  1567. pyrogram/raw/types/attach_menu_bots_bot.py +71 -0
  1568. pyrogram/raw/types/attach_menu_bots_not_modified.py +58 -0
  1569. pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +49 -0
  1570. pyrogram/raw/types/attach_menu_peer_type_broadcast.py +49 -0
  1571. pyrogram/raw/types/attach_menu_peer_type_chat.py +49 -0
  1572. pyrogram/raw/types/attach_menu_peer_type_pm.py +49 -0
  1573. pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +49 -0
  1574. pyrogram/raw/types/auth/__init__.py +32 -0
  1575. pyrogram/raw/types/auth/authorization.py +104 -0
  1576. pyrogram/raw/types/auth/authorization_sign_up_required.py +73 -0
  1577. pyrogram/raw/types/auth/code_type_call.py +49 -0
  1578. pyrogram/raw/types/auth/code_type_flash_call.py +49 -0
  1579. pyrogram/raw/types/auth/code_type_fragment_sms.py +49 -0
  1580. pyrogram/raw/types/auth/code_type_missed_call.py +49 -0
  1581. pyrogram/raw/types/auth/code_type_sms.py +49 -0
  1582. pyrogram/raw/types/auth/exported_authorization.py +71 -0
  1583. pyrogram/raw/types/auth/logged_out.py +66 -0
  1584. pyrogram/raw/types/auth/login_token.py +72 -0
  1585. pyrogram/raw/types/auth/login_token_migrate_to.py +72 -0
  1586. pyrogram/raw/types/auth/login_token_success.py +64 -0
  1587. pyrogram/raw/types/auth/password_recovery.py +63 -0
  1588. pyrogram/raw/types/auth/sent_code.py +97 -0
  1589. pyrogram/raw/types/auth/sent_code_success.py +68 -0
  1590. pyrogram/raw/types/auth/sent_code_type_app.py +54 -0
  1591. pyrogram/raw/types/auth/sent_code_type_call.py +54 -0
  1592. pyrogram/raw/types/auth/sent_code_type_email_code.py +94 -0
  1593. pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +101 -0
  1594. pyrogram/raw/types/auth/sent_code_type_flash_call.py +54 -0
  1595. pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +62 -0
  1596. pyrogram/raw/types/auth/sent_code_type_missed_call.py +62 -0
  1597. pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +60 -0
  1598. pyrogram/raw/types/auth/sent_code_type_sms.py +54 -0
  1599. pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +57 -0
  1600. pyrogram/raw/types/auth/sent_code_type_sms_word.py +57 -0
  1601. pyrogram/raw/types/authorization.py +189 -0
  1602. pyrogram/raw/types/auto_download_settings.py +126 -0
  1603. pyrogram/raw/types/auto_save_exception.py +62 -0
  1604. pyrogram/raw/types/auto_save_settings.py +69 -0
  1605. pyrogram/raw/types/available_effect.py +96 -0
  1606. pyrogram/raw/types/available_reaction.py +136 -0
  1607. pyrogram/raw/types/bad_msg_notification.py +70 -0
  1608. pyrogram/raw/types/bad_server_salt.py +78 -0
  1609. pyrogram/raw/types/bank_card_open_url.py +62 -0
  1610. pyrogram/raw/types/base_theme_arctic.py +49 -0
  1611. pyrogram/raw/types/base_theme_classic.py +49 -0
  1612. pyrogram/raw/types/base_theme_day.py +49 -0
  1613. pyrogram/raw/types/base_theme_night.py +49 -0
  1614. pyrogram/raw/types/base_theme_tinted.py +49 -0
  1615. pyrogram/raw/types/bind_auth_key_inner.py +86 -0
  1616. pyrogram/raw/types/birthday.py +73 -0
  1617. pyrogram/raw/types/boost.py +126 -0
  1618. pyrogram/raw/types/bot_app.py +114 -0
  1619. pyrogram/raw/types/bot_app_not_modified.py +49 -0
  1620. pyrogram/raw/types/bot_business_connection.py +92 -0
  1621. pyrogram/raw/types/bot_command.py +71 -0
  1622. pyrogram/raw/types/bot_command_scope_chat_admins.py +49 -0
  1623. pyrogram/raw/types/bot_command_scope_chats.py +49 -0
  1624. pyrogram/raw/types/bot_command_scope_default.py +49 -0
  1625. pyrogram/raw/types/bot_command_scope_peer.py +54 -0
  1626. pyrogram/raw/types/bot_command_scope_peer_admins.py +54 -0
  1627. pyrogram/raw/types/bot_command_scope_peer_user.py +62 -0
  1628. pyrogram/raw/types/bot_command_scope_users.py +49 -0
  1629. pyrogram/raw/types/bot_info.py +106 -0
  1630. pyrogram/raw/types/bot_inline_media_result.py +110 -0
  1631. pyrogram/raw/types/bot_inline_message_media_auto.py +82 -0
  1632. pyrogram/raw/types/bot_inline_message_media_contact.py +90 -0
  1633. pyrogram/raw/types/bot_inline_message_media_geo.py +93 -0
  1634. pyrogram/raw/types/bot_inline_message_media_invoice.py +112 -0
  1635. pyrogram/raw/types/bot_inline_message_media_venue.py +106 -0
  1636. pyrogram/raw/types/bot_inline_message_media_web_page.py +114 -0
  1637. pyrogram/raw/types/bot_inline_message_text.py +88 -0
  1638. pyrogram/raw/types/bot_inline_result.py +119 -0
  1639. pyrogram/raw/types/bot_menu_button.py +71 -0
  1640. pyrogram/raw/types/bot_menu_button_commands.py +58 -0
  1641. pyrogram/raw/types/bot_menu_button_default.py +58 -0
  1642. pyrogram/raw/types/bots/__init__.py +7 -0
  1643. pyrogram/raw/types/bots/bot_info.py +79 -0
  1644. pyrogram/raw/types/broadcast_revenue_balances.py +70 -0
  1645. pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py +70 -0
  1646. pyrogram/raw/types/broadcast_revenue_transaction_refund.py +70 -0
  1647. pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py +102 -0
  1648. pyrogram/raw/types/business_away_message.py +78 -0
  1649. pyrogram/raw/types/business_away_message_schedule_always.py +49 -0
  1650. pyrogram/raw/types/business_away_message_schedule_custom.py +62 -0
  1651. pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +49 -0
  1652. pyrogram/raw/types/business_bot_recipients.py +98 -0
  1653. pyrogram/raw/types/business_chat_link.py +101 -0
  1654. pyrogram/raw/types/business_greeting_message.py +70 -0
  1655. pyrogram/raw/types/business_intro.py +74 -0
  1656. pyrogram/raw/types/business_location.py +66 -0
  1657. pyrogram/raw/types/business_recipients.py +88 -0
  1658. pyrogram/raw/types/business_weekly_open.py +62 -0
  1659. pyrogram/raw/types/business_work_hours.py +70 -0
  1660. pyrogram/raw/types/cdn_config.py +63 -0
  1661. pyrogram/raw/types/cdn_public_key.py +62 -0
  1662. pyrogram/raw/types/channel.py +347 -0
  1663. pyrogram/raw/types/channel_admin_log_event.py +78 -0
  1664. pyrogram/raw/types/channel_admin_log_event_action_change_about.py +62 -0
  1665. pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +62 -0
  1666. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +62 -0
  1667. pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +62 -0
  1668. pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +62 -0
  1669. pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +62 -0
  1670. pyrogram/raw/types/channel_admin_log_event_action_change_location.py +62 -0
  1671. pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +62 -0
  1672. pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +62 -0
  1673. pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +62 -0
  1674. pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +62 -0
  1675. pyrogram/raw/types/channel_admin_log_event_action_change_title.py +62 -0
  1676. pyrogram/raw/types/channel_admin_log_event_action_change_username.py +62 -0
  1677. pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +62 -0
  1678. pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +62 -0
  1679. pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +54 -0
  1680. pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +62 -0
  1681. pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +54 -0
  1682. pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +54 -0
  1683. pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +54 -0
  1684. pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +62 -0
  1685. pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +62 -0
  1686. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +54 -0
  1687. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +62 -0
  1688. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +54 -0
  1689. pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +54 -0
  1690. pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +49 -0
  1691. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +62 -0
  1692. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +62 -0
  1693. pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +49 -0
  1694. pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +54 -0
  1695. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +62 -0
  1696. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +62 -0
  1697. pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +54 -0
  1698. pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +54 -0
  1699. pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +68 -0
  1700. pyrogram/raw/types/channel_admin_log_event_action_send_message.py +54 -0
  1701. pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +54 -0
  1702. pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +54 -0
  1703. pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +54 -0
  1704. pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +54 -0
  1705. pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +54 -0
  1706. pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +54 -0
  1707. pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +54 -0
  1708. pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +54 -0
  1709. pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +54 -0
  1710. pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +62 -0
  1711. pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +54 -0
  1712. pyrogram/raw/types/channel_admin_log_events_filter.py +156 -0
  1713. pyrogram/raw/types/channel_forbidden.py +93 -0
  1714. pyrogram/raw/types/channel_full.py +532 -0
  1715. pyrogram/raw/types/channel_location.py +62 -0
  1716. pyrogram/raw/types/channel_location_empty.py +49 -0
  1717. pyrogram/raw/types/channel_messages_filter.py +62 -0
  1718. pyrogram/raw/types/channel_messages_filter_empty.py +49 -0
  1719. pyrogram/raw/types/channel_participant.py +62 -0
  1720. pyrogram/raw/types/channel_participant_admin.py +110 -0
  1721. pyrogram/raw/types/channel_participant_banned.py +86 -0
  1722. pyrogram/raw/types/channel_participant_creator.py +73 -0
  1723. pyrogram/raw/types/channel_participant_left.py +54 -0
  1724. pyrogram/raw/types/channel_participant_self.py +78 -0
  1725. pyrogram/raw/types/channel_participants_admins.py +49 -0
  1726. pyrogram/raw/types/channel_participants_banned.py +54 -0
  1727. pyrogram/raw/types/channel_participants_bots.py +49 -0
  1728. pyrogram/raw/types/channel_participants_contacts.py +54 -0
  1729. pyrogram/raw/types/channel_participants_kicked.py +54 -0
  1730. pyrogram/raw/types/channel_participants_mentions.py +66 -0
  1731. pyrogram/raw/types/channel_participants_recent.py +49 -0
  1732. pyrogram/raw/types/channel_participants_search.py +54 -0
  1733. pyrogram/raw/types/channels/__init__.py +14 -0
  1734. pyrogram/raw/types/channels/admin_log_results.py +79 -0
  1735. pyrogram/raw/types/channels/channel_participant.py +79 -0
  1736. pyrogram/raw/types/channels/channel_participants.py +87 -0
  1737. pyrogram/raw/types/channels/channel_participants_not_modified.py +58 -0
  1738. pyrogram/raw/types/channels/send_as_peers.py +79 -0
  1739. pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +58 -0
  1740. pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +71 -0
  1741. pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +58 -0
  1742. pyrogram/raw/types/chat.py +162 -0
  1743. pyrogram/raw/types/chat_admin_rights.py +138 -0
  1744. pyrogram/raw/types/chat_admin_with_invites.py +70 -0
  1745. pyrogram/raw/types/chat_banned_rights.py +176 -0
  1746. pyrogram/raw/types/chat_empty.py +54 -0
  1747. pyrogram/raw/types/chat_forbidden.py +62 -0
  1748. pyrogram/raw/types/chat_full.py +222 -0
  1749. pyrogram/raw/types/chat_invite.py +156 -0
  1750. pyrogram/raw/types/chat_invite_already.py +63 -0
  1751. pyrogram/raw/types/chat_invite_exported.py +153 -0
  1752. pyrogram/raw/types/chat_invite_importer.py +94 -0
  1753. pyrogram/raw/types/chat_invite_peek.py +71 -0
  1754. pyrogram/raw/types/chat_invite_public_join_requests.py +58 -0
  1755. pyrogram/raw/types/chat_onlines.py +63 -0
  1756. pyrogram/raw/types/chat_participant.py +70 -0
  1757. pyrogram/raw/types/chat_participant_admin.py +70 -0
  1758. pyrogram/raw/types/chat_participant_creator.py +54 -0
  1759. pyrogram/raw/types/chat_participants.py +70 -0
  1760. pyrogram/raw/types/chat_participants_forbidden.py +66 -0
  1761. pyrogram/raw/types/chat_photo.py +79 -0
  1762. pyrogram/raw/types/chat_photo_empty.py +49 -0
  1763. pyrogram/raw/types/chat_reactions_all.py +54 -0
  1764. pyrogram/raw/types/chat_reactions_none.py +49 -0
  1765. pyrogram/raw/types/chat_reactions_some.py +54 -0
  1766. pyrogram/raw/types/chatlists/__init__.py +11 -0
  1767. pyrogram/raw/types/chatlists/chatlist_invite.py +98 -0
  1768. pyrogram/raw/types/chatlists/chatlist_invite_already.py +95 -0
  1769. pyrogram/raw/types/chatlists/chatlist_updates.py +79 -0
  1770. pyrogram/raw/types/chatlists/exported_chatlist_invite.py +71 -0
  1771. pyrogram/raw/types/chatlists/exported_invites.py +79 -0
  1772. pyrogram/raw/types/client_dh_inner_data.py +78 -0
  1773. pyrogram/raw/types/code_settings.py +112 -0
  1774. pyrogram/raw/types/config.py +435 -0
  1775. pyrogram/raw/types/connected_bot.py +70 -0
  1776. pyrogram/raw/types/contact.py +62 -0
  1777. pyrogram/raw/types/contact_birthday.py +62 -0
  1778. pyrogram/raw/types/contact_status.py +71 -0
  1779. pyrogram/raw/types/contacts/__init__.py +17 -0
  1780. pyrogram/raw/types/contacts/blocked.py +79 -0
  1781. pyrogram/raw/types/contacts/blocked_slice.py +87 -0
  1782. pyrogram/raw/types/contacts/contact_birthdays.py +71 -0
  1783. pyrogram/raw/types/contacts/contacts.py +79 -0
  1784. pyrogram/raw/types/contacts/contacts_not_modified.py +58 -0
  1785. pyrogram/raw/types/contacts/found.py +87 -0
  1786. pyrogram/raw/types/contacts/imported_contacts.py +87 -0
  1787. pyrogram/raw/types/contacts/resolved_peer.py +80 -0
  1788. pyrogram/raw/types/contacts/top_peers.py +79 -0
  1789. pyrogram/raw/types/contacts/top_peers_disabled.py +58 -0
  1790. pyrogram/raw/types/contacts/top_peers_not_modified.py +58 -0
  1791. pyrogram/raw/types/data_json.py +65 -0
  1792. pyrogram/raw/types/dc_option.py +117 -0
  1793. pyrogram/raw/types/default_history_ttl.py +63 -0
  1794. pyrogram/raw/types/destroy_auth_key_fail.py +58 -0
  1795. pyrogram/raw/types/destroy_auth_key_none.py +58 -0
  1796. pyrogram/raw/types/destroy_auth_key_ok.py +58 -0
  1797. pyrogram/raw/types/destroy_session_none.py +63 -0
  1798. pyrogram/raw/types/destroy_session_ok.py +63 -0
  1799. pyrogram/raw/types/dh_gen_fail.py +79 -0
  1800. pyrogram/raw/types/dh_gen_ok.py +79 -0
  1801. pyrogram/raw/types/dh_gen_retry.py +79 -0
  1802. pyrogram/raw/types/dialog.py +167 -0
  1803. pyrogram/raw/types/dialog_filter.py +154 -0
  1804. pyrogram/raw/types/dialog_filter_chatlist.py +104 -0
  1805. pyrogram/raw/types/dialog_filter_default.py +49 -0
  1806. pyrogram/raw/types/dialog_filter_suggested.py +71 -0
  1807. pyrogram/raw/types/dialog_folder.py +110 -0
  1808. pyrogram/raw/types/dialog_peer.py +63 -0
  1809. pyrogram/raw/types/dialog_peer_folder.py +63 -0
  1810. pyrogram/raw/types/document.py +144 -0
  1811. pyrogram/raw/types/document_attribute_animated.py +49 -0
  1812. pyrogram/raw/types/document_attribute_audio.py +89 -0
  1813. pyrogram/raw/types/document_attribute_custom_emoji.py +76 -0
  1814. pyrogram/raw/types/document_attribute_filename.py +54 -0
  1815. pyrogram/raw/types/document_attribute_has_stickers.py +49 -0
  1816. pyrogram/raw/types/document_attribute_image_size.py +62 -0
  1817. pyrogram/raw/types/document_attribute_sticker.py +80 -0
  1818. pyrogram/raw/types/document_attribute_video.py +99 -0
  1819. pyrogram/raw/types/document_empty.py +66 -0
  1820. pyrogram/raw/types/draft_message.py +115 -0
  1821. pyrogram/raw/types/draft_message_empty.py +57 -0
  1822. pyrogram/raw/types/email_verification_apple.py +54 -0
  1823. pyrogram/raw/types/email_verification_code.py +54 -0
  1824. pyrogram/raw/types/email_verification_google.py +54 -0
  1825. pyrogram/raw/types/email_verify_purpose_login_change.py +49 -0
  1826. pyrogram/raw/types/email_verify_purpose_login_setup.py +62 -0
  1827. pyrogram/raw/types/email_verify_purpose_passport.py +49 -0
  1828. pyrogram/raw/types/emoji_group.py +70 -0
  1829. pyrogram/raw/types/emoji_group_greeting.py +70 -0
  1830. pyrogram/raw/types/emoji_group_premium.py +62 -0
  1831. pyrogram/raw/types/emoji_keyword.py +62 -0
  1832. pyrogram/raw/types/emoji_keyword_deleted.py +62 -0
  1833. pyrogram/raw/types/emoji_keywords_difference.py +88 -0
  1834. pyrogram/raw/types/emoji_language.py +63 -0
  1835. pyrogram/raw/types/emoji_list.py +75 -0
  1836. pyrogram/raw/types/emoji_list_not_modified.py +62 -0
  1837. pyrogram/raw/types/emoji_status.py +54 -0
  1838. pyrogram/raw/types/emoji_status_empty.py +49 -0
  1839. pyrogram/raw/types/emoji_status_until.py +62 -0
  1840. pyrogram/raw/types/emoji_url.py +63 -0
  1841. pyrogram/raw/types/encrypted_chat.py +112 -0
  1842. pyrogram/raw/types/encrypted_chat_discarded.py +72 -0
  1843. pyrogram/raw/types/encrypted_chat_empty.py +64 -0
  1844. pyrogram/raw/types/encrypted_chat_requested.py +115 -0
  1845. pyrogram/raw/types/encrypted_chat_waiting.py +96 -0
  1846. pyrogram/raw/types/encrypted_file.py +95 -0
  1847. pyrogram/raw/types/encrypted_file_empty.py +58 -0
  1848. pyrogram/raw/types/encrypted_message.py +86 -0
  1849. pyrogram/raw/types/encrypted_message_service.py +78 -0
  1850. pyrogram/raw/types/exported_chatlist_invite.py +82 -0
  1851. pyrogram/raw/types/exported_contact_token.py +71 -0
  1852. pyrogram/raw/types/exported_message_link.py +71 -0
  1853. pyrogram/raw/types/exported_story_link.py +63 -0
  1854. pyrogram/raw/types/fact_check.py +90 -0
  1855. pyrogram/raw/types/file_hash.py +81 -0
  1856. pyrogram/raw/types/folder.py +92 -0
  1857. pyrogram/raw/types/folder_peer.py +62 -0
  1858. pyrogram/raw/types/forum_topic.py +193 -0
  1859. pyrogram/raw/types/forum_topic_deleted.py +54 -0
  1860. pyrogram/raw/types/found_story.py +62 -0
  1861. pyrogram/raw/types/fragment/__init__.py +7 -0
  1862. pyrogram/raw/types/fragment/collectible_info.py +103 -0
  1863. pyrogram/raw/types/game.py +106 -0
  1864. pyrogram/raw/types/geo_point.py +81 -0
  1865. pyrogram/raw/types/geo_point_address.py +83 -0
  1866. pyrogram/raw/types/geo_point_empty.py +49 -0
  1867. pyrogram/raw/types/global_privacy_settings.py +88 -0
  1868. pyrogram/raw/types/group_call.py +181 -0
  1869. pyrogram/raw/types/group_call_discarded.py +70 -0
  1870. pyrogram/raw/types/group_call_participant.py +188 -0
  1871. pyrogram/raw/types/group_call_participant_video.py +79 -0
  1872. pyrogram/raw/types/group_call_participant_video_source_group.py +62 -0
  1873. pyrogram/raw/types/group_call_stream_channel.py +70 -0
  1874. pyrogram/raw/types/help/__init__.py +39 -0
  1875. pyrogram/raw/types/help/app_config.py +71 -0
  1876. pyrogram/raw/types/help/app_config_not_modified.py +58 -0
  1877. pyrogram/raw/types/help/app_update.py +124 -0
  1878. pyrogram/raw/types/help/config_simple.py +70 -0
  1879. pyrogram/raw/types/help/countries_list.py +71 -0
  1880. pyrogram/raw/types/help/countries_list_not_modified.py +58 -0
  1881. pyrogram/raw/types/help/country.py +87 -0
  1882. pyrogram/raw/types/help/country_code.py +76 -0
  1883. pyrogram/raw/types/help/deep_link_info.py +81 -0
  1884. pyrogram/raw/types/help/deep_link_info_empty.py +58 -0
  1885. pyrogram/raw/types/help/invite_text.py +63 -0
  1886. pyrogram/raw/types/help/no_app_update.py +58 -0
  1887. pyrogram/raw/types/help/passport_config.py +71 -0
  1888. pyrogram/raw/types/help/passport_config_not_modified.py +58 -0
  1889. pyrogram/raw/types/help/peer_color_option.py +100 -0
  1890. pyrogram/raw/types/help/peer_color_profile_set.py +70 -0
  1891. pyrogram/raw/types/help/peer_color_set.py +54 -0
  1892. pyrogram/raw/types/help/peer_colors.py +72 -0
  1893. pyrogram/raw/types/help/peer_colors_not_modified.py +59 -0
  1894. pyrogram/raw/types/help/premium_promo.py +103 -0
  1895. pyrogram/raw/types/help/promo_data.py +113 -0
  1896. pyrogram/raw/types/help/promo_data_empty.py +63 -0
  1897. pyrogram/raw/types/help/recent_me_urls.py +79 -0
  1898. pyrogram/raw/types/help/support.py +71 -0
  1899. pyrogram/raw/types/help/support_name.py +63 -0
  1900. pyrogram/raw/types/help/terms_of_service.py +87 -0
  1901. pyrogram/raw/types/help/terms_of_service_update.py +71 -0
  1902. pyrogram/raw/types/help/terms_of_service_update_empty.py +63 -0
  1903. pyrogram/raw/types/help/timezones_list.py +71 -0
  1904. pyrogram/raw/types/help/timezones_list_not_modified.py +58 -0
  1905. pyrogram/raw/types/help/user_info.py +88 -0
  1906. pyrogram/raw/types/help/user_info_empty.py +59 -0
  1907. pyrogram/raw/types/high_score.py +70 -0
  1908. pyrogram/raw/types/http_wait.py +70 -0
  1909. pyrogram/raw/types/imported_contact.py +62 -0
  1910. pyrogram/raw/types/inline_bot_switch_pm.py +62 -0
  1911. pyrogram/raw/types/inline_bot_web_view.py +62 -0
  1912. pyrogram/raw/types/inline_query_peer_type_bot_pm.py +49 -0
  1913. pyrogram/raw/types/inline_query_peer_type_broadcast.py +49 -0
  1914. pyrogram/raw/types/inline_query_peer_type_chat.py +49 -0
  1915. pyrogram/raw/types/inline_query_peer_type_megagroup.py +49 -0
  1916. pyrogram/raw/types/inline_query_peer_type_pm.py +49 -0
  1917. pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +49 -0
  1918. pyrogram/raw/types/input_app_event.py +78 -0
  1919. pyrogram/raw/types/input_bot_app_id.py +62 -0
  1920. pyrogram/raw/types/input_bot_app_short_name.py +62 -0
  1921. pyrogram/raw/types/input_bot_inline_message_game.py +58 -0
  1922. pyrogram/raw/types/input_bot_inline_message_id.py +70 -0
  1923. pyrogram/raw/types/input_bot_inline_message_id64.py +78 -0
  1924. pyrogram/raw/types/input_bot_inline_message_media_auto.py +82 -0
  1925. pyrogram/raw/types/input_bot_inline_message_media_contact.py +90 -0
  1926. pyrogram/raw/types/input_bot_inline_message_media_geo.py +93 -0
  1927. pyrogram/raw/types/input_bot_inline_message_media_invoice.py +116 -0
  1928. pyrogram/raw/types/input_bot_inline_message_media_venue.py +106 -0
  1929. pyrogram/raw/types/input_bot_inline_message_media_web_page.py +108 -0
  1930. pyrogram/raw/types/input_bot_inline_message_text.py +88 -0
  1931. pyrogram/raw/types/input_bot_inline_result.py +119 -0
  1932. pyrogram/raw/types/input_bot_inline_result_document.py +98 -0
  1933. pyrogram/raw/types/input_bot_inline_result_game.py +70 -0
  1934. pyrogram/raw/types/input_bot_inline_result_photo.py +78 -0
  1935. pyrogram/raw/types/input_business_away_message.py +78 -0
  1936. pyrogram/raw/types/input_business_bot_recipients.py +98 -0
  1937. pyrogram/raw/types/input_business_chat_link.py +75 -0
  1938. pyrogram/raw/types/input_business_greeting_message.py +70 -0
  1939. pyrogram/raw/types/input_business_intro.py +74 -0
  1940. pyrogram/raw/types/input_business_recipients.py +88 -0
  1941. pyrogram/raw/types/input_channel.py +62 -0
  1942. pyrogram/raw/types/input_channel_empty.py +49 -0
  1943. pyrogram/raw/types/input_channel_from_message.py +70 -0
  1944. pyrogram/raw/types/input_chat_photo.py +54 -0
  1945. pyrogram/raw/types/input_chat_photo_empty.py +49 -0
  1946. pyrogram/raw/types/input_chat_uploaded_photo.py +87 -0
  1947. pyrogram/raw/types/input_chatlist_dialog_filter.py +54 -0
  1948. pyrogram/raw/types/input_check_password_empty.py +49 -0
  1949. pyrogram/raw/types/input_check_password_srp.py +70 -0
  1950. pyrogram/raw/types/input_client_proxy.py +62 -0
  1951. pyrogram/raw/types/input_collectible_phone.py +54 -0
  1952. pyrogram/raw/types/input_collectible_username.py +54 -0
  1953. pyrogram/raw/types/input_dialog_peer.py +54 -0
  1954. pyrogram/raw/types/input_dialog_peer_folder.py +54 -0
  1955. pyrogram/raw/types/input_document.py +70 -0
  1956. pyrogram/raw/types/input_document_empty.py +49 -0
  1957. pyrogram/raw/types/input_document_file_location.py +78 -0
  1958. pyrogram/raw/types/input_encrypted_chat.py +62 -0
  1959. pyrogram/raw/types/input_encrypted_file.py +62 -0
  1960. pyrogram/raw/types/input_encrypted_file_big_uploaded.py +70 -0
  1961. pyrogram/raw/types/input_encrypted_file_empty.py +49 -0
  1962. pyrogram/raw/types/input_encrypted_file_location.py +62 -0
  1963. pyrogram/raw/types/input_encrypted_file_uploaded.py +78 -0
  1964. pyrogram/raw/types/input_file.py +78 -0
  1965. pyrogram/raw/types/input_file_big.py +70 -0
  1966. pyrogram/raw/types/input_file_location.py +78 -0
  1967. pyrogram/raw/types/input_folder_peer.py +62 -0
  1968. pyrogram/raw/types/input_game_id.py +62 -0
  1969. pyrogram/raw/types/input_game_short_name.py +62 -0
  1970. pyrogram/raw/types/input_geo_point.py +73 -0
  1971. pyrogram/raw/types/input_geo_point_empty.py +49 -0
  1972. pyrogram/raw/types/input_group_call.py +62 -0
  1973. pyrogram/raw/types/input_group_call_stream.py +90 -0
  1974. pyrogram/raw/types/input_invoice_message.py +62 -0
  1975. pyrogram/raw/types/input_invoice_premium_gift_code.py +62 -0
  1976. pyrogram/raw/types/input_invoice_slug.py +54 -0
  1977. pyrogram/raw/types/input_invoice_stars.py +54 -0
  1978. pyrogram/raw/types/input_keyboard_button_request_peer.py +98 -0
  1979. pyrogram/raw/types/input_keyboard_button_url_auth.py +87 -0
  1980. pyrogram/raw/types/input_keyboard_button_user_profile.py +62 -0
  1981. pyrogram/raw/types/input_media_area_channel_post.py +70 -0
  1982. pyrogram/raw/types/input_media_area_venue.py +70 -0
  1983. pyrogram/raw/types/input_media_contact.py +78 -0
  1984. pyrogram/raw/types/input_media_dice.py +54 -0
  1985. pyrogram/raw/types/input_media_document.py +80 -0
  1986. pyrogram/raw/types/input_media_document_external.py +71 -0
  1987. pyrogram/raw/types/input_media_empty.py +49 -0
  1988. pyrogram/raw/types/input_media_game.py +54 -0
  1989. pyrogram/raw/types/input_media_geo_live.py +89 -0
  1990. pyrogram/raw/types/input_media_geo_point.py +54 -0
  1991. pyrogram/raw/types/input_media_invoice.py +126 -0
  1992. pyrogram/raw/types/input_media_paid_media.py +62 -0
  1993. pyrogram/raw/types/input_media_photo.py +71 -0
  1994. pyrogram/raw/types/input_media_photo_external.py +71 -0
  1995. pyrogram/raw/types/input_media_poll.py +85 -0
  1996. pyrogram/raw/types/input_media_story.py +62 -0
  1997. pyrogram/raw/types/input_media_uploaded_document.py +119 -0
  1998. pyrogram/raw/types/input_media_uploaded_photo.py +81 -0
  1999. pyrogram/raw/types/input_media_venue.py +94 -0
  2000. pyrogram/raw/types/input_media_web_page.py +74 -0
  2001. pyrogram/raw/types/input_message_callback_query.py +62 -0
  2002. pyrogram/raw/types/input_message_entity_mention_name.py +70 -0
  2003. pyrogram/raw/types/input_message_id.py +54 -0
  2004. pyrogram/raw/types/input_message_pinned.py +49 -0
  2005. pyrogram/raw/types/input_message_reply_to.py +54 -0
  2006. pyrogram/raw/types/input_messages_filter_chat_photos.py +49 -0
  2007. pyrogram/raw/types/input_messages_filter_contacts.py +49 -0
  2008. pyrogram/raw/types/input_messages_filter_document.py +49 -0
  2009. pyrogram/raw/types/input_messages_filter_empty.py +49 -0
  2010. pyrogram/raw/types/input_messages_filter_geo.py +49 -0
  2011. pyrogram/raw/types/input_messages_filter_gif.py +49 -0
  2012. pyrogram/raw/types/input_messages_filter_music.py +49 -0
  2013. pyrogram/raw/types/input_messages_filter_my_mentions.py +49 -0
  2014. pyrogram/raw/types/input_messages_filter_phone_calls.py +54 -0
  2015. pyrogram/raw/types/input_messages_filter_photo_video.py +49 -0
  2016. pyrogram/raw/types/input_messages_filter_photos.py +49 -0
  2017. pyrogram/raw/types/input_messages_filter_pinned.py +49 -0
  2018. pyrogram/raw/types/input_messages_filter_round_video.py +49 -0
  2019. pyrogram/raw/types/input_messages_filter_round_voice.py +49 -0
  2020. pyrogram/raw/types/input_messages_filter_url.py +49 -0
  2021. pyrogram/raw/types/input_messages_filter_video.py +49 -0
  2022. pyrogram/raw/types/input_messages_filter_voice.py +49 -0
  2023. pyrogram/raw/types/input_notify_broadcasts.py +49 -0
  2024. pyrogram/raw/types/input_notify_chats.py +49 -0
  2025. pyrogram/raw/types/input_notify_forum_topic.py +62 -0
  2026. pyrogram/raw/types/input_notify_peer.py +54 -0
  2027. pyrogram/raw/types/input_notify_users.py +49 -0
  2028. pyrogram/raw/types/input_payment_credentials.py +62 -0
  2029. pyrogram/raw/types/input_payment_credentials_apple_pay.py +54 -0
  2030. pyrogram/raw/types/input_payment_credentials_google_pay.py +54 -0
  2031. pyrogram/raw/types/input_payment_credentials_saved.py +62 -0
  2032. pyrogram/raw/types/input_peer_channel.py +62 -0
  2033. pyrogram/raw/types/input_peer_channel_from_message.py +70 -0
  2034. pyrogram/raw/types/input_peer_chat.py +54 -0
  2035. pyrogram/raw/types/input_peer_empty.py +49 -0
  2036. pyrogram/raw/types/input_peer_notify_settings.py +113 -0
  2037. pyrogram/raw/types/input_peer_photo_file_location.py +70 -0
  2038. pyrogram/raw/types/input_peer_photo_file_location_legacy.py +78 -0
  2039. pyrogram/raw/types/input_peer_self.py +49 -0
  2040. pyrogram/raw/types/input_peer_user.py +62 -0
  2041. pyrogram/raw/types/input_peer_user_from_message.py +70 -0
  2042. pyrogram/raw/types/input_phone_call.py +62 -0
  2043. pyrogram/raw/types/input_phone_contact.py +78 -0
  2044. pyrogram/raw/types/input_photo.py +70 -0
  2045. pyrogram/raw/types/input_photo_empty.py +49 -0
  2046. pyrogram/raw/types/input_photo_file_location.py +78 -0
  2047. pyrogram/raw/types/input_photo_legacy_file_location.py +94 -0
  2048. pyrogram/raw/types/input_privacy_key_about.py +49 -0
  2049. pyrogram/raw/types/input_privacy_key_added_by_phone.py +49 -0
  2050. pyrogram/raw/types/input_privacy_key_birthday.py +49 -0
  2051. pyrogram/raw/types/input_privacy_key_chat_invite.py +49 -0
  2052. pyrogram/raw/types/input_privacy_key_forwards.py +49 -0
  2053. pyrogram/raw/types/input_privacy_key_phone_call.py +49 -0
  2054. pyrogram/raw/types/input_privacy_key_phone_number.py +49 -0
  2055. pyrogram/raw/types/input_privacy_key_phone_p2_p.py +49 -0
  2056. pyrogram/raw/types/input_privacy_key_profile_photo.py +49 -0
  2057. pyrogram/raw/types/input_privacy_key_status_timestamp.py +49 -0
  2058. pyrogram/raw/types/input_privacy_key_voice_messages.py +49 -0
  2059. pyrogram/raw/types/input_privacy_value_allow_all.py +49 -0
  2060. pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +54 -0
  2061. pyrogram/raw/types/input_privacy_value_allow_close_friends.py +49 -0
  2062. pyrogram/raw/types/input_privacy_value_allow_contacts.py +49 -0
  2063. pyrogram/raw/types/input_privacy_value_allow_premium.py +49 -0
  2064. pyrogram/raw/types/input_privacy_value_allow_users.py +54 -0
  2065. pyrogram/raw/types/input_privacy_value_disallow_all.py +49 -0
  2066. pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +54 -0
  2067. pyrogram/raw/types/input_privacy_value_disallow_contacts.py +49 -0
  2068. pyrogram/raw/types/input_privacy_value_disallow_users.py +54 -0
  2069. pyrogram/raw/types/input_quick_reply_shortcut.py +54 -0
  2070. pyrogram/raw/types/input_quick_reply_shortcut_id.py +54 -0
  2071. pyrogram/raw/types/input_reply_to_message.py +103 -0
  2072. pyrogram/raw/types/input_reply_to_story.py +62 -0
  2073. pyrogram/raw/types/input_report_reason_child_abuse.py +49 -0
  2074. pyrogram/raw/types/input_report_reason_copyright.py +49 -0
  2075. pyrogram/raw/types/input_report_reason_fake.py +49 -0
  2076. pyrogram/raw/types/input_report_reason_geo_irrelevant.py +49 -0
  2077. pyrogram/raw/types/input_report_reason_illegal_drugs.py +49 -0
  2078. pyrogram/raw/types/input_report_reason_other.py +49 -0
  2079. pyrogram/raw/types/input_report_reason_personal_details.py +49 -0
  2080. pyrogram/raw/types/input_report_reason_pornography.py +49 -0
  2081. pyrogram/raw/types/input_report_reason_spam.py +49 -0
  2082. pyrogram/raw/types/input_report_reason_violence.py +49 -0
  2083. pyrogram/raw/types/input_secure_file.py +62 -0
  2084. pyrogram/raw/types/input_secure_file_location.py +62 -0
  2085. pyrogram/raw/types/input_secure_file_uploaded.py +86 -0
  2086. pyrogram/raw/types/input_secure_value.py +126 -0
  2087. pyrogram/raw/types/input_single_media.py +82 -0
  2088. pyrogram/raw/types/input_stars_transaction.py +62 -0
  2089. pyrogram/raw/types/input_sticker_set_animated_emoji.py +49 -0
  2090. pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +49 -0
  2091. pyrogram/raw/types/input_sticker_set_dice.py +54 -0
  2092. pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +49 -0
  2093. pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +49 -0
  2094. pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +49 -0
  2095. pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +49 -0
  2096. pyrogram/raw/types/input_sticker_set_empty.py +49 -0
  2097. pyrogram/raw/types/input_sticker_set_id.py +62 -0
  2098. pyrogram/raw/types/input_sticker_set_item.py +83 -0
  2099. pyrogram/raw/types/input_sticker_set_premium_gifts.py +49 -0
  2100. pyrogram/raw/types/input_sticker_set_short_name.py +54 -0
  2101. pyrogram/raw/types/input_sticker_set_thumb.py +62 -0
  2102. pyrogram/raw/types/input_sticker_set_thumb_legacy.py +70 -0
  2103. pyrogram/raw/types/input_stickered_media_document.py +54 -0
  2104. pyrogram/raw/types/input_stickered_media_photo.py +54 -0
  2105. pyrogram/raw/types/input_store_payment_gift_premium.py +70 -0
  2106. pyrogram/raw/types/input_store_payment_premium_gift_code.py +82 -0
  2107. pyrogram/raw/types/input_store_payment_premium_giveaway.py +129 -0
  2108. pyrogram/raw/types/input_store_payment_premium_subscription.py +60 -0
  2109. pyrogram/raw/types/input_store_payment_stars.py +73 -0
  2110. pyrogram/raw/types/input_takeout_file_location.py +49 -0
  2111. pyrogram/raw/types/input_theme.py +62 -0
  2112. pyrogram/raw/types/input_theme_settings.py +109 -0
  2113. pyrogram/raw/types/input_theme_slug.py +54 -0
  2114. pyrogram/raw/types/input_user.py +62 -0
  2115. pyrogram/raw/types/input_user_empty.py +49 -0
  2116. pyrogram/raw/types/input_user_from_message.py +70 -0
  2117. pyrogram/raw/types/input_user_self.py +49 -0
  2118. pyrogram/raw/types/input_wall_paper.py +62 -0
  2119. pyrogram/raw/types/input_wall_paper_no_file.py +54 -0
  2120. pyrogram/raw/types/input_wall_paper_slug.py +54 -0
  2121. pyrogram/raw/types/input_web_document.py +78 -0
  2122. pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +82 -0
  2123. pyrogram/raw/types/input_web_file_geo_point_location.py +94 -0
  2124. pyrogram/raw/types/input_web_file_location.py +62 -0
  2125. pyrogram/raw/types/invoice.py +146 -0
  2126. pyrogram/raw/types/ip_port.py +62 -0
  2127. pyrogram/raw/types/ip_port_secret.py +70 -0
  2128. pyrogram/raw/types/json_array.py +54 -0
  2129. pyrogram/raw/types/json_bool.py +54 -0
  2130. pyrogram/raw/types/json_null.py +49 -0
  2131. pyrogram/raw/types/json_number.py +54 -0
  2132. pyrogram/raw/types/json_object.py +54 -0
  2133. pyrogram/raw/types/json_object_value.py +62 -0
  2134. pyrogram/raw/types/json_string.py +54 -0
  2135. pyrogram/raw/types/keyboard_button.py +54 -0
  2136. pyrogram/raw/types/keyboard_button_buy.py +54 -0
  2137. pyrogram/raw/types/keyboard_button_callback.py +70 -0
  2138. pyrogram/raw/types/keyboard_button_game.py +54 -0
  2139. pyrogram/raw/types/keyboard_button_request_geo_location.py +54 -0
  2140. pyrogram/raw/types/keyboard_button_request_peer.py +78 -0
  2141. pyrogram/raw/types/keyboard_button_request_phone.py +54 -0
  2142. pyrogram/raw/types/keyboard_button_request_poll.py +65 -0
  2143. pyrogram/raw/types/keyboard_button_row.py +54 -0
  2144. pyrogram/raw/types/keyboard_button_simple_web_view.py +62 -0
  2145. pyrogram/raw/types/keyboard_button_switch_inline.py +80 -0
  2146. pyrogram/raw/types/keyboard_button_url.py +62 -0
  2147. pyrogram/raw/types/keyboard_button_url_auth.py +81 -0
  2148. pyrogram/raw/types/keyboard_button_user_profile.py +62 -0
  2149. pyrogram/raw/types/keyboard_button_web_view.py +62 -0
  2150. pyrogram/raw/types/labeled_price.py +62 -0
  2151. pyrogram/raw/types/lang_pack_difference.py +88 -0
  2152. pyrogram/raw/types/lang_pack_language.py +141 -0
  2153. pyrogram/raw/types/lang_pack_string.py +71 -0
  2154. pyrogram/raw/types/lang_pack_string_deleted.py +63 -0
  2155. pyrogram/raw/types/lang_pack_string_pluralized.py +118 -0
  2156. pyrogram/raw/types/mask_coords.py +78 -0
  2157. pyrogram/raw/types/media_area_channel_post.py +70 -0
  2158. pyrogram/raw/types/media_area_coordinates.py +97 -0
  2159. pyrogram/raw/types/media_area_geo_point.py +74 -0
  2160. pyrogram/raw/types/media_area_suggested_reaction.py +76 -0
  2161. pyrogram/raw/types/media_area_url.py +62 -0
  2162. pyrogram/raw/types/media_area_venue.py +102 -0
  2163. pyrogram/raw/types/message.py +365 -0
  2164. pyrogram/raw/types/message_action_boost_apply.py +54 -0
  2165. pyrogram/raw/types/message_action_bot_allowed.py +79 -0
  2166. pyrogram/raw/types/message_action_channel_create.py +54 -0
  2167. pyrogram/raw/types/message_action_channel_migrate_from.py +62 -0
  2168. pyrogram/raw/types/message_action_chat_add_user.py +54 -0
  2169. pyrogram/raw/types/message_action_chat_create.py +62 -0
  2170. pyrogram/raw/types/message_action_chat_delete_photo.py +49 -0
  2171. pyrogram/raw/types/message_action_chat_delete_user.py +54 -0
  2172. pyrogram/raw/types/message_action_chat_edit_photo.py +54 -0
  2173. pyrogram/raw/types/message_action_chat_edit_title.py +54 -0
  2174. pyrogram/raw/types/message_action_chat_joined_by_link.py +54 -0
  2175. pyrogram/raw/types/message_action_chat_joined_by_request.py +49 -0
  2176. pyrogram/raw/types/message_action_chat_migrate_to.py +54 -0
  2177. pyrogram/raw/types/message_action_contact_sign_up.py +49 -0
  2178. pyrogram/raw/types/message_action_custom_action.py +54 -0
  2179. pyrogram/raw/types/message_action_empty.py +49 -0
  2180. pyrogram/raw/types/message_action_game_score.py +62 -0
  2181. pyrogram/raw/types/message_action_geo_proximity_reached.py +70 -0
  2182. pyrogram/raw/types/message_action_gift_code.py +122 -0
  2183. pyrogram/raw/types/message_action_gift_premium.py +90 -0
  2184. pyrogram/raw/types/message_action_giveaway_launch.py +49 -0
  2185. pyrogram/raw/types/message_action_giveaway_results.py +62 -0
  2186. pyrogram/raw/types/message_action_group_call.py +65 -0
  2187. pyrogram/raw/types/message_action_group_call_scheduled.py +62 -0
  2188. pyrogram/raw/types/message_action_history_clear.py +49 -0
  2189. pyrogram/raw/types/message_action_invite_to_group_call.py +62 -0
  2190. pyrogram/raw/types/message_action_payment_refunded.py +89 -0
  2191. pyrogram/raw/types/message_action_payment_sent.py +85 -0
  2192. pyrogram/raw/types/message_action_payment_sent_me.py +111 -0
  2193. pyrogram/raw/types/message_action_phone_call.py +81 -0
  2194. pyrogram/raw/types/message_action_pin_message.py +49 -0
  2195. pyrogram/raw/types/message_action_requested_peer.py +62 -0
  2196. pyrogram/raw/types/message_action_requested_peer_sent_me.py +62 -0
  2197. pyrogram/raw/types/message_action_screenshot_taken.py +49 -0
  2198. pyrogram/raw/types/message_action_secure_values_sent.py +54 -0
  2199. pyrogram/raw/types/message_action_secure_values_sent_me.py +62 -0
  2200. pyrogram/raw/types/message_action_set_chat_theme.py +54 -0
  2201. pyrogram/raw/types/message_action_set_chat_wall_paper.py +68 -0
  2202. pyrogram/raw/types/message_action_set_messages_ttl.py +65 -0
  2203. pyrogram/raw/types/message_action_suggest_profile_photo.py +54 -0
  2204. pyrogram/raw/types/message_action_topic_create.py +73 -0
  2205. pyrogram/raw/types/message_action_topic_edit.py +84 -0
  2206. pyrogram/raw/types/message_action_web_view_data_sent.py +54 -0
  2207. pyrogram/raw/types/message_action_web_view_data_sent_me.py +62 -0
  2208. pyrogram/raw/types/message_empty.py +66 -0
  2209. pyrogram/raw/types/message_entity_bank_card.py +62 -0
  2210. pyrogram/raw/types/message_entity_blockquote.py +70 -0
  2211. pyrogram/raw/types/message_entity_bold.py +62 -0
  2212. pyrogram/raw/types/message_entity_bot_command.py +62 -0
  2213. pyrogram/raw/types/message_entity_cashtag.py +62 -0
  2214. pyrogram/raw/types/message_entity_code.py +62 -0
  2215. pyrogram/raw/types/message_entity_custom_emoji.py +70 -0
  2216. pyrogram/raw/types/message_entity_email.py +62 -0
  2217. pyrogram/raw/types/message_entity_hashtag.py +62 -0
  2218. pyrogram/raw/types/message_entity_italic.py +62 -0
  2219. pyrogram/raw/types/message_entity_mention.py +62 -0
  2220. pyrogram/raw/types/message_entity_mention_name.py +70 -0
  2221. pyrogram/raw/types/message_entity_phone.py +62 -0
  2222. pyrogram/raw/types/message_entity_pre.py +70 -0
  2223. pyrogram/raw/types/message_entity_spoiler.py +62 -0
  2224. pyrogram/raw/types/message_entity_strike.py +62 -0
  2225. pyrogram/raw/types/message_entity_text_url.py +70 -0
  2226. pyrogram/raw/types/message_entity_underline.py +62 -0
  2227. pyrogram/raw/types/message_entity_unknown.py +62 -0
  2228. pyrogram/raw/types/message_entity_url.py +62 -0
  2229. pyrogram/raw/types/message_extended_media.py +54 -0
  2230. pyrogram/raw/types/message_extended_media_preview.py +85 -0
  2231. pyrogram/raw/types/message_fwd_header.py +161 -0
  2232. pyrogram/raw/types/message_media_contact.py +97 -0
  2233. pyrogram/raw/types/message_media_dice.py +73 -0
  2234. pyrogram/raw/types/message_media_document.py +118 -0
  2235. pyrogram/raw/types/message_media_empty.py +60 -0
  2236. pyrogram/raw/types/message_media_game.py +65 -0
  2237. pyrogram/raw/types/message_media_geo.py +65 -0
  2238. pyrogram/raw/types/message_media_geo_live.py +93 -0
  2239. pyrogram/raw/types/message_media_giveaway.py +122 -0
  2240. pyrogram/raw/types/message_media_giveaway_results.py +145 -0
  2241. pyrogram/raw/types/message_media_invoice.py +140 -0
  2242. pyrogram/raw/types/message_media_paid_media.py +73 -0
  2243. pyrogram/raw/types/message_media_photo.py +84 -0
  2244. pyrogram/raw/types/message_media_poll.py +73 -0
  2245. pyrogram/raw/types/message_media_story.py +91 -0
  2246. pyrogram/raw/types/message_media_unsupported.py +60 -0
  2247. pyrogram/raw/types/message_media_venue.py +105 -0
  2248. pyrogram/raw/types/message_media_web_page.py +91 -0
  2249. pyrogram/raw/types/message_peer_reaction.py +90 -0
  2250. pyrogram/raw/types/message_peer_vote.py +70 -0
  2251. pyrogram/raw/types/message_peer_vote_input_option.py +62 -0
  2252. pyrogram/raw/types/message_peer_vote_multiple.py +70 -0
  2253. pyrogram/raw/types/message_range.py +71 -0
  2254. pyrogram/raw/types/message_reactions.py +84 -0
  2255. pyrogram/raw/types/message_replies.py +107 -0
  2256. pyrogram/raw/types/message_reply_header.py +142 -0
  2257. pyrogram/raw/types/message_reply_story_header.py +62 -0
  2258. pyrogram/raw/types/message_service.py +145 -0
  2259. pyrogram/raw/types/message_views.py +76 -0
  2260. pyrogram/raw/types/messages/__init__.py +89 -0
  2261. pyrogram/raw/types/messages/affected_found_messages.py +87 -0
  2262. pyrogram/raw/types/messages/affected_history.py +85 -0
  2263. pyrogram/raw/types/messages/affected_messages.py +74 -0
  2264. pyrogram/raw/types/messages/all_stickers.py +73 -0
  2265. pyrogram/raw/types/messages/all_stickers_not_modified.py +60 -0
  2266. pyrogram/raw/types/messages/archived_stickers.py +71 -0
  2267. pyrogram/raw/types/messages/available_effects.py +79 -0
  2268. pyrogram/raw/types/messages/available_effects_not_modified.py +58 -0
  2269. pyrogram/raw/types/messages/available_reactions.py +71 -0
  2270. pyrogram/raw/types/messages/available_reactions_not_modified.py +58 -0
  2271. pyrogram/raw/types/messages/bot_app.py +83 -0
  2272. pyrogram/raw/types/messages/bot_callback_answer.py +101 -0
  2273. pyrogram/raw/types/messages/bot_results.py +124 -0
  2274. pyrogram/raw/types/messages/channel_messages.py +134 -0
  2275. pyrogram/raw/types/messages/chat_admins_with_invites.py +71 -0
  2276. pyrogram/raw/types/messages/chat_full.py +80 -0
  2277. pyrogram/raw/types/messages/chat_invite_importers.py +79 -0
  2278. pyrogram/raw/types/messages/chats.py +70 -0
  2279. pyrogram/raw/types/messages/chats_slice.py +78 -0
  2280. pyrogram/raw/types/messages/checked_history_import_peer.py +63 -0
  2281. pyrogram/raw/types/messages/dh_config.py +87 -0
  2282. pyrogram/raw/types/messages/dh_config_not_modified.py +63 -0
  2283. pyrogram/raw/types/messages/dialog_filters.py +71 -0
  2284. pyrogram/raw/types/messages/dialogs.py +87 -0
  2285. pyrogram/raw/types/messages/dialogs_not_modified.py +63 -0
  2286. pyrogram/raw/types/messages/dialogs_slice.py +95 -0
  2287. pyrogram/raw/types/messages/discussion_message.py +116 -0
  2288. pyrogram/raw/types/messages/emoji_groups.py +74 -0
  2289. pyrogram/raw/types/messages/emoji_groups_not_modified.py +61 -0
  2290. pyrogram/raw/types/messages/exported_chat_invite.py +72 -0
  2291. pyrogram/raw/types/messages/exported_chat_invite_replaced.py +80 -0
  2292. pyrogram/raw/types/messages/exported_chat_invites.py +79 -0
  2293. pyrogram/raw/types/messages/faved_stickers.py +79 -0
  2294. pyrogram/raw/types/messages/faved_stickers_not_modified.py +58 -0
  2295. pyrogram/raw/types/messages/featured_stickers.py +97 -0
  2296. pyrogram/raw/types/messages/featured_stickers_not_modified.py +65 -0
  2297. pyrogram/raw/types/messages/forum_topics.py +112 -0
  2298. pyrogram/raw/types/messages/found_sticker_sets.py +72 -0
  2299. pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +59 -0
  2300. pyrogram/raw/types/messages/high_scores.py +72 -0
  2301. pyrogram/raw/types/messages/history_import.py +63 -0
  2302. pyrogram/raw/types/messages/history_import_parsed.py +78 -0
  2303. pyrogram/raw/types/messages/inactive_chats.py +79 -0
  2304. pyrogram/raw/types/messages/invited_users.py +73 -0
  2305. pyrogram/raw/types/messages/message_edit_data.py +63 -0
  2306. pyrogram/raw/types/messages/message_reactions_list.py +98 -0
  2307. pyrogram/raw/types/messages/message_views.py +79 -0
  2308. pyrogram/raw/types/messages/messages.py +93 -0
  2309. pyrogram/raw/types/messages/messages_not_modified.py +77 -0
  2310. pyrogram/raw/types/messages/messages_slice.py +127 -0
  2311. pyrogram/raw/types/messages/my_stickers.py +71 -0
  2312. pyrogram/raw/types/messages/peer_dialogs.py +96 -0
  2313. pyrogram/raw/types/messages/peer_settings.py +79 -0
  2314. pyrogram/raw/types/messages/quick_replies.py +87 -0
  2315. pyrogram/raw/types/messages/quick_replies_not_modified.py +58 -0
  2316. pyrogram/raw/types/messages/reactions.py +73 -0
  2317. pyrogram/raw/types/messages/reactions_not_modified.py +60 -0
  2318. pyrogram/raw/types/messages/recent_stickers.py +87 -0
  2319. pyrogram/raw/types/messages/recent_stickers_not_modified.py +58 -0
  2320. pyrogram/raw/types/messages/saved_dialogs.py +88 -0
  2321. pyrogram/raw/types/messages/saved_dialogs_not_modified.py +64 -0
  2322. pyrogram/raw/types/messages/saved_dialogs_slice.py +96 -0
  2323. pyrogram/raw/types/messages/saved_gifs.py +71 -0
  2324. pyrogram/raw/types/messages/saved_gifs_not_modified.py +58 -0
  2325. pyrogram/raw/types/messages/saved_reaction_tags.py +71 -0
  2326. pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +58 -0
  2327. pyrogram/raw/types/messages/search_counter.py +79 -0
  2328. pyrogram/raw/types/messages/search_results_calendar.py +128 -0
  2329. pyrogram/raw/types/messages/search_results_positions.py +71 -0
  2330. pyrogram/raw/types/messages/sent_encrypted_file.py +73 -0
  2331. pyrogram/raw/types/messages/sent_encrypted_message.py +65 -0
  2332. pyrogram/raw/types/messages/sponsored_messages.py +90 -0
  2333. pyrogram/raw/types/messages/sponsored_messages_empty.py +58 -0
  2334. pyrogram/raw/types/messages/sticker_set.py +95 -0
  2335. pyrogram/raw/types/messages/sticker_set_install_result_archive.py +63 -0
  2336. pyrogram/raw/types/messages/sticker_set_install_result_success.py +58 -0
  2337. pyrogram/raw/types/messages/sticker_set_not_modified.py +66 -0
  2338. pyrogram/raw/types/messages/stickers.py +71 -0
  2339. pyrogram/raw/types/messages/stickers_not_modified.py +58 -0
  2340. pyrogram/raw/types/messages/transcribed_audio.py +97 -0
  2341. pyrogram/raw/types/messages/translate_result.py +63 -0
  2342. pyrogram/raw/types/messages/votes_list.py +98 -0
  2343. pyrogram/raw/types/messages/web_page.py +79 -0
  2344. pyrogram/raw/types/missing_invitee.py +68 -0
  2345. pyrogram/raw/types/msg_detailed_info.py +78 -0
  2346. pyrogram/raw/types/msg_new_detailed_info.py +70 -0
  2347. pyrogram/raw/types/msg_resend_ans_req.py +54 -0
  2348. pyrogram/raw/types/msg_resend_req.py +54 -0
  2349. pyrogram/raw/types/msgs_ack.py +54 -0
  2350. pyrogram/raw/types/msgs_all_info.py +62 -0
  2351. pyrogram/raw/types/msgs_state_info.py +62 -0
  2352. pyrogram/raw/types/msgs_state_req.py +54 -0
  2353. pyrogram/raw/types/my_boost.py +91 -0
  2354. pyrogram/raw/types/nearest_dc.py +79 -0
  2355. pyrogram/raw/types/new_session_created.py +70 -0
  2356. pyrogram/raw/types/notification_sound_default.py +49 -0
  2357. pyrogram/raw/types/notification_sound_local.py +62 -0
  2358. pyrogram/raw/types/notification_sound_none.py +49 -0
  2359. pyrogram/raw/types/notification_sound_ringtone.py +54 -0
  2360. pyrogram/raw/types/notify_broadcasts.py +49 -0
  2361. pyrogram/raw/types/notify_chats.py +49 -0
  2362. pyrogram/raw/types/notify_forum_topic.py +62 -0
  2363. pyrogram/raw/types/notify_peer.py +54 -0
  2364. pyrogram/raw/types/notify_users.py +49 -0
  2365. pyrogram/raw/types/outbox_read_date.py +63 -0
  2366. pyrogram/raw/types/page.py +107 -0
  2367. pyrogram/raw/types/page_block_anchor.py +54 -0
  2368. pyrogram/raw/types/page_block_audio.py +62 -0
  2369. pyrogram/raw/types/page_block_author_date.py +62 -0
  2370. pyrogram/raw/types/page_block_blockquote.py +62 -0
  2371. pyrogram/raw/types/page_block_channel.py +54 -0
  2372. pyrogram/raw/types/page_block_collage.py +62 -0
  2373. pyrogram/raw/types/page_block_cover.py +54 -0
  2374. pyrogram/raw/types/page_block_details.py +70 -0
  2375. pyrogram/raw/types/page_block_divider.py +49 -0
  2376. pyrogram/raw/types/page_block_embed.py +113 -0
  2377. pyrogram/raw/types/page_block_embed_post.py +102 -0
  2378. pyrogram/raw/types/page_block_footer.py +54 -0
  2379. pyrogram/raw/types/page_block_header.py +54 -0
  2380. pyrogram/raw/types/page_block_kicker.py +54 -0
  2381. pyrogram/raw/types/page_block_list.py +54 -0
  2382. pyrogram/raw/types/page_block_map.py +86 -0
  2383. pyrogram/raw/types/page_block_ordered_list.py +54 -0
  2384. pyrogram/raw/types/page_block_paragraph.py +54 -0
  2385. pyrogram/raw/types/page_block_photo.py +82 -0
  2386. pyrogram/raw/types/page_block_preformatted.py +62 -0
  2387. pyrogram/raw/types/page_block_pullquote.py +62 -0
  2388. pyrogram/raw/types/page_block_related_articles.py +62 -0
  2389. pyrogram/raw/types/page_block_slideshow.py +62 -0
  2390. pyrogram/raw/types/page_block_subheader.py +54 -0
  2391. pyrogram/raw/types/page_block_subtitle.py +54 -0
  2392. pyrogram/raw/types/page_block_table.py +76 -0
  2393. pyrogram/raw/types/page_block_title.py +54 -0
  2394. pyrogram/raw/types/page_block_unsupported.py +49 -0
  2395. pyrogram/raw/types/page_block_video.py +76 -0
  2396. pyrogram/raw/types/page_caption.py +62 -0
  2397. pyrogram/raw/types/page_list_item_blocks.py +54 -0
  2398. pyrogram/raw/types/page_list_item_text.py +54 -0
  2399. pyrogram/raw/types/page_list_ordered_item_blocks.py +62 -0
  2400. pyrogram/raw/types/page_list_ordered_item_text.py +62 -0
  2401. pyrogram/raw/types/page_related_article.py +109 -0
  2402. pyrogram/raw/types/page_table_cell.py +106 -0
  2403. pyrogram/raw/types/page_table_row.py +54 -0
  2404. pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +78 -0
  2405. pyrogram/raw/types/password_kdf_algo_unknown.py +49 -0
  2406. pyrogram/raw/types/payment_charge.py +62 -0
  2407. pyrogram/raw/types/payment_form_method.py +62 -0
  2408. pyrogram/raw/types/payment_requested_info.py +85 -0
  2409. pyrogram/raw/types/payment_saved_credentials_card.py +62 -0
  2410. pyrogram/raw/types/payments/__init__.py +23 -0
  2411. pyrogram/raw/types/payments/bank_card_data.py +71 -0
  2412. pyrogram/raw/types/payments/checked_gift_code.py +132 -0
  2413. pyrogram/raw/types/payments/exported_invoice.py +63 -0
  2414. pyrogram/raw/types/payments/giveaway_info.py +104 -0
  2415. pyrogram/raw/types/payments/giveaway_info_results.py +110 -0
  2416. pyrogram/raw/types/payments/payment_form.py +192 -0
  2417. pyrogram/raw/types/payments/payment_form_stars.py +115 -0
  2418. pyrogram/raw/types/payments/payment_receipt.py +176 -0
  2419. pyrogram/raw/types/payments/payment_receipt_stars.py +139 -0
  2420. pyrogram/raw/types/payments/payment_result.py +64 -0
  2421. pyrogram/raw/types/payments/payment_verification_needed.py +64 -0
  2422. pyrogram/raw/types/payments/saved_info.py +73 -0
  2423. pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +63 -0
  2424. pyrogram/raw/types/payments/stars_revenue_stats.py +79 -0
  2425. pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +63 -0
  2426. pyrogram/raw/types/payments/stars_status.py +100 -0
  2427. pyrogram/raw/types/payments/validated_requested_info.py +76 -0
  2428. pyrogram/raw/types/peer_blocked.py +62 -0
  2429. pyrogram/raw/types/peer_channel.py +63 -0
  2430. pyrogram/raw/types/peer_chat.py +63 -0
  2431. pyrogram/raw/types/peer_color.py +66 -0
  2432. pyrogram/raw/types/peer_located.py +70 -0
  2433. pyrogram/raw/types/peer_notify_settings.py +162 -0
  2434. pyrogram/raw/types/peer_self_located.py +54 -0
  2435. pyrogram/raw/types/peer_settings.py +159 -0
  2436. pyrogram/raw/types/peer_stories.py +73 -0
  2437. pyrogram/raw/types/peer_user.py +63 -0
  2438. pyrogram/raw/types/phone/__init__.py +13 -0
  2439. pyrogram/raw/types/phone/exported_group_call_invite.py +63 -0
  2440. pyrogram/raw/types/phone/group_call.py +95 -0
  2441. pyrogram/raw/types/phone/group_call_stream_channels.py +63 -0
  2442. pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +71 -0
  2443. pyrogram/raw/types/phone/group_participants.py +103 -0
  2444. pyrogram/raw/types/phone/join_as_peers.py +79 -0
  2445. pyrogram/raw/types/phone/phone_call.py +73 -0
  2446. pyrogram/raw/types/phone_call.py +150 -0
  2447. pyrogram/raw/types/phone_call_accepted.py +110 -0
  2448. pyrogram/raw/types/phone_call_discard_reason_busy.py +49 -0
  2449. pyrogram/raw/types/phone_call_discard_reason_disconnect.py +49 -0
  2450. pyrogram/raw/types/phone_call_discard_reason_hangup.py +49 -0
  2451. pyrogram/raw/types/phone_call_discard_reason_missed.py +49 -0
  2452. pyrogram/raw/types/phone_call_discarded.py +93 -0
  2453. pyrogram/raw/types/phone_call_empty.py +54 -0
  2454. pyrogram/raw/types/phone_call_protocol.py +84 -0
  2455. pyrogram/raw/types/phone_call_requested.py +110 -0
  2456. pyrogram/raw/types/phone_call_waiting.py +111 -0
  2457. pyrogram/raw/types/phone_connection.py +94 -0
  2458. pyrogram/raw/types/phone_connection_webrtc.py +108 -0
  2459. pyrogram/raw/types/photo.py +112 -0
  2460. pyrogram/raw/types/photo_cached_size.py +78 -0
  2461. pyrogram/raw/types/photo_empty.py +54 -0
  2462. pyrogram/raw/types/photo_path_size.py +62 -0
  2463. pyrogram/raw/types/photo_size.py +78 -0
  2464. pyrogram/raw/types/photo_size_empty.py +54 -0
  2465. pyrogram/raw/types/photo_size_progressive.py +78 -0
  2466. pyrogram/raw/types/photo_stripped_size.py +62 -0
  2467. pyrogram/raw/types/photos/__init__.py +9 -0
  2468. pyrogram/raw/types/photos/photo.py +73 -0
  2469. pyrogram/raw/types/photos/photos.py +71 -0
  2470. pyrogram/raw/types/photos/photos_slice.py +79 -0
  2471. pyrogram/raw/types/poll.py +114 -0
  2472. pyrogram/raw/types/poll_answer.py +62 -0
  2473. pyrogram/raw/types/poll_answer_voters.py +76 -0
  2474. pyrogram/raw/types/poll_results.py +102 -0
  2475. pyrogram/raw/types/pong.py +72 -0
  2476. pyrogram/raw/types/popular_contact.py +62 -0
  2477. pyrogram/raw/types/post_address.py +94 -0
  2478. pyrogram/raw/types/post_interaction_counters_message.py +78 -0
  2479. pyrogram/raw/types/post_interaction_counters_story.py +78 -0
  2480. pyrogram/raw/types/pq_inner_data.py +94 -0
  2481. pyrogram/raw/types/pq_inner_data_dc.py +102 -0
  2482. pyrogram/raw/types/pq_inner_data_temp.py +102 -0
  2483. pyrogram/raw/types/pq_inner_data_temp_dc.py +110 -0
  2484. pyrogram/raw/types/premium/__init__.py +9 -0
  2485. pyrogram/raw/types/premium/boosts_list.py +91 -0
  2486. pyrogram/raw/types/premium/boosts_status.py +143 -0
  2487. pyrogram/raw/types/premium/my_boosts.py +80 -0
  2488. pyrogram/raw/types/premium_gift_code_option.py +107 -0
  2489. pyrogram/raw/types/premium_gift_option.py +89 -0
  2490. pyrogram/raw/types/premium_subscription_option.py +110 -0
  2491. pyrogram/raw/types/prepaid_giveaway.py +78 -0
  2492. pyrogram/raw/types/privacy_key_about.py +49 -0
  2493. pyrogram/raw/types/privacy_key_added_by_phone.py +49 -0
  2494. pyrogram/raw/types/privacy_key_birthday.py +49 -0
  2495. pyrogram/raw/types/privacy_key_chat_invite.py +49 -0
  2496. pyrogram/raw/types/privacy_key_forwards.py +49 -0
  2497. pyrogram/raw/types/privacy_key_phone_call.py +49 -0
  2498. pyrogram/raw/types/privacy_key_phone_number.py +49 -0
  2499. pyrogram/raw/types/privacy_key_phone_p2_p.py +49 -0
  2500. pyrogram/raw/types/privacy_key_profile_photo.py +49 -0
  2501. pyrogram/raw/types/privacy_key_status_timestamp.py +49 -0
  2502. pyrogram/raw/types/privacy_key_voice_messages.py +49 -0
  2503. pyrogram/raw/types/privacy_value_allow_all.py +49 -0
  2504. pyrogram/raw/types/privacy_value_allow_chat_participants.py +54 -0
  2505. pyrogram/raw/types/privacy_value_allow_close_friends.py +49 -0
  2506. pyrogram/raw/types/privacy_value_allow_contacts.py +49 -0
  2507. pyrogram/raw/types/privacy_value_allow_premium.py +49 -0
  2508. pyrogram/raw/types/privacy_value_allow_users.py +54 -0
  2509. pyrogram/raw/types/privacy_value_disallow_all.py +49 -0
  2510. pyrogram/raw/types/privacy_value_disallow_chat_participants.py +54 -0
  2511. pyrogram/raw/types/privacy_value_disallow_contacts.py +49 -0
  2512. pyrogram/raw/types/privacy_value_disallow_users.py +54 -0
  2513. pyrogram/raw/types/public_forward_message.py +54 -0
  2514. pyrogram/raw/types/public_forward_story.py +62 -0
  2515. pyrogram/raw/types/quick_reply.py +78 -0
  2516. pyrogram/raw/types/reaction_count.py +73 -0
  2517. pyrogram/raw/types/reaction_custom_emoji.py +54 -0
  2518. pyrogram/raw/types/reaction_emoji.py +54 -0
  2519. pyrogram/raw/types/reaction_empty.py +49 -0
  2520. pyrogram/raw/types/reaction_notifications_from_all.py +49 -0
  2521. pyrogram/raw/types/reaction_notifications_from_contacts.py +49 -0
  2522. pyrogram/raw/types/reactions_notify_settings.py +94 -0
  2523. pyrogram/raw/types/read_participant_date.py +71 -0
  2524. pyrogram/raw/types/received_notify_message.py +71 -0
  2525. pyrogram/raw/types/recent_me_url_chat.py +62 -0
  2526. pyrogram/raw/types/recent_me_url_chat_invite.py +62 -0
  2527. pyrogram/raw/types/recent_me_url_sticker_set.py +62 -0
  2528. pyrogram/raw/types/recent_me_url_unknown.py +54 -0
  2529. pyrogram/raw/types/recent_me_url_user.py +62 -0
  2530. pyrogram/raw/types/reply_inline_markup.py +54 -0
  2531. pyrogram/raw/types/reply_keyboard_force_reply.py +69 -0
  2532. pyrogram/raw/types/reply_keyboard_hide.py +54 -0
  2533. pyrogram/raw/types/reply_keyboard_markup.py +89 -0
  2534. pyrogram/raw/types/request_peer_type_broadcast.py +83 -0
  2535. pyrogram/raw/types/request_peer_type_chat.py +98 -0
  2536. pyrogram/raw/types/request_peer_type_user.py +66 -0
  2537. pyrogram/raw/types/requested_peer_channel.py +84 -0
  2538. pyrogram/raw/types/requested_peer_chat.py +75 -0
  2539. pyrogram/raw/types/requested_peer_user.py +93 -0
  2540. pyrogram/raw/types/res_pq.py +88 -0
  2541. pyrogram/raw/types/restriction_reason.py +70 -0
  2542. pyrogram/raw/types/rpc_answer_dropped.py +79 -0
  2543. pyrogram/raw/types/rpc_answer_dropped_running.py +58 -0
  2544. pyrogram/raw/types/rpc_answer_unknown.py +58 -0
  2545. pyrogram/raw/types/rpc_error.py +62 -0
  2546. pyrogram/raw/types/rpc_result.py +62 -0
  2547. pyrogram/raw/types/saved_dialog.py +70 -0
  2548. pyrogram/raw/types/saved_phone_contact.py +87 -0
  2549. pyrogram/raw/types/saved_reaction_tag.py +73 -0
  2550. pyrogram/raw/types/search_result_position.py +70 -0
  2551. pyrogram/raw/types/search_results_calendar_period.py +78 -0
  2552. pyrogram/raw/types/secure_credentials_encrypted.py +70 -0
  2553. pyrogram/raw/types/secure_data.py +70 -0
  2554. pyrogram/raw/types/secure_file.py +102 -0
  2555. pyrogram/raw/types/secure_file_empty.py +49 -0
  2556. pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +54 -0
  2557. pyrogram/raw/types/secure_password_kdf_algo_sha512.py +54 -0
  2558. pyrogram/raw/types/secure_password_kdf_algo_unknown.py +49 -0
  2559. pyrogram/raw/types/secure_plain_email.py +54 -0
  2560. pyrogram/raw/types/secure_plain_phone.py +54 -0
  2561. pyrogram/raw/types/secure_required_type.py +74 -0
  2562. pyrogram/raw/types/secure_required_type_one_of.py +54 -0
  2563. pyrogram/raw/types/secure_secret_settings.py +70 -0
  2564. pyrogram/raw/types/secure_value.py +145 -0
  2565. pyrogram/raw/types/secure_value_error.py +70 -0
  2566. pyrogram/raw/types/secure_value_error_data.py +78 -0
  2567. pyrogram/raw/types/secure_value_error_file.py +70 -0
  2568. pyrogram/raw/types/secure_value_error_files.py +70 -0
  2569. pyrogram/raw/types/secure_value_error_front_side.py +70 -0
  2570. pyrogram/raw/types/secure_value_error_reverse_side.py +70 -0
  2571. pyrogram/raw/types/secure_value_error_selfie.py +70 -0
  2572. pyrogram/raw/types/secure_value_error_translation_file.py +70 -0
  2573. pyrogram/raw/types/secure_value_error_translation_files.py +70 -0
  2574. pyrogram/raw/types/secure_value_hash.py +62 -0
  2575. pyrogram/raw/types/secure_value_type_address.py +49 -0
  2576. pyrogram/raw/types/secure_value_type_bank_statement.py +49 -0
  2577. pyrogram/raw/types/secure_value_type_driver_license.py +49 -0
  2578. pyrogram/raw/types/secure_value_type_email.py +49 -0
  2579. pyrogram/raw/types/secure_value_type_identity_card.py +49 -0
  2580. pyrogram/raw/types/secure_value_type_internal_passport.py +49 -0
  2581. pyrogram/raw/types/secure_value_type_passport.py +49 -0
  2582. pyrogram/raw/types/secure_value_type_passport_registration.py +49 -0
  2583. pyrogram/raw/types/secure_value_type_personal_details.py +49 -0
  2584. pyrogram/raw/types/secure_value_type_phone.py +49 -0
  2585. pyrogram/raw/types/secure_value_type_rental_agreement.py +49 -0
  2586. pyrogram/raw/types/secure_value_type_temporary_registration.py +49 -0
  2587. pyrogram/raw/types/secure_value_type_utility_bill.py +49 -0
  2588. pyrogram/raw/types/send_as_peer.py +62 -0
  2589. pyrogram/raw/types/send_message_cancel_action.py +49 -0
  2590. pyrogram/raw/types/send_message_choose_contact_action.py +49 -0
  2591. pyrogram/raw/types/send_message_choose_sticker_action.py +49 -0
  2592. pyrogram/raw/types/send_message_emoji_interaction.py +70 -0
  2593. pyrogram/raw/types/send_message_emoji_interaction_seen.py +54 -0
  2594. pyrogram/raw/types/send_message_game_play_action.py +49 -0
  2595. pyrogram/raw/types/send_message_geo_location_action.py +49 -0
  2596. pyrogram/raw/types/send_message_history_import_action.py +54 -0
  2597. pyrogram/raw/types/send_message_record_audio_action.py +49 -0
  2598. pyrogram/raw/types/send_message_record_round_action.py +49 -0
  2599. pyrogram/raw/types/send_message_record_video_action.py +49 -0
  2600. pyrogram/raw/types/send_message_typing_action.py +49 -0
  2601. pyrogram/raw/types/send_message_upload_audio_action.py +54 -0
  2602. pyrogram/raw/types/send_message_upload_document_action.py +54 -0
  2603. pyrogram/raw/types/send_message_upload_photo_action.py +54 -0
  2604. pyrogram/raw/types/send_message_upload_round_action.py +54 -0
  2605. pyrogram/raw/types/send_message_upload_video_action.py +54 -0
  2606. pyrogram/raw/types/server_dh_inner_data.py +94 -0
  2607. pyrogram/raw/types/server_dh_params_fail.py +79 -0
  2608. pyrogram/raw/types/server_dh_params_ok.py +79 -0
  2609. pyrogram/raw/types/shipping_option.py +70 -0
  2610. pyrogram/raw/types/sms_job.py +79 -0
  2611. pyrogram/raw/types/smsjobs/__init__.py +8 -0
  2612. pyrogram/raw/types/smsjobs/eligible_to_join.py +71 -0
  2613. pyrogram/raw/types/smsjobs/status.py +120 -0
  2614. pyrogram/raw/types/speaking_in_group_call_action.py +49 -0
  2615. pyrogram/raw/types/sponsored_message.py +148 -0
  2616. pyrogram/raw/types/sponsored_message_report_option.py +62 -0
  2617. pyrogram/raw/types/stars_revenue_status.py +87 -0
  2618. pyrogram/raw/types/stars_topup_option.py +96 -0
  2619. pyrogram/raw/types/stars_transaction.py +172 -0
  2620. pyrogram/raw/types/stars_transaction_peer.py +54 -0
  2621. pyrogram/raw/types/stars_transaction_peer_ads.py +49 -0
  2622. pyrogram/raw/types/stars_transaction_peer_app_store.py +49 -0
  2623. pyrogram/raw/types/stars_transaction_peer_fragment.py +49 -0
  2624. pyrogram/raw/types/stars_transaction_peer_play_market.py +49 -0
  2625. pyrogram/raw/types/stars_transaction_peer_premium_bot.py +49 -0
  2626. pyrogram/raw/types/stars_transaction_peer_unsupported.py +49 -0
  2627. pyrogram/raw/types/stats/__init__.py +14 -0
  2628. pyrogram/raw/types/stats/broadcast_revenue_stats.py +87 -0
  2629. pyrogram/raw/types/stats/broadcast_revenue_transactions.py +71 -0
  2630. pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py +63 -0
  2631. pyrogram/raw/types/stats/broadcast_stats.py +231 -0
  2632. pyrogram/raw/types/stats/megagroup_stats.py +191 -0
  2633. pyrogram/raw/types/stats/message_stats.py +71 -0
  2634. pyrogram/raw/types/stats/public_forwards.py +99 -0
  2635. pyrogram/raw/types/stats/story_stats.py +71 -0
  2636. pyrogram/raw/types/stats_abs_value_and_prev.py +62 -0
  2637. pyrogram/raw/types/stats_date_range_days.py +62 -0
  2638. pyrogram/raw/types/stats_graph.py +74 -0
  2639. pyrogram/raw/types/stats_graph_async.py +63 -0
  2640. pyrogram/raw/types/stats_graph_error.py +63 -0
  2641. pyrogram/raw/types/stats_group_top_admin.py +78 -0
  2642. pyrogram/raw/types/stats_group_top_inviter.py +62 -0
  2643. pyrogram/raw/types/stats_group_top_poster.py +70 -0
  2644. pyrogram/raw/types/stats_percent_value.py +62 -0
  2645. pyrogram/raw/types/stats_url.py +54 -0
  2646. pyrogram/raw/types/sticker_keyword.py +62 -0
  2647. pyrogram/raw/types/sticker_pack.py +62 -0
  2648. pyrogram/raw/types/sticker_set.py +184 -0
  2649. pyrogram/raw/types/sticker_set_covered.py +71 -0
  2650. pyrogram/raw/types/sticker_set_full_covered.py +87 -0
  2651. pyrogram/raw/types/sticker_set_multi_covered.py +71 -0
  2652. pyrogram/raw/types/sticker_set_no_covered.py +63 -0
  2653. pyrogram/raw/types/stickers/__init__.py +7 -0
  2654. pyrogram/raw/types/stickers/suggested_short_name.py +63 -0
  2655. pyrogram/raw/types/storage/__init__.py +16 -0
  2656. pyrogram/raw/types/storage/file_gif.py +49 -0
  2657. pyrogram/raw/types/storage/file_jpeg.py +49 -0
  2658. pyrogram/raw/types/storage/file_mov.py +49 -0
  2659. pyrogram/raw/types/storage/file_mp3.py +49 -0
  2660. pyrogram/raw/types/storage/file_mp4.py +49 -0
  2661. pyrogram/raw/types/storage/file_partial.py +49 -0
  2662. pyrogram/raw/types/storage/file_pdf.py +49 -0
  2663. pyrogram/raw/types/storage/file_png.py +49 -0
  2664. pyrogram/raw/types/storage/file_unknown.py +49 -0
  2665. pyrogram/raw/types/storage/file_webp.py +49 -0
  2666. pyrogram/raw/types/stories/__init__.py +14 -0
  2667. pyrogram/raw/types/stories/all_stories.py +111 -0
  2668. pyrogram/raw/types/stories/all_stories_not_modified.py +74 -0
  2669. pyrogram/raw/types/stories/found_stories.py +98 -0
  2670. pyrogram/raw/types/stories/peer_stories.py +79 -0
  2671. pyrogram/raw/types/stories/stories.py +101 -0
  2672. pyrogram/raw/types/stories/story_reactions_list.py +98 -0
  2673. pyrogram/raw/types/stories/story_views.py +71 -0
  2674. pyrogram/raw/types/stories/story_views_list.py +122 -0
  2675. pyrogram/raw/types/stories_stealth_mode.py +66 -0
  2676. pyrogram/raw/types/story_fwd_header.py +82 -0
  2677. pyrogram/raw/types/story_item.py +213 -0
  2678. pyrogram/raw/types/story_item_deleted.py +54 -0
  2679. pyrogram/raw/types/story_item_skipped.py +78 -0
  2680. pyrogram/raw/types/story_reaction.py +70 -0
  2681. pyrogram/raw/types/story_reaction_public_forward.py +54 -0
  2682. pyrogram/raw/types/story_reaction_public_repost.py +62 -0
  2683. pyrogram/raw/types/story_view.py +86 -0
  2684. pyrogram/raw/types/story_view_public_forward.py +68 -0
  2685. pyrogram/raw/types/story_view_public_repost.py +76 -0
  2686. pyrogram/raw/types/story_views.py +100 -0
  2687. pyrogram/raw/types/text_anchor.py +62 -0
  2688. pyrogram/raw/types/text_bold.py +54 -0
  2689. pyrogram/raw/types/text_concat.py +54 -0
  2690. pyrogram/raw/types/text_email.py +62 -0
  2691. pyrogram/raw/types/text_empty.py +49 -0
  2692. pyrogram/raw/types/text_fixed.py +54 -0
  2693. pyrogram/raw/types/text_image.py +70 -0
  2694. pyrogram/raw/types/text_italic.py +54 -0
  2695. pyrogram/raw/types/text_marked.py +54 -0
  2696. pyrogram/raw/types/text_phone.py +62 -0
  2697. pyrogram/raw/types/text_plain.py +54 -0
  2698. pyrogram/raw/types/text_strike.py +54 -0
  2699. pyrogram/raw/types/text_subscript.py +54 -0
  2700. pyrogram/raw/types/text_superscript.py +54 -0
  2701. pyrogram/raw/types/text_underline.py +54 -0
  2702. pyrogram/raw/types/text_url.py +70 -0
  2703. pyrogram/raw/types/text_with_entities.py +62 -0
  2704. pyrogram/raw/types/theme.py +147 -0
  2705. pyrogram/raw/types/theme_settings.py +99 -0
  2706. pyrogram/raw/types/timezone.py +70 -0
  2707. pyrogram/raw/types/top_peer.py +62 -0
  2708. pyrogram/raw/types/top_peer_category_bots_inline.py +49 -0
  2709. pyrogram/raw/types/top_peer_category_bots_pm.py +49 -0
  2710. pyrogram/raw/types/top_peer_category_channels.py +49 -0
  2711. pyrogram/raw/types/top_peer_category_correspondents.py +49 -0
  2712. pyrogram/raw/types/top_peer_category_forward_chats.py +49 -0
  2713. pyrogram/raw/types/top_peer_category_forward_users.py +49 -0
  2714. pyrogram/raw/types/top_peer_category_groups.py +49 -0
  2715. pyrogram/raw/types/top_peer_category_peers.py +70 -0
  2716. pyrogram/raw/types/top_peer_category_phone_calls.py +49 -0
  2717. pyrogram/raw/types/update_attach_menu_bots.py +49 -0
  2718. pyrogram/raw/types/update_auto_save_settings.py +49 -0
  2719. pyrogram/raw/types/update_bot_business_connect.py +62 -0
  2720. pyrogram/raw/types/update_bot_callback_query.py +106 -0
  2721. pyrogram/raw/types/update_bot_chat_boost.py +70 -0
  2722. pyrogram/raw/types/update_bot_chat_invite_requester.py +94 -0
  2723. pyrogram/raw/types/update_bot_commands.py +70 -0
  2724. pyrogram/raw/types/update_bot_delete_business_message.py +78 -0
  2725. pyrogram/raw/types/update_bot_edit_business_message.py +82 -0
  2726. pyrogram/raw/types/update_bot_inline_query.py +100 -0
  2727. pyrogram/raw/types/update_bot_inline_send.py +92 -0
  2728. pyrogram/raw/types/update_bot_menu_button.py +62 -0
  2729. pyrogram/raw/types/update_bot_message_reaction.py +102 -0
  2730. pyrogram/raw/types/update_bot_message_reactions.py +86 -0
  2731. pyrogram/raw/types/update_bot_new_business_message.py +82 -0
  2732. pyrogram/raw/types/update_bot_precheckout_query.py +107 -0
  2733. pyrogram/raw/types/update_bot_shipping_query.py +78 -0
  2734. pyrogram/raw/types/update_bot_stopped.py +78 -0
  2735. pyrogram/raw/types/update_bot_webhook_json.py +54 -0
  2736. pyrogram/raw/types/update_bot_webhook_json_query.py +70 -0
  2737. pyrogram/raw/types/update_broadcast_revenue_transactions.py +62 -0
  2738. pyrogram/raw/types/update_business_bot_callback_query.py +107 -0
  2739. pyrogram/raw/types/update_channel.py +54 -0
  2740. pyrogram/raw/types/update_channel_available_messages.py +62 -0
  2741. pyrogram/raw/types/update_channel_message_forwards.py +70 -0
  2742. pyrogram/raw/types/update_channel_message_views.py +70 -0
  2743. pyrogram/raw/types/update_channel_participant.py +124 -0
  2744. pyrogram/raw/types/update_channel_pinned_topic.py +70 -0
  2745. pyrogram/raw/types/update_channel_pinned_topics.py +66 -0
  2746. pyrogram/raw/types/update_channel_read_messages_contents.py +73 -0
  2747. pyrogram/raw/types/update_channel_too_long.py +65 -0
  2748. pyrogram/raw/types/update_channel_user_typing.py +81 -0
  2749. pyrogram/raw/types/update_channel_view_forum_as_messages.py +62 -0
  2750. pyrogram/raw/types/update_channel_web_page.py +78 -0
  2751. pyrogram/raw/types/update_chat.py +54 -0
  2752. pyrogram/raw/types/update_chat_default_banned_rights.py +70 -0
  2753. pyrogram/raw/types/update_chat_participant.py +118 -0
  2754. pyrogram/raw/types/update_chat_participant_add.py +86 -0
  2755. pyrogram/raw/types/update_chat_participant_admin.py +78 -0
  2756. pyrogram/raw/types/update_chat_participant_delete.py +70 -0
  2757. pyrogram/raw/types/update_chat_participants.py +54 -0
  2758. pyrogram/raw/types/update_chat_user_typing.py +70 -0
  2759. pyrogram/raw/types/update_config.py +49 -0
  2760. pyrogram/raw/types/update_contacts_reset.py +49 -0
  2761. pyrogram/raw/types/update_dc_options.py +54 -0
  2762. pyrogram/raw/types/update_delete_channel_messages.py +78 -0
  2763. pyrogram/raw/types/update_delete_messages.py +70 -0
  2764. pyrogram/raw/types/update_delete_quick_reply.py +54 -0
  2765. pyrogram/raw/types/update_delete_quick_reply_messages.py +62 -0
  2766. pyrogram/raw/types/update_delete_scheduled_messages.py +62 -0
  2767. pyrogram/raw/types/update_dialog_filter.py +66 -0
  2768. pyrogram/raw/types/update_dialog_filter_order.py +54 -0
  2769. pyrogram/raw/types/update_dialog_filters.py +49 -0
  2770. pyrogram/raw/types/update_dialog_pinned.py +71 -0
  2771. pyrogram/raw/types/update_dialog_unread_mark.py +62 -0
  2772. pyrogram/raw/types/update_draft_message.py +73 -0
  2773. pyrogram/raw/types/update_edit_channel_message.py +70 -0
  2774. pyrogram/raw/types/update_edit_message.py +70 -0
  2775. pyrogram/raw/types/update_encrypted_chat_typing.py +54 -0
  2776. pyrogram/raw/types/update_encrypted_messages_read.py +70 -0
  2777. pyrogram/raw/types/update_encryption.py +62 -0
  2778. pyrogram/raw/types/update_faved_stickers.py +49 -0
  2779. pyrogram/raw/types/update_folder_peers.py +70 -0
  2780. pyrogram/raw/types/update_geo_live_viewed.py +62 -0
  2781. pyrogram/raw/types/update_group_call.py +62 -0
  2782. pyrogram/raw/types/update_group_call_connection.py +62 -0
  2783. pyrogram/raw/types/update_group_call_participants.py +70 -0
  2784. pyrogram/raw/types/update_inline_bot_callback_query.py +98 -0
  2785. pyrogram/raw/types/update_lang_pack.py +54 -0
  2786. pyrogram/raw/types/update_lang_pack_too_long.py +54 -0
  2787. pyrogram/raw/types/update_login_token.py +49 -0
  2788. pyrogram/raw/types/update_message_extended_media.py +70 -0
  2789. pyrogram/raw/types/update_message_id.py +62 -0
  2790. pyrogram/raw/types/update_message_poll.py +74 -0
  2791. pyrogram/raw/types/update_message_poll_vote.py +78 -0
  2792. pyrogram/raw/types/update_message_reactions.py +81 -0
  2793. pyrogram/raw/types/update_move_sticker_set_to_top.py +68 -0
  2794. pyrogram/raw/types/update_new_authorization.py +89 -0
  2795. pyrogram/raw/types/update_new_channel_message.py +70 -0
  2796. pyrogram/raw/types/update_new_encrypted_message.py +62 -0
  2797. pyrogram/raw/types/update_new_message.py +70 -0
  2798. pyrogram/raw/types/update_new_quick_reply.py +54 -0
  2799. pyrogram/raw/types/update_new_scheduled_message.py +54 -0
  2800. pyrogram/raw/types/update_new_sticker_set.py +54 -0
  2801. pyrogram/raw/types/update_new_story_reaction.py +70 -0
  2802. pyrogram/raw/types/update_notify_settings.py +62 -0
  2803. pyrogram/raw/types/update_peer_blocked.py +68 -0
  2804. pyrogram/raw/types/update_peer_history_ttl.py +65 -0
  2805. pyrogram/raw/types/update_peer_located.py +54 -0
  2806. pyrogram/raw/types/update_peer_settings.py +62 -0
  2807. pyrogram/raw/types/update_peer_wallpaper.py +72 -0
  2808. pyrogram/raw/types/update_pending_join_requests.py +70 -0
  2809. pyrogram/raw/types/update_phone_call.py +54 -0
  2810. pyrogram/raw/types/update_phone_call_signaling_data.py +62 -0
  2811. pyrogram/raw/types/update_pinned_channel_messages.py +86 -0
  2812. pyrogram/raw/types/update_pinned_dialogs.py +67 -0
  2813. pyrogram/raw/types/update_pinned_messages.py +86 -0
  2814. pyrogram/raw/types/update_pinned_saved_dialogs.py +58 -0
  2815. pyrogram/raw/types/update_privacy.py +62 -0
  2816. pyrogram/raw/types/update_pts_changed.py +49 -0
  2817. pyrogram/raw/types/update_quick_replies.py +54 -0
  2818. pyrogram/raw/types/update_quick_reply_message.py +54 -0
  2819. pyrogram/raw/types/update_read_channel_discussion_inbox.py +90 -0
  2820. pyrogram/raw/types/update_read_channel_discussion_outbox.py +70 -0
  2821. pyrogram/raw/types/update_read_channel_inbox.py +89 -0
  2822. pyrogram/raw/types/update_read_channel_outbox.py +62 -0
  2823. pyrogram/raw/types/update_read_featured_emoji_stickers.py +49 -0
  2824. pyrogram/raw/types/update_read_featured_stickers.py +49 -0
  2825. pyrogram/raw/types/update_read_history_inbox.py +97 -0
  2826. pyrogram/raw/types/update_read_history_outbox.py +78 -0
  2827. pyrogram/raw/types/update_read_messages_contents.py +81 -0
  2828. pyrogram/raw/types/update_read_stories.py +62 -0
  2829. pyrogram/raw/types/update_recent_emoji_statuses.py +49 -0
  2830. pyrogram/raw/types/update_recent_reactions.py +49 -0
  2831. pyrogram/raw/types/update_recent_stickers.py +49 -0
  2832. pyrogram/raw/types/update_saved_dialog_pinned.py +62 -0
  2833. pyrogram/raw/types/update_saved_gifs.py +49 -0
  2834. pyrogram/raw/types/update_saved_reaction_tags.py +49 -0
  2835. pyrogram/raw/types/update_saved_ringtones.py +49 -0
  2836. pyrogram/raw/types/update_sent_story_reaction.py +70 -0
  2837. pyrogram/raw/types/update_service_notification.py +101 -0
  2838. pyrogram/raw/types/update_short.py +173 -0
  2839. pyrogram/raw/types/update_short_chat_message.py +287 -0
  2840. pyrogram/raw/types/update_short_message.py +279 -0
  2841. pyrogram/raw/types/update_short_sent_message.py +226 -0
  2842. pyrogram/raw/types/update_sms_job.py +54 -0
  2843. pyrogram/raw/types/update_stars_balance.py +54 -0
  2844. pyrogram/raw/types/update_stars_revenue_status.py +62 -0
  2845. pyrogram/raw/types/update_sticker_sets.py +60 -0
  2846. pyrogram/raw/types/update_sticker_sets_order.py +68 -0
  2847. pyrogram/raw/types/update_stories_stealth_mode.py +54 -0
  2848. pyrogram/raw/types/update_story.py +62 -0
  2849. pyrogram/raw/types/update_story_id.py +62 -0
  2850. pyrogram/raw/types/update_theme.py +54 -0
  2851. pyrogram/raw/types/update_transcribed_audio.py +86 -0
  2852. pyrogram/raw/types/update_user.py +54 -0
  2853. pyrogram/raw/types/update_user_emoji_status.py +62 -0
  2854. pyrogram/raw/types/update_user_name.py +78 -0
  2855. pyrogram/raw/types/update_user_phone.py +62 -0
  2856. pyrogram/raw/types/update_user_status.py +62 -0
  2857. pyrogram/raw/types/update_user_typing.py +62 -0
  2858. pyrogram/raw/types/update_web_page.py +70 -0
  2859. pyrogram/raw/types/update_web_view_result_sent.py +54 -0
  2860. pyrogram/raw/types/updates/__init__.py +14 -0
  2861. pyrogram/raw/types/updates/channel_difference.py +112 -0
  2862. pyrogram/raw/types/updates/channel_difference_empty.py +80 -0
  2863. pyrogram/raw/types/updates/channel_difference_too_long.py +104 -0
  2864. pyrogram/raw/types/updates/difference.py +103 -0
  2865. pyrogram/raw/types/updates/difference_empty.py +71 -0
  2866. pyrogram/raw/types/updates/difference_slice.py +103 -0
  2867. pyrogram/raw/types/updates/difference_too_long.py +63 -0
  2868. pyrogram/raw/types/updates/state.py +95 -0
  2869. pyrogram/raw/types/updates_combined.py +205 -0
  2870. pyrogram/raw/types/updates_t.py +197 -0
  2871. pyrogram/raw/types/updates_too_long.py +160 -0
  2872. pyrogram/raw/types/upload/__init__.py +11 -0
  2873. pyrogram/raw/types/upload/cdn_file.py +63 -0
  2874. pyrogram/raw/types/upload/cdn_file_reupload_needed.py +63 -0
  2875. pyrogram/raw/types/upload/file.py +79 -0
  2876. pyrogram/raw/types/upload/file_cdn_redirect.py +95 -0
  2877. pyrogram/raw/types/upload/web_file.py +95 -0
  2878. pyrogram/raw/types/url_auth_result_accepted.py +64 -0
  2879. pyrogram/raw/types/url_auth_result_default.py +59 -0
  2880. pyrogram/raw/types/url_auth_result_request.py +80 -0
  2881. pyrogram/raw/types/user.py +368 -0
  2882. pyrogram/raw/types/user_empty.py +67 -0
  2883. pyrogram/raw/types/user_full.py +390 -0
  2884. pyrogram/raw/types/user_profile_photo.py +85 -0
  2885. pyrogram/raw/types/user_profile_photo_empty.py +49 -0
  2886. pyrogram/raw/types/user_status_empty.py +49 -0
  2887. pyrogram/raw/types/user_status_last_month.py +54 -0
  2888. pyrogram/raw/types/user_status_last_week.py +54 -0
  2889. pyrogram/raw/types/user_status_offline.py +54 -0
  2890. pyrogram/raw/types/user_status_online.py +54 -0
  2891. pyrogram/raw/types/user_status_recently.py +54 -0
  2892. pyrogram/raw/types/username.py +68 -0
  2893. pyrogram/raw/types/users/__init__.py +7 -0
  2894. pyrogram/raw/types/users/user_full.py +79 -0
  2895. pyrogram/raw/types/video_size.py +89 -0
  2896. pyrogram/raw/types/video_size_emoji_markup.py +62 -0
  2897. pyrogram/raw/types/video_size_sticker_markup.py +70 -0
  2898. pyrogram/raw/types/wall_paper.py +125 -0
  2899. pyrogram/raw/types/wall_paper_no_file.py +89 -0
  2900. pyrogram/raw/types/wall_paper_settings.py +123 -0
  2901. pyrogram/raw/types/web_authorization.py +118 -0
  2902. pyrogram/raw/types/web_document.py +86 -0
  2903. pyrogram/raw/types/web_document_no_proxy.py +78 -0
  2904. pyrogram/raw/types/web_page.py +216 -0
  2905. pyrogram/raw/types/web_page_attribute_sticker_set.py +68 -0
  2906. pyrogram/raw/types/web_page_attribute_story.py +74 -0
  2907. pyrogram/raw/types/web_page_attribute_theme.py +68 -0
  2908. pyrogram/raw/types/web_page_empty.py +65 -0
  2909. pyrogram/raw/types/web_page_not_modified.py +57 -0
  2910. pyrogram/raw/types/web_page_pending.py +73 -0
  2911. pyrogram/raw/types/web_view_message_sent.py +67 -0
  2912. pyrogram/raw/types/web_view_result_url.py +82 -0
  2913. pyrogram/session/__init__.py +2 -0
  2914. pyrogram/session/auth.py +253 -0
  2915. pyrogram/session/internals/__init__.py +3 -0
  2916. pyrogram/session/internals/data_center.py +64 -0
  2917. pyrogram/session/internals/msg_factory.py +20 -0
  2918. pyrogram/session/internals/msg_id.py +17 -0
  2919. pyrogram/session/internals/seq_no.py +11 -0
  2920. pyrogram/session/session.py +399 -0
  2921. pyrogram/storage/__init__.py +6 -0
  2922. pyrogram/storage/dummy_client.py +44 -0
  2923. pyrogram/storage/file_storage.py +69 -0
  2924. pyrogram/storage/memory_storage.py +54 -0
  2925. pyrogram/storage/mongo_storage.py +198 -0
  2926. pyrogram/storage/sqlite_storage.py +279 -0
  2927. pyrogram/storage/storage.py +81 -0
  2928. pyrogram/sync.py +92 -0
  2929. pyrogram/types/__init__.py +10 -0
  2930. pyrogram/types/authorization/__init__.py +7 -0
  2931. pyrogram/types/authorization/sent_code.py +27 -0
  2932. pyrogram/types/authorization/terms_of_service.py +25 -0
  2933. pyrogram/types/bots_and_keyboards/__init__.py +57 -0
  2934. pyrogram/types/bots_and_keyboards/bot_command.py +24 -0
  2935. pyrogram/types/bots_and_keyboards/bot_command_scope.py +13 -0
  2936. pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +11 -0
  2937. pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +11 -0
  2938. pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +11 -0
  2939. pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +17 -0
  2940. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +17 -0
  2941. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +19 -0
  2942. pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +11 -0
  2943. pyrogram/types/bots_and_keyboards/bot_info.py +21 -0
  2944. pyrogram/types/bots_and_keyboards/callback_query.py +143 -0
  2945. pyrogram/types/bots_and_keyboards/force_reply.py +30 -0
  2946. pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +142 -0
  2947. pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +42 -0
  2948. pyrogram/types/bots_and_keyboards/keyboard_button.py +121 -0
  2949. pyrogram/types/bots_and_keyboards/login_url.py +38 -0
  2950. pyrogram/types/bots_and_keyboards/menu_button.py +13 -0
  2951. pyrogram/types/bots_and_keyboards/menu_button_commands.py +11 -0
  2952. pyrogram/types/bots_and_keyboards/menu_button_default.py +11 -0
  2953. pyrogram/types/bots_and_keyboards/menu_button_web_app.py +21 -0
  2954. pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +63 -0
  2955. pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +24 -0
  2956. pyrogram/types/bots_and_keyboards/request_peer_type_channel.py +15 -0
  2957. pyrogram/types/bots_and_keyboards/request_peer_type_chat.py +19 -0
  2958. pyrogram/types/bots_and_keyboards/request_peer_type_user.py +15 -0
  2959. pyrogram/types/bots_and_keyboards/sent_web_app_message.py +16 -0
  2960. pyrogram/types/bots_and_keyboards/web_app_info.py +11 -0
  2961. pyrogram/types/inline_mode/__init__.py +43 -0
  2962. pyrogram/types/inline_mode/chosen_inline_result.py +55 -0
  2963. pyrogram/types/inline_mode/inline_query.py +82 -0
  2964. pyrogram/types/inline_mode/inline_query_result.py +24 -0
  2965. pyrogram/types/inline_mode/inline_query_result_animation.py +85 -0
  2966. pyrogram/types/inline_mode/inline_query_result_article.py +49 -0
  2967. pyrogram/types/inline_mode/inline_query_result_audio.py +73 -0
  2968. pyrogram/types/inline_mode/inline_query_result_cached_animation.py +56 -0
  2969. pyrogram/types/inline_mode/inline_query_result_cached_audio.py +53 -0
  2970. pyrogram/types/inline_mode/inline_query_result_cached_document.py +59 -0
  2971. pyrogram/types/inline_mode/inline_query_result_cached_photo.py +57 -0
  2972. pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +40 -0
  2973. pyrogram/types/inline_mode/inline_query_result_cached_video.py +59 -0
  2974. pyrogram/types/inline_mode/inline_query_result_cached_voice.py +56 -0
  2975. pyrogram/types/inline_mode/inline_query_result_contact.py +57 -0
  2976. pyrogram/types/inline_mode/inline_query_result_document.py +78 -0
  2977. pyrogram/types/inline_mode/inline_query_result_location.py +55 -0
  2978. pyrogram/types/inline_mode/inline_query_result_photo.py +81 -0
  2979. pyrogram/types/inline_mode/inline_query_result_venue.py +63 -0
  2980. pyrogram/types/inline_mode/inline_query_result_video.py +79 -0
  2981. pyrogram/types/inline_mode/inline_query_result_voice.py +59 -0
  2982. pyrogram/types/input_media/__init__.py +21 -0
  2983. pyrogram/types/input_media/input_media.py +20 -0
  2984. pyrogram/types/input_media/input_media_animation.py +27 -0
  2985. pyrogram/types/input_media/input_media_area.py +13 -0
  2986. pyrogram/types/input_media/input_media_area_channel_post.py +27 -0
  2987. pyrogram/types/input_media/input_media_audio.py +25 -0
  2988. pyrogram/types/input_media/input_media_document.py +19 -0
  2989. pyrogram/types/input_media/input_media_photo.py +19 -0
  2990. pyrogram/types/input_media/input_media_video.py +29 -0
  2991. pyrogram/types/input_media/input_phone_contact.py +19 -0
  2992. pyrogram/types/input_message_content/__init__.py +9 -0
  2993. pyrogram/types/input_message_content/input_message_content.py +11 -0
  2994. pyrogram/types/input_message_content/input_reply_to_message.py +45 -0
  2995. pyrogram/types/input_message_content/input_text_message_content.py +33 -0
  2996. pyrogram/types/list.py +11 -0
  2997. pyrogram/types/messages_and_media/__init__.py +61 -0
  2998. pyrogram/types/messages_and_media/animation.py +109 -0
  2999. pyrogram/types/messages_and_media/audio.py +68 -0
  3000. pyrogram/types/messages_and_media/available_effect.py +45 -0
  3001. pyrogram/types/messages_and_media/contact.py +34 -0
  3002. pyrogram/types/messages_and_media/document.py +54 -0
  3003. pyrogram/types/messages_and_media/media_area.py +21 -0
  3004. pyrogram/types/messages_and_media/media_area_channel_post.py +39 -0
  3005. pyrogram/types/messages_and_media/media_area_coordinates.py +40 -0
  3006. pyrogram/types/messages_and_media/message.py +2101 -0
  3007. pyrogram/types/messages_and_media/message_entity.py +85 -0
  3008. pyrogram/types/messages_and_media/message_reaction_count_updated.py +53 -0
  3009. pyrogram/types/messages_and_media/message_reaction_updated.py +76 -0
  3010. pyrogram/types/messages_and_media/message_reactions.py +33 -0
  3011. pyrogram/types/messages_and_media/photo.py +83 -0
  3012. pyrogram/types/messages_and_media/reaction.py +51 -0
  3013. pyrogram/types/messages_and_media/reaction_count.py +30 -0
  3014. pyrogram/types/messages_and_media/reaction_type.py +44 -0
  3015. pyrogram/types/messages_and_media/sticker.py +148 -0
  3016. pyrogram/types/messages_and_media/stickerset.py +40 -0
  3017. pyrogram/types/messages_and_media/story.py +682 -0
  3018. pyrogram/types/messages_and_media/stripped_thumbnail.py +22 -0
  3019. pyrogram/types/messages_and_media/thumbnail.py +73 -0
  3020. pyrogram/types/messages_and_media/video.py +75 -0
  3021. pyrogram/types/messages_and_media/video_note.py +61 -0
  3022. pyrogram/types/messages_and_media/voice.py +52 -0
  3023. pyrogram/types/messages_and_media/web_app_data.py +22 -0
  3024. pyrogram/types/messages_and_media/web_page.py +108 -0
  3025. pyrogram/types/messages_and_media/web_page_empty.py +23 -0
  3026. pyrogram/types/messages_and_media/web_page_preview.py +41 -0
  3027. pyrogram/types/object.py +99 -0
  3028. pyrogram/types/update.py +11 -0
  3029. pyrogram/types/user_and_chats/__init__.py +75 -0
  3030. pyrogram/types/user_and_chats/birthday.py +31 -0
  3031. pyrogram/types/user_and_chats/chat.py +487 -0
  3032. pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +31 -0
  3033. pyrogram/types/user_and_chats/chat_color.py +35 -0
  3034. pyrogram/types/user_and_chats/chat_event.py +396 -0
  3035. pyrogram/types/user_and_chats/chat_event_filter.py +107 -0
  3036. pyrogram/types/user_and_chats/chat_invite_link.py +69 -0
  3037. pyrogram/types/user_and_chats/chat_join_request.py +57 -0
  3038. pyrogram/types/user_and_chats/chat_joined_by_request.py +6 -0
  3039. pyrogram/types/user_and_chats/chat_joiner.py +45 -0
  3040. pyrogram/types/user_and_chats/chat_member.py +160 -0
  3041. pyrogram/types/user_and_chats/chat_member_updated.py +97 -0
  3042. pyrogram/types/user_and_chats/chat_permissions.py +145 -0
  3043. pyrogram/types/user_and_chats/chat_photo.py +79 -0
  3044. pyrogram/types/user_and_chats/chat_preview.py +38 -0
  3045. pyrogram/types/user_and_chats/chat_privileges.py +61 -0
  3046. pyrogram/types/user_and_chats/chat_reactions.py +43 -0
  3047. pyrogram/types/user_and_chats/dialog.py +38 -0
  3048. pyrogram/types/user_and_chats/emoji_status.py +49 -0
  3049. pyrogram/types/user_and_chats/forum_topic.py +71 -0
  3050. pyrogram/types/user_and_chats/forum_topic_closed.py +6 -0
  3051. pyrogram/types/user_and_chats/forum_topic_created.py +29 -0
  3052. pyrogram/types/user_and_chats/forum_topic_edited.py +26 -0
  3053. pyrogram/types/user_and_chats/forum_topic_reopened.py +6 -0
  3054. pyrogram/types/user_and_chats/general_forum_topic_hidden.py +6 -0
  3055. pyrogram/types/user_and_chats/general_forum_topic_unhidden.py +6 -0
  3056. pyrogram/types/user_and_chats/invite_link_importer.py +32 -0
  3057. pyrogram/types/user_and_chats/peer_channel.py +20 -0
  3058. pyrogram/types/user_and_chats/peer_user.py +20 -0
  3059. pyrogram/types/user_and_chats/restriction.py +19 -0
  3060. pyrogram/types/user_and_chats/user.py +230 -0
  3061. pyrogram/types/user_and_chats/username.py +26 -0
  3062. pyrogram/types/user_and_chats/video_chat_ended.py +16 -0
  3063. pyrogram/types/user_and_chats/video_chat_members_invited.py +24 -0
  3064. pyrogram/types/user_and_chats/video_chat_scheduled.py +18 -0
  3065. pyrogram/types/user_and_chats/video_chat_started.py +6 -0
  3066. pyrogram/utils.py +442 -0
pyrogram/raw/all.py ADDED
@@ -0,0 +1,2039 @@
1
+ # # # # # # # # # # # # # # # # # # # # # # # #
2
+ # !!! WARNING !!! #
3
+ # This is a generated file! #
4
+ # All changes made in this file will be lost! #
5
+ # # # # # # # # # # # # # # # # # # # # # # # #
6
+
7
+ layer = 184
8
+
9
+ objects = {
10
+ 0x05162463: "pyrogram.raw.types.ResPQ",
11
+ 0x83c95aec: "pyrogram.raw.types.PQInnerData",
12
+ 0xa9f55f95: "pyrogram.raw.types.PQInnerDataDc",
13
+ 0x3c6a84d4: "pyrogram.raw.types.PQInnerDataTemp",
14
+ 0x56fddf88: "pyrogram.raw.types.PQInnerDataTempDc",
15
+ 0x75a3f765: "pyrogram.raw.types.BindAuthKeyInner",
16
+ 0x79cb045d: "pyrogram.raw.types.ServerDHParamsFail",
17
+ 0xd0e8075c: "pyrogram.raw.types.ServerDHParamsOk",
18
+ 0xb5890dba: "pyrogram.raw.types.ServerDHInnerData",
19
+ 0x6643b654: "pyrogram.raw.types.ClientDHInnerData",
20
+ 0x3bcbf734: "pyrogram.raw.types.DhGenOk",
21
+ 0x46dc1fb9: "pyrogram.raw.types.DhGenRetry",
22
+ 0xa69dae02: "pyrogram.raw.types.DhGenFail",
23
+ 0xf660e1d4: "pyrogram.raw.types.DestroyAuthKeyOk",
24
+ 0x0a9f2259: "pyrogram.raw.types.DestroyAuthKeyNone",
25
+ 0xea109b13: "pyrogram.raw.types.DestroyAuthKeyFail",
26
+ 0x60469778: "pyrogram.raw.functions.ReqPq",
27
+ 0xbe7e8ef1: "pyrogram.raw.functions.ReqPqMulti",
28
+ 0xd712e4be: "pyrogram.raw.functions.ReqDHParams",
29
+ 0xf5045f1f: "pyrogram.raw.functions.SetClientDHParams",
30
+ 0xd1435160: "pyrogram.raw.functions.DestroyAuthKey",
31
+ 0x62d6b459: "pyrogram.raw.types.MsgsAck",
32
+ 0xa7eff811: "pyrogram.raw.types.BadMsgNotification",
33
+ 0xedab447b: "pyrogram.raw.types.BadServerSalt",
34
+ 0xda69fb52: "pyrogram.raw.types.MsgsStateReq",
35
+ 0x04deb57d: "pyrogram.raw.types.MsgsStateInfo",
36
+ 0x8cc0d131: "pyrogram.raw.types.MsgsAllInfo",
37
+ 0x276d3ec6: "pyrogram.raw.types.MsgDetailedInfo",
38
+ 0x809db6df: "pyrogram.raw.types.MsgNewDetailedInfo",
39
+ 0x7d861a08: "pyrogram.raw.types.MsgResendReq",
40
+ 0x8610baeb: "pyrogram.raw.types.MsgResendAnsReq",
41
+ 0xf35c6d01: "pyrogram.raw.types.RpcResult",
42
+ 0x2144ca19: "pyrogram.raw.types.RpcError",
43
+ 0x5e2ad36e: "pyrogram.raw.types.RpcAnswerUnknown",
44
+ 0xcd78e586: "pyrogram.raw.types.RpcAnswerDroppedRunning",
45
+ 0xa43ad8b7: "pyrogram.raw.types.RpcAnswerDropped",
46
+ 0x347773c5: "pyrogram.raw.types.Pong",
47
+ 0xe22045fc: "pyrogram.raw.types.DestroySessionOk",
48
+ 0x62d350c9: "pyrogram.raw.types.DestroySessionNone",
49
+ 0x9ec20908: "pyrogram.raw.types.NewSessionCreated",
50
+ 0x9299359f: "pyrogram.raw.types.HttpWait",
51
+ 0xd433ad73: "pyrogram.raw.types.IpPort",
52
+ 0x37982646: "pyrogram.raw.types.IpPortSecret",
53
+ 0x4679b65f: "pyrogram.raw.types.AccessPointRule",
54
+ 0x5a592a6c: "pyrogram.raw.types.help.ConfigSimple",
55
+ 0x58e4a740: "pyrogram.raw.functions.RpcDropAnswer",
56
+ 0xb921bd04: "pyrogram.raw.functions.GetFutureSalts",
57
+ 0x7abe77ec: "pyrogram.raw.functions.Ping",
58
+ 0xf3427b8c: "pyrogram.raw.functions.PingDelayDisconnect",
59
+ 0xe7512126: "pyrogram.raw.functions.DestroySession",
60
+ 0x9a5f6e95: "pyrogram.raw.functions.contest.SaveDeveloperInfo",
61
+ 0xd433ad73: "pyrogram.raw.types.IpPort",
62
+ 0x37982646: "pyrogram.raw.types.IpPortSecret",
63
+ 0x4679b65f: "pyrogram.raw.types.AccessPointRule",
64
+ 0x5a592a6c: "pyrogram.raw.types.help.ConfigSimple",
65
+ 0x27d69997: "pyrogram.raw.types.InputPeerPhotoFileLocationLegacy",
66
+ 0xdbaeae9: "pyrogram.raw.types.InputStickerSetThumbLegacy",
67
+ 0x7f3b18ea: "pyrogram.raw.types.InputPeerEmpty",
68
+ 0x7da07ec9: "pyrogram.raw.types.InputPeerSelf",
69
+ 0x35a95cb9: "pyrogram.raw.types.InputPeerChat",
70
+ 0xdde8a54c: "pyrogram.raw.types.InputPeerUser",
71
+ 0x27bcbbfc: "pyrogram.raw.types.InputPeerChannel",
72
+ 0xa87b0a1c: "pyrogram.raw.types.InputPeerUserFromMessage",
73
+ 0xbd2a0840: "pyrogram.raw.types.InputPeerChannelFromMessage",
74
+ 0xb98886cf: "pyrogram.raw.types.InputUserEmpty",
75
+ 0xf7c1b13f: "pyrogram.raw.types.InputUserSelf",
76
+ 0xf21158c6: "pyrogram.raw.types.InputUser",
77
+ 0x1da448e2: "pyrogram.raw.types.InputUserFromMessage",
78
+ 0xf392b7f4: "pyrogram.raw.types.InputPhoneContact",
79
+ 0xf52ff27f: "pyrogram.raw.types.InputFile",
80
+ 0xfa4f0bb5: "pyrogram.raw.types.InputFileBig",
81
+ 0x9664f57f: "pyrogram.raw.types.InputMediaEmpty",
82
+ 0x1e287d04: "pyrogram.raw.types.InputMediaUploadedPhoto",
83
+ 0xb3ba0635: "pyrogram.raw.types.InputMediaPhoto",
84
+ 0xf9c44144: "pyrogram.raw.types.InputMediaGeoPoint",
85
+ 0xf8ab7dfb: "pyrogram.raw.types.InputMediaContact",
86
+ 0x5b38c6c1: "pyrogram.raw.types.InputMediaUploadedDocument",
87
+ 0x33473058: "pyrogram.raw.types.InputMediaDocument",
88
+ 0xc13d1c11: "pyrogram.raw.types.InputMediaVenue",
89
+ 0xe5bbfe1a: "pyrogram.raw.types.InputMediaPhotoExternal",
90
+ 0xfb52dc99: "pyrogram.raw.types.InputMediaDocumentExternal",
91
+ 0xd33f43f3: "pyrogram.raw.types.InputMediaGame",
92
+ 0x405fef0d: "pyrogram.raw.types.InputMediaInvoice",
93
+ 0x971fa843: "pyrogram.raw.types.InputMediaGeoLive",
94
+ 0xf94e5f1: "pyrogram.raw.types.InputMediaPoll",
95
+ 0xe66fbf7b: "pyrogram.raw.types.InputMediaDice",
96
+ 0x89fdd778: "pyrogram.raw.types.InputMediaStory",
97
+ 0xc21b8849: "pyrogram.raw.types.InputMediaWebPage",
98
+ 0xaa661fc3: "pyrogram.raw.types.InputMediaPaidMedia",
99
+ 0x1ca48f57: "pyrogram.raw.types.InputChatPhotoEmpty",
100
+ 0xbdcdaec0: "pyrogram.raw.types.InputChatUploadedPhoto",
101
+ 0x8953ad37: "pyrogram.raw.types.InputChatPhoto",
102
+ 0xe4c123d6: "pyrogram.raw.types.InputGeoPointEmpty",
103
+ 0x48222faf: "pyrogram.raw.types.InputGeoPoint",
104
+ 0x1cd7bf0d: "pyrogram.raw.types.InputPhotoEmpty",
105
+ 0x3bb3b94a: "pyrogram.raw.types.InputPhoto",
106
+ 0xdfdaabe1: "pyrogram.raw.types.InputFileLocation",
107
+ 0xf5235d55: "pyrogram.raw.types.InputEncryptedFileLocation",
108
+ 0xbad07584: "pyrogram.raw.types.InputDocumentFileLocation",
109
+ 0xcbc7ee28: "pyrogram.raw.types.InputSecureFileLocation",
110
+ 0x29be5899: "pyrogram.raw.types.InputTakeoutFileLocation",
111
+ 0x40181ffe: "pyrogram.raw.types.InputPhotoFileLocation",
112
+ 0xd83466f3: "pyrogram.raw.types.InputPhotoLegacyFileLocation",
113
+ 0x37257e99: "pyrogram.raw.types.InputPeerPhotoFileLocation",
114
+ 0x9d84f3db: "pyrogram.raw.types.InputStickerSetThumb",
115
+ 0x598a92a: "pyrogram.raw.types.InputGroupCallStream",
116
+ 0x59511722: "pyrogram.raw.types.PeerUser",
117
+ 0x36c6019a: "pyrogram.raw.types.PeerChat",
118
+ 0xa2a5371e: "pyrogram.raw.types.PeerChannel",
119
+ 0xaa963b05: "pyrogram.raw.types.storage.FileUnknown",
120
+ 0x40bc6f52: "pyrogram.raw.types.storage.FilePartial",
121
+ 0x7efe0e: "pyrogram.raw.types.storage.FileJpeg",
122
+ 0xcae1aadf: "pyrogram.raw.types.storage.FileGif",
123
+ 0xa4f63c0: "pyrogram.raw.types.storage.FilePng",
124
+ 0xae1e508d: "pyrogram.raw.types.storage.FilePdf",
125
+ 0x528a0677: "pyrogram.raw.types.storage.FileMp3",
126
+ 0x4b09ebbc: "pyrogram.raw.types.storage.FileMov",
127
+ 0xb3cea0e4: "pyrogram.raw.types.storage.FileMp4",
128
+ 0x1081464c: "pyrogram.raw.types.storage.FileWebp",
129
+ 0xd3bc4b7a: "pyrogram.raw.types.UserEmpty",
130
+ 0x215c4438: "pyrogram.raw.types.User",
131
+ 0x4f11bae1: "pyrogram.raw.types.UserProfilePhotoEmpty",
132
+ 0x82d1f706: "pyrogram.raw.types.UserProfilePhoto",
133
+ 0x9d05049: "pyrogram.raw.types.UserStatusEmpty",
134
+ 0xedb93949: "pyrogram.raw.types.UserStatusOnline",
135
+ 0x8c703f: "pyrogram.raw.types.UserStatusOffline",
136
+ 0x7b197dc8: "pyrogram.raw.types.UserStatusRecently",
137
+ 0x541a1d1a: "pyrogram.raw.types.UserStatusLastWeek",
138
+ 0x65899777: "pyrogram.raw.types.UserStatusLastMonth",
139
+ 0x29562865: "pyrogram.raw.types.ChatEmpty",
140
+ 0x41cbf256: "pyrogram.raw.types.Chat",
141
+ 0x6592a1a7: "pyrogram.raw.types.ChatForbidden",
142
+ 0xaadfc8f: "pyrogram.raw.types.Channel",
143
+ 0x17d493d5: "pyrogram.raw.types.ChannelForbidden",
144
+ 0x2633421b: "pyrogram.raw.types.ChatFull",
145
+ 0xbbab348d: "pyrogram.raw.types.ChannelFull",
146
+ 0xc02d4007: "pyrogram.raw.types.ChatParticipant",
147
+ 0xe46bcee4: "pyrogram.raw.types.ChatParticipantCreator",
148
+ 0xa0933f5b: "pyrogram.raw.types.ChatParticipantAdmin",
149
+ 0x8763d3e1: "pyrogram.raw.types.ChatParticipantsForbidden",
150
+ 0x3cbc93f8: "pyrogram.raw.types.ChatParticipants",
151
+ 0x37c1011c: "pyrogram.raw.types.ChatPhotoEmpty",
152
+ 0x1c6e1c11: "pyrogram.raw.types.ChatPhoto",
153
+ 0x90a6ca84: "pyrogram.raw.types.MessageEmpty",
154
+ 0x94345242: "pyrogram.raw.types.Message",
155
+ 0x2b085862: "pyrogram.raw.types.MessageService",
156
+ 0x3ded6320: "pyrogram.raw.types.MessageMediaEmpty",
157
+ 0x695150d7: "pyrogram.raw.types.MessageMediaPhoto",
158
+ 0x56e0d474: "pyrogram.raw.types.MessageMediaGeo",
159
+ 0x70322949: "pyrogram.raw.types.MessageMediaContact",
160
+ 0x9f84f49e: "pyrogram.raw.types.MessageMediaUnsupported",
161
+ 0x4cf4d72d: "pyrogram.raw.types.MessageMediaDocument",
162
+ 0xddf10c3b: "pyrogram.raw.types.MessageMediaWebPage",
163
+ 0x2ec0533f: "pyrogram.raw.types.MessageMediaVenue",
164
+ 0xfdb19008: "pyrogram.raw.types.MessageMediaGame",
165
+ 0xf6a548d3: "pyrogram.raw.types.MessageMediaInvoice",
166
+ 0xb940c666: "pyrogram.raw.types.MessageMediaGeoLive",
167
+ 0x4bd6e798: "pyrogram.raw.types.MessageMediaPoll",
168
+ 0x3f7ee58b: "pyrogram.raw.types.MessageMediaDice",
169
+ 0x68cb6283: "pyrogram.raw.types.MessageMediaStory",
170
+ 0xdaad85b0: "pyrogram.raw.types.MessageMediaGiveaway",
171
+ 0xc6991068: "pyrogram.raw.types.MessageMediaGiveawayResults",
172
+ 0xa8852491: "pyrogram.raw.types.MessageMediaPaidMedia",
173
+ 0xb6aef7b0: "pyrogram.raw.types.MessageActionEmpty",
174
+ 0xbd47cbad: "pyrogram.raw.types.MessageActionChatCreate",
175
+ 0xb5a1ce5a: "pyrogram.raw.types.MessageActionChatEditTitle",
176
+ 0x7fcb13a8: "pyrogram.raw.types.MessageActionChatEditPhoto",
177
+ 0x95e3fbef: "pyrogram.raw.types.MessageActionChatDeletePhoto",
178
+ 0x15cefd00: "pyrogram.raw.types.MessageActionChatAddUser",
179
+ 0xa43f30cc: "pyrogram.raw.types.MessageActionChatDeleteUser",
180
+ 0x31224c3: "pyrogram.raw.types.MessageActionChatJoinedByLink",
181
+ 0x95d2ac92: "pyrogram.raw.types.MessageActionChannelCreate",
182
+ 0xe1037f92: "pyrogram.raw.types.MessageActionChatMigrateTo",
183
+ 0xea3948e9: "pyrogram.raw.types.MessageActionChannelMigrateFrom",
184
+ 0x94bd38ed: "pyrogram.raw.types.MessageActionPinMessage",
185
+ 0x9fbab604: "pyrogram.raw.types.MessageActionHistoryClear",
186
+ 0x92a72876: "pyrogram.raw.types.MessageActionGameScore",
187
+ 0x8f31b327: "pyrogram.raw.types.MessageActionPaymentSentMe",
188
+ 0x96163f56: "pyrogram.raw.types.MessageActionPaymentSent",
189
+ 0x80e11a7f: "pyrogram.raw.types.MessageActionPhoneCall",
190
+ 0x4792929b: "pyrogram.raw.types.MessageActionScreenshotTaken",
191
+ 0xfae69f56: "pyrogram.raw.types.MessageActionCustomAction",
192
+ 0xc516d679: "pyrogram.raw.types.MessageActionBotAllowed",
193
+ 0x1b287353: "pyrogram.raw.types.MessageActionSecureValuesSentMe",
194
+ 0xd95c6154: "pyrogram.raw.types.MessageActionSecureValuesSent",
195
+ 0xf3f25f76: "pyrogram.raw.types.MessageActionContactSignUp",
196
+ 0x98e0d697: "pyrogram.raw.types.MessageActionGeoProximityReached",
197
+ 0x7a0d7f42: "pyrogram.raw.types.MessageActionGroupCall",
198
+ 0x502f92f7: "pyrogram.raw.types.MessageActionInviteToGroupCall",
199
+ 0x3c134d7b: "pyrogram.raw.types.MessageActionSetMessagesTTL",
200
+ 0xb3a07661: "pyrogram.raw.types.MessageActionGroupCallScheduled",
201
+ 0xaa786345: "pyrogram.raw.types.MessageActionSetChatTheme",
202
+ 0xebbca3cb: "pyrogram.raw.types.MessageActionChatJoinedByRequest",
203
+ 0x47dd8079: "pyrogram.raw.types.MessageActionWebViewDataSentMe",
204
+ 0xb4c38cb5: "pyrogram.raw.types.MessageActionWebViewDataSent",
205
+ 0xc83d6aec: "pyrogram.raw.types.MessageActionGiftPremium",
206
+ 0xd999256: "pyrogram.raw.types.MessageActionTopicCreate",
207
+ 0xc0944820: "pyrogram.raw.types.MessageActionTopicEdit",
208
+ 0x57de635e: "pyrogram.raw.types.MessageActionSuggestProfilePhoto",
209
+ 0x31518e9b: "pyrogram.raw.types.MessageActionRequestedPeer",
210
+ 0x5060a3f4: "pyrogram.raw.types.MessageActionSetChatWallPaper",
211
+ 0x678c2e09: "pyrogram.raw.types.MessageActionGiftCode",
212
+ 0x332ba9ed: "pyrogram.raw.types.MessageActionGiveawayLaunch",
213
+ 0x2a9fadc5: "pyrogram.raw.types.MessageActionGiveawayResults",
214
+ 0xcc02aa6d: "pyrogram.raw.types.MessageActionBoostApply",
215
+ 0x93b31848: "pyrogram.raw.types.MessageActionRequestedPeerSentMe",
216
+ 0x41b3e202: "pyrogram.raw.types.MessageActionPaymentRefunded",
217
+ 0xd58a08c6: "pyrogram.raw.types.Dialog",
218
+ 0x71bd134c: "pyrogram.raw.types.DialogFolder",
219
+ 0x2331b22d: "pyrogram.raw.types.PhotoEmpty",
220
+ 0xfb197a65: "pyrogram.raw.types.Photo",
221
+ 0xe17e23c: "pyrogram.raw.types.PhotoSizeEmpty",
222
+ 0x75c78e60: "pyrogram.raw.types.PhotoSize",
223
+ 0x21e1ad6: "pyrogram.raw.types.PhotoCachedSize",
224
+ 0xe0b0bc2e: "pyrogram.raw.types.PhotoStrippedSize",
225
+ 0xfa3efb95: "pyrogram.raw.types.PhotoSizeProgressive",
226
+ 0xd8214d41: "pyrogram.raw.types.PhotoPathSize",
227
+ 0x1117dd5f: "pyrogram.raw.types.GeoPointEmpty",
228
+ 0xb2a2f663: "pyrogram.raw.types.GeoPoint",
229
+ 0x5e002502: "pyrogram.raw.types.auth.SentCode",
230
+ 0x2390fe44: "pyrogram.raw.types.auth.SentCodeSuccess",
231
+ 0x2ea2c0d4: "pyrogram.raw.types.auth.Authorization",
232
+ 0x44747e9a: "pyrogram.raw.types.auth.AuthorizationSignUpRequired",
233
+ 0xb434e2b8: "pyrogram.raw.types.auth.ExportedAuthorization",
234
+ 0xb8bc5b0c: "pyrogram.raw.types.InputNotifyPeer",
235
+ 0x193b4417: "pyrogram.raw.types.InputNotifyUsers",
236
+ 0x4a95e84e: "pyrogram.raw.types.InputNotifyChats",
237
+ 0xb1db7c7e: "pyrogram.raw.types.InputNotifyBroadcasts",
238
+ 0x5c467992: "pyrogram.raw.types.InputNotifyForumTopic",
239
+ 0xcacb6ae2: "pyrogram.raw.types.InputPeerNotifySettings",
240
+ 0x99622c0c: "pyrogram.raw.types.PeerNotifySettings",
241
+ 0xacd66c5e: "pyrogram.raw.types.PeerSettings",
242
+ 0xa437c3ed: "pyrogram.raw.types.WallPaper",
243
+ 0xe0804116: "pyrogram.raw.types.WallPaperNoFile",
244
+ 0x58dbcab8: "pyrogram.raw.types.InputReportReasonSpam",
245
+ 0x1e22c78d: "pyrogram.raw.types.InputReportReasonViolence",
246
+ 0x2e59d922: "pyrogram.raw.types.InputReportReasonPornography",
247
+ 0xadf44ee3: "pyrogram.raw.types.InputReportReasonChildAbuse",
248
+ 0xc1e4a2b1: "pyrogram.raw.types.InputReportReasonOther",
249
+ 0x9b89f93a: "pyrogram.raw.types.InputReportReasonCopyright",
250
+ 0xdbd4feed: "pyrogram.raw.types.InputReportReasonGeoIrrelevant",
251
+ 0xf5ddd6e7: "pyrogram.raw.types.InputReportReasonFake",
252
+ 0xa8eb2be: "pyrogram.raw.types.InputReportReasonIllegalDrugs",
253
+ 0x9ec7863d: "pyrogram.raw.types.InputReportReasonPersonalDetails",
254
+ 0xcc997720: "pyrogram.raw.types.UserFull",
255
+ 0x145ade0b: "pyrogram.raw.types.Contact",
256
+ 0xc13e3c50: "pyrogram.raw.types.ImportedContact",
257
+ 0x16d9703b: "pyrogram.raw.types.ContactStatus",
258
+ 0xb74ba9d2: "pyrogram.raw.types.contacts.ContactsNotModified",
259
+ 0xeae87e42: "pyrogram.raw.types.contacts.Contacts",
260
+ 0x77d01c3b: "pyrogram.raw.types.contacts.ImportedContacts",
261
+ 0xade1591: "pyrogram.raw.types.contacts.Blocked",
262
+ 0xe1664194: "pyrogram.raw.types.contacts.BlockedSlice",
263
+ 0x15ba6c40: "pyrogram.raw.types.messages.Dialogs",
264
+ 0x71e094f3: "pyrogram.raw.types.messages.DialogsSlice",
265
+ 0xf0e3e596: "pyrogram.raw.types.messages.DialogsNotModified",
266
+ 0x8c718e87: "pyrogram.raw.types.messages.Messages",
267
+ 0x3a54685e: "pyrogram.raw.types.messages.MessagesSlice",
268
+ 0xc776ba4e: "pyrogram.raw.types.messages.ChannelMessages",
269
+ 0x74535f21: "pyrogram.raw.types.messages.MessagesNotModified",
270
+ 0x64ff9fd5: "pyrogram.raw.types.messages.Chats",
271
+ 0x9cd81144: "pyrogram.raw.types.messages.ChatsSlice",
272
+ 0xe5d7d19c: "pyrogram.raw.types.messages.ChatFull",
273
+ 0xb45c69d1: "pyrogram.raw.types.messages.AffectedHistory",
274
+ 0x57e2f66c: "pyrogram.raw.types.InputMessagesFilterEmpty",
275
+ 0x9609a51c: "pyrogram.raw.types.InputMessagesFilterPhotos",
276
+ 0x9fc00e65: "pyrogram.raw.types.InputMessagesFilterVideo",
277
+ 0x56e9f0e4: "pyrogram.raw.types.InputMessagesFilterPhotoVideo",
278
+ 0x9eddf188: "pyrogram.raw.types.InputMessagesFilterDocument",
279
+ 0x7ef0dd87: "pyrogram.raw.types.InputMessagesFilterUrl",
280
+ 0xffc86587: "pyrogram.raw.types.InputMessagesFilterGif",
281
+ 0x50f5c392: "pyrogram.raw.types.InputMessagesFilterVoice",
282
+ 0x3751b49e: "pyrogram.raw.types.InputMessagesFilterMusic",
283
+ 0x3a20ecb8: "pyrogram.raw.types.InputMessagesFilterChatPhotos",
284
+ 0x80c99768: "pyrogram.raw.types.InputMessagesFilterPhoneCalls",
285
+ 0x7a7c17a4: "pyrogram.raw.types.InputMessagesFilterRoundVoice",
286
+ 0xb549da53: "pyrogram.raw.types.InputMessagesFilterRoundVideo",
287
+ 0xc1f8e69a: "pyrogram.raw.types.InputMessagesFilterMyMentions",
288
+ 0xe7026d0d: "pyrogram.raw.types.InputMessagesFilterGeo",
289
+ 0xe062db83: "pyrogram.raw.types.InputMessagesFilterContacts",
290
+ 0x1bb00451: "pyrogram.raw.types.InputMessagesFilterPinned",
291
+ 0x1f2b0afd: "pyrogram.raw.types.UpdateNewMessage",
292
+ 0x4e90bfd6: "pyrogram.raw.types.UpdateMessageID",
293
+ 0xa20db0e5: "pyrogram.raw.types.UpdateDeleteMessages",
294
+ 0xc01e857f: "pyrogram.raw.types.UpdateUserTyping",
295
+ 0x83487af0: "pyrogram.raw.types.UpdateChatUserTyping",
296
+ 0x7761198: "pyrogram.raw.types.UpdateChatParticipants",
297
+ 0xe5bdf8de: "pyrogram.raw.types.UpdateUserStatus",
298
+ 0xa7848924: "pyrogram.raw.types.UpdateUserName",
299
+ 0x8951abef: "pyrogram.raw.types.UpdateNewAuthorization",
300
+ 0x12bcbd9a: "pyrogram.raw.types.UpdateNewEncryptedMessage",
301
+ 0x1710f156: "pyrogram.raw.types.UpdateEncryptedChatTyping",
302
+ 0xb4a2e88d: "pyrogram.raw.types.UpdateEncryption",
303
+ 0x38fe25b7: "pyrogram.raw.types.UpdateEncryptedMessagesRead",
304
+ 0x3dda5451: "pyrogram.raw.types.UpdateChatParticipantAdd",
305
+ 0xe32f3d77: "pyrogram.raw.types.UpdateChatParticipantDelete",
306
+ 0x8e5e9873: "pyrogram.raw.types.UpdateDcOptions",
307
+ 0xbec268ef: "pyrogram.raw.types.UpdateNotifySettings",
308
+ 0xebe46819: "pyrogram.raw.types.UpdateServiceNotification",
309
+ 0xee3b272a: "pyrogram.raw.types.UpdatePrivacy",
310
+ 0x5492a13: "pyrogram.raw.types.UpdateUserPhone",
311
+ 0x9c974fdf: "pyrogram.raw.types.UpdateReadHistoryInbox",
312
+ 0x2f2f21bf: "pyrogram.raw.types.UpdateReadHistoryOutbox",
313
+ 0x7f891213: "pyrogram.raw.types.UpdateWebPage",
314
+ 0xf8227181: "pyrogram.raw.types.UpdateReadMessagesContents",
315
+ 0x108d941f: "pyrogram.raw.types.UpdateChannelTooLong",
316
+ 0x635b4c09: "pyrogram.raw.types.UpdateChannel",
317
+ 0x62ba04d9: "pyrogram.raw.types.UpdateNewChannelMessage",
318
+ 0x922e6e10: "pyrogram.raw.types.UpdateReadChannelInbox",
319
+ 0xc32d5b12: "pyrogram.raw.types.UpdateDeleteChannelMessages",
320
+ 0xf226ac08: "pyrogram.raw.types.UpdateChannelMessageViews",
321
+ 0xd7ca61a2: "pyrogram.raw.types.UpdateChatParticipantAdmin",
322
+ 0x688a30aa: "pyrogram.raw.types.UpdateNewStickerSet",
323
+ 0xbb2d201: "pyrogram.raw.types.UpdateStickerSetsOrder",
324
+ 0x31c24808: "pyrogram.raw.types.UpdateStickerSets",
325
+ 0x9375341e: "pyrogram.raw.types.UpdateSavedGifs",
326
+ 0x496f379c: "pyrogram.raw.types.UpdateBotInlineQuery",
327
+ 0x12f12a07: "pyrogram.raw.types.UpdateBotInlineSend",
328
+ 0x1b3f4df7: "pyrogram.raw.types.UpdateEditChannelMessage",
329
+ 0xb9cfc48d: "pyrogram.raw.types.UpdateBotCallbackQuery",
330
+ 0xe40370a3: "pyrogram.raw.types.UpdateEditMessage",
331
+ 0x691e9052: "pyrogram.raw.types.UpdateInlineBotCallbackQuery",
332
+ 0xb75f99a9: "pyrogram.raw.types.UpdateReadChannelOutbox",
333
+ 0x1b49ec6d: "pyrogram.raw.types.UpdateDraftMessage",
334
+ 0x571d2742: "pyrogram.raw.types.UpdateReadFeaturedStickers",
335
+ 0x9a422c20: "pyrogram.raw.types.UpdateRecentStickers",
336
+ 0xa229dd06: "pyrogram.raw.types.UpdateConfig",
337
+ 0x3354678f: "pyrogram.raw.types.UpdatePtsChanged",
338
+ 0x2f2ba99f: "pyrogram.raw.types.UpdateChannelWebPage",
339
+ 0x6e6fe51c: "pyrogram.raw.types.UpdateDialogPinned",
340
+ 0xfa0f3ca2: "pyrogram.raw.types.UpdatePinnedDialogs",
341
+ 0x8317c0c3: "pyrogram.raw.types.UpdateBotWebhookJSON",
342
+ 0x9b9240a6: "pyrogram.raw.types.UpdateBotWebhookJSONQuery",
343
+ 0xb5aefd7d: "pyrogram.raw.types.UpdateBotShippingQuery",
344
+ 0x8caa9a96: "pyrogram.raw.types.UpdateBotPrecheckoutQuery",
345
+ 0xab0f6b1e: "pyrogram.raw.types.UpdatePhoneCall",
346
+ 0x46560264: "pyrogram.raw.types.UpdateLangPackTooLong",
347
+ 0x56022f4d: "pyrogram.raw.types.UpdateLangPack",
348
+ 0xe511996d: "pyrogram.raw.types.UpdateFavedStickers",
349
+ 0xea29055d: "pyrogram.raw.types.UpdateChannelReadMessagesContents",
350
+ 0x7084a7be: "pyrogram.raw.types.UpdateContactsReset",
351
+ 0xb23fc698: "pyrogram.raw.types.UpdateChannelAvailableMessages",
352
+ 0xe16459c3: "pyrogram.raw.types.UpdateDialogUnreadMark",
353
+ 0xaca1657b: "pyrogram.raw.types.UpdateMessagePoll",
354
+ 0x54c01850: "pyrogram.raw.types.UpdateChatDefaultBannedRights",
355
+ 0x19360dc0: "pyrogram.raw.types.UpdateFolderPeers",
356
+ 0x6a7e7366: "pyrogram.raw.types.UpdatePeerSettings",
357
+ 0xb4afcfb0: "pyrogram.raw.types.UpdatePeerLocated",
358
+ 0x39a51dfb: "pyrogram.raw.types.UpdateNewScheduledMessage",
359
+ 0x90866cee: "pyrogram.raw.types.UpdateDeleteScheduledMessages",
360
+ 0x8216fba3: "pyrogram.raw.types.UpdateTheme",
361
+ 0x871fb939: "pyrogram.raw.types.UpdateGeoLiveViewed",
362
+ 0x564fe691: "pyrogram.raw.types.UpdateLoginToken",
363
+ 0x24f40e77: "pyrogram.raw.types.UpdateMessagePollVote",
364
+ 0x26ffde7d: "pyrogram.raw.types.UpdateDialogFilter",
365
+ 0xa5d72105: "pyrogram.raw.types.UpdateDialogFilterOrder",
366
+ 0x3504914f: "pyrogram.raw.types.UpdateDialogFilters",
367
+ 0x2661bf09: "pyrogram.raw.types.UpdatePhoneCallSignalingData",
368
+ 0xd29a27f4: "pyrogram.raw.types.UpdateChannelMessageForwards",
369
+ 0xd6b19546: "pyrogram.raw.types.UpdateReadChannelDiscussionInbox",
370
+ 0x695c9e7c: "pyrogram.raw.types.UpdateReadChannelDiscussionOutbox",
371
+ 0xebe07752: "pyrogram.raw.types.UpdatePeerBlocked",
372
+ 0x8c88c923: "pyrogram.raw.types.UpdateChannelUserTyping",
373
+ 0xed85eab5: "pyrogram.raw.types.UpdatePinnedMessages",
374
+ 0x5bb98608: "pyrogram.raw.types.UpdatePinnedChannelMessages",
375
+ 0xf89a6a4e: "pyrogram.raw.types.UpdateChat",
376
+ 0xf2ebdb4e: "pyrogram.raw.types.UpdateGroupCallParticipants",
377
+ 0x14b24500: "pyrogram.raw.types.UpdateGroupCall",
378
+ 0xbb9bb9a5: "pyrogram.raw.types.UpdatePeerHistoryTTL",
379
+ 0xd087663a: "pyrogram.raw.types.UpdateChatParticipant",
380
+ 0x985d3abb: "pyrogram.raw.types.UpdateChannelParticipant",
381
+ 0xc4870a49: "pyrogram.raw.types.UpdateBotStopped",
382
+ 0xb783982: "pyrogram.raw.types.UpdateGroupCallConnection",
383
+ 0x4d712f2e: "pyrogram.raw.types.UpdateBotCommands",
384
+ 0x7063c3db: "pyrogram.raw.types.UpdatePendingJoinRequests",
385
+ 0x11dfa986: "pyrogram.raw.types.UpdateBotChatInviteRequester",
386
+ 0x5e1b3cb8: "pyrogram.raw.types.UpdateMessageReactions",
387
+ 0x17b7a20b: "pyrogram.raw.types.UpdateAttachMenuBots",
388
+ 0x1592b79d: "pyrogram.raw.types.UpdateWebViewResultSent",
389
+ 0x14b85813: "pyrogram.raw.types.UpdateBotMenuButton",
390
+ 0x74d8be99: "pyrogram.raw.types.UpdateSavedRingtones",
391
+ 0x84cd5a: "pyrogram.raw.types.UpdateTranscribedAudio",
392
+ 0xfb4c496c: "pyrogram.raw.types.UpdateReadFeaturedEmojiStickers",
393
+ 0x28373599: "pyrogram.raw.types.UpdateUserEmojiStatus",
394
+ 0x30f443db: "pyrogram.raw.types.UpdateRecentEmojiStatuses",
395
+ 0x6f7863f4: "pyrogram.raw.types.UpdateRecentReactions",
396
+ 0x86fccf85: "pyrogram.raw.types.UpdateMoveStickerSetToTop",
397
+ 0xd5a41724: "pyrogram.raw.types.UpdateMessageExtendedMedia",
398
+ 0x192efbe3: "pyrogram.raw.types.UpdateChannelPinnedTopic",
399
+ 0xfe198602: "pyrogram.raw.types.UpdateChannelPinnedTopics",
400
+ 0x20529438: "pyrogram.raw.types.UpdateUser",
401
+ 0xec05b097: "pyrogram.raw.types.UpdateAutoSaveSettings",
402
+ 0x75b3b798: "pyrogram.raw.types.UpdateStory",
403
+ 0xf74e932b: "pyrogram.raw.types.UpdateReadStories",
404
+ 0x1bf335b9: "pyrogram.raw.types.UpdateStoryID",
405
+ 0x2c084dc1: "pyrogram.raw.types.UpdateStoriesStealthMode",
406
+ 0x7d627683: "pyrogram.raw.types.UpdateSentStoryReaction",
407
+ 0x904dd49c: "pyrogram.raw.types.UpdateBotChatBoost",
408
+ 0x7b68920: "pyrogram.raw.types.UpdateChannelViewForumAsMessages",
409
+ 0xae3f101d: "pyrogram.raw.types.UpdatePeerWallpaper",
410
+ 0xac21d3ce: "pyrogram.raw.types.UpdateBotMessageReaction",
411
+ 0x9cb7759: "pyrogram.raw.types.UpdateBotMessageReactions",
412
+ 0xaeaf9e74: "pyrogram.raw.types.UpdateSavedDialogPinned",
413
+ 0x686c85a6: "pyrogram.raw.types.UpdatePinnedSavedDialogs",
414
+ 0x39c67432: "pyrogram.raw.types.UpdateSavedReactionTags",
415
+ 0xf16269d4: "pyrogram.raw.types.UpdateSmsJob",
416
+ 0xf9470ab2: "pyrogram.raw.types.UpdateQuickReplies",
417
+ 0xf53da717: "pyrogram.raw.types.UpdateNewQuickReply",
418
+ 0x53e6f1ec: "pyrogram.raw.types.UpdateDeleteQuickReply",
419
+ 0x3e050d0f: "pyrogram.raw.types.UpdateQuickReplyMessage",
420
+ 0x566fe7cd: "pyrogram.raw.types.UpdateDeleteQuickReplyMessages",
421
+ 0x8ae5c97a: "pyrogram.raw.types.UpdateBotBusinessConnect",
422
+ 0x9ddb347c: "pyrogram.raw.types.UpdateBotNewBusinessMessage",
423
+ 0x7df587c: "pyrogram.raw.types.UpdateBotEditBusinessMessage",
424
+ 0xa02a982e: "pyrogram.raw.types.UpdateBotDeleteBusinessMessage",
425
+ 0x1824e40b: "pyrogram.raw.types.UpdateNewStoryReaction",
426
+ 0xdfd961f5: "pyrogram.raw.types.UpdateBroadcastRevenueTransactions",
427
+ 0xfb85198: "pyrogram.raw.types.UpdateStarsBalance",
428
+ 0x1ea2fda7: "pyrogram.raw.types.UpdateBusinessBotCallbackQuery",
429
+ 0xa584b019: "pyrogram.raw.types.UpdateStarsRevenueStatus",
430
+ 0xa56c2a3e: "pyrogram.raw.types.updates.State",
431
+ 0x5d75a138: "pyrogram.raw.types.updates.DifferenceEmpty",
432
+ 0xf49ca0: "pyrogram.raw.types.updates.Difference",
433
+ 0xa8fb1981: "pyrogram.raw.types.updates.DifferenceSlice",
434
+ 0x4afe8f6d: "pyrogram.raw.types.updates.DifferenceTooLong",
435
+ 0xe317af7e: "pyrogram.raw.types.UpdatesTooLong",
436
+ 0x313bc7f8: "pyrogram.raw.types.UpdateShortMessage",
437
+ 0x4d6deea5: "pyrogram.raw.types.UpdateShortChatMessage",
438
+ 0x78d4dec1: "pyrogram.raw.types.UpdateShort",
439
+ 0x725b04c3: "pyrogram.raw.types.UpdatesCombined",
440
+ 0x74ae4240: "pyrogram.raw.types.Updates",
441
+ 0x9015e101: "pyrogram.raw.types.UpdateShortSentMessage",
442
+ 0x8dca6aa5: "pyrogram.raw.types.photos.Photos",
443
+ 0x15051f54: "pyrogram.raw.types.photos.PhotosSlice",
444
+ 0x20212ca8: "pyrogram.raw.types.photos.Photo",
445
+ 0x96a18d5: "pyrogram.raw.types.upload.File",
446
+ 0xf18cda44: "pyrogram.raw.types.upload.FileCdnRedirect",
447
+ 0x18b7a10d: "pyrogram.raw.types.DcOption",
448
+ 0xcc1a241e: "pyrogram.raw.types.Config",
449
+ 0x8e1a1775: "pyrogram.raw.types.NearestDc",
450
+ 0xccbbce30: "pyrogram.raw.types.help.AppUpdate",
451
+ 0xc45a6536: "pyrogram.raw.types.help.NoAppUpdate",
452
+ 0x18cb9f78: "pyrogram.raw.types.help.InviteText",
453
+ 0xab7ec0a0: "pyrogram.raw.types.EncryptedChatEmpty",
454
+ 0x66b25953: "pyrogram.raw.types.EncryptedChatWaiting",
455
+ 0x48f1d94c: "pyrogram.raw.types.EncryptedChatRequested",
456
+ 0x61f0d4c7: "pyrogram.raw.types.EncryptedChat",
457
+ 0x1e1c7c45: "pyrogram.raw.types.EncryptedChatDiscarded",
458
+ 0xf141b5e1: "pyrogram.raw.types.InputEncryptedChat",
459
+ 0xc21f497e: "pyrogram.raw.types.EncryptedFileEmpty",
460
+ 0xa8008cd8: "pyrogram.raw.types.EncryptedFile",
461
+ 0x1837c364: "pyrogram.raw.types.InputEncryptedFileEmpty",
462
+ 0x64bd0306: "pyrogram.raw.types.InputEncryptedFileUploaded",
463
+ 0x5a17b5e5: "pyrogram.raw.types.InputEncryptedFile",
464
+ 0x2dc173c8: "pyrogram.raw.types.InputEncryptedFileBigUploaded",
465
+ 0xed18c118: "pyrogram.raw.types.EncryptedMessage",
466
+ 0x23734b06: "pyrogram.raw.types.EncryptedMessageService",
467
+ 0xc0e24635: "pyrogram.raw.types.messages.DhConfigNotModified",
468
+ 0x2c221edd: "pyrogram.raw.types.messages.DhConfig",
469
+ 0x560f8935: "pyrogram.raw.types.messages.SentEncryptedMessage",
470
+ 0x9493ff32: "pyrogram.raw.types.messages.SentEncryptedFile",
471
+ 0x72f0eaae: "pyrogram.raw.types.InputDocumentEmpty",
472
+ 0x1abfb575: "pyrogram.raw.types.InputDocument",
473
+ 0x36f8c871: "pyrogram.raw.types.DocumentEmpty",
474
+ 0x8fd4c4d8: "pyrogram.raw.types.Document",
475
+ 0x17c6b5f6: "pyrogram.raw.types.help.Support",
476
+ 0x9fd40bd8: "pyrogram.raw.types.NotifyPeer",
477
+ 0xb4c83b4c: "pyrogram.raw.types.NotifyUsers",
478
+ 0xc007cec3: "pyrogram.raw.types.NotifyChats",
479
+ 0xd612e8ef: "pyrogram.raw.types.NotifyBroadcasts",
480
+ 0x226e6308: "pyrogram.raw.types.NotifyForumTopic",
481
+ 0x16bf744e: "pyrogram.raw.types.SendMessageTypingAction",
482
+ 0xfd5ec8f5: "pyrogram.raw.types.SendMessageCancelAction",
483
+ 0xa187d66f: "pyrogram.raw.types.SendMessageRecordVideoAction",
484
+ 0xe9763aec: "pyrogram.raw.types.SendMessageUploadVideoAction",
485
+ 0xd52f73f7: "pyrogram.raw.types.SendMessageRecordAudioAction",
486
+ 0xf351d7ab: "pyrogram.raw.types.SendMessageUploadAudioAction",
487
+ 0xd1d34a26: "pyrogram.raw.types.SendMessageUploadPhotoAction",
488
+ 0xaa0cd9e4: "pyrogram.raw.types.SendMessageUploadDocumentAction",
489
+ 0x176f8ba1: "pyrogram.raw.types.SendMessageGeoLocationAction",
490
+ 0x628cbc6f: "pyrogram.raw.types.SendMessageChooseContactAction",
491
+ 0xdd6a8f48: "pyrogram.raw.types.SendMessageGamePlayAction",
492
+ 0x88f27fbc: "pyrogram.raw.types.SendMessageRecordRoundAction",
493
+ 0x243e1c66: "pyrogram.raw.types.SendMessageUploadRoundAction",
494
+ 0xd92c2285: "pyrogram.raw.types.SpeakingInGroupCallAction",
495
+ 0xdbda9246: "pyrogram.raw.types.SendMessageHistoryImportAction",
496
+ 0xb05ac6b1: "pyrogram.raw.types.SendMessageChooseStickerAction",
497
+ 0x25972bcb: "pyrogram.raw.types.SendMessageEmojiInteraction",
498
+ 0xb665902e: "pyrogram.raw.types.SendMessageEmojiInteractionSeen",
499
+ 0xb3134d9d: "pyrogram.raw.types.contacts.Found",
500
+ 0x4f96cb18: "pyrogram.raw.types.InputPrivacyKeyStatusTimestamp",
501
+ 0xbdfb0426: "pyrogram.raw.types.InputPrivacyKeyChatInvite",
502
+ 0xfabadc5f: "pyrogram.raw.types.InputPrivacyKeyPhoneCall",
503
+ 0xdb9e70d2: "pyrogram.raw.types.InputPrivacyKeyPhoneP2P",
504
+ 0xa4dd4c08: "pyrogram.raw.types.InputPrivacyKeyForwards",
505
+ 0x5719bacc: "pyrogram.raw.types.InputPrivacyKeyProfilePhoto",
506
+ 0x352dafa: "pyrogram.raw.types.InputPrivacyKeyPhoneNumber",
507
+ 0xd1219bdd: "pyrogram.raw.types.InputPrivacyKeyAddedByPhone",
508
+ 0xaee69d68: "pyrogram.raw.types.InputPrivacyKeyVoiceMessages",
509
+ 0x3823cc40: "pyrogram.raw.types.InputPrivacyKeyAbout",
510
+ 0xd65a11cc: "pyrogram.raw.types.InputPrivacyKeyBirthday",
511
+ 0xbc2eab30: "pyrogram.raw.types.PrivacyKeyStatusTimestamp",
512
+ 0x500e6dfa: "pyrogram.raw.types.PrivacyKeyChatInvite",
513
+ 0x3d662b7b: "pyrogram.raw.types.PrivacyKeyPhoneCall",
514
+ 0x39491cc8: "pyrogram.raw.types.PrivacyKeyPhoneP2P",
515
+ 0x69ec56a3: "pyrogram.raw.types.PrivacyKeyForwards",
516
+ 0x96151fed: "pyrogram.raw.types.PrivacyKeyProfilePhoto",
517
+ 0xd19ae46d: "pyrogram.raw.types.PrivacyKeyPhoneNumber",
518
+ 0x42ffd42b: "pyrogram.raw.types.PrivacyKeyAddedByPhone",
519
+ 0x697f414: "pyrogram.raw.types.PrivacyKeyVoiceMessages",
520
+ 0xa486b761: "pyrogram.raw.types.PrivacyKeyAbout",
521
+ 0x2000a518: "pyrogram.raw.types.PrivacyKeyBirthday",
522
+ 0xd09e07b: "pyrogram.raw.types.InputPrivacyValueAllowContacts",
523
+ 0x184b35ce: "pyrogram.raw.types.InputPrivacyValueAllowAll",
524
+ 0x131cc67f: "pyrogram.raw.types.InputPrivacyValueAllowUsers",
525
+ 0xba52007: "pyrogram.raw.types.InputPrivacyValueDisallowContacts",
526
+ 0xd66b66c9: "pyrogram.raw.types.InputPrivacyValueDisallowAll",
527
+ 0x90110467: "pyrogram.raw.types.InputPrivacyValueDisallowUsers",
528
+ 0x840649cf: "pyrogram.raw.types.InputPrivacyValueAllowChatParticipants",
529
+ 0xe94f0f86: "pyrogram.raw.types.InputPrivacyValueDisallowChatParticipants",
530
+ 0x2f453e49: "pyrogram.raw.types.InputPrivacyValueAllowCloseFriends",
531
+ 0x77cdc9f1: "pyrogram.raw.types.InputPrivacyValueAllowPremium",
532
+ 0xfffe1bac: "pyrogram.raw.types.PrivacyValueAllowContacts",
533
+ 0x65427b82: "pyrogram.raw.types.PrivacyValueAllowAll",
534
+ 0xb8905fb2: "pyrogram.raw.types.PrivacyValueAllowUsers",
535
+ 0xf888fa1a: "pyrogram.raw.types.PrivacyValueDisallowContacts",
536
+ 0x8b73e763: "pyrogram.raw.types.PrivacyValueDisallowAll",
537
+ 0xe4621141: "pyrogram.raw.types.PrivacyValueDisallowUsers",
538
+ 0x6b134e8e: "pyrogram.raw.types.PrivacyValueAllowChatParticipants",
539
+ 0x41c87565: "pyrogram.raw.types.PrivacyValueDisallowChatParticipants",
540
+ 0xf7e8d89b: "pyrogram.raw.types.PrivacyValueAllowCloseFriends",
541
+ 0xece9814b: "pyrogram.raw.types.PrivacyValueAllowPremium",
542
+ 0x50a04e45: "pyrogram.raw.types.account.PrivacyRules",
543
+ 0xb8d0afdf: "pyrogram.raw.types.AccountDaysTTL",
544
+ 0x6c37c15c: "pyrogram.raw.types.DocumentAttributeImageSize",
545
+ 0x11b58939: "pyrogram.raw.types.DocumentAttributeAnimated",
546
+ 0x6319d612: "pyrogram.raw.types.DocumentAttributeSticker",
547
+ 0xd38ff1c2: "pyrogram.raw.types.DocumentAttributeVideo",
548
+ 0x9852f9c6: "pyrogram.raw.types.DocumentAttributeAudio",
549
+ 0x15590068: "pyrogram.raw.types.DocumentAttributeFilename",
550
+ 0x9801d2f7: "pyrogram.raw.types.DocumentAttributeHasStickers",
551
+ 0xfd149899: "pyrogram.raw.types.DocumentAttributeCustomEmoji",
552
+ 0xf1749a22: "pyrogram.raw.types.messages.StickersNotModified",
553
+ 0x30a6ec7e: "pyrogram.raw.types.messages.Stickers",
554
+ 0x12b299d4: "pyrogram.raw.types.StickerPack",
555
+ 0xe86602c3: "pyrogram.raw.types.messages.AllStickersNotModified",
556
+ 0xcdbbcebb: "pyrogram.raw.types.messages.AllStickers",
557
+ 0x84d19185: "pyrogram.raw.types.messages.AffectedMessages",
558
+ 0x211a1788: "pyrogram.raw.types.WebPageEmpty",
559
+ 0xb0d13e47: "pyrogram.raw.types.WebPagePending",
560
+ 0xe89c45b2: "pyrogram.raw.types.WebPage",
561
+ 0x7311ca11: "pyrogram.raw.types.WebPageNotModified",
562
+ 0xad01d61d: "pyrogram.raw.types.Authorization",
563
+ 0x4bff8ea0: "pyrogram.raw.types.account.Authorizations",
564
+ 0x957b50fb: "pyrogram.raw.types.account.Password",
565
+ 0x9a5c33e5: "pyrogram.raw.types.account.PasswordSettings",
566
+ 0xc23727c9: "pyrogram.raw.types.account.PasswordInputSettings",
567
+ 0x137948a5: "pyrogram.raw.types.auth.PasswordRecovery",
568
+ 0xa384b779: "pyrogram.raw.types.ReceivedNotifyMessage",
569
+ 0xab4a819: "pyrogram.raw.types.ChatInviteExported",
570
+ 0xed107ab7: "pyrogram.raw.types.ChatInvitePublicJoinRequests",
571
+ 0x5a686d7c: "pyrogram.raw.types.ChatInviteAlready",
572
+ 0xcde0ec40: "pyrogram.raw.types.ChatInvite",
573
+ 0x61695cb0: "pyrogram.raw.types.ChatInvitePeek",
574
+ 0xffb62b95: "pyrogram.raw.types.InputStickerSetEmpty",
575
+ 0x9de7a269: "pyrogram.raw.types.InputStickerSetID",
576
+ 0x861cc8a0: "pyrogram.raw.types.InputStickerSetShortName",
577
+ 0x28703c8: "pyrogram.raw.types.InputStickerSetAnimatedEmoji",
578
+ 0xe67f520e: "pyrogram.raw.types.InputStickerSetDice",
579
+ 0xcde3739: "pyrogram.raw.types.InputStickerSetAnimatedEmojiAnimations",
580
+ 0xc88b3b02: "pyrogram.raw.types.InputStickerSetPremiumGifts",
581
+ 0x4c4d4ce: "pyrogram.raw.types.InputStickerSetEmojiGenericAnimations",
582
+ 0x29d0f5ee: "pyrogram.raw.types.InputStickerSetEmojiDefaultStatuses",
583
+ 0x44c1f8e9: "pyrogram.raw.types.InputStickerSetEmojiDefaultTopicIcons",
584
+ 0x49748553: "pyrogram.raw.types.InputStickerSetEmojiChannelDefaultStatuses",
585
+ 0x2dd14edc: "pyrogram.raw.types.StickerSet",
586
+ 0x6e153f16: "pyrogram.raw.types.messages.StickerSet",
587
+ 0xd3f924eb: "pyrogram.raw.types.messages.StickerSetNotModified",
588
+ 0xc27ac8c7: "pyrogram.raw.types.BotCommand",
589
+ 0x8f300b57: "pyrogram.raw.types.BotInfo",
590
+ 0xa2fa4880: "pyrogram.raw.types.KeyboardButton",
591
+ 0x258aff05: "pyrogram.raw.types.KeyboardButtonUrl",
592
+ 0x35bbdb6b: "pyrogram.raw.types.KeyboardButtonCallback",
593
+ 0xb16a6c29: "pyrogram.raw.types.KeyboardButtonRequestPhone",
594
+ 0xfc796b3f: "pyrogram.raw.types.KeyboardButtonRequestGeoLocation",
595
+ 0x93b9fbb5: "pyrogram.raw.types.KeyboardButtonSwitchInline",
596
+ 0x50f41ccf: "pyrogram.raw.types.KeyboardButtonGame",
597
+ 0xafd93fbb: "pyrogram.raw.types.KeyboardButtonBuy",
598
+ 0x10b78d29: "pyrogram.raw.types.KeyboardButtonUrlAuth",
599
+ 0xd02e7fd4: "pyrogram.raw.types.InputKeyboardButtonUrlAuth",
600
+ 0xbbc7515d: "pyrogram.raw.types.KeyboardButtonRequestPoll",
601
+ 0xe988037b: "pyrogram.raw.types.InputKeyboardButtonUserProfile",
602
+ 0x308660c1: "pyrogram.raw.types.KeyboardButtonUserProfile",
603
+ 0x13767230: "pyrogram.raw.types.KeyboardButtonWebView",
604
+ 0xa0c0505c: "pyrogram.raw.types.KeyboardButtonSimpleWebView",
605
+ 0x53d7bfd8: "pyrogram.raw.types.KeyboardButtonRequestPeer",
606
+ 0xc9662d05: "pyrogram.raw.types.InputKeyboardButtonRequestPeer",
607
+ 0x77608b83: "pyrogram.raw.types.KeyboardButtonRow",
608
+ 0xa03e5b85: "pyrogram.raw.types.ReplyKeyboardHide",
609
+ 0x86b40b08: "pyrogram.raw.types.ReplyKeyboardForceReply",
610
+ 0x85dd99d1: "pyrogram.raw.types.ReplyKeyboardMarkup",
611
+ 0x48a30254: "pyrogram.raw.types.ReplyInlineMarkup",
612
+ 0xbb92ba95: "pyrogram.raw.types.MessageEntityUnknown",
613
+ 0xfa04579d: "pyrogram.raw.types.MessageEntityMention",
614
+ 0x6f635b0d: "pyrogram.raw.types.MessageEntityHashtag",
615
+ 0x6cef8ac7: "pyrogram.raw.types.MessageEntityBotCommand",
616
+ 0x6ed02538: "pyrogram.raw.types.MessageEntityUrl",
617
+ 0x64e475c2: "pyrogram.raw.types.MessageEntityEmail",
618
+ 0xbd610bc9: "pyrogram.raw.types.MessageEntityBold",
619
+ 0x826f8b60: "pyrogram.raw.types.MessageEntityItalic",
620
+ 0x28a20571: "pyrogram.raw.types.MessageEntityCode",
621
+ 0x73924be0: "pyrogram.raw.types.MessageEntityPre",
622
+ 0x76a6d327: "pyrogram.raw.types.MessageEntityTextUrl",
623
+ 0xdc7b1140: "pyrogram.raw.types.MessageEntityMentionName",
624
+ 0x208e68c9: "pyrogram.raw.types.InputMessageEntityMentionName",
625
+ 0x9b69e34b: "pyrogram.raw.types.MessageEntityPhone",
626
+ 0x4c4e743f: "pyrogram.raw.types.MessageEntityCashtag",
627
+ 0x9c4e7e8b: "pyrogram.raw.types.MessageEntityUnderline",
628
+ 0xbf0693d4: "pyrogram.raw.types.MessageEntityStrike",
629
+ 0x761e6af4: "pyrogram.raw.types.MessageEntityBankCard",
630
+ 0x32ca960f: "pyrogram.raw.types.MessageEntitySpoiler",
631
+ 0xc8cf05f8: "pyrogram.raw.types.MessageEntityCustomEmoji",
632
+ 0xf1ccaaac: "pyrogram.raw.types.MessageEntityBlockquote",
633
+ 0xee8c1e86: "pyrogram.raw.types.InputChannelEmpty",
634
+ 0xf35aec28: "pyrogram.raw.types.InputChannel",
635
+ 0x5b934f9d: "pyrogram.raw.types.InputChannelFromMessage",
636
+ 0x7f077ad9: "pyrogram.raw.types.contacts.ResolvedPeer",
637
+ 0xae30253: "pyrogram.raw.types.MessageRange",
638
+ 0x3e11affb: "pyrogram.raw.types.updates.ChannelDifferenceEmpty",
639
+ 0xa4bcc6fe: "pyrogram.raw.types.updates.ChannelDifferenceTooLong",
640
+ 0x2064674e: "pyrogram.raw.types.updates.ChannelDifference",
641
+ 0x94d42ee7: "pyrogram.raw.types.ChannelMessagesFilterEmpty",
642
+ 0xcd77d957: "pyrogram.raw.types.ChannelMessagesFilter",
643
+ 0xc00c07c0: "pyrogram.raw.types.ChannelParticipant",
644
+ 0x35a8bfa7: "pyrogram.raw.types.ChannelParticipantSelf",
645
+ 0x2fe601d3: "pyrogram.raw.types.ChannelParticipantCreator",
646
+ 0x34c3bb53: "pyrogram.raw.types.ChannelParticipantAdmin",
647
+ 0x6df8014e: "pyrogram.raw.types.ChannelParticipantBanned",
648
+ 0x1b03f006: "pyrogram.raw.types.ChannelParticipantLeft",
649
+ 0xde3f3c79: "pyrogram.raw.types.ChannelParticipantsRecent",
650
+ 0xb4608969: "pyrogram.raw.types.ChannelParticipantsAdmins",
651
+ 0xa3b54985: "pyrogram.raw.types.ChannelParticipantsKicked",
652
+ 0xb0d1865b: "pyrogram.raw.types.ChannelParticipantsBots",
653
+ 0x1427a5e1: "pyrogram.raw.types.ChannelParticipantsBanned",
654
+ 0x656ac4b: "pyrogram.raw.types.ChannelParticipantsSearch",
655
+ 0xbb6ae88d: "pyrogram.raw.types.ChannelParticipantsContacts",
656
+ 0xe04b5ceb: "pyrogram.raw.types.ChannelParticipantsMentions",
657
+ 0x9ab0feaf: "pyrogram.raw.types.channels.ChannelParticipants",
658
+ 0xf0173fe9: "pyrogram.raw.types.channels.ChannelParticipantsNotModified",
659
+ 0xdfb80317: "pyrogram.raw.types.channels.ChannelParticipant",
660
+ 0x780a0310: "pyrogram.raw.types.help.TermsOfService",
661
+ 0xe8025ca2: "pyrogram.raw.types.messages.SavedGifsNotModified",
662
+ 0x84a02a0d: "pyrogram.raw.types.messages.SavedGifs",
663
+ 0x3380c786: "pyrogram.raw.types.InputBotInlineMessageMediaAuto",
664
+ 0x3dcd7a87: "pyrogram.raw.types.InputBotInlineMessageText",
665
+ 0x96929a85: "pyrogram.raw.types.InputBotInlineMessageMediaGeo",
666
+ 0x417bbf11: "pyrogram.raw.types.InputBotInlineMessageMediaVenue",
667
+ 0xa6edbffd: "pyrogram.raw.types.InputBotInlineMessageMediaContact",
668
+ 0x4b425864: "pyrogram.raw.types.InputBotInlineMessageGame",
669
+ 0xd7e78225: "pyrogram.raw.types.InputBotInlineMessageMediaInvoice",
670
+ 0xbddcc510: "pyrogram.raw.types.InputBotInlineMessageMediaWebPage",
671
+ 0x88bf9319: "pyrogram.raw.types.InputBotInlineResult",
672
+ 0xa8d864a7: "pyrogram.raw.types.InputBotInlineResultPhoto",
673
+ 0xfff8fdc4: "pyrogram.raw.types.InputBotInlineResultDocument",
674
+ 0x4fa417f2: "pyrogram.raw.types.InputBotInlineResultGame",
675
+ 0x764cf810: "pyrogram.raw.types.BotInlineMessageMediaAuto",
676
+ 0x8c7f65e2: "pyrogram.raw.types.BotInlineMessageText",
677
+ 0x51846fd: "pyrogram.raw.types.BotInlineMessageMediaGeo",
678
+ 0x8a86659c: "pyrogram.raw.types.BotInlineMessageMediaVenue",
679
+ 0x18d1cdc2: "pyrogram.raw.types.BotInlineMessageMediaContact",
680
+ 0x354a9b09: "pyrogram.raw.types.BotInlineMessageMediaInvoice",
681
+ 0x809ad9a6: "pyrogram.raw.types.BotInlineMessageMediaWebPage",
682
+ 0x11965f3a: "pyrogram.raw.types.BotInlineResult",
683
+ 0x17db940b: "pyrogram.raw.types.BotInlineMediaResult",
684
+ 0xe021f2f6: "pyrogram.raw.types.messages.BotResults",
685
+ 0x5dab1af4: "pyrogram.raw.types.ExportedMessageLink",
686
+ 0x4e4df4bb: "pyrogram.raw.types.MessageFwdHeader",
687
+ 0x72a3158c: "pyrogram.raw.types.auth.CodeTypeSms",
688
+ 0x741cd3e3: "pyrogram.raw.types.auth.CodeTypeCall",
689
+ 0x226ccefb: "pyrogram.raw.types.auth.CodeTypeFlashCall",
690
+ 0xd61ad6ee: "pyrogram.raw.types.auth.CodeTypeMissedCall",
691
+ 0x6ed998c: "pyrogram.raw.types.auth.CodeTypeFragmentSms",
692
+ 0x3dbb5986: "pyrogram.raw.types.auth.SentCodeTypeApp",
693
+ 0xc000bba2: "pyrogram.raw.types.auth.SentCodeTypeSms",
694
+ 0x5353e5a7: "pyrogram.raw.types.auth.SentCodeTypeCall",
695
+ 0xab03c6d9: "pyrogram.raw.types.auth.SentCodeTypeFlashCall",
696
+ 0x82006484: "pyrogram.raw.types.auth.SentCodeTypeMissedCall",
697
+ 0xf450f59b: "pyrogram.raw.types.auth.SentCodeTypeEmailCode",
698
+ 0xa5491dea: "pyrogram.raw.types.auth.SentCodeTypeSetUpEmailRequired",
699
+ 0xd9565c39: "pyrogram.raw.types.auth.SentCodeTypeFragmentSms",
700
+ 0x9fd736: "pyrogram.raw.types.auth.SentCodeTypeFirebaseSms",
701
+ 0xa416ac81: "pyrogram.raw.types.auth.SentCodeTypeSmsWord",
702
+ 0xb37794af: "pyrogram.raw.types.auth.SentCodeTypeSmsPhrase",
703
+ 0x36585ea4: "pyrogram.raw.types.messages.BotCallbackAnswer",
704
+ 0x26b5dde6: "pyrogram.raw.types.messages.MessageEditData",
705
+ 0x890c3d89: "pyrogram.raw.types.InputBotInlineMessageID",
706
+ 0xb6d915d7: "pyrogram.raw.types.InputBotInlineMessageID64",
707
+ 0x3c20629f: "pyrogram.raw.types.InlineBotSwitchPM",
708
+ 0x3371c354: "pyrogram.raw.types.messages.PeerDialogs",
709
+ 0xedcdc05b: "pyrogram.raw.types.TopPeer",
710
+ 0xab661b5b: "pyrogram.raw.types.TopPeerCategoryBotsPM",
711
+ 0x148677e2: "pyrogram.raw.types.TopPeerCategoryBotsInline",
712
+ 0x637b7ed: "pyrogram.raw.types.TopPeerCategoryCorrespondents",
713
+ 0xbd17a14a: "pyrogram.raw.types.TopPeerCategoryGroups",
714
+ 0x161d9628: "pyrogram.raw.types.TopPeerCategoryChannels",
715
+ 0x1e76a78c: "pyrogram.raw.types.TopPeerCategoryPhoneCalls",
716
+ 0xa8406ca9: "pyrogram.raw.types.TopPeerCategoryForwardUsers",
717
+ 0xfbeec0f0: "pyrogram.raw.types.TopPeerCategoryForwardChats",
718
+ 0xfb834291: "pyrogram.raw.types.TopPeerCategoryPeers",
719
+ 0xde266ef5: "pyrogram.raw.types.contacts.TopPeersNotModified",
720
+ 0x70b772a8: "pyrogram.raw.types.contacts.TopPeers",
721
+ 0xb52c939d: "pyrogram.raw.types.contacts.TopPeersDisabled",
722
+ 0x1b0c841a: "pyrogram.raw.types.DraftMessageEmpty",
723
+ 0x2d65321f: "pyrogram.raw.types.DraftMessage",
724
+ 0xc6dc0c66: "pyrogram.raw.types.messages.FeaturedStickersNotModified",
725
+ 0xbe382906: "pyrogram.raw.types.messages.FeaturedStickers",
726
+ 0xb17f890: "pyrogram.raw.types.messages.RecentStickersNotModified",
727
+ 0x88d37c56: "pyrogram.raw.types.messages.RecentStickers",
728
+ 0x4fcba9c8: "pyrogram.raw.types.messages.ArchivedStickers",
729
+ 0x38641628: "pyrogram.raw.types.messages.StickerSetInstallResultSuccess",
730
+ 0x35e410a8: "pyrogram.raw.types.messages.StickerSetInstallResultArchive",
731
+ 0x6410a5d2: "pyrogram.raw.types.StickerSetCovered",
732
+ 0x3407e51b: "pyrogram.raw.types.StickerSetMultiCovered",
733
+ 0x40d13c0e: "pyrogram.raw.types.StickerSetFullCovered",
734
+ 0x77b15d1c: "pyrogram.raw.types.StickerSetNoCovered",
735
+ 0xaed6dbb2: "pyrogram.raw.types.MaskCoords",
736
+ 0x4a992157: "pyrogram.raw.types.InputStickeredMediaPhoto",
737
+ 0x438865b: "pyrogram.raw.types.InputStickeredMediaDocument",
738
+ 0xbdf9653b: "pyrogram.raw.types.Game",
739
+ 0x32c3e77: "pyrogram.raw.types.InputGameID",
740
+ 0xc331e80a: "pyrogram.raw.types.InputGameShortName",
741
+ 0x73a379eb: "pyrogram.raw.types.HighScore",
742
+ 0x9a3bfd99: "pyrogram.raw.types.messages.HighScores",
743
+ 0xdc3d824f: "pyrogram.raw.types.TextEmpty",
744
+ 0x744694e0: "pyrogram.raw.types.TextPlain",
745
+ 0x6724abc4: "pyrogram.raw.types.TextBold",
746
+ 0xd912a59c: "pyrogram.raw.types.TextItalic",
747
+ 0xc12622c4: "pyrogram.raw.types.TextUnderline",
748
+ 0x9bf8bb95: "pyrogram.raw.types.TextStrike",
749
+ 0x6c3f19b9: "pyrogram.raw.types.TextFixed",
750
+ 0x3c2884c1: "pyrogram.raw.types.TextUrl",
751
+ 0xde5a0dd6: "pyrogram.raw.types.TextEmail",
752
+ 0x7e6260d7: "pyrogram.raw.types.TextConcat",
753
+ 0xed6a8504: "pyrogram.raw.types.TextSubscript",
754
+ 0xc7fb5e01: "pyrogram.raw.types.TextSuperscript",
755
+ 0x34b8621: "pyrogram.raw.types.TextMarked",
756
+ 0x1ccb966a: "pyrogram.raw.types.TextPhone",
757
+ 0x81ccf4f: "pyrogram.raw.types.TextImage",
758
+ 0x35553762: "pyrogram.raw.types.TextAnchor",
759
+ 0x13567e8a: "pyrogram.raw.types.PageBlockUnsupported",
760
+ 0x70abc3fd: "pyrogram.raw.types.PageBlockTitle",
761
+ 0x8ffa9a1f: "pyrogram.raw.types.PageBlockSubtitle",
762
+ 0xbaafe5e0: "pyrogram.raw.types.PageBlockAuthorDate",
763
+ 0xbfd064ec: "pyrogram.raw.types.PageBlockHeader",
764
+ 0xf12bb6e1: "pyrogram.raw.types.PageBlockSubheader",
765
+ 0x467a0766: "pyrogram.raw.types.PageBlockParagraph",
766
+ 0xc070d93e: "pyrogram.raw.types.PageBlockPreformatted",
767
+ 0x48870999: "pyrogram.raw.types.PageBlockFooter",
768
+ 0xdb20b188: "pyrogram.raw.types.PageBlockDivider",
769
+ 0xce0d37b0: "pyrogram.raw.types.PageBlockAnchor",
770
+ 0xe4e88011: "pyrogram.raw.types.PageBlockList",
771
+ 0x263d7c26: "pyrogram.raw.types.PageBlockBlockquote",
772
+ 0x4f4456d3: "pyrogram.raw.types.PageBlockPullquote",
773
+ 0x1759c560: "pyrogram.raw.types.PageBlockPhoto",
774
+ 0x7c8fe7b6: "pyrogram.raw.types.PageBlockVideo",
775
+ 0x39f23300: "pyrogram.raw.types.PageBlockCover",
776
+ 0xa8718dc5: "pyrogram.raw.types.PageBlockEmbed",
777
+ 0xf259a80b: "pyrogram.raw.types.PageBlockEmbedPost",
778
+ 0x65a0fa4d: "pyrogram.raw.types.PageBlockCollage",
779
+ 0x31f9590: "pyrogram.raw.types.PageBlockSlideshow",
780
+ 0xef1751b5: "pyrogram.raw.types.PageBlockChannel",
781
+ 0x804361ea: "pyrogram.raw.types.PageBlockAudio",
782
+ 0x1e148390: "pyrogram.raw.types.PageBlockKicker",
783
+ 0xbf4dea82: "pyrogram.raw.types.PageBlockTable",
784
+ 0x9a8ae1e1: "pyrogram.raw.types.PageBlockOrderedList",
785
+ 0x76768bed: "pyrogram.raw.types.PageBlockDetails",
786
+ 0x16115a96: "pyrogram.raw.types.PageBlockRelatedArticles",
787
+ 0xa44f3ef6: "pyrogram.raw.types.PageBlockMap",
788
+ 0x85e42301: "pyrogram.raw.types.PhoneCallDiscardReasonMissed",
789
+ 0xe095c1a0: "pyrogram.raw.types.PhoneCallDiscardReasonDisconnect",
790
+ 0x57adc690: "pyrogram.raw.types.PhoneCallDiscardReasonHangup",
791
+ 0xfaf7e8c9: "pyrogram.raw.types.PhoneCallDiscardReasonBusy",
792
+ 0x7d748d04: "pyrogram.raw.types.DataJSON",
793
+ 0xcb296bf8: "pyrogram.raw.types.LabeledPrice",
794
+ 0x5db95a15: "pyrogram.raw.types.Invoice",
795
+ 0xea02c27e: "pyrogram.raw.types.PaymentCharge",
796
+ 0x1e8caaeb: "pyrogram.raw.types.PostAddress",
797
+ 0x909c3f94: "pyrogram.raw.types.PaymentRequestedInfo",
798
+ 0xcdc27a1f: "pyrogram.raw.types.PaymentSavedCredentialsCard",
799
+ 0x1c570ed1: "pyrogram.raw.types.WebDocument",
800
+ 0xf9c8bcc6: "pyrogram.raw.types.WebDocumentNoProxy",
801
+ 0x9bed434d: "pyrogram.raw.types.InputWebDocument",
802
+ 0xc239d686: "pyrogram.raw.types.InputWebFileLocation",
803
+ 0x9f2221c9: "pyrogram.raw.types.InputWebFileGeoPointLocation",
804
+ 0xf46fe924: "pyrogram.raw.types.InputWebFileAudioAlbumThumbLocation",
805
+ 0x21e753bc: "pyrogram.raw.types.upload.WebFile",
806
+ 0xa0058751: "pyrogram.raw.types.payments.PaymentForm",
807
+ 0x7bf6b15c: "pyrogram.raw.types.payments.PaymentFormStars",
808
+ 0xd1451883: "pyrogram.raw.types.payments.ValidatedRequestedInfo",
809
+ 0x4e5f810d: "pyrogram.raw.types.payments.PaymentResult",
810
+ 0xd8411139: "pyrogram.raw.types.payments.PaymentVerificationNeeded",
811
+ 0x70c4fe03: "pyrogram.raw.types.payments.PaymentReceipt",
812
+ 0xdabbf83a: "pyrogram.raw.types.payments.PaymentReceiptStars",
813
+ 0xfb8fe43c: "pyrogram.raw.types.payments.SavedInfo",
814
+ 0xc10eb2cf: "pyrogram.raw.types.InputPaymentCredentialsSaved",
815
+ 0x3417d728: "pyrogram.raw.types.InputPaymentCredentials",
816
+ 0xaa1c39f: "pyrogram.raw.types.InputPaymentCredentialsApplePay",
817
+ 0x8ac32801: "pyrogram.raw.types.InputPaymentCredentialsGooglePay",
818
+ 0xdb64fd34: "pyrogram.raw.types.account.TmpPassword",
819
+ 0xb6213cdf: "pyrogram.raw.types.ShippingOption",
820
+ 0x32da9e9c: "pyrogram.raw.types.InputStickerSetItem",
821
+ 0x1e36fded: "pyrogram.raw.types.InputPhoneCall",
822
+ 0x5366c915: "pyrogram.raw.types.PhoneCallEmpty",
823
+ 0xc5226f17: "pyrogram.raw.types.PhoneCallWaiting",
824
+ 0x14b0ed0c: "pyrogram.raw.types.PhoneCallRequested",
825
+ 0x3660c311: "pyrogram.raw.types.PhoneCallAccepted",
826
+ 0x30535af5: "pyrogram.raw.types.PhoneCall",
827
+ 0x50ca4de1: "pyrogram.raw.types.PhoneCallDiscarded",
828
+ 0x9cc123c7: "pyrogram.raw.types.PhoneConnection",
829
+ 0x635fe375: "pyrogram.raw.types.PhoneConnectionWebrtc",
830
+ 0xfc878fc8: "pyrogram.raw.types.PhoneCallProtocol",
831
+ 0xec82e140: "pyrogram.raw.types.phone.PhoneCall",
832
+ 0xeea8e46e: "pyrogram.raw.types.upload.CdnFileReuploadNeeded",
833
+ 0xa99fca4f: "pyrogram.raw.types.upload.CdnFile",
834
+ 0xc982eaba: "pyrogram.raw.types.CdnPublicKey",
835
+ 0x5725e40a: "pyrogram.raw.types.CdnConfig",
836
+ 0xcad181f6: "pyrogram.raw.types.LangPackString",
837
+ 0x6c47ac9f: "pyrogram.raw.types.LangPackStringPluralized",
838
+ 0x2979eeb2: "pyrogram.raw.types.LangPackStringDeleted",
839
+ 0xf385c1f6: "pyrogram.raw.types.LangPackDifference",
840
+ 0xeeca5ce3: "pyrogram.raw.types.LangPackLanguage",
841
+ 0xe6dfb825: "pyrogram.raw.types.ChannelAdminLogEventActionChangeTitle",
842
+ 0x55188a2e: "pyrogram.raw.types.ChannelAdminLogEventActionChangeAbout",
843
+ 0x6a4afc38: "pyrogram.raw.types.ChannelAdminLogEventActionChangeUsername",
844
+ 0x434bd2af: "pyrogram.raw.types.ChannelAdminLogEventActionChangePhoto",
845
+ 0x1b7907ae: "pyrogram.raw.types.ChannelAdminLogEventActionToggleInvites",
846
+ 0x26ae0971: "pyrogram.raw.types.ChannelAdminLogEventActionToggleSignatures",
847
+ 0xe9e82c18: "pyrogram.raw.types.ChannelAdminLogEventActionUpdatePinned",
848
+ 0x709b2405: "pyrogram.raw.types.ChannelAdminLogEventActionEditMessage",
849
+ 0x42e047bb: "pyrogram.raw.types.ChannelAdminLogEventActionDeleteMessage",
850
+ 0x183040d3: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantJoin",
851
+ 0xf89777f2: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantLeave",
852
+ 0xe31c34d8: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantInvite",
853
+ 0xe6d83d7e: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantToggleBan",
854
+ 0xd5676710: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantToggleAdmin",
855
+ 0xb1c3caa7: "pyrogram.raw.types.ChannelAdminLogEventActionChangeStickerSet",
856
+ 0x5f5c95f1: "pyrogram.raw.types.ChannelAdminLogEventActionTogglePreHistoryHidden",
857
+ 0x2df5fc0a: "pyrogram.raw.types.ChannelAdminLogEventActionDefaultBannedRights",
858
+ 0x8f079643: "pyrogram.raw.types.ChannelAdminLogEventActionStopPoll",
859
+ 0x50c7ac8: "pyrogram.raw.types.ChannelAdminLogEventActionChangeLinkedChat",
860
+ 0xe6b76ae: "pyrogram.raw.types.ChannelAdminLogEventActionChangeLocation",
861
+ 0x53909779: "pyrogram.raw.types.ChannelAdminLogEventActionToggleSlowMode",
862
+ 0x23209745: "pyrogram.raw.types.ChannelAdminLogEventActionStartGroupCall",
863
+ 0xdb9f9140: "pyrogram.raw.types.ChannelAdminLogEventActionDiscardGroupCall",
864
+ 0xf92424d2: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantMute",
865
+ 0xe64429c0: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantUnmute",
866
+ 0x56d6a247: "pyrogram.raw.types.ChannelAdminLogEventActionToggleGroupCallSetting",
867
+ 0xfe9fc158: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantJoinByInvite",
868
+ 0x5a50fca4: "pyrogram.raw.types.ChannelAdminLogEventActionExportedInviteDelete",
869
+ 0x410a134e: "pyrogram.raw.types.ChannelAdminLogEventActionExportedInviteRevoke",
870
+ 0xe90ebb59: "pyrogram.raw.types.ChannelAdminLogEventActionExportedInviteEdit",
871
+ 0x3e7f6847: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantVolume",
872
+ 0x6e941a38: "pyrogram.raw.types.ChannelAdminLogEventActionChangeHistoryTTL",
873
+ 0xafb6144a: "pyrogram.raw.types.ChannelAdminLogEventActionParticipantJoinByRequest",
874
+ 0xcb2ac766: "pyrogram.raw.types.ChannelAdminLogEventActionToggleNoForwards",
875
+ 0x278f2868: "pyrogram.raw.types.ChannelAdminLogEventActionSendMessage",
876
+ 0xbe4e0ef8: "pyrogram.raw.types.ChannelAdminLogEventActionChangeAvailableReactions",
877
+ 0xf04fb3a9: "pyrogram.raw.types.ChannelAdminLogEventActionChangeUsernames",
878
+ 0x2cc6383: "pyrogram.raw.types.ChannelAdminLogEventActionToggleForum",
879
+ 0x58707d28: "pyrogram.raw.types.ChannelAdminLogEventActionCreateTopic",
880
+ 0xf06fe208: "pyrogram.raw.types.ChannelAdminLogEventActionEditTopic",
881
+ 0xae168909: "pyrogram.raw.types.ChannelAdminLogEventActionDeleteTopic",
882
+ 0x5d8d353b: "pyrogram.raw.types.ChannelAdminLogEventActionPinTopic",
883
+ 0x64f36dfc: "pyrogram.raw.types.ChannelAdminLogEventActionToggleAntiSpam",
884
+ 0x5796e780: "pyrogram.raw.types.ChannelAdminLogEventActionChangePeerColor",
885
+ 0x5e477b25: "pyrogram.raw.types.ChannelAdminLogEventActionChangeProfilePeerColor",
886
+ 0x31bb5d52: "pyrogram.raw.types.ChannelAdminLogEventActionChangeWallpaper",
887
+ 0x3ea9feb1: "pyrogram.raw.types.ChannelAdminLogEventActionChangeEmojiStatus",
888
+ 0x46d840ab: "pyrogram.raw.types.ChannelAdminLogEventActionChangeEmojiStickerSet",
889
+ 0x1fad68cd: "pyrogram.raw.types.ChannelAdminLogEvent",
890
+ 0xed8af74d: "pyrogram.raw.types.channels.AdminLogResults",
891
+ 0xea107ae4: "pyrogram.raw.types.ChannelAdminLogEventsFilter",
892
+ 0x5ce14175: "pyrogram.raw.types.PopularContact",
893
+ 0x9e8fa6d3: "pyrogram.raw.types.messages.FavedStickersNotModified",
894
+ 0x2cb51097: "pyrogram.raw.types.messages.FavedStickers",
895
+ 0x46e1d13d: "pyrogram.raw.types.RecentMeUrlUnknown",
896
+ 0xb92c09e2: "pyrogram.raw.types.RecentMeUrlUser",
897
+ 0xb2da71d2: "pyrogram.raw.types.RecentMeUrlChat",
898
+ 0xeb49081d: "pyrogram.raw.types.RecentMeUrlChatInvite",
899
+ 0xbc0a57dc: "pyrogram.raw.types.RecentMeUrlStickerSet",
900
+ 0xe0310d7: "pyrogram.raw.types.help.RecentMeUrls",
901
+ 0x1cc6e91f: "pyrogram.raw.types.InputSingleMedia",
902
+ 0xa6f8f452: "pyrogram.raw.types.WebAuthorization",
903
+ 0xed56c9fc: "pyrogram.raw.types.account.WebAuthorizations",
904
+ 0xa676a322: "pyrogram.raw.types.InputMessageID",
905
+ 0xbad88395: "pyrogram.raw.types.InputMessageReplyTo",
906
+ 0x86872538: "pyrogram.raw.types.InputMessagePinned",
907
+ 0xacfa1a7e: "pyrogram.raw.types.InputMessageCallbackQuery",
908
+ 0xfcaafeb7: "pyrogram.raw.types.InputDialogPeer",
909
+ 0x64600527: "pyrogram.raw.types.InputDialogPeerFolder",
910
+ 0xe56dbf05: "pyrogram.raw.types.DialogPeer",
911
+ 0x514519e2: "pyrogram.raw.types.DialogPeerFolder",
912
+ 0xd54b65d: "pyrogram.raw.types.messages.FoundStickerSetsNotModified",
913
+ 0x8af09dd2: "pyrogram.raw.types.messages.FoundStickerSets",
914
+ 0xf39b035c: "pyrogram.raw.types.FileHash",
915
+ 0x75588b3f: "pyrogram.raw.types.InputClientProxy",
916
+ 0xe3309f7f: "pyrogram.raw.types.help.TermsOfServiceUpdateEmpty",
917
+ 0x28ecf961: "pyrogram.raw.types.help.TermsOfServiceUpdate",
918
+ 0x3334b0f0: "pyrogram.raw.types.InputSecureFileUploaded",
919
+ 0x5367e5be: "pyrogram.raw.types.InputSecureFile",
920
+ 0x64199744: "pyrogram.raw.types.SecureFileEmpty",
921
+ 0x7d09c27e: "pyrogram.raw.types.SecureFile",
922
+ 0x8aeabec3: "pyrogram.raw.types.SecureData",
923
+ 0x7d6099dd: "pyrogram.raw.types.SecurePlainPhone",
924
+ 0x21ec5a5f: "pyrogram.raw.types.SecurePlainEmail",
925
+ 0x9d2a81e3: "pyrogram.raw.types.SecureValueTypePersonalDetails",
926
+ 0x3dac6a00: "pyrogram.raw.types.SecureValueTypePassport",
927
+ 0x6e425c4: "pyrogram.raw.types.SecureValueTypeDriverLicense",
928
+ 0xa0d0744b: "pyrogram.raw.types.SecureValueTypeIdentityCard",
929
+ 0x99a48f23: "pyrogram.raw.types.SecureValueTypeInternalPassport",
930
+ 0xcbe31e26: "pyrogram.raw.types.SecureValueTypeAddress",
931
+ 0xfc36954e: "pyrogram.raw.types.SecureValueTypeUtilityBill",
932
+ 0x89137c0d: "pyrogram.raw.types.SecureValueTypeBankStatement",
933
+ 0x8b883488: "pyrogram.raw.types.SecureValueTypeRentalAgreement",
934
+ 0x99e3806a: "pyrogram.raw.types.SecureValueTypePassportRegistration",
935
+ 0xea02ec33: "pyrogram.raw.types.SecureValueTypeTemporaryRegistration",
936
+ 0xb320aadb: "pyrogram.raw.types.SecureValueTypePhone",
937
+ 0x8e3ca7ee: "pyrogram.raw.types.SecureValueTypeEmail",
938
+ 0x187fa0ca: "pyrogram.raw.types.SecureValue",
939
+ 0xdb21d0a7: "pyrogram.raw.types.InputSecureValue",
940
+ 0xed1ecdb0: "pyrogram.raw.types.SecureValueHash",
941
+ 0xe8a40bd9: "pyrogram.raw.types.SecureValueErrorData",
942
+ 0xbe3dfa: "pyrogram.raw.types.SecureValueErrorFrontSide",
943
+ 0x868a2aa5: "pyrogram.raw.types.SecureValueErrorReverseSide",
944
+ 0xe537ced6: "pyrogram.raw.types.SecureValueErrorSelfie",
945
+ 0x7a700873: "pyrogram.raw.types.SecureValueErrorFile",
946
+ 0x666220e9: "pyrogram.raw.types.SecureValueErrorFiles",
947
+ 0x869d758f: "pyrogram.raw.types.SecureValueError",
948
+ 0xa1144770: "pyrogram.raw.types.SecureValueErrorTranslationFile",
949
+ 0x34636dd8: "pyrogram.raw.types.SecureValueErrorTranslationFiles",
950
+ 0x33f0ea47: "pyrogram.raw.types.SecureCredentialsEncrypted",
951
+ 0xad2e1cd8: "pyrogram.raw.types.account.AuthorizationForm",
952
+ 0x811f854f: "pyrogram.raw.types.account.SentEmailCode",
953
+ 0x66afa166: "pyrogram.raw.types.help.DeepLinkInfoEmpty",
954
+ 0x6a4ee832: "pyrogram.raw.types.help.DeepLinkInfo",
955
+ 0x1142bd56: "pyrogram.raw.types.SavedPhoneContact",
956
+ 0x4dba4501: "pyrogram.raw.types.account.Takeout",
957
+ 0xd45ab096: "pyrogram.raw.types.PasswordKdfAlgoUnknown",
958
+ 0x3a912d4a: "pyrogram.raw.types.PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow",
959
+ 0x4a8537: "pyrogram.raw.types.SecurePasswordKdfAlgoUnknown",
960
+ 0xbbf2dda0: "pyrogram.raw.types.SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000",
961
+ 0x86471d92: "pyrogram.raw.types.SecurePasswordKdfAlgoSHA512",
962
+ 0x1527bcac: "pyrogram.raw.types.SecureSecretSettings",
963
+ 0x9880f658: "pyrogram.raw.types.InputCheckPasswordEmpty",
964
+ 0xd27ff082: "pyrogram.raw.types.InputCheckPasswordSRP",
965
+ 0x829d99da: "pyrogram.raw.types.SecureRequiredType",
966
+ 0x27477b4: "pyrogram.raw.types.SecureRequiredTypeOneOf",
967
+ 0xbfb9f457: "pyrogram.raw.types.help.PassportConfigNotModified",
968
+ 0xa098d6af: "pyrogram.raw.types.help.PassportConfig",
969
+ 0x1d1b1245: "pyrogram.raw.types.InputAppEvent",
970
+ 0xc0de1bd9: "pyrogram.raw.types.JsonObjectValue",
971
+ 0x3f6d7b68: "pyrogram.raw.types.JsonNull",
972
+ 0xc7345e6a: "pyrogram.raw.types.JsonBool",
973
+ 0x2be0dfa4: "pyrogram.raw.types.JsonNumber",
974
+ 0xb71e767a: "pyrogram.raw.types.JsonString",
975
+ 0xf7444763: "pyrogram.raw.types.JsonArray",
976
+ 0x99c1d49d: "pyrogram.raw.types.JsonObject",
977
+ 0x34566b6a: "pyrogram.raw.types.PageTableCell",
978
+ 0xe0c0c5e5: "pyrogram.raw.types.PageTableRow",
979
+ 0x6f747657: "pyrogram.raw.types.PageCaption",
980
+ 0xb92fb6cd: "pyrogram.raw.types.PageListItemText",
981
+ 0x25e073fc: "pyrogram.raw.types.PageListItemBlocks",
982
+ 0x5e068047: "pyrogram.raw.types.PageListOrderedItemText",
983
+ 0x98dd8936: "pyrogram.raw.types.PageListOrderedItemBlocks",
984
+ 0xb390dc08: "pyrogram.raw.types.PageRelatedArticle",
985
+ 0x98657f0d: "pyrogram.raw.types.Page",
986
+ 0x8c05f1c9: "pyrogram.raw.types.help.SupportName",
987
+ 0xf3ae2eed: "pyrogram.raw.types.help.UserInfoEmpty",
988
+ 0x1eb3758: "pyrogram.raw.types.help.UserInfo",
989
+ 0xff16e2ca: "pyrogram.raw.types.PollAnswer",
990
+ 0x58747131: "pyrogram.raw.types.Poll",
991
+ 0x3b6ddad2: "pyrogram.raw.types.PollAnswerVoters",
992
+ 0x7adf2420: "pyrogram.raw.types.PollResults",
993
+ 0xf041e250: "pyrogram.raw.types.ChatOnlines",
994
+ 0x47a971e0: "pyrogram.raw.types.StatsURL",
995
+ 0x5fb224d5: "pyrogram.raw.types.ChatAdminRights",
996
+ 0x9f120418: "pyrogram.raw.types.ChatBannedRights",
997
+ 0xe630b979: "pyrogram.raw.types.InputWallPaper",
998
+ 0x72091c80: "pyrogram.raw.types.InputWallPaperSlug",
999
+ 0x967a462e: "pyrogram.raw.types.InputWallPaperNoFile",
1000
+ 0x1c199183: "pyrogram.raw.types.account.WallPapersNotModified",
1001
+ 0xcdc3858c: "pyrogram.raw.types.account.WallPapers",
1002
+ 0xad253d78: "pyrogram.raw.types.CodeSettings",
1003
+ 0x372efcd0: "pyrogram.raw.types.WallPaperSettings",
1004
+ 0xbaa57628: "pyrogram.raw.types.AutoDownloadSettings",
1005
+ 0x63cacf26: "pyrogram.raw.types.account.AutoDownloadSettings",
1006
+ 0xd5b3b9f9: "pyrogram.raw.types.EmojiKeyword",
1007
+ 0x236df622: "pyrogram.raw.types.EmojiKeywordDeleted",
1008
+ 0x5cc761bd: "pyrogram.raw.types.EmojiKeywordsDifference",
1009
+ 0xa575739d: "pyrogram.raw.types.EmojiURL",
1010
+ 0xb3fb5361: "pyrogram.raw.types.EmojiLanguage",
1011
+ 0xff544e65: "pyrogram.raw.types.Folder",
1012
+ 0xfbd2c296: "pyrogram.raw.types.InputFolderPeer",
1013
+ 0xe9baa668: "pyrogram.raw.types.FolderPeer",
1014
+ 0xe844ebff: "pyrogram.raw.types.messages.SearchCounter",
1015
+ 0x92d33a0e: "pyrogram.raw.types.UrlAuthResultRequest",
1016
+ 0x8f8c0e4e: "pyrogram.raw.types.UrlAuthResultAccepted",
1017
+ 0xa9d6db1f: "pyrogram.raw.types.UrlAuthResultDefault",
1018
+ 0xbfb5ad8b: "pyrogram.raw.types.ChannelLocationEmpty",
1019
+ 0x209b82db: "pyrogram.raw.types.ChannelLocation",
1020
+ 0xca461b5d: "pyrogram.raw.types.PeerLocated",
1021
+ 0xf8ec284b: "pyrogram.raw.types.PeerSelfLocated",
1022
+ 0xd072acb4: "pyrogram.raw.types.RestrictionReason",
1023
+ 0x3c5693e9: "pyrogram.raw.types.InputTheme",
1024
+ 0xf5890df1: "pyrogram.raw.types.InputThemeSlug",
1025
+ 0xa00e67d6: "pyrogram.raw.types.Theme",
1026
+ 0xf41eb622: "pyrogram.raw.types.account.ThemesNotModified",
1027
+ 0x9a3d8c6d: "pyrogram.raw.types.account.Themes",
1028
+ 0x629f1980: "pyrogram.raw.types.auth.LoginToken",
1029
+ 0x68e9916: "pyrogram.raw.types.auth.LoginTokenMigrateTo",
1030
+ 0x390d5c5e: "pyrogram.raw.types.auth.LoginTokenSuccess",
1031
+ 0x57e28221: "pyrogram.raw.types.account.ContentSettings",
1032
+ 0xa927fec5: "pyrogram.raw.types.messages.InactiveChats",
1033
+ 0xc3a12462: "pyrogram.raw.types.BaseThemeClassic",
1034
+ 0xfbd81688: "pyrogram.raw.types.BaseThemeDay",
1035
+ 0xb7b31ea8: "pyrogram.raw.types.BaseThemeNight",
1036
+ 0x6d5f77ee: "pyrogram.raw.types.BaseThemeTinted",
1037
+ 0x5b11125a: "pyrogram.raw.types.BaseThemeArctic",
1038
+ 0x8fde504f: "pyrogram.raw.types.InputThemeSettings",
1039
+ 0xfa58b6d4: "pyrogram.raw.types.ThemeSettings",
1040
+ 0x54b56617: "pyrogram.raw.types.WebPageAttributeTheme",
1041
+ 0x2e94c3e7: "pyrogram.raw.types.WebPageAttributeStory",
1042
+ 0x50cc03d3: "pyrogram.raw.types.WebPageAttributeStickerSet",
1043
+ 0x4899484e: "pyrogram.raw.types.messages.VotesList",
1044
+ 0xf568028a: "pyrogram.raw.types.BankCardOpenUrl",
1045
+ 0x3e24e573: "pyrogram.raw.types.payments.BankCardData",
1046
+ 0x5fb5523b: "pyrogram.raw.types.DialogFilter",
1047
+ 0x363293ae: "pyrogram.raw.types.DialogFilterDefault",
1048
+ 0x9fe28ea4: "pyrogram.raw.types.DialogFilterChatlist",
1049
+ 0x77744d4a: "pyrogram.raw.types.DialogFilterSuggested",
1050
+ 0xb637edaf: "pyrogram.raw.types.StatsDateRangeDays",
1051
+ 0xcb43acde: "pyrogram.raw.types.StatsAbsValueAndPrev",
1052
+ 0xcbce2fe0: "pyrogram.raw.types.StatsPercentValue",
1053
+ 0x4a27eb2d: "pyrogram.raw.types.StatsGraphAsync",
1054
+ 0xbedc9822: "pyrogram.raw.types.StatsGraphError",
1055
+ 0x8ea464b6: "pyrogram.raw.types.StatsGraph",
1056
+ 0x396ca5fc: "pyrogram.raw.types.stats.BroadcastStats",
1057
+ 0x98f6ac75: "pyrogram.raw.types.help.PromoDataEmpty",
1058
+ 0x8c39793f: "pyrogram.raw.types.help.PromoData",
1059
+ 0xde33b094: "pyrogram.raw.types.VideoSize",
1060
+ 0xf85c413c: "pyrogram.raw.types.VideoSizeEmojiMarkup",
1061
+ 0xda082fe: "pyrogram.raw.types.VideoSizeStickerMarkup",
1062
+ 0x9d04af9b: "pyrogram.raw.types.StatsGroupTopPoster",
1063
+ 0xd7584c87: "pyrogram.raw.types.StatsGroupTopAdmin",
1064
+ 0x535f779d: "pyrogram.raw.types.StatsGroupTopInviter",
1065
+ 0xef7ff916: "pyrogram.raw.types.stats.MegagroupStats",
1066
+ 0x734c4ccb: "pyrogram.raw.types.GlobalPrivacySettings",
1067
+ 0x4203c5ef: "pyrogram.raw.types.help.CountryCode",
1068
+ 0xc3878e23: "pyrogram.raw.types.help.Country",
1069
+ 0x93cc1f32: "pyrogram.raw.types.help.CountriesListNotModified",
1070
+ 0x87d0759e: "pyrogram.raw.types.help.CountriesList",
1071
+ 0x455b853d: "pyrogram.raw.types.MessageViews",
1072
+ 0xb6c4f543: "pyrogram.raw.types.messages.MessageViews",
1073
+ 0xa6341782: "pyrogram.raw.types.messages.DiscussionMessage",
1074
+ 0xafbc09db: "pyrogram.raw.types.MessageReplyHeader",
1075
+ 0xe5af939: "pyrogram.raw.types.MessageReplyStoryHeader",
1076
+ 0x83d60fc2: "pyrogram.raw.types.MessageReplies",
1077
+ 0xe8fd8014: "pyrogram.raw.types.PeerBlocked",
1078
+ 0x7fe91c14: "pyrogram.raw.types.stats.MessageStats",
1079
+ 0x7780bcb4: "pyrogram.raw.types.GroupCallDiscarded",
1080
+ 0xd597650c: "pyrogram.raw.types.GroupCall",
1081
+ 0xd8aa840f: "pyrogram.raw.types.InputGroupCall",
1082
+ 0xeba636fe: "pyrogram.raw.types.GroupCallParticipant",
1083
+ 0x9e727aad: "pyrogram.raw.types.phone.GroupCall",
1084
+ 0xf47751b6: "pyrogram.raw.types.phone.GroupParticipants",
1085
+ 0x3081ed9d: "pyrogram.raw.types.InlineQueryPeerTypeSameBotPM",
1086
+ 0x833c0fac: "pyrogram.raw.types.InlineQueryPeerTypePM",
1087
+ 0xd766c50a: "pyrogram.raw.types.InlineQueryPeerTypeChat",
1088
+ 0x5ec4be43: "pyrogram.raw.types.InlineQueryPeerTypeMegagroup",
1089
+ 0x6334ee9a: "pyrogram.raw.types.InlineQueryPeerTypeBroadcast",
1090
+ 0xe3b2d0c: "pyrogram.raw.types.InlineQueryPeerTypeBotPM",
1091
+ 0x1662af0b: "pyrogram.raw.types.messages.HistoryImport",
1092
+ 0x5e0fb7b9: "pyrogram.raw.types.messages.HistoryImportParsed",
1093
+ 0xef8d3e6c: "pyrogram.raw.types.messages.AffectedFoundMessages",
1094
+ 0x8c5adfd9: "pyrogram.raw.types.ChatInviteImporter",
1095
+ 0xbdc62dcc: "pyrogram.raw.types.messages.ExportedChatInvites",
1096
+ 0x1871be50: "pyrogram.raw.types.messages.ExportedChatInvite",
1097
+ 0x222600ef: "pyrogram.raw.types.messages.ExportedChatInviteReplaced",
1098
+ 0x81b6b00a: "pyrogram.raw.types.messages.ChatInviteImporters",
1099
+ 0xf2ecef23: "pyrogram.raw.types.ChatAdminWithInvites",
1100
+ 0xb69b72d7: "pyrogram.raw.types.messages.ChatAdminsWithInvites",
1101
+ 0xa24de717: "pyrogram.raw.types.messages.CheckedHistoryImportPeer",
1102
+ 0xafe5623f: "pyrogram.raw.types.phone.JoinAsPeers",
1103
+ 0x204bd158: "pyrogram.raw.types.phone.ExportedGroupCallInvite",
1104
+ 0xdcb118b7: "pyrogram.raw.types.GroupCallParticipantVideoSourceGroup",
1105
+ 0x67753ac8: "pyrogram.raw.types.GroupCallParticipantVideo",
1106
+ 0x85fea03f: "pyrogram.raw.types.stickers.SuggestedShortName",
1107
+ 0x2f6cb2ab: "pyrogram.raw.types.BotCommandScopeDefault",
1108
+ 0x3c4f04d8: "pyrogram.raw.types.BotCommandScopeUsers",
1109
+ 0x6fe1a881: "pyrogram.raw.types.BotCommandScopeChats",
1110
+ 0xb9aa606a: "pyrogram.raw.types.BotCommandScopeChatAdmins",
1111
+ 0xdb9d897d: "pyrogram.raw.types.BotCommandScopePeer",
1112
+ 0x3fd863d1: "pyrogram.raw.types.BotCommandScopePeerAdmins",
1113
+ 0xa1321f3: "pyrogram.raw.types.BotCommandScopePeerUser",
1114
+ 0xe3779861: "pyrogram.raw.types.account.ResetPasswordFailedWait",
1115
+ 0xe9effc7d: "pyrogram.raw.types.account.ResetPasswordRequestedWait",
1116
+ 0xe926d63e: "pyrogram.raw.types.account.ResetPasswordOk",
1117
+ 0xbdedf566: "pyrogram.raw.types.SponsoredMessage",
1118
+ 0xc9ee1d87: "pyrogram.raw.types.messages.SponsoredMessages",
1119
+ 0x1839490f: "pyrogram.raw.types.messages.SponsoredMessagesEmpty",
1120
+ 0xc9b0539f: "pyrogram.raw.types.SearchResultsCalendarPeriod",
1121
+ 0x147ee23c: "pyrogram.raw.types.messages.SearchResultsCalendar",
1122
+ 0x7f648b67: "pyrogram.raw.types.SearchResultPosition",
1123
+ 0x53b22baf: "pyrogram.raw.types.messages.SearchResultsPositions",
1124
+ 0xf496b0c6: "pyrogram.raw.types.channels.SendAsPeers",
1125
+ 0x3b6d152e: "pyrogram.raw.types.users.UserFull",
1126
+ 0x6880b94d: "pyrogram.raw.types.messages.PeerSettings",
1127
+ 0xc3a2835f: "pyrogram.raw.types.auth.LoggedOut",
1128
+ 0xa3d1cb80: "pyrogram.raw.types.ReactionCount",
1129
+ 0x4f2b9479: "pyrogram.raw.types.MessageReactions",
1130
+ 0x31bd492d: "pyrogram.raw.types.messages.MessageReactionsList",
1131
+ 0xc077ec01: "pyrogram.raw.types.AvailableReaction",
1132
+ 0x9f071957: "pyrogram.raw.types.messages.AvailableReactionsNotModified",
1133
+ 0x768e3aad: "pyrogram.raw.types.messages.AvailableReactions",
1134
+ 0x8c79b63c: "pyrogram.raw.types.MessagePeerReaction",
1135
+ 0x80eb48af: "pyrogram.raw.types.GroupCallStreamChannel",
1136
+ 0xd0e482b2: "pyrogram.raw.types.phone.GroupCallStreamChannels",
1137
+ 0x2dbf3432: "pyrogram.raw.types.phone.GroupCallStreamRtmpUrl",
1138
+ 0x4576f3f0: "pyrogram.raw.types.AttachMenuBotIconColor",
1139
+ 0xb2a7386b: "pyrogram.raw.types.AttachMenuBotIcon",
1140
+ 0xd90d8dfe: "pyrogram.raw.types.AttachMenuBot",
1141
+ 0xf1d88a5c: "pyrogram.raw.types.AttachMenuBotsNotModified",
1142
+ 0x3c4301c0: "pyrogram.raw.types.AttachMenuBots",
1143
+ 0x93bf667f: "pyrogram.raw.types.AttachMenuBotsBot",
1144
+ 0x4d22ff98: "pyrogram.raw.types.WebViewResultUrl",
1145
+ 0xc94511c: "pyrogram.raw.types.WebViewMessageSent",
1146
+ 0x7533a588: "pyrogram.raw.types.BotMenuButtonDefault",
1147
+ 0x4258c205: "pyrogram.raw.types.BotMenuButtonCommands",
1148
+ 0xc7b57ce6: "pyrogram.raw.types.BotMenuButton",
1149
+ 0xfbf6e8b1: "pyrogram.raw.types.account.SavedRingtonesNotModified",
1150
+ 0xc1e92cc5: "pyrogram.raw.types.account.SavedRingtones",
1151
+ 0x97e8bebe: "pyrogram.raw.types.NotificationSoundDefault",
1152
+ 0x6f0c34df: "pyrogram.raw.types.NotificationSoundNone",
1153
+ 0x830b9ae4: "pyrogram.raw.types.NotificationSoundLocal",
1154
+ 0xff6c8049: "pyrogram.raw.types.NotificationSoundRingtone",
1155
+ 0xb7263f6d: "pyrogram.raw.types.account.SavedRingtone",
1156
+ 0x1f307eb7: "pyrogram.raw.types.account.SavedRingtoneConverted",
1157
+ 0x7d6be90e: "pyrogram.raw.types.AttachMenuPeerTypeSameBotPM",
1158
+ 0xc32bfa1a: "pyrogram.raw.types.AttachMenuPeerTypeBotPM",
1159
+ 0xf146d31f: "pyrogram.raw.types.AttachMenuPeerTypePM",
1160
+ 0x509113f: "pyrogram.raw.types.AttachMenuPeerTypeChat",
1161
+ 0x7bfbdefc: "pyrogram.raw.types.AttachMenuPeerTypeBroadcast",
1162
+ 0xc5b56859: "pyrogram.raw.types.InputInvoiceMessage",
1163
+ 0xc326caef: "pyrogram.raw.types.InputInvoiceSlug",
1164
+ 0x98986c0d: "pyrogram.raw.types.InputInvoicePremiumGiftCode",
1165
+ 0x1da33ad8: "pyrogram.raw.types.InputInvoiceStars",
1166
+ 0xaed0cbd9: "pyrogram.raw.types.payments.ExportedInvoice",
1167
+ 0xcfb9d957: "pyrogram.raw.types.messages.TranscribedAudio",
1168
+ 0x5334759c: "pyrogram.raw.types.help.PremiumPromo",
1169
+ 0xa6751e66: "pyrogram.raw.types.InputStorePaymentPremiumSubscription",
1170
+ 0x616f7fe8: "pyrogram.raw.types.InputStorePaymentGiftPremium",
1171
+ 0xa3805f3f: "pyrogram.raw.types.InputStorePaymentPremiumGiftCode",
1172
+ 0x160544ca: "pyrogram.raw.types.InputStorePaymentPremiumGiveaway",
1173
+ 0x4f0ee8df: "pyrogram.raw.types.InputStorePaymentStars",
1174
+ 0x74c34319: "pyrogram.raw.types.PremiumGiftOption",
1175
+ 0x88f8f21b: "pyrogram.raw.types.PaymentFormMethod",
1176
+ 0x2de11aae: "pyrogram.raw.types.EmojiStatusEmpty",
1177
+ 0x929b619d: "pyrogram.raw.types.EmojiStatus",
1178
+ 0xfa30a8c7: "pyrogram.raw.types.EmojiStatusUntil",
1179
+ 0xd08ce645: "pyrogram.raw.types.account.EmojiStatusesNotModified",
1180
+ 0x90c467d1: "pyrogram.raw.types.account.EmojiStatuses",
1181
+ 0x79f5d419: "pyrogram.raw.types.ReactionEmpty",
1182
+ 0x1b2286b8: "pyrogram.raw.types.ReactionEmoji",
1183
+ 0x8935fc73: "pyrogram.raw.types.ReactionCustomEmoji",
1184
+ 0xeafc32bc: "pyrogram.raw.types.ChatReactionsNone",
1185
+ 0x52928bca: "pyrogram.raw.types.ChatReactionsAll",
1186
+ 0x661d4037: "pyrogram.raw.types.ChatReactionsSome",
1187
+ 0xb06fdbdf: "pyrogram.raw.types.messages.ReactionsNotModified",
1188
+ 0xeafdf716: "pyrogram.raw.types.messages.Reactions",
1189
+ 0x4345be73: "pyrogram.raw.types.EmailVerifyPurposeLoginSetup",
1190
+ 0x527d22eb: "pyrogram.raw.types.EmailVerifyPurposeLoginChange",
1191
+ 0xbbf51685: "pyrogram.raw.types.EmailVerifyPurposePassport",
1192
+ 0x922e55a9: "pyrogram.raw.types.EmailVerificationCode",
1193
+ 0xdb909ec2: "pyrogram.raw.types.EmailVerificationGoogle",
1194
+ 0x96d074fd: "pyrogram.raw.types.EmailVerificationApple",
1195
+ 0x2b96cd1b: "pyrogram.raw.types.account.EmailVerified",
1196
+ 0xe1bb0d61: "pyrogram.raw.types.account.EmailVerifiedLogin",
1197
+ 0x5f2d1df2: "pyrogram.raw.types.PremiumSubscriptionOption",
1198
+ 0xb81c7034: "pyrogram.raw.types.SendAsPeer",
1199
+ 0xad628cc8: "pyrogram.raw.types.MessageExtendedMediaPreview",
1200
+ 0xee479c64: "pyrogram.raw.types.MessageExtendedMedia",
1201
+ 0xfcfeb29c: "pyrogram.raw.types.StickerKeyword",
1202
+ 0xb4073647: "pyrogram.raw.types.Username",
1203
+ 0x23f109b: "pyrogram.raw.types.ForumTopicDeleted",
1204
+ 0x71701da9: "pyrogram.raw.types.ForumTopic",
1205
+ 0x367617d3: "pyrogram.raw.types.messages.ForumTopics",
1206
+ 0x43b46b20: "pyrogram.raw.types.DefaultHistoryTTL",
1207
+ 0x41bf109b: "pyrogram.raw.types.ExportedContactToken",
1208
+ 0x5f3b8a00: "pyrogram.raw.types.RequestPeerTypeUser",
1209
+ 0xc9f06e1b: "pyrogram.raw.types.RequestPeerTypeChat",
1210
+ 0x339bef6c: "pyrogram.raw.types.RequestPeerTypeBroadcast",
1211
+ 0x481eadfa: "pyrogram.raw.types.EmojiListNotModified",
1212
+ 0x7a1e11d1: "pyrogram.raw.types.EmojiList",
1213
+ 0x7a9abda9: "pyrogram.raw.types.EmojiGroup",
1214
+ 0x80d26cc7: "pyrogram.raw.types.EmojiGroupGreeting",
1215
+ 0x93bcf34: "pyrogram.raw.types.EmojiGroupPremium",
1216
+ 0x6fb4ad87: "pyrogram.raw.types.messages.EmojiGroupsNotModified",
1217
+ 0x881fb94b: "pyrogram.raw.types.messages.EmojiGroups",
1218
+ 0x751f3146: "pyrogram.raw.types.TextWithEntities",
1219
+ 0x33db32f8: "pyrogram.raw.types.messages.TranslateResult",
1220
+ 0xc84834ce: "pyrogram.raw.types.AutoSaveSettings",
1221
+ 0x81602d47: "pyrogram.raw.types.AutoSaveException",
1222
+ 0x4c3e069d: "pyrogram.raw.types.account.AutoSaveSettings",
1223
+ 0x7cde641d: "pyrogram.raw.types.help.AppConfigNotModified",
1224
+ 0xdd18782e: "pyrogram.raw.types.help.AppConfig",
1225
+ 0xa920bd7a: "pyrogram.raw.types.InputBotAppID",
1226
+ 0x908c0407: "pyrogram.raw.types.InputBotAppShortName",
1227
+ 0x5da674b7: "pyrogram.raw.types.BotAppNotModified",
1228
+ 0x95fcd1d6: "pyrogram.raw.types.BotApp",
1229
+ 0xeb50adf5: "pyrogram.raw.types.messages.BotApp",
1230
+ 0xb57295d5: "pyrogram.raw.types.InlineBotWebView",
1231
+ 0x4a4ff172: "pyrogram.raw.types.ReadParticipantDate",
1232
+ 0xf3e0da33: "pyrogram.raw.types.InputChatlistDialogFilter",
1233
+ 0xc5181ac: "pyrogram.raw.types.ExportedChatlistInvite",
1234
+ 0x10e6e3a6: "pyrogram.raw.types.chatlists.ExportedChatlistInvite",
1235
+ 0x10ab6dc7: "pyrogram.raw.types.chatlists.ExportedInvites",
1236
+ 0xfa87f659: "pyrogram.raw.types.chatlists.ChatlistInviteAlready",
1237
+ 0x1dcd839d: "pyrogram.raw.types.chatlists.ChatlistInvite",
1238
+ 0x93bd878d: "pyrogram.raw.types.chatlists.ChatlistUpdates",
1239
+ 0xe8a775b0: "pyrogram.raw.types.bots.BotInfo",
1240
+ 0xb6cc2d5c: "pyrogram.raw.types.MessagePeerVote",
1241
+ 0x74cda504: "pyrogram.raw.types.MessagePeerVoteInputOption",
1242
+ 0x4628f6e6: "pyrogram.raw.types.MessagePeerVoteMultiple",
1243
+ 0x8d595cd6: "pyrogram.raw.types.StoryViews",
1244
+ 0x51e6ee4f: "pyrogram.raw.types.StoryItemDeleted",
1245
+ 0xffadc913: "pyrogram.raw.types.StoryItemSkipped",
1246
+ 0x79b26a24: "pyrogram.raw.types.StoryItem",
1247
+ 0x1158fe3e: "pyrogram.raw.types.stories.AllStoriesNotModified",
1248
+ 0x6efc5e81: "pyrogram.raw.types.stories.AllStories",
1249
+ 0x63c3dd0a: "pyrogram.raw.types.stories.Stories",
1250
+ 0xb0bdeac5: "pyrogram.raw.types.StoryView",
1251
+ 0x9083670b: "pyrogram.raw.types.StoryViewPublicForward",
1252
+ 0xbd74cf49: "pyrogram.raw.types.StoryViewPublicRepost",
1253
+ 0x59d78fc5: "pyrogram.raw.types.stories.StoryViewsList",
1254
+ 0xde9eed1d: "pyrogram.raw.types.stories.StoryViews",
1255
+ 0x22c0f6d5: "pyrogram.raw.types.InputReplyToMessage",
1256
+ 0x5881323a: "pyrogram.raw.types.InputReplyToStory",
1257
+ 0x3fc9053b: "pyrogram.raw.types.ExportedStoryLink",
1258
+ 0x712e27fd: "pyrogram.raw.types.StoriesStealthMode",
1259
+ 0xcfc9e002: "pyrogram.raw.types.MediaAreaCoordinates",
1260
+ 0xbe82db9c: "pyrogram.raw.types.MediaAreaVenue",
1261
+ 0xb282217f: "pyrogram.raw.types.InputMediaAreaVenue",
1262
+ 0xcad5452d: "pyrogram.raw.types.MediaAreaGeoPoint",
1263
+ 0x14455871: "pyrogram.raw.types.MediaAreaSuggestedReaction",
1264
+ 0x770416af: "pyrogram.raw.types.MediaAreaChannelPost",
1265
+ 0x2271f2bf: "pyrogram.raw.types.InputMediaAreaChannelPost",
1266
+ 0x37381085: "pyrogram.raw.types.MediaAreaUrl",
1267
+ 0x9a35e999: "pyrogram.raw.types.PeerStories",
1268
+ 0xcae68768: "pyrogram.raw.types.stories.PeerStories",
1269
+ 0xfd5e12bd: "pyrogram.raw.types.messages.WebPage",
1270
+ 0x257e962b: "pyrogram.raw.types.PremiumGiftCodeOption",
1271
+ 0x284a1096: "pyrogram.raw.types.payments.CheckedGiftCode",
1272
+ 0x4367daa0: "pyrogram.raw.types.payments.GiveawayInfo",
1273
+ 0xcd5570: "pyrogram.raw.types.payments.GiveawayInfoResults",
1274
+ 0xb2539d54: "pyrogram.raw.types.PrepaidGiveaway",
1275
+ 0x2a1c8c71: "pyrogram.raw.types.Boost",
1276
+ 0x86f8613c: "pyrogram.raw.types.premium.BoostsList",
1277
+ 0xc448415c: "pyrogram.raw.types.MyBoost",
1278
+ 0x9ae228e2: "pyrogram.raw.types.premium.MyBoosts",
1279
+ 0x4959427a: "pyrogram.raw.types.premium.BoostsStatus",
1280
+ 0xb826e150: "pyrogram.raw.types.StoryFwdHeader",
1281
+ 0xe7058e7f: "pyrogram.raw.types.PostInteractionCountersMessage",
1282
+ 0x8a480e27: "pyrogram.raw.types.PostInteractionCountersStory",
1283
+ 0x50cd067c: "pyrogram.raw.types.stats.StoryStats",
1284
+ 0x1f2bf4a: "pyrogram.raw.types.PublicForwardMessage",
1285
+ 0xedf3add0: "pyrogram.raw.types.PublicForwardStory",
1286
+ 0x93037e20: "pyrogram.raw.types.stats.PublicForwards",
1287
+ 0xb54b5acf: "pyrogram.raw.types.PeerColor",
1288
+ 0x26219a58: "pyrogram.raw.types.help.PeerColorSet",
1289
+ 0x767d61eb: "pyrogram.raw.types.help.PeerColorProfileSet",
1290
+ 0xadec6ebe: "pyrogram.raw.types.help.PeerColorOption",
1291
+ 0x2ba1f5ce: "pyrogram.raw.types.help.PeerColorsNotModified",
1292
+ 0xf8ed08: "pyrogram.raw.types.help.PeerColors",
1293
+ 0x6090d6d5: "pyrogram.raw.types.StoryReaction",
1294
+ 0xbbab2643: "pyrogram.raw.types.StoryReactionPublicForward",
1295
+ 0xcfcd0f13: "pyrogram.raw.types.StoryReactionPublicRepost",
1296
+ 0xaa5f789c: "pyrogram.raw.types.stories.StoryReactionsList",
1297
+ 0xbd87cb6c: "pyrogram.raw.types.SavedDialog",
1298
+ 0xf83ae221: "pyrogram.raw.types.messages.SavedDialogs",
1299
+ 0x44ba9dd9: "pyrogram.raw.types.messages.SavedDialogsSlice",
1300
+ 0xc01f6fe8: "pyrogram.raw.types.messages.SavedDialogsNotModified",
1301
+ 0xcb6ff828: "pyrogram.raw.types.SavedReactionTag",
1302
+ 0x889b59ef: "pyrogram.raw.types.messages.SavedReactionTagsNotModified",
1303
+ 0x3259950a: "pyrogram.raw.types.messages.SavedReactionTags",
1304
+ 0x3bb842ac: "pyrogram.raw.types.OutboxReadDate",
1305
+ 0xdc8b44cf: "pyrogram.raw.types.smsjobs.EligibleToJoin",
1306
+ 0x2aee9191: "pyrogram.raw.types.smsjobs.Status",
1307
+ 0xe6a1eeb8: "pyrogram.raw.types.SmsJob",
1308
+ 0x120b1ab9: "pyrogram.raw.types.BusinessWeeklyOpen",
1309
+ 0x8c92b098: "pyrogram.raw.types.BusinessWorkHours",
1310
+ 0xac5c1af7: "pyrogram.raw.types.BusinessLocation",
1311
+ 0x6f8b32aa: "pyrogram.raw.types.InputBusinessRecipients",
1312
+ 0x21108ff7: "pyrogram.raw.types.BusinessRecipients",
1313
+ 0xc9b9e2b9: "pyrogram.raw.types.BusinessAwayMessageScheduleAlways",
1314
+ 0xc3f2f501: "pyrogram.raw.types.BusinessAwayMessageScheduleOutsideWorkHours",
1315
+ 0xcc4d9ecc: "pyrogram.raw.types.BusinessAwayMessageScheduleCustom",
1316
+ 0x194cb3b: "pyrogram.raw.types.InputBusinessGreetingMessage",
1317
+ 0xe519abab: "pyrogram.raw.types.BusinessGreetingMessage",
1318
+ 0x832175e0: "pyrogram.raw.types.InputBusinessAwayMessage",
1319
+ 0xef156a5c: "pyrogram.raw.types.BusinessAwayMessage",
1320
+ 0xff9289f5: "pyrogram.raw.types.Timezone",
1321
+ 0x970708cc: "pyrogram.raw.types.help.TimezonesListNotModified",
1322
+ 0x7b74ed71: "pyrogram.raw.types.help.TimezonesList",
1323
+ 0x697102b: "pyrogram.raw.types.QuickReply",
1324
+ 0x24596d41: "pyrogram.raw.types.InputQuickReplyShortcut",
1325
+ 0x1190cf1: "pyrogram.raw.types.InputQuickReplyShortcutId",
1326
+ 0xc68d6695: "pyrogram.raw.types.messages.QuickReplies",
1327
+ 0x5f91eb5b: "pyrogram.raw.types.messages.QuickRepliesNotModified",
1328
+ 0xbd068601: "pyrogram.raw.types.ConnectedBot",
1329
+ 0x17d7f87b: "pyrogram.raw.types.account.ConnectedBots",
1330
+ 0x2ad93719: "pyrogram.raw.types.messages.DialogFilters",
1331
+ 0x6c8e1e06: "pyrogram.raw.types.Birthday",
1332
+ 0x896433b4: "pyrogram.raw.types.BotBusinessConnection",
1333
+ 0x9c469cd: "pyrogram.raw.types.InputBusinessIntro",
1334
+ 0x5a0a066d: "pyrogram.raw.types.BusinessIntro",
1335
+ 0xfaff629d: "pyrogram.raw.types.messages.MyStickers",
1336
+ 0xe39460a9: "pyrogram.raw.types.InputCollectibleUsername",
1337
+ 0xa2e214a4: "pyrogram.raw.types.InputCollectiblePhone",
1338
+ 0x6ebdff91: "pyrogram.raw.types.fragment.CollectibleInfo",
1339
+ 0xc4e5921e: "pyrogram.raw.types.InputBusinessBotRecipients",
1340
+ 0xb88cf373: "pyrogram.raw.types.BusinessBotRecipients",
1341
+ 0x1d998733: "pyrogram.raw.types.ContactBirthday",
1342
+ 0x114ff30d: "pyrogram.raw.types.contacts.ContactBirthdays",
1343
+ 0x628c9224: "pyrogram.raw.types.MissingInvitee",
1344
+ 0x7f5defa6: "pyrogram.raw.types.messages.InvitedUsers",
1345
+ 0x11679fa7: "pyrogram.raw.types.InputBusinessChatLink",
1346
+ 0xb4ae666f: "pyrogram.raw.types.BusinessChatLink",
1347
+ 0xec43a2d1: "pyrogram.raw.types.account.BusinessChatLinks",
1348
+ 0x9a23af21: "pyrogram.raw.types.account.ResolvedBusinessChatLinks",
1349
+ 0xd62ff46a: "pyrogram.raw.types.RequestedPeerUser",
1350
+ 0x7307544f: "pyrogram.raw.types.RequestedPeerChat",
1351
+ 0x8ba403e4: "pyrogram.raw.types.RequestedPeerChannel",
1352
+ 0x430d3150: "pyrogram.raw.types.SponsoredMessageReportOption",
1353
+ 0x846f9e42: "pyrogram.raw.types.channels.SponsoredMessageReportResultChooseOption",
1354
+ 0x3e3bcf2f: "pyrogram.raw.types.channels.SponsoredMessageReportResultAdsHidden",
1355
+ 0xad798849: "pyrogram.raw.types.channels.SponsoredMessageReportResultReported",
1356
+ 0x5407e297: "pyrogram.raw.types.stats.BroadcastRevenueStats",
1357
+ 0xec659737: "pyrogram.raw.types.stats.BroadcastRevenueWithdrawalUrl",
1358
+ 0x557e2cc4: "pyrogram.raw.types.BroadcastRevenueTransactionProceeds",
1359
+ 0x5a590978: "pyrogram.raw.types.BroadcastRevenueTransactionWithdrawal",
1360
+ 0x42d30d2e: "pyrogram.raw.types.BroadcastRevenueTransactionRefund",
1361
+ 0x87158466: "pyrogram.raw.types.stats.BroadcastRevenueTransactions",
1362
+ 0xbac3a61a: "pyrogram.raw.types.ReactionNotificationsFromContacts",
1363
+ 0x4b9e22a0: "pyrogram.raw.types.ReactionNotificationsFromAll",
1364
+ 0x56e34970: "pyrogram.raw.types.ReactionsNotifySettings",
1365
+ 0x8438f1c6: "pyrogram.raw.types.BroadcastRevenueBalances",
1366
+ 0x93c3e27e: "pyrogram.raw.types.AvailableEffect",
1367
+ 0xd1ed9a5b: "pyrogram.raw.types.messages.AvailableEffectsNotModified",
1368
+ 0xbddb616e: "pyrogram.raw.types.messages.AvailableEffects",
1369
+ 0xb89bfccf: "pyrogram.raw.types.FactCheck",
1370
+ 0x95f2bfe4: "pyrogram.raw.types.StarsTransactionPeerUnsupported",
1371
+ 0xb457b375: "pyrogram.raw.types.StarsTransactionPeerAppStore",
1372
+ 0x7b560a0b: "pyrogram.raw.types.StarsTransactionPeerPlayMarket",
1373
+ 0x250dbaf8: "pyrogram.raw.types.StarsTransactionPeerPremiumBot",
1374
+ 0xe92fd902: "pyrogram.raw.types.StarsTransactionPeerFragment",
1375
+ 0xd80da15d: "pyrogram.raw.types.StarsTransactionPeer",
1376
+ 0x60682812: "pyrogram.raw.types.StarsTransactionPeerAds",
1377
+ 0xbd915c0: "pyrogram.raw.types.StarsTopupOption",
1378
+ 0x2db5418f: "pyrogram.raw.types.StarsTransaction",
1379
+ 0x8cf4ee60: "pyrogram.raw.types.payments.StarsStatus",
1380
+ 0xe87acbc0: "pyrogram.raw.types.FoundStory",
1381
+ 0xe2de7737: "pyrogram.raw.types.stories.FoundStories",
1382
+ 0xde4c5d93: "pyrogram.raw.types.GeoPointAddress",
1383
+ 0x79342946: "pyrogram.raw.types.StarsRevenueStatus",
1384
+ 0xc92bb73b: "pyrogram.raw.types.payments.StarsRevenueStats",
1385
+ 0x1dab80b7: "pyrogram.raw.types.payments.StarsRevenueWithdrawalUrl",
1386
+ 0x394e7f21: "pyrogram.raw.types.payments.StarsRevenueAdsAccountUrl",
1387
+ 0x206ae6d1: "pyrogram.raw.types.InputStarsTransaction",
1388
+ 0xcb9f372d: "pyrogram.raw.functions.InvokeAfterMsg",
1389
+ 0x3dc4b4f0: "pyrogram.raw.functions.InvokeAfterMsgs",
1390
+ 0xc1cd5ea9: "pyrogram.raw.functions.InitConnection",
1391
+ 0xda9b0d0d: "pyrogram.raw.functions.InvokeWithLayer",
1392
+ 0xbf9459b7: "pyrogram.raw.functions.InvokeWithoutUpdates",
1393
+ 0x365275f2: "pyrogram.raw.functions.InvokeWithMessagesRange",
1394
+ 0xaca9fd2e: "pyrogram.raw.functions.InvokeWithTakeout",
1395
+ 0xdd289f8e: "pyrogram.raw.functions.InvokeWithBusinessConnection",
1396
+ 0x1df92984: "pyrogram.raw.functions.InvokeWithGooglePlayIntegrity",
1397
+ 0x0dae54f8: "pyrogram.raw.functions.InvokeWithApnsSecret",
1398
+ 0xa677244f: "pyrogram.raw.functions.auth.SendCode",
1399
+ 0xaac7b717: "pyrogram.raw.functions.auth.SignUp",
1400
+ 0x8d52a951: "pyrogram.raw.functions.auth.SignIn",
1401
+ 0x3e72ba19: "pyrogram.raw.functions.auth.LogOut",
1402
+ 0x9fab0d1a: "pyrogram.raw.functions.auth.ResetAuthorizations",
1403
+ 0xe5bfffcd: "pyrogram.raw.functions.auth.ExportAuthorization",
1404
+ 0xa57a7dad: "pyrogram.raw.functions.auth.ImportAuthorization",
1405
+ 0xcdd42a05: "pyrogram.raw.functions.auth.BindTempAuthKey",
1406
+ 0x67a3ff2c: "pyrogram.raw.functions.auth.ImportBotAuthorization",
1407
+ 0xd18b4d16: "pyrogram.raw.functions.auth.CheckPassword",
1408
+ 0xd897bc66: "pyrogram.raw.functions.auth.RequestPasswordRecovery",
1409
+ 0x37096c70: "pyrogram.raw.functions.auth.RecoverPassword",
1410
+ 0xcae47523: "pyrogram.raw.functions.auth.ResendCode",
1411
+ 0x1f040578: "pyrogram.raw.functions.auth.CancelCode",
1412
+ 0x8e48a188: "pyrogram.raw.functions.auth.DropTempAuthKeys",
1413
+ 0xb7e085fe: "pyrogram.raw.functions.auth.ExportLoginToken",
1414
+ 0x95ac5ce4: "pyrogram.raw.functions.auth.ImportLoginToken",
1415
+ 0xe894ad4d: "pyrogram.raw.functions.auth.AcceptLoginToken",
1416
+ 0xd36bf79: "pyrogram.raw.functions.auth.CheckRecoveryPassword",
1417
+ 0x2db873a9: "pyrogram.raw.functions.auth.ImportWebTokenAuthorization",
1418
+ 0x8e39261e: "pyrogram.raw.functions.auth.RequestFirebaseSms",
1419
+ 0x7e960193: "pyrogram.raw.functions.auth.ResetLoginEmail",
1420
+ 0xcb9deff6: "pyrogram.raw.functions.auth.ReportMissingCode",
1421
+ 0xec86017a: "pyrogram.raw.functions.account.RegisterDevice",
1422
+ 0x6a0d3206: "pyrogram.raw.functions.account.UnregisterDevice",
1423
+ 0x84be5b93: "pyrogram.raw.functions.account.UpdateNotifySettings",
1424
+ 0x12b3ad31: "pyrogram.raw.functions.account.GetNotifySettings",
1425
+ 0xdb7e1747: "pyrogram.raw.functions.account.ResetNotifySettings",
1426
+ 0x78515775: "pyrogram.raw.functions.account.UpdateProfile",
1427
+ 0x6628562c: "pyrogram.raw.functions.account.UpdateStatus",
1428
+ 0x7967d36: "pyrogram.raw.functions.account.GetWallPapers",
1429
+ 0xc5ba3d86: "pyrogram.raw.functions.account.ReportPeer",
1430
+ 0x2714d86c: "pyrogram.raw.functions.account.CheckUsername",
1431
+ 0x3e0bdd7c: "pyrogram.raw.functions.account.UpdateUsername",
1432
+ 0xdadbc950: "pyrogram.raw.functions.account.GetPrivacy",
1433
+ 0xc9f81ce8: "pyrogram.raw.functions.account.SetPrivacy",
1434
+ 0xa2c0cf74: "pyrogram.raw.functions.account.DeleteAccount",
1435
+ 0x8fc711d: "pyrogram.raw.functions.account.GetAccountTTL",
1436
+ 0x2442485e: "pyrogram.raw.functions.account.SetAccountTTL",
1437
+ 0x82574ae5: "pyrogram.raw.functions.account.SendChangePhoneCode",
1438
+ 0x70c32edb: "pyrogram.raw.functions.account.ChangePhone",
1439
+ 0x38df3532: "pyrogram.raw.functions.account.UpdateDeviceLocked",
1440
+ 0xe320c158: "pyrogram.raw.functions.account.GetAuthorizations",
1441
+ 0xdf77f3bc: "pyrogram.raw.functions.account.ResetAuthorization",
1442
+ 0x548a30f5: "pyrogram.raw.functions.account.GetPassword",
1443
+ 0x9cd4eaf9: "pyrogram.raw.functions.account.GetPasswordSettings",
1444
+ 0xa59b102f: "pyrogram.raw.functions.account.UpdatePasswordSettings",
1445
+ 0x1b3faa88: "pyrogram.raw.functions.account.SendConfirmPhoneCode",
1446
+ 0x5f2178c3: "pyrogram.raw.functions.account.ConfirmPhone",
1447
+ 0x449e0b51: "pyrogram.raw.functions.account.GetTmpPassword",
1448
+ 0x182e6d6f: "pyrogram.raw.functions.account.GetWebAuthorizations",
1449
+ 0x2d01b9ef: "pyrogram.raw.functions.account.ResetWebAuthorization",
1450
+ 0x682d2594: "pyrogram.raw.functions.account.ResetWebAuthorizations",
1451
+ 0xb288bc7d: "pyrogram.raw.functions.account.GetAllSecureValues",
1452
+ 0x73665bc2: "pyrogram.raw.functions.account.GetSecureValue",
1453
+ 0x899fe31d: "pyrogram.raw.functions.account.SaveSecureValue",
1454
+ 0xb880bc4b: "pyrogram.raw.functions.account.DeleteSecureValue",
1455
+ 0xa929597a: "pyrogram.raw.functions.account.GetAuthorizationForm",
1456
+ 0xf3ed4c73: "pyrogram.raw.functions.account.AcceptAuthorization",
1457
+ 0xa5a356f9: "pyrogram.raw.functions.account.SendVerifyPhoneCode",
1458
+ 0x4dd3a7f6: "pyrogram.raw.functions.account.VerifyPhone",
1459
+ 0x98e037bb: "pyrogram.raw.functions.account.SendVerifyEmailCode",
1460
+ 0x32da4cf: "pyrogram.raw.functions.account.VerifyEmail",
1461
+ 0x8ef3eab0: "pyrogram.raw.functions.account.InitTakeoutSession",
1462
+ 0x1d2652ee: "pyrogram.raw.functions.account.FinishTakeoutSession",
1463
+ 0x8fdf1920: "pyrogram.raw.functions.account.ConfirmPasswordEmail",
1464
+ 0x7a7f2a15: "pyrogram.raw.functions.account.ResendPasswordEmail",
1465
+ 0xc1cbd5b6: "pyrogram.raw.functions.account.CancelPasswordEmail",
1466
+ 0x9f07c728: "pyrogram.raw.functions.account.GetContactSignUpNotification",
1467
+ 0xcff43f61: "pyrogram.raw.functions.account.SetContactSignUpNotification",
1468
+ 0x53577479: "pyrogram.raw.functions.account.GetNotifyExceptions",
1469
+ 0xfc8ddbea: "pyrogram.raw.functions.account.GetWallPaper",
1470
+ 0xe39a8f03: "pyrogram.raw.functions.account.UploadWallPaper",
1471
+ 0x6c5a5b37: "pyrogram.raw.functions.account.SaveWallPaper",
1472
+ 0xfeed5769: "pyrogram.raw.functions.account.InstallWallPaper",
1473
+ 0xbb3b9804: "pyrogram.raw.functions.account.ResetWallPapers",
1474
+ 0x56da0b3f: "pyrogram.raw.functions.account.GetAutoDownloadSettings",
1475
+ 0x76f36233: "pyrogram.raw.functions.account.SaveAutoDownloadSettings",
1476
+ 0x1c3db333: "pyrogram.raw.functions.account.UploadTheme",
1477
+ 0x652e4400: "pyrogram.raw.functions.account.CreateTheme",
1478
+ 0x2bf40ccc: "pyrogram.raw.functions.account.UpdateTheme",
1479
+ 0xf257106c: "pyrogram.raw.functions.account.SaveTheme",
1480
+ 0xc727bb3b: "pyrogram.raw.functions.account.InstallTheme",
1481
+ 0x3a5869ec: "pyrogram.raw.functions.account.GetTheme",
1482
+ 0x7206e458: "pyrogram.raw.functions.account.GetThemes",
1483
+ 0xb574b16b: "pyrogram.raw.functions.account.SetContentSettings",
1484
+ 0x8b9b4dae: "pyrogram.raw.functions.account.GetContentSettings",
1485
+ 0x65ad71dc: "pyrogram.raw.functions.account.GetMultiWallPapers",
1486
+ 0xeb2b4cf6: "pyrogram.raw.functions.account.GetGlobalPrivacySettings",
1487
+ 0x1edaaac2: "pyrogram.raw.functions.account.SetGlobalPrivacySettings",
1488
+ 0xfa8cc6f5: "pyrogram.raw.functions.account.ReportProfilePhoto",
1489
+ 0x9308ce1b: "pyrogram.raw.functions.account.ResetPassword",
1490
+ 0x4c9409f6: "pyrogram.raw.functions.account.DeclinePasswordReset",
1491
+ 0xd638de89: "pyrogram.raw.functions.account.GetChatThemes",
1492
+ 0xbf899aa0: "pyrogram.raw.functions.account.SetAuthorizationTTL",
1493
+ 0x40f48462: "pyrogram.raw.functions.account.ChangeAuthorizationSettings",
1494
+ 0xe1902288: "pyrogram.raw.functions.account.GetSavedRingtones",
1495
+ 0x3dea5b03: "pyrogram.raw.functions.account.SaveRingtone",
1496
+ 0x831a83a2: "pyrogram.raw.functions.account.UploadRingtone",
1497
+ 0xfbd3de6b: "pyrogram.raw.functions.account.UpdateEmojiStatus",
1498
+ 0xd6753386: "pyrogram.raw.functions.account.GetDefaultEmojiStatuses",
1499
+ 0xf578105: "pyrogram.raw.functions.account.GetRecentEmojiStatuses",
1500
+ 0x18201aae: "pyrogram.raw.functions.account.ClearRecentEmojiStatuses",
1501
+ 0xef500eab: "pyrogram.raw.functions.account.ReorderUsernames",
1502
+ 0x58d6b376: "pyrogram.raw.functions.account.ToggleUsername",
1503
+ 0xe2750328: "pyrogram.raw.functions.account.GetDefaultProfilePhotoEmojis",
1504
+ 0x915860ae: "pyrogram.raw.functions.account.GetDefaultGroupPhotoEmojis",
1505
+ 0xadcbbcda: "pyrogram.raw.functions.account.GetAutoSaveSettings",
1506
+ 0xd69b8361: "pyrogram.raw.functions.account.SaveAutoSaveSettings",
1507
+ 0x53bc0020: "pyrogram.raw.functions.account.DeleteAutoSaveExceptions",
1508
+ 0xca8ae8ba: "pyrogram.raw.functions.account.InvalidateSignInCodes",
1509
+ 0x7cefa15d: "pyrogram.raw.functions.account.UpdateColor",
1510
+ 0xa60ab9ce: "pyrogram.raw.functions.account.GetDefaultBackgroundEmojis",
1511
+ 0x7727a7d5: "pyrogram.raw.functions.account.GetChannelDefaultEmojiStatuses",
1512
+ 0x35a9e0d5: "pyrogram.raw.functions.account.GetChannelRestrictedStatusEmojis",
1513
+ 0x4b00e066: "pyrogram.raw.functions.account.UpdateBusinessWorkHours",
1514
+ 0x9e6b131a: "pyrogram.raw.functions.account.UpdateBusinessLocation",
1515
+ 0x66cdafc4: "pyrogram.raw.functions.account.UpdateBusinessGreetingMessage",
1516
+ 0xa26a7fa5: "pyrogram.raw.functions.account.UpdateBusinessAwayMessage",
1517
+ 0x43d8521d: "pyrogram.raw.functions.account.UpdateConnectedBot",
1518
+ 0x4ea4c80f: "pyrogram.raw.functions.account.GetConnectedBots",
1519
+ 0x76a86270: "pyrogram.raw.functions.account.GetBotBusinessConnection",
1520
+ 0xa614d034: "pyrogram.raw.functions.account.UpdateBusinessIntro",
1521
+ 0x646e1097: "pyrogram.raw.functions.account.ToggleConnectedBotPaused",
1522
+ 0x5e437ed9: "pyrogram.raw.functions.account.DisablePeerConnectedBot",
1523
+ 0xcc6e0c11: "pyrogram.raw.functions.account.UpdateBirthday",
1524
+ 0x8851e68e: "pyrogram.raw.functions.account.CreateBusinessChatLink",
1525
+ 0x8c3410af: "pyrogram.raw.functions.account.EditBusinessChatLink",
1526
+ 0x60073674: "pyrogram.raw.functions.account.DeleteBusinessChatLink",
1527
+ 0x6f70dde1: "pyrogram.raw.functions.account.GetBusinessChatLinks",
1528
+ 0x5492e5ee: "pyrogram.raw.functions.account.ResolveBusinessChatLink",
1529
+ 0xd94305e0: "pyrogram.raw.functions.account.UpdatePersonalChannel",
1530
+ 0xb9d9a38d: "pyrogram.raw.functions.account.ToggleSponsoredMessages",
1531
+ 0x6dd654c: "pyrogram.raw.functions.account.GetReactionsNotifySettings",
1532
+ 0x316ce548: "pyrogram.raw.functions.account.SetReactionsNotifySettings",
1533
+ 0xd91a548: "pyrogram.raw.functions.users.GetUsers",
1534
+ 0xb60f5918: "pyrogram.raw.functions.users.GetFullUser",
1535
+ 0x90c894b5: "pyrogram.raw.functions.users.SetSecureValueErrors",
1536
+ 0xa622aa10: "pyrogram.raw.functions.users.GetIsPremiumRequiredToContact",
1537
+ 0x7adc669d: "pyrogram.raw.functions.contacts.GetContactIDs",
1538
+ 0xc4a353ee: "pyrogram.raw.functions.contacts.GetStatuses",
1539
+ 0x5dd69e12: "pyrogram.raw.functions.contacts.GetContacts",
1540
+ 0x2c800be5: "pyrogram.raw.functions.contacts.ImportContacts",
1541
+ 0x96a0e00: "pyrogram.raw.functions.contacts.DeleteContacts",
1542
+ 0x1013fd9e: "pyrogram.raw.functions.contacts.DeleteByPhones",
1543
+ 0x2e2e8734: "pyrogram.raw.functions.contacts.Block",
1544
+ 0xb550d328: "pyrogram.raw.functions.contacts.Unblock",
1545
+ 0x9a868f80: "pyrogram.raw.functions.contacts.GetBlocked",
1546
+ 0x11f812d8: "pyrogram.raw.functions.contacts.Search",
1547
+ 0xf93ccba3: "pyrogram.raw.functions.contacts.ResolveUsername",
1548
+ 0x973478b6: "pyrogram.raw.functions.contacts.GetTopPeers",
1549
+ 0x1ae373ac: "pyrogram.raw.functions.contacts.ResetTopPeerRating",
1550
+ 0x879537f1: "pyrogram.raw.functions.contacts.ResetSaved",
1551
+ 0x82f1e39f: "pyrogram.raw.functions.contacts.GetSaved",
1552
+ 0x8514bdda: "pyrogram.raw.functions.contacts.ToggleTopPeers",
1553
+ 0xe8f463d0: "pyrogram.raw.functions.contacts.AddContact",
1554
+ 0xf831a20f: "pyrogram.raw.functions.contacts.AcceptContact",
1555
+ 0xd348bc44: "pyrogram.raw.functions.contacts.GetLocated",
1556
+ 0x29a8962c: "pyrogram.raw.functions.contacts.BlockFromReplies",
1557
+ 0x8af94344: "pyrogram.raw.functions.contacts.ResolvePhone",
1558
+ 0xf8654027: "pyrogram.raw.functions.contacts.ExportContactToken",
1559
+ 0x13005788: "pyrogram.raw.functions.contacts.ImportContactToken",
1560
+ 0xba6705f0: "pyrogram.raw.functions.contacts.EditCloseFriends",
1561
+ 0x94c65c76: "pyrogram.raw.functions.contacts.SetBlocked",
1562
+ 0xdaeda864: "pyrogram.raw.functions.contacts.GetBirthdays",
1563
+ 0x63c66506: "pyrogram.raw.functions.messages.GetMessages",
1564
+ 0xa0f4cb4f: "pyrogram.raw.functions.messages.GetDialogs",
1565
+ 0x4423e6c5: "pyrogram.raw.functions.messages.GetHistory",
1566
+ 0x29ee847a: "pyrogram.raw.functions.messages.Search",
1567
+ 0xe306d3a: "pyrogram.raw.functions.messages.ReadHistory",
1568
+ 0xb08f922a: "pyrogram.raw.functions.messages.DeleteHistory",
1569
+ 0xe58e95d2: "pyrogram.raw.functions.messages.DeleteMessages",
1570
+ 0x5a954c0: "pyrogram.raw.functions.messages.ReceivedMessages",
1571
+ 0x58943ee2: "pyrogram.raw.functions.messages.SetTyping",
1572
+ 0x983f9745: "pyrogram.raw.functions.messages.SendMessage",
1573
+ 0x7852834e: "pyrogram.raw.functions.messages.SendMedia",
1574
+ 0xd5039208: "pyrogram.raw.functions.messages.ForwardMessages",
1575
+ 0xcf1592db: "pyrogram.raw.functions.messages.ReportSpam",
1576
+ 0xefd9a6a2: "pyrogram.raw.functions.messages.GetPeerSettings",
1577
+ 0x8953ab4e: "pyrogram.raw.functions.messages.Report",
1578
+ 0x49e9528f: "pyrogram.raw.functions.messages.GetChats",
1579
+ 0xaeb00b34: "pyrogram.raw.functions.messages.GetFullChat",
1580
+ 0x73783ffd: "pyrogram.raw.functions.messages.EditChatTitle",
1581
+ 0x35ddd674: "pyrogram.raw.functions.messages.EditChatPhoto",
1582
+ 0xcbc6d107: "pyrogram.raw.functions.messages.AddChatUser",
1583
+ 0xa2185cab: "pyrogram.raw.functions.messages.DeleteChatUser",
1584
+ 0x92ceddd4: "pyrogram.raw.functions.messages.CreateChat",
1585
+ 0x26cf8950: "pyrogram.raw.functions.messages.GetDhConfig",
1586
+ 0xf64daf43: "pyrogram.raw.functions.messages.RequestEncryption",
1587
+ 0x3dbc0415: "pyrogram.raw.functions.messages.AcceptEncryption",
1588
+ 0xf393aea0: "pyrogram.raw.functions.messages.DiscardEncryption",
1589
+ 0x791451ed: "pyrogram.raw.functions.messages.SetEncryptedTyping",
1590
+ 0x7f4b690a: "pyrogram.raw.functions.messages.ReadEncryptedHistory",
1591
+ 0x44fa7a15: "pyrogram.raw.functions.messages.SendEncrypted",
1592
+ 0x5559481d: "pyrogram.raw.functions.messages.SendEncryptedFile",
1593
+ 0x32d439a4: "pyrogram.raw.functions.messages.SendEncryptedService",
1594
+ 0x55a5bb66: "pyrogram.raw.functions.messages.ReceivedQueue",
1595
+ 0x4b0c8c0f: "pyrogram.raw.functions.messages.ReportEncryptedSpam",
1596
+ 0x36a73f77: "pyrogram.raw.functions.messages.ReadMessageContents",
1597
+ 0xd5a5d3a1: "pyrogram.raw.functions.messages.GetStickers",
1598
+ 0xb8a0a1a8: "pyrogram.raw.functions.messages.GetAllStickers",
1599
+ 0x8b68b0cc: "pyrogram.raw.functions.messages.GetWebPagePreview",
1600
+ 0xa02ce5d5: "pyrogram.raw.functions.messages.ExportChatInvite",
1601
+ 0x3eadb1bb: "pyrogram.raw.functions.messages.CheckChatInvite",
1602
+ 0x6c50051c: "pyrogram.raw.functions.messages.ImportChatInvite",
1603
+ 0xc8a0ec74: "pyrogram.raw.functions.messages.GetStickerSet",
1604
+ 0xc78fe460: "pyrogram.raw.functions.messages.InstallStickerSet",
1605
+ 0xf96e55de: "pyrogram.raw.functions.messages.UninstallStickerSet",
1606
+ 0xe6df7378: "pyrogram.raw.functions.messages.StartBot",
1607
+ 0x5784d3e1: "pyrogram.raw.functions.messages.GetMessagesViews",
1608
+ 0xa85bd1c2: "pyrogram.raw.functions.messages.EditChatAdmin",
1609
+ 0xa2875319: "pyrogram.raw.functions.messages.MigrateChat",
1610
+ 0x4bc6589a: "pyrogram.raw.functions.messages.SearchGlobal",
1611
+ 0x78337739: "pyrogram.raw.functions.messages.ReorderStickerSets",
1612
+ 0xb1f2061f: "pyrogram.raw.functions.messages.GetDocumentByHash",
1613
+ 0x5cf09635: "pyrogram.raw.functions.messages.GetSavedGifs",
1614
+ 0x327a30cb: "pyrogram.raw.functions.messages.SaveGif",
1615
+ 0x514e999d: "pyrogram.raw.functions.messages.GetInlineBotResults",
1616
+ 0xbb12a419: "pyrogram.raw.functions.messages.SetInlineBotResults",
1617
+ 0x3ebee86a: "pyrogram.raw.functions.messages.SendInlineBotResult",
1618
+ 0xfda68d36: "pyrogram.raw.functions.messages.GetMessageEditData",
1619
+ 0xdfd14005: "pyrogram.raw.functions.messages.EditMessage",
1620
+ 0x83557dba: "pyrogram.raw.functions.messages.EditInlineBotMessage",
1621
+ 0x9342ca07: "pyrogram.raw.functions.messages.GetBotCallbackAnswer",
1622
+ 0xd58f130a: "pyrogram.raw.functions.messages.SetBotCallbackAnswer",
1623
+ 0xe470bcfd: "pyrogram.raw.functions.messages.GetPeerDialogs",
1624
+ 0xd372c5ce: "pyrogram.raw.functions.messages.SaveDraft",
1625
+ 0x6a3f8d65: "pyrogram.raw.functions.messages.GetAllDrafts",
1626
+ 0x64780b14: "pyrogram.raw.functions.messages.GetFeaturedStickers",
1627
+ 0x5b118126: "pyrogram.raw.functions.messages.ReadFeaturedStickers",
1628
+ 0x9da9403b: "pyrogram.raw.functions.messages.GetRecentStickers",
1629
+ 0x392718f8: "pyrogram.raw.functions.messages.SaveRecentSticker",
1630
+ 0x8999602d: "pyrogram.raw.functions.messages.ClearRecentStickers",
1631
+ 0x57f17692: "pyrogram.raw.functions.messages.GetArchivedStickers",
1632
+ 0x640f82b8: "pyrogram.raw.functions.messages.GetMaskStickers",
1633
+ 0xcc5b67cc: "pyrogram.raw.functions.messages.GetAttachedStickers",
1634
+ 0x8ef8ecc0: "pyrogram.raw.functions.messages.SetGameScore",
1635
+ 0x15ad9f64: "pyrogram.raw.functions.messages.SetInlineGameScore",
1636
+ 0xe822649d: "pyrogram.raw.functions.messages.GetGameHighScores",
1637
+ 0xf635e1b: "pyrogram.raw.functions.messages.GetInlineGameHighScores",
1638
+ 0xe40ca104: "pyrogram.raw.functions.messages.GetCommonChats",
1639
+ 0x8d9692a3: "pyrogram.raw.functions.messages.GetWebPage",
1640
+ 0xa731e257: "pyrogram.raw.functions.messages.ToggleDialogPin",
1641
+ 0x3b1adf37: "pyrogram.raw.functions.messages.ReorderPinnedDialogs",
1642
+ 0xd6b94df2: "pyrogram.raw.functions.messages.GetPinnedDialogs",
1643
+ 0xe5f672fa: "pyrogram.raw.functions.messages.SetBotShippingResults",
1644
+ 0x9c2dd95: "pyrogram.raw.functions.messages.SetBotPrecheckoutResults",
1645
+ 0x14967978: "pyrogram.raw.functions.messages.UploadMedia",
1646
+ 0xa1405817: "pyrogram.raw.functions.messages.SendScreenshotNotification",
1647
+ 0x4f1aaa9: "pyrogram.raw.functions.messages.GetFavedStickers",
1648
+ 0xb9ffc55b: "pyrogram.raw.functions.messages.FaveSticker",
1649
+ 0xf107e790: "pyrogram.raw.functions.messages.GetUnreadMentions",
1650
+ 0x36e5bf4d: "pyrogram.raw.functions.messages.ReadMentions",
1651
+ 0x702a40e0: "pyrogram.raw.functions.messages.GetRecentLocations",
1652
+ 0x37b74355: "pyrogram.raw.functions.messages.SendMultiMedia",
1653
+ 0x5057c497: "pyrogram.raw.functions.messages.UploadEncryptedFile",
1654
+ 0x35705b8a: "pyrogram.raw.functions.messages.SearchStickerSets",
1655
+ 0x1cff7e08: "pyrogram.raw.functions.messages.GetSplitRanges",
1656
+ 0xc286d98f: "pyrogram.raw.functions.messages.MarkDialogUnread",
1657
+ 0x22e24e22: "pyrogram.raw.functions.messages.GetDialogUnreadMarks",
1658
+ 0x7e58ee9c: "pyrogram.raw.functions.messages.ClearAllDrafts",
1659
+ 0xd2aaf7ec: "pyrogram.raw.functions.messages.UpdatePinnedMessage",
1660
+ 0x10ea6184: "pyrogram.raw.functions.messages.SendVote",
1661
+ 0x73bb643b: "pyrogram.raw.functions.messages.GetPollResults",
1662
+ 0x6e2be050: "pyrogram.raw.functions.messages.GetOnlines",
1663
+ 0xdef60797: "pyrogram.raw.functions.messages.EditChatAbout",
1664
+ 0xa5866b41: "pyrogram.raw.functions.messages.EditChatDefaultBannedRights",
1665
+ 0x35a0e062: "pyrogram.raw.functions.messages.GetEmojiKeywords",
1666
+ 0x1508b6af: "pyrogram.raw.functions.messages.GetEmojiKeywordsDifference",
1667
+ 0x4e9963b2: "pyrogram.raw.functions.messages.GetEmojiKeywordsLanguages",
1668
+ 0xd5b10c26: "pyrogram.raw.functions.messages.GetEmojiURL",
1669
+ 0x1bbcf300: "pyrogram.raw.functions.messages.GetSearchCounters",
1670
+ 0x198fb446: "pyrogram.raw.functions.messages.RequestUrlAuth",
1671
+ 0xb12c7125: "pyrogram.raw.functions.messages.AcceptUrlAuth",
1672
+ 0x4facb138: "pyrogram.raw.functions.messages.HidePeerSettingsBar",
1673
+ 0xf516760b: "pyrogram.raw.functions.messages.GetScheduledHistory",
1674
+ 0xbdbb0464: "pyrogram.raw.functions.messages.GetScheduledMessages",
1675
+ 0xbd38850a: "pyrogram.raw.functions.messages.SendScheduledMessages",
1676
+ 0x59ae2b16: "pyrogram.raw.functions.messages.DeleteScheduledMessages",
1677
+ 0xb86e380e: "pyrogram.raw.functions.messages.GetPollVotes",
1678
+ 0xb5052fea: "pyrogram.raw.functions.messages.ToggleStickerSets",
1679
+ 0xefd48c89: "pyrogram.raw.functions.messages.GetDialogFilters",
1680
+ 0xa29cd42c: "pyrogram.raw.functions.messages.GetSuggestedDialogFilters",
1681
+ 0x1ad4a04a: "pyrogram.raw.functions.messages.UpdateDialogFilter",
1682
+ 0xc563c1e4: "pyrogram.raw.functions.messages.UpdateDialogFiltersOrder",
1683
+ 0x7ed094a1: "pyrogram.raw.functions.messages.GetOldFeaturedStickers",
1684
+ 0x22ddd30c: "pyrogram.raw.functions.messages.GetReplies",
1685
+ 0x446972fd: "pyrogram.raw.functions.messages.GetDiscussionMessage",
1686
+ 0xf731a9f4: "pyrogram.raw.functions.messages.ReadDiscussion",
1687
+ 0xee22b9a8: "pyrogram.raw.functions.messages.UnpinAllMessages",
1688
+ 0x5bd0ee50: "pyrogram.raw.functions.messages.DeleteChat",
1689
+ 0xf9cbe409: "pyrogram.raw.functions.messages.DeletePhoneCallHistory",
1690
+ 0x43fe19f3: "pyrogram.raw.functions.messages.CheckHistoryImport",
1691
+ 0x34090c3b: "pyrogram.raw.functions.messages.InitHistoryImport",
1692
+ 0x2a862092: "pyrogram.raw.functions.messages.UploadImportedMedia",
1693
+ 0xb43df344: "pyrogram.raw.functions.messages.StartHistoryImport",
1694
+ 0xa2b5a3f6: "pyrogram.raw.functions.messages.GetExportedChatInvites",
1695
+ 0x73746f5c: "pyrogram.raw.functions.messages.GetExportedChatInvite",
1696
+ 0xbdca2f75: "pyrogram.raw.functions.messages.EditExportedChatInvite",
1697
+ 0x56987bd5: "pyrogram.raw.functions.messages.DeleteRevokedExportedChatInvites",
1698
+ 0xd464a42b: "pyrogram.raw.functions.messages.DeleteExportedChatInvite",
1699
+ 0x3920e6ef: "pyrogram.raw.functions.messages.GetAdminsWithInvites",
1700
+ 0xdf04dd4e: "pyrogram.raw.functions.messages.GetChatInviteImporters",
1701
+ 0xb80e5fe4: "pyrogram.raw.functions.messages.SetHistoryTTL",
1702
+ 0x5dc60f03: "pyrogram.raw.functions.messages.CheckHistoryImportPeer",
1703
+ 0xe63be13f: "pyrogram.raw.functions.messages.SetChatTheme",
1704
+ 0x31c1c44f: "pyrogram.raw.functions.messages.GetMessageReadParticipants",
1705
+ 0x6aa3f6bd: "pyrogram.raw.functions.messages.GetSearchResultsCalendar",
1706
+ 0x9c7f2f10: "pyrogram.raw.functions.messages.GetSearchResultsPositions",
1707
+ 0x7fe7e815: "pyrogram.raw.functions.messages.HideChatJoinRequest",
1708
+ 0xe085f4ea: "pyrogram.raw.functions.messages.HideAllChatJoinRequests",
1709
+ 0xb11eafa2: "pyrogram.raw.functions.messages.ToggleNoForwards",
1710
+ 0xccfddf96: "pyrogram.raw.functions.messages.SaveDefaultSendAs",
1711
+ 0xd30d78d4: "pyrogram.raw.functions.messages.SendReaction",
1712
+ 0x8bba90e6: "pyrogram.raw.functions.messages.GetMessagesReactions",
1713
+ 0x461b3f48: "pyrogram.raw.functions.messages.GetMessageReactionsList",
1714
+ 0x5a150bd4: "pyrogram.raw.functions.messages.SetChatAvailableReactions",
1715
+ 0x18dea0ac: "pyrogram.raw.functions.messages.GetAvailableReactions",
1716
+ 0x4f47a016: "pyrogram.raw.functions.messages.SetDefaultReaction",
1717
+ 0x63183030: "pyrogram.raw.functions.messages.TranslateText",
1718
+ 0x3223495b: "pyrogram.raw.functions.messages.GetUnreadReactions",
1719
+ 0x54aa7f8e: "pyrogram.raw.functions.messages.ReadReactions",
1720
+ 0x107e31a0: "pyrogram.raw.functions.messages.SearchSentMedia",
1721
+ 0x16fcc2cb: "pyrogram.raw.functions.messages.GetAttachMenuBots",
1722
+ 0x77216192: "pyrogram.raw.functions.messages.GetAttachMenuBot",
1723
+ 0x69f59d69: "pyrogram.raw.functions.messages.ToggleBotInAttachMenu",
1724
+ 0x269dc2c1: "pyrogram.raw.functions.messages.RequestWebView",
1725
+ 0xb0d81a83: "pyrogram.raw.functions.messages.ProlongWebView",
1726
+ 0x413a3e73: "pyrogram.raw.functions.messages.RequestSimpleWebView",
1727
+ 0xa4314f5: "pyrogram.raw.functions.messages.SendWebViewResultMessage",
1728
+ 0xdc0242c8: "pyrogram.raw.functions.messages.SendWebViewData",
1729
+ 0x269e9a49: "pyrogram.raw.functions.messages.TranscribeAudio",
1730
+ 0x7f1d072f: "pyrogram.raw.functions.messages.RateTranscribedAudio",
1731
+ 0xd9ab0f54: "pyrogram.raw.functions.messages.GetCustomEmojiDocuments",
1732
+ 0xfbfca18f: "pyrogram.raw.functions.messages.GetEmojiStickers",
1733
+ 0xecf6736: "pyrogram.raw.functions.messages.GetFeaturedEmojiStickers",
1734
+ 0x3f64c076: "pyrogram.raw.functions.messages.ReportReaction",
1735
+ 0xbb8125ba: "pyrogram.raw.functions.messages.GetTopReactions",
1736
+ 0x39461db2: "pyrogram.raw.functions.messages.GetRecentReactions",
1737
+ 0x9dfeefb4: "pyrogram.raw.functions.messages.ClearRecentReactions",
1738
+ 0x84f80814: "pyrogram.raw.functions.messages.GetExtendedMedia",
1739
+ 0x9eb51445: "pyrogram.raw.functions.messages.SetDefaultHistoryTTL",
1740
+ 0x658b7188: "pyrogram.raw.functions.messages.GetDefaultHistoryTTL",
1741
+ 0x91b2d060: "pyrogram.raw.functions.messages.SendBotRequestedPeer",
1742
+ 0x7488ce5b: "pyrogram.raw.functions.messages.GetEmojiGroups",
1743
+ 0x2ecd56cd: "pyrogram.raw.functions.messages.GetEmojiStatusGroups",
1744
+ 0x21a548f3: "pyrogram.raw.functions.messages.GetEmojiProfilePhotoGroups",
1745
+ 0x2c11c0d7: "pyrogram.raw.functions.messages.SearchCustomEmoji",
1746
+ 0xe47cb579: "pyrogram.raw.functions.messages.TogglePeerTranslations",
1747
+ 0x34fdc5c3: "pyrogram.raw.functions.messages.GetBotApp",
1748
+ 0x53618bce: "pyrogram.raw.functions.messages.RequestAppWebView",
1749
+ 0x8ffacae1: "pyrogram.raw.functions.messages.SetChatWallPaper",
1750
+ 0x92b4494c: "pyrogram.raw.functions.messages.SearchEmojiStickerSets",
1751
+ 0x5381d21a: "pyrogram.raw.functions.messages.GetSavedDialogs",
1752
+ 0x3d9a414d: "pyrogram.raw.functions.messages.GetSavedHistory",
1753
+ 0x6e98102b: "pyrogram.raw.functions.messages.DeleteSavedHistory",
1754
+ 0xd63d94e0: "pyrogram.raw.functions.messages.GetPinnedSavedDialogs",
1755
+ 0xac81bbde: "pyrogram.raw.functions.messages.ToggleSavedDialogPin",
1756
+ 0x8b716587: "pyrogram.raw.functions.messages.ReorderPinnedSavedDialogs",
1757
+ 0x3637e05b: "pyrogram.raw.functions.messages.GetSavedReactionTags",
1758
+ 0x60297dec: "pyrogram.raw.functions.messages.UpdateSavedReactionTag",
1759
+ 0xbdf93428: "pyrogram.raw.functions.messages.GetDefaultTagReactions",
1760
+ 0x8c4bfe5d: "pyrogram.raw.functions.messages.GetOutboxReadDate",
1761
+ 0xd483f2a8: "pyrogram.raw.functions.messages.GetQuickReplies",
1762
+ 0x60331907: "pyrogram.raw.functions.messages.ReorderQuickReplies",
1763
+ 0xf1d0fbd3: "pyrogram.raw.functions.messages.CheckQuickReplyShortcut",
1764
+ 0x5c003cef: "pyrogram.raw.functions.messages.EditQuickReplyShortcut",
1765
+ 0x3cc04740: "pyrogram.raw.functions.messages.DeleteQuickReplyShortcut",
1766
+ 0x94a495c3: "pyrogram.raw.functions.messages.GetQuickReplyMessages",
1767
+ 0x6c750de1: "pyrogram.raw.functions.messages.SendQuickReplyMessages",
1768
+ 0xe105e910: "pyrogram.raw.functions.messages.DeleteQuickReplyMessages",
1769
+ 0xfd2dda49: "pyrogram.raw.functions.messages.ToggleDialogFilterTags",
1770
+ 0xd0b5e1fc: "pyrogram.raw.functions.messages.GetMyStickers",
1771
+ 0x1dd840f5: "pyrogram.raw.functions.messages.GetEmojiStickerGroups",
1772
+ 0xdea20a39: "pyrogram.raw.functions.messages.GetAvailableEffects",
1773
+ 0x589ee75: "pyrogram.raw.functions.messages.EditFactCheck",
1774
+ 0xd1da940c: "pyrogram.raw.functions.messages.DeleteFactCheck",
1775
+ 0xb9cdc5ee: "pyrogram.raw.functions.messages.GetFactCheck",
1776
+ 0xedd4882a: "pyrogram.raw.functions.updates.GetState",
1777
+ 0x19c2f763: "pyrogram.raw.functions.updates.GetDifference",
1778
+ 0x3173d78: "pyrogram.raw.functions.updates.GetChannelDifference",
1779
+ 0x9e82039: "pyrogram.raw.functions.photos.UpdateProfilePhoto",
1780
+ 0x388a3b5: "pyrogram.raw.functions.photos.UploadProfilePhoto",
1781
+ 0x87cf7f2f: "pyrogram.raw.functions.photos.DeletePhotos",
1782
+ 0x91cd32a8: "pyrogram.raw.functions.photos.GetUserPhotos",
1783
+ 0xe14c4a71: "pyrogram.raw.functions.photos.UploadContactProfilePhoto",
1784
+ 0xb304a621: "pyrogram.raw.functions.upload.SaveFilePart",
1785
+ 0xbe5335be: "pyrogram.raw.functions.upload.GetFile",
1786
+ 0xde7b673d: "pyrogram.raw.functions.upload.SaveBigFilePart",
1787
+ 0x24e6818d: "pyrogram.raw.functions.upload.GetWebFile",
1788
+ 0x395f69da: "pyrogram.raw.functions.upload.GetCdnFile",
1789
+ 0x9b2754a8: "pyrogram.raw.functions.upload.ReuploadCdnFile",
1790
+ 0x91dc3f31: "pyrogram.raw.functions.upload.GetCdnFileHashes",
1791
+ 0x9156982a: "pyrogram.raw.functions.upload.GetFileHashes",
1792
+ 0xc4f9186b: "pyrogram.raw.functions.help.GetConfig",
1793
+ 0x1fb33026: "pyrogram.raw.functions.help.GetNearestDc",
1794
+ 0x522d5a7d: "pyrogram.raw.functions.help.GetAppUpdate",
1795
+ 0x4d392343: "pyrogram.raw.functions.help.GetInviteText",
1796
+ 0x9cdf08cd: "pyrogram.raw.functions.help.GetSupport",
1797
+ 0xec22cfcd: "pyrogram.raw.functions.help.SetBotUpdatesStatus",
1798
+ 0x52029342: "pyrogram.raw.functions.help.GetCdnConfig",
1799
+ 0x3dc0f114: "pyrogram.raw.functions.help.GetRecentMeUrls",
1800
+ 0x2ca51fd1: "pyrogram.raw.functions.help.GetTermsOfServiceUpdate",
1801
+ 0xee72f79a: "pyrogram.raw.functions.help.AcceptTermsOfService",
1802
+ 0x3fedc75f: "pyrogram.raw.functions.help.GetDeepLinkInfo",
1803
+ 0x61e3f854: "pyrogram.raw.functions.help.GetAppConfig",
1804
+ 0x6f02f748: "pyrogram.raw.functions.help.SaveAppLog",
1805
+ 0xc661ad08: "pyrogram.raw.functions.help.GetPassportConfig",
1806
+ 0xd360e72c: "pyrogram.raw.functions.help.GetSupportName",
1807
+ 0x38a08d3: "pyrogram.raw.functions.help.GetUserInfo",
1808
+ 0x66b91b70: "pyrogram.raw.functions.help.EditUserInfo",
1809
+ 0xc0977421: "pyrogram.raw.functions.help.GetPromoData",
1810
+ 0x1e251c95: "pyrogram.raw.functions.help.HidePromoData",
1811
+ 0xf50dbaa1: "pyrogram.raw.functions.help.DismissSuggestion",
1812
+ 0x735787a8: "pyrogram.raw.functions.help.GetCountriesList",
1813
+ 0xb81b93d4: "pyrogram.raw.functions.help.GetPremiumPromo",
1814
+ 0xda80f42f: "pyrogram.raw.functions.help.GetPeerColors",
1815
+ 0xabcfa9fd: "pyrogram.raw.functions.help.GetPeerProfileColors",
1816
+ 0x49b30240: "pyrogram.raw.functions.help.GetTimezonesList",
1817
+ 0xcc104937: "pyrogram.raw.functions.channels.ReadHistory",
1818
+ 0x84c1fd4e: "pyrogram.raw.functions.channels.DeleteMessages",
1819
+ 0xf44a8315: "pyrogram.raw.functions.channels.ReportSpam",
1820
+ 0xad8c9a23: "pyrogram.raw.functions.channels.GetMessages",
1821
+ 0x77ced9d0: "pyrogram.raw.functions.channels.GetParticipants",
1822
+ 0xa0ab6cc6: "pyrogram.raw.functions.channels.GetParticipant",
1823
+ 0xa7f6bbb: "pyrogram.raw.functions.channels.GetChannels",
1824
+ 0x8736a09: "pyrogram.raw.functions.channels.GetFullChannel",
1825
+ 0x91006707: "pyrogram.raw.functions.channels.CreateChannel",
1826
+ 0xd33c8902: "pyrogram.raw.functions.channels.EditAdmin",
1827
+ 0x566decd0: "pyrogram.raw.functions.channels.EditTitle",
1828
+ 0xf12e57c9: "pyrogram.raw.functions.channels.EditPhoto",
1829
+ 0x10e6bd2c: "pyrogram.raw.functions.channels.CheckUsername",
1830
+ 0x3514b3de: "pyrogram.raw.functions.channels.UpdateUsername",
1831
+ 0x24b524c5: "pyrogram.raw.functions.channels.JoinChannel",
1832
+ 0xf836aa95: "pyrogram.raw.functions.channels.LeaveChannel",
1833
+ 0xc9e33d54: "pyrogram.raw.functions.channels.InviteToChannel",
1834
+ 0xc0111fe3: "pyrogram.raw.functions.channels.DeleteChannel",
1835
+ 0xe63fadeb: "pyrogram.raw.functions.channels.ExportMessageLink",
1836
+ 0x1f69b606: "pyrogram.raw.functions.channels.ToggleSignatures",
1837
+ 0xf8b036af: "pyrogram.raw.functions.channels.GetAdminedPublicChannels",
1838
+ 0x96e6cd81: "pyrogram.raw.functions.channels.EditBanned",
1839
+ 0x33ddf480: "pyrogram.raw.functions.channels.GetAdminLog",
1840
+ 0xea8ca4f9: "pyrogram.raw.functions.channels.SetStickers",
1841
+ 0xeab5dc38: "pyrogram.raw.functions.channels.ReadMessageContents",
1842
+ 0x9baa9647: "pyrogram.raw.functions.channels.DeleteHistory",
1843
+ 0xeabbb94c: "pyrogram.raw.functions.channels.TogglePreHistoryHidden",
1844
+ 0x8341ecc0: "pyrogram.raw.functions.channels.GetLeftChannels",
1845
+ 0xf5dad378: "pyrogram.raw.functions.channels.GetGroupsForDiscussion",
1846
+ 0x40582bb2: "pyrogram.raw.functions.channels.SetDiscussionGroup",
1847
+ 0x8f38cd1f: "pyrogram.raw.functions.channels.EditCreator",
1848
+ 0x58e63f6d: "pyrogram.raw.functions.channels.EditLocation",
1849
+ 0xedd49ef0: "pyrogram.raw.functions.channels.ToggleSlowMode",
1850
+ 0x11e831ee: "pyrogram.raw.functions.channels.GetInactiveChannels",
1851
+ 0xb290c69: "pyrogram.raw.functions.channels.ConvertToGigagroup",
1852
+ 0xbeaedb94: "pyrogram.raw.functions.channels.ViewSponsoredMessage",
1853
+ 0xec210fbf: "pyrogram.raw.functions.channels.GetSponsoredMessages",
1854
+ 0xdc770ee: "pyrogram.raw.functions.channels.GetSendAs",
1855
+ 0x367544db: "pyrogram.raw.functions.channels.DeleteParticipantHistory",
1856
+ 0xe4cb9580: "pyrogram.raw.functions.channels.ToggleJoinToSend",
1857
+ 0x4c2985b6: "pyrogram.raw.functions.channels.ToggleJoinRequest",
1858
+ 0xb45ced1d: "pyrogram.raw.functions.channels.ReorderUsernames",
1859
+ 0x50f24105: "pyrogram.raw.functions.channels.ToggleUsername",
1860
+ 0xa245dd3: "pyrogram.raw.functions.channels.DeactivateAllUsernames",
1861
+ 0xa4298b29: "pyrogram.raw.functions.channels.ToggleForum",
1862
+ 0xf40c0224: "pyrogram.raw.functions.channels.CreateForumTopic",
1863
+ 0xde560d1: "pyrogram.raw.functions.channels.GetForumTopics",
1864
+ 0xb0831eb9: "pyrogram.raw.functions.channels.GetForumTopicsByID",
1865
+ 0xf4dfa185: "pyrogram.raw.functions.channels.EditForumTopic",
1866
+ 0x6c2d9026: "pyrogram.raw.functions.channels.UpdatePinnedForumTopic",
1867
+ 0x34435f2d: "pyrogram.raw.functions.channels.DeleteTopicHistory",
1868
+ 0x2950a18f: "pyrogram.raw.functions.channels.ReorderPinnedForumTopics",
1869
+ 0x68f3e4eb: "pyrogram.raw.functions.channels.ToggleAntiSpam",
1870
+ 0xa850a693: "pyrogram.raw.functions.channels.ReportAntiSpamFalsePositive",
1871
+ 0x6a6e7854: "pyrogram.raw.functions.channels.ToggleParticipantsHidden",
1872
+ 0x18afbc93: "pyrogram.raw.functions.channels.ClickSponsoredMessage",
1873
+ 0xd8aa3671: "pyrogram.raw.functions.channels.UpdateColor",
1874
+ 0x9738bb15: "pyrogram.raw.functions.channels.ToggleViewForumAsMessages",
1875
+ 0x25a71742: "pyrogram.raw.functions.channels.GetChannelRecommendations",
1876
+ 0xf0d3e6a8: "pyrogram.raw.functions.channels.UpdateEmojiStatus",
1877
+ 0xad399cee: "pyrogram.raw.functions.channels.SetBoostsToUnblockRestrictions",
1878
+ 0x3cd930b7: "pyrogram.raw.functions.channels.SetEmojiStickers",
1879
+ 0xaf8ff6b9: "pyrogram.raw.functions.channels.ReportSponsoredMessage",
1880
+ 0x9ae91519: "pyrogram.raw.functions.channels.RestrictSponsoredMessages",
1881
+ 0xd19f987b: "pyrogram.raw.functions.channels.SearchPosts",
1882
+ 0xaa2769ed: "pyrogram.raw.functions.bots.SendCustomRequest",
1883
+ 0xe6213f4d: "pyrogram.raw.functions.bots.AnswerWebhookJSONQuery",
1884
+ 0x517165a: "pyrogram.raw.functions.bots.SetBotCommands",
1885
+ 0x3d8de0f9: "pyrogram.raw.functions.bots.ResetBotCommands",
1886
+ 0xe34c0dd6: "pyrogram.raw.functions.bots.GetBotCommands",
1887
+ 0x4504d54f: "pyrogram.raw.functions.bots.SetBotMenuButton",
1888
+ 0x9c60eb28: "pyrogram.raw.functions.bots.GetBotMenuButton",
1889
+ 0x788464e1: "pyrogram.raw.functions.bots.SetBotBroadcastDefaultAdminRights",
1890
+ 0x925ec9ea: "pyrogram.raw.functions.bots.SetBotGroupDefaultAdminRights",
1891
+ 0x10cf3123: "pyrogram.raw.functions.bots.SetBotInfo",
1892
+ 0xdcd914fd: "pyrogram.raw.functions.bots.GetBotInfo",
1893
+ 0x9709b1c2: "pyrogram.raw.functions.bots.ReorderUsernames",
1894
+ 0x53ca973: "pyrogram.raw.functions.bots.ToggleUsername",
1895
+ 0x1359f4e6: "pyrogram.raw.functions.bots.CanSendMessage",
1896
+ 0xf132e3ef: "pyrogram.raw.functions.bots.AllowSendMessage",
1897
+ 0x87fc5e7: "pyrogram.raw.functions.bots.InvokeWebViewCustomMethod",
1898
+ 0x37148dbb: "pyrogram.raw.functions.payments.GetPaymentForm",
1899
+ 0x2478d1cc: "pyrogram.raw.functions.payments.GetPaymentReceipt",
1900
+ 0xb6c8f12b: "pyrogram.raw.functions.payments.ValidateRequestedInfo",
1901
+ 0x2d03522f: "pyrogram.raw.functions.payments.SendPaymentForm",
1902
+ 0x227d824b: "pyrogram.raw.functions.payments.GetSavedInfo",
1903
+ 0xd83d70c1: "pyrogram.raw.functions.payments.ClearSavedInfo",
1904
+ 0x2e79d779: "pyrogram.raw.functions.payments.GetBankCardData",
1905
+ 0xf91b065: "pyrogram.raw.functions.payments.ExportInvoice",
1906
+ 0x80ed747d: "pyrogram.raw.functions.payments.AssignAppStoreTransaction",
1907
+ 0xdffd50d3: "pyrogram.raw.functions.payments.AssignPlayMarketTransaction",
1908
+ 0x9fc19eb6: "pyrogram.raw.functions.payments.CanPurchasePremium",
1909
+ 0x2757ba54: "pyrogram.raw.functions.payments.GetPremiumGiftCodeOptions",
1910
+ 0x8e51b4c1: "pyrogram.raw.functions.payments.CheckGiftCode",
1911
+ 0xf6e26854: "pyrogram.raw.functions.payments.ApplyGiftCode",
1912
+ 0xf4239425: "pyrogram.raw.functions.payments.GetGiveawayInfo",
1913
+ 0x5ff58f20: "pyrogram.raw.functions.payments.LaunchPrepaidGiveaway",
1914
+ 0xc00ec7d3: "pyrogram.raw.functions.payments.GetStarsTopupOptions",
1915
+ 0x104fcfa7: "pyrogram.raw.functions.payments.GetStarsStatus",
1916
+ 0x97938d5a: "pyrogram.raw.functions.payments.GetStarsTransactions",
1917
+ 0x2bb731d: "pyrogram.raw.functions.payments.SendStarsForm",
1918
+ 0x25ae8f4a: "pyrogram.raw.functions.payments.RefundStarsCharge",
1919
+ 0xd91ffad6: "pyrogram.raw.functions.payments.GetStarsRevenueStats",
1920
+ 0x13bbe8b3: "pyrogram.raw.functions.payments.GetStarsRevenueWithdrawalUrl",
1921
+ 0xd1d7efc5: "pyrogram.raw.functions.payments.GetStarsRevenueAdsAccountUrl",
1922
+ 0x27842d2e: "pyrogram.raw.functions.payments.GetStarsTransactionsByID",
1923
+ 0x9021ab67: "pyrogram.raw.functions.stickers.CreateStickerSet",
1924
+ 0xf7760f51: "pyrogram.raw.functions.stickers.RemoveStickerFromSet",
1925
+ 0xffb6d4ca: "pyrogram.raw.functions.stickers.ChangeStickerPosition",
1926
+ 0x8653febe: "pyrogram.raw.functions.stickers.AddStickerToSet",
1927
+ 0xa76a5392: "pyrogram.raw.functions.stickers.SetStickerSetThumb",
1928
+ 0x284b3639: "pyrogram.raw.functions.stickers.CheckShortName",
1929
+ 0x4dafc503: "pyrogram.raw.functions.stickers.SuggestShortName",
1930
+ 0xf5537ebc: "pyrogram.raw.functions.stickers.ChangeSticker",
1931
+ 0x124b1c00: "pyrogram.raw.functions.stickers.RenameStickerSet",
1932
+ 0x87704394: "pyrogram.raw.functions.stickers.DeleteStickerSet",
1933
+ 0x4696459a: "pyrogram.raw.functions.stickers.ReplaceSticker",
1934
+ 0x55451fa9: "pyrogram.raw.functions.phone.GetCallConfig",
1935
+ 0x42ff96ed: "pyrogram.raw.functions.phone.RequestCall",
1936
+ 0x3bd2b4a0: "pyrogram.raw.functions.phone.AcceptCall",
1937
+ 0x2efe1722: "pyrogram.raw.functions.phone.ConfirmCall",
1938
+ 0x17d54f61: "pyrogram.raw.functions.phone.ReceivedCall",
1939
+ 0xb2cbc1c0: "pyrogram.raw.functions.phone.DiscardCall",
1940
+ 0x59ead627: "pyrogram.raw.functions.phone.SetCallRating",
1941
+ 0x277add7e: "pyrogram.raw.functions.phone.SaveCallDebug",
1942
+ 0xff7a9383: "pyrogram.raw.functions.phone.SendSignalingData",
1943
+ 0x48cdc6d8: "pyrogram.raw.functions.phone.CreateGroupCall",
1944
+ 0xb132ff7b: "pyrogram.raw.functions.phone.JoinGroupCall",
1945
+ 0x500377f9: "pyrogram.raw.functions.phone.LeaveGroupCall",
1946
+ 0x7b393160: "pyrogram.raw.functions.phone.InviteToGroupCall",
1947
+ 0x7a777135: "pyrogram.raw.functions.phone.DiscardGroupCall",
1948
+ 0x74bbb43d: "pyrogram.raw.functions.phone.ToggleGroupCallSettings",
1949
+ 0x41845db: "pyrogram.raw.functions.phone.GetGroupCall",
1950
+ 0xc558d8ab: "pyrogram.raw.functions.phone.GetGroupParticipants",
1951
+ 0xb59cf977: "pyrogram.raw.functions.phone.CheckGroupCall",
1952
+ 0xf128c708: "pyrogram.raw.functions.phone.ToggleGroupCallRecord",
1953
+ 0xa5273abf: "pyrogram.raw.functions.phone.EditGroupCallParticipant",
1954
+ 0x1ca6ac0a: "pyrogram.raw.functions.phone.EditGroupCallTitle",
1955
+ 0xef7c213a: "pyrogram.raw.functions.phone.GetGroupCallJoinAs",
1956
+ 0xe6aa647f: "pyrogram.raw.functions.phone.ExportGroupCallInvite",
1957
+ 0x219c34e6: "pyrogram.raw.functions.phone.ToggleGroupCallStartSubscription",
1958
+ 0x5680e342: "pyrogram.raw.functions.phone.StartScheduledGroupCall",
1959
+ 0x575e1f8c: "pyrogram.raw.functions.phone.SaveDefaultGroupCallJoinAs",
1960
+ 0xcbea6bc4: "pyrogram.raw.functions.phone.JoinGroupCallPresentation",
1961
+ 0x1c50d144: "pyrogram.raw.functions.phone.LeaveGroupCallPresentation",
1962
+ 0x1ab21940: "pyrogram.raw.functions.phone.GetGroupCallStreamChannels",
1963
+ 0xdeb3abbf: "pyrogram.raw.functions.phone.GetGroupCallStreamRtmpUrl",
1964
+ 0x41248786: "pyrogram.raw.functions.phone.SaveCallLog",
1965
+ 0xf2f2330a: "pyrogram.raw.functions.langpack.GetLangPack",
1966
+ 0xefea3803: "pyrogram.raw.functions.langpack.GetStrings",
1967
+ 0xcd984aa5: "pyrogram.raw.functions.langpack.GetDifference",
1968
+ 0x42c6978f: "pyrogram.raw.functions.langpack.GetLanguages",
1969
+ 0x6a596502: "pyrogram.raw.functions.langpack.GetLanguage",
1970
+ 0x6847d0ab: "pyrogram.raw.functions.folders.EditPeerFolders",
1971
+ 0xab42441a: "pyrogram.raw.functions.stats.GetBroadcastStats",
1972
+ 0x621d5fa0: "pyrogram.raw.functions.stats.LoadAsyncGraph",
1973
+ 0xdcdf8607: "pyrogram.raw.functions.stats.GetMegagroupStats",
1974
+ 0x5f150144: "pyrogram.raw.functions.stats.GetMessagePublicForwards",
1975
+ 0xb6e0a3f5: "pyrogram.raw.functions.stats.GetMessageStats",
1976
+ 0x374fef40: "pyrogram.raw.functions.stats.GetStoryStats",
1977
+ 0xa6437ef6: "pyrogram.raw.functions.stats.GetStoryPublicForwards",
1978
+ 0x75dfb671: "pyrogram.raw.functions.stats.GetBroadcastRevenueStats",
1979
+ 0x2a65ef73: "pyrogram.raw.functions.stats.GetBroadcastRevenueWithdrawalUrl",
1980
+ 0x69280f: "pyrogram.raw.functions.stats.GetBroadcastRevenueTransactions",
1981
+ 0x8472478e: "pyrogram.raw.functions.chatlists.ExportChatlistInvite",
1982
+ 0x719c5c5e: "pyrogram.raw.functions.chatlists.DeleteExportedInvite",
1983
+ 0x653db63d: "pyrogram.raw.functions.chatlists.EditExportedInvite",
1984
+ 0xce03da83: "pyrogram.raw.functions.chatlists.GetExportedInvites",
1985
+ 0x41c10fff: "pyrogram.raw.functions.chatlists.CheckChatlistInvite",
1986
+ 0xa6b1e39a: "pyrogram.raw.functions.chatlists.JoinChatlistInvite",
1987
+ 0x89419521: "pyrogram.raw.functions.chatlists.GetChatlistUpdates",
1988
+ 0xe089f8f5: "pyrogram.raw.functions.chatlists.JoinChatlistUpdates",
1989
+ 0x66e486fb: "pyrogram.raw.functions.chatlists.HideChatlistUpdates",
1990
+ 0xfdbcd714: "pyrogram.raw.functions.chatlists.GetLeaveChatlistSuggestions",
1991
+ 0x74fae13a: "pyrogram.raw.functions.chatlists.LeaveChatlist",
1992
+ 0xc7dfdfdd: "pyrogram.raw.functions.stories.CanSendStory",
1993
+ 0xe4e6694b: "pyrogram.raw.functions.stories.SendStory",
1994
+ 0xb583ba46: "pyrogram.raw.functions.stories.EditStory",
1995
+ 0xae59db5f: "pyrogram.raw.functions.stories.DeleteStories",
1996
+ 0x9a75a1ef: "pyrogram.raw.functions.stories.TogglePinned",
1997
+ 0xeeb0d625: "pyrogram.raw.functions.stories.GetAllStories",
1998
+ 0x5821a5dc: "pyrogram.raw.functions.stories.GetPinnedStories",
1999
+ 0xb4352016: "pyrogram.raw.functions.stories.GetStoriesArchive",
2000
+ 0x5774ca74: "pyrogram.raw.functions.stories.GetStoriesByID",
2001
+ 0x7c2557c4: "pyrogram.raw.functions.stories.ToggleAllStoriesHidden",
2002
+ 0xa556dac8: "pyrogram.raw.functions.stories.ReadStories",
2003
+ 0xb2028afb: "pyrogram.raw.functions.stories.IncrementStoryViews",
2004
+ 0x7ed23c57: "pyrogram.raw.functions.stories.GetStoryViewsList",
2005
+ 0x28e16cc8: "pyrogram.raw.functions.stories.GetStoriesViews",
2006
+ 0x7b8def20: "pyrogram.raw.functions.stories.ExportStoryLink",
2007
+ 0x1923fa8c: "pyrogram.raw.functions.stories.Report",
2008
+ 0x57bbd166: "pyrogram.raw.functions.stories.ActivateStealthMode",
2009
+ 0x7fd736b2: "pyrogram.raw.functions.stories.SendReaction",
2010
+ 0x2c4ada50: "pyrogram.raw.functions.stories.GetPeerStories",
2011
+ 0x9b5ae7f9: "pyrogram.raw.functions.stories.GetAllReadPeerStories",
2012
+ 0x535983c3: "pyrogram.raw.functions.stories.GetPeerMaxIDs",
2013
+ 0xa56a8b60: "pyrogram.raw.functions.stories.GetChatsToSend",
2014
+ 0xbd0415c4: "pyrogram.raw.functions.stories.TogglePeerStoriesHidden",
2015
+ 0xb9b2881f: "pyrogram.raw.functions.stories.GetStoryReactionsList",
2016
+ 0xb297e9b: "pyrogram.raw.functions.stories.TogglePinnedToTop",
2017
+ 0x6cea116a: "pyrogram.raw.functions.stories.SearchPosts",
2018
+ 0x60f67660: "pyrogram.raw.functions.premium.GetBoostsList",
2019
+ 0xbe77b4a: "pyrogram.raw.functions.premium.GetMyBoosts",
2020
+ 0x6b7da746: "pyrogram.raw.functions.premium.ApplyBoost",
2021
+ 0x42f1f61: "pyrogram.raw.functions.premium.GetBoostsStatus",
2022
+ 0x39854d1f: "pyrogram.raw.functions.premium.GetUserBoosts",
2023
+ 0xedc39d0: "pyrogram.raw.functions.smsjobs.IsEligibleToJoin",
2024
+ 0xa74ece2d: "pyrogram.raw.functions.smsjobs.Join",
2025
+ 0x9898ad73: "pyrogram.raw.functions.smsjobs.Leave",
2026
+ 0x93fa0bf: "pyrogram.raw.functions.smsjobs.UpdateSettings",
2027
+ 0x10a698e8: "pyrogram.raw.functions.smsjobs.GetStatus",
2028
+ 0x778d902f: "pyrogram.raw.functions.smsjobs.GetSmsJob",
2029
+ 0x4f1ebf24: "pyrogram.raw.functions.smsjobs.FinishJob",
2030
+ 0xbe1e85ba: "pyrogram.raw.functions.fragment.GetCollectibleInfo",
2031
+ 0xbc799737: "pyrogram.raw.core.BoolFalse",
2032
+ 0x997275b5: "pyrogram.raw.core.BoolTrue",
2033
+ 0x1cb5c415: "pyrogram.raw.core.Vector",
2034
+ 0x73f1f8dc: "pyrogram.raw.core.MsgContainer",
2035
+ 0xae500895: "pyrogram.raw.core.FutureSalts",
2036
+ 0x0949d9dc: "pyrogram.raw.core.FutureSalt",
2037
+ 0x3072cfa1: "pyrogram.raw.core.GzipPacked",
2038
+ 0x5bb8e511: "pyrogram.raw.core.Message",
2039
+ }