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
@@ -0,0 +1,3066 @@
1
+ pyrogram/__init__.py,sha256=SFoZojQrnK5JixG_fRnSMydBJm_NqzH4WdNGw8rHmuU,729
2
+ pyrogram/client.py,sha256=xicWv_cd5snCs95K87SOj6kyKdCIxZXa15L-kukosNo,35126
3
+ pyrogram/dispatcher.py,sha256=_OKKp5frpUZaJsGtNtAFZ8IkVx8B4KE7KEdghfpGkSM,10165
4
+ pyrogram/emoji.py,sha256=8RpB3jHghOGsSvi52agRnhWlEiwIxaRlAxTJJgACKhU,207202
5
+ pyrogram/file_id.py,sha256=uQGQNpnQYy3nwFyMWn1Fqolf2w-BeGjTjRRFxcJEZA0,12743
6
+ pyrogram/filters.py,sha256=xKx6nRFjrcNZmawKmiv_V6KQKkod1RoY-1HSQg_IoVo,15943
7
+ pyrogram/mime_types.py,sha256=bxvwwkxkWBonvv8_HJdOGDVlY0NXlG6wzEDKDpvr19M,60961
8
+ pyrogram/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ pyrogram/sync.py,sha256=xE74iIKx5SD9moRwuOPsAD1BSNsmUtHPbrG3w1CFres,2782
10
+ pyrogram/utils.py,sha256=pMDBWGmXxQcbJAaU_KU1Py4rmDgKVXTzqUB-q9a1-Xg,13286
11
+ pyrogram/connection/__init__.py,sha256=wYuX0CqUFGg7Vq9o3L9cHOoz5Tcma_SOT1eAl_WmWyY,67
12
+ pyrogram/connection/connection.py,sha256=aEHSc7WTEFWU33aK7tVQkSI9FXKkYDe2TSIqfNTjoow,1696
13
+ pyrogram/connection/transport/__init__.py,sha256=TiI_042Te9apomg-aaStl-ZjKz7BbwaFqos9Q37ctc8,238
14
+ pyrogram/connection/transport/tcp/__init__.py,sha256=pTqpCoZp2p_g6aC0BJEqHtcox9OG8J0jY7Det-SLz3I,371
15
+ pyrogram/connection/transport/tcp/tcp.py,sha256=OZ3l6MLa5qBSkbtc15BE9kHIV_8PWT8uRILlWWRFXJg,4193
16
+ pyrogram/connection/transport/tcp/tcp_abridged.py,sha256=nivmxd5vCfF9d0WKZV5ezD8Ennl5oNxPr0zP3vKYXPk,997
17
+ pyrogram/connection/transport/tcp/tcp_abridged_o.py,sha256=ctC5gxTYrTOBHlbJCJDClbAyT5AXb59szR1KEIVtDM0,2059
18
+ pyrogram/connection/transport/tcp/tcp_full.py,sha256=PgXaCNqAqp126QmcBbQlLzcPWIqJ-ONBv_r-JJ8ETVk,1150
19
+ pyrogram/connection/transport/tcp/tcp_intermediate.py,sha256=v-BBgGxFu_Z1bzsDcqte-rp0PZonksCbM_qAXsUCcdA,741
20
+ pyrogram/connection/transport/tcp/tcp_intermediate_o.py,sha256=CNpxrAToP9M7auqY37FlrMxX7YTtgpqnQQHGzjSS2KM,1682
21
+ pyrogram/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ pyrogram/crypto/aes.py,sha256=M3xgn2MGoCRHNW0GoaxNnQ7OIsdffQC4l8R6jtVAKcg,746
23
+ pyrogram/crypto/mtproto.py,sha256=YF6VYehGW--U_2FL7tTNHflgFrxTMwt45hFp1iX_Aiw,2574
24
+ pyrogram/crypto/prime.py,sha256=tCeIeGp756AnauLxQZ_KjmzuB_SgOs3ne5uNA7O97i8,1431
25
+ pyrogram/crypto/rsa.py,sha256=sFwwb1ZN07CkjF78VgEzs0uD537tW6hwHPwurOlVVWM,7108
26
+ pyrogram/enums/__init__.py,sha256=ENySXjDp4UPqg2dNCwY2k3xcR8EdMBaiYYMDDpq5c3k,1172
27
+ pyrogram/enums/auto_name.py,sha256=1qT3nEeGyZvybofs6tFgPPAO5BGgvNoacIhoaZ06-ds,183
28
+ pyrogram/enums/chat_action.py,sha256=cECnPSufMXEapsVMspZavb5JMRhCt9h9lXM-dbiRPKo,1144
29
+ pyrogram/enums/chat_event_action.py,sha256=TgAnHhDx78JiqHvM5RYuB0bOxheSj1oeUQeZSAmux40,953
30
+ pyrogram/enums/chat_member_status.py,sha256=3T2QKWLRuQb1QhQy7_CqTBwMscBrzQSpK0yHeioa8qo,217
31
+ pyrogram/enums/chat_members_filter.py,sha256=ubk4j_AKlJz2XFWLHjibmWYRnbD-Wkp2ymiLw_rYjaE,395
32
+ pyrogram/enums/chat_type.py,sha256=XyKdu3QTn8ct16cMqD25tWQ4oqrl0czgiJGOB1lXBIU,183
33
+ pyrogram/enums/client_platform.py,sha256=CRVY7ZlYgcxTFs2X5LNodadTTPBG1U4AgBIqgG_l-cc,232
34
+ pyrogram/enums/listerner_types.py,sha256=-sL6AIoknxC973WwDhMKVuqnOkv_ATH9Pq_6B_pXhIQ,135
35
+ pyrogram/enums/message_entity_type.py,sha256=GvOstMPDmYc-KZB2DsmFPCeVW9VdZZi61C8Oudv0_AI,1070
36
+ pyrogram/enums/message_media_type.py,sha256=vDCBKiGixJeKw9W1yiPBX_nRCDyRXDZaqOyGaHT-U3A,471
37
+ pyrogram/enums/message_service_type.py,sha256=cogySsth521JgkvyI-vWFsgvBYAXQOwIYUPCNIRH-rk,992
38
+ pyrogram/enums/messages_filter.py,sha256=6N_oDXeCqXAdp7MW-Aw6NNRpQKyq2LZl6mm1NF1iX2M,971
39
+ pyrogram/enums/next_code_type.py,sha256=30RAtpoQ98S4LA2mfhgY8w-vDF3dLWxSd7BIA7DDaQk,320
40
+ pyrogram/enums/parse_mode.py,sha256=bI2kvbq2tffW8T9_XECaFV0T35N-8VKKupBZjwUh0q8,165
41
+ pyrogram/enums/profile_color.py,sha256=xuwULzEbolX62uoIYuvh0QaW_v05aSeB_RIdQ2qIJZM,377
42
+ pyrogram/enums/reaction_type.py,sha256=PdiMU2Q_4tTn0rj1SDqH09fAYkJecqaC3fiyD661wUI,131
43
+ pyrogram/enums/reply_color.py,sha256=J7bU7JHuWhRM1Ha_0vYfHHQI5Cie88NpiJViJIOf_Cw,532
44
+ pyrogram/enums/sent_code_type.py,sha256=KKrLnWMyIJ4s7dlP56L9H-CVbQE9o5rwsKqLJqedzOg,435
45
+ pyrogram/enums/user_status.py,sha256=7n0NSRz_TJt6Pai85v7wEcg2CFXWNZL62ucyHAO8Jjk,215
46
+ pyrogram/errors/__init__.py,sha256=k5kLDyOCOohFB-LnQbJwjqKC-cJcpargNQQUQiWs_Nk,1576
47
+ pyrogram/errors/rpc_error.py,sha256=XRDFud8buF4ukSoI6WBfSlwzUfgnUOPBn1azB_2YIh8,2463
48
+ pyrogram/errors/exceptions/__init__.py,sha256=4-js9KU31BpNOhpmwFdZH-4KyeJQnOkCIaX4KmowNPo,262
49
+ pyrogram/errors/exceptions/all.py,sha256=rfEvTjV22EuuTWVAzS3hm9M5aCNHylTqPdfjaYryQwA,32247
50
+ pyrogram/errors/exceptions/bad_request_400.py,sha256=mlTieo0WWRN4w3cAQMk571sJ-hZLd3kuRZJVMqV8n8U,82803
51
+ pyrogram/errors/exceptions/flood_420.py,sha256=IRUYgSmbkTgcEgN3L4Jdd5r213acxSBJwk6b1dD-ys0,1671
52
+ pyrogram/errors/exceptions/forbidden_403.py,sha256=bFD1be_NVAjZZLFtl0DO6TNz6Xm3bPCSDuXaBsf1TIc,8629
53
+ pyrogram/errors/exceptions/internal_server_error_500.py,sha256=SsGH-BDTpbhX9_Ffrb_91Rdhzm9CEyHpOy21vrtjhyI,10364
54
+ pyrogram/errors/exceptions/not_acceptable_406.py,sha256=navbGBPn6E4MCRICd_HUjdluS_Zk9LNpH_ubeto66hs,4657
55
+ pyrogram/errors/exceptions/see_other_303.py,sha256=Jrox1GeigxY6R4lTLRenpc1v3knmjDCeq14jUZ6Mgbo,1147
56
+ pyrogram/errors/exceptions/service_unavailable_503.py,sha256=ObESuj_jxywrQct_yc02mydXeCjI8H7ObmGsR54VJqU,730
57
+ pyrogram/errors/exceptions/unauthorized_401.py,sha256=gBXaAchF9s2roSnP0w0jSTgJZBW7DCg-Rb5RvG-u7JA,1867
58
+ pyrogram/handlers/__init__.py,sha256=XC4VquePSAWdWQE4O8G7PU9ZXw4Ug_OZkh7hywdxsfo,1258
59
+ pyrogram/handlers/callback_query_handler.py,sha256=UJD3LG1fU5y-IAcICPSjnE1FHUtBKVJo0l_suu66jz4,197
60
+ pyrogram/handlers/chat_join_request_handler.py,sha256=Q2ZriSx5YjjRRpOr-27HqPURcCJnCCI3QFkWO7yxSUI,199
61
+ pyrogram/handlers/chat_member_updated_handler.py,sha256=6-PeYvTSxfupNehsfaY87KOKlS6vyvDpjoLmYEyXWgI,201
62
+ pyrogram/handlers/chosen_inline_result_handler.py,sha256=_Kxb8IZQWExiw7sbrJNZnTjag5dWH0mg-nC5MmxPQLU,202
63
+ pyrogram/handlers/conversation_handler.py,sha256=iJfKQENIeC6L1BuGNXKMmeP8UYP7kvTPzBMS45ISBQQ,1579
64
+ pyrogram/handlers/deleted_messages_handler.py,sha256=MgQGsQt0MF9Pe5XUC3LDeH9Sy4s7Z60gfKI3ogHvJoA,535
65
+ pyrogram/handlers/disconnect_handler.py,sha256=nFlxWOTw0t3o3AWcy5HKmjlEbwW123hHO6SMqe3Nxt8,171
66
+ pyrogram/handlers/edited_message_handler.py,sha256=5nK8frr0MDv8SIPa7-fY9knP9z9sBGtYr26qgilUzIk,197
67
+ pyrogram/handlers/handler.py,sha256=YHUFhTctyvtNDARXt_IyEJtcyUlIlYQ8pCvmgVpBJQ4,708
68
+ pyrogram/handlers/inline_query_handler.py,sha256=6VzyJSCE1oUfAj_t1Jfcg2n86VkQ4H9HvUMnGe4AyCI,195
69
+ pyrogram/handlers/message_handler.py,sha256=CdZXeeLw1hT7aOnPh5pXYSwYhu0G0Evsrl7ImUcj094,191
70
+ pyrogram/handlers/message_reaction_count_updated_handler.py,sha256=cFBXV0pmHf5QaZCRnoXHE4_H6MMvfKTQrRC_761gEVo,212
71
+ pyrogram/handlers/message_reaction_updated_handler.py,sha256=xY7gG-dcHmo3FKhhr4n8wC6fu4sg1ZPy-BFJNb-fbOY,207
72
+ pyrogram/handlers/raw_update_handler.py,sha256=myNkA51bbcmdM55XQd_PpFwU3EZaLFRrDj-lEe8HJm4,170
73
+ pyrogram/handlers/user_status_handler.py,sha256=f3DnaGPJFLsuWa2LlByNff4AhGBlpjnzSA2YHMm5wVQ,194
74
+ pyrogram/methods/__init__.py,sha256=rGZJXff8cL_Abyzi_r2d7Rfasp4ZY3FEnLskaBfgW0U,546
75
+ pyrogram/methods/advanced/__init__.py,sha256=oLFXl7fR_n8QfKhEfHD75pCnOA-NXaOCJva5N4E6V3s,169
76
+ pyrogram/methods/advanced/invoke.py,sha256=uZxCQ8MjWD5oxGYBGb0w7-QRb3_v1Rg1OTQnAt1-aEI,1053
77
+ pyrogram/methods/advanced/resolve_peer.py,sha256=hqFKoGfAVejyiemIgiFGOfjoQGwpe2rsH1HJFpcojko,2915
78
+ pyrogram/methods/advanced/save_file.py,sha256=BrhyYw04YSynYKoXXc_hXYLE2IoIijNOSmDeIYwqSYc,5585
79
+ pyrogram/methods/auth/__init__.py,sha256=Wi18d_EvBX4B2VH86sXQXMD0f7Py19kzRNzTRRcojks,836
80
+ pyrogram/methods/auth/accept_terms_of_service.py,sha256=dL49bW_gs-_TrtRKhEWyol0iRYBlsQhE12NRTIgvLJU,425
81
+ pyrogram/methods/auth/check_password.py,sha256=qfCL89dha0iF8Z1P-z-9rs3HQQBdhnvIbflPXDt4n10,709
82
+ pyrogram/methods/auth/connect.py,sha256=KjWZZx9VdY-7cb_WhUztD1vBg9gTVDBwokUntZiQb-c,555
83
+ pyrogram/methods/auth/disconnect.py,sha256=zmPBfPs9ZxCZmGRvbWXkuX1pAogB7tqIjzRozeZNFpU,417
84
+ pyrogram/methods/auth/get_password_hint.py,sha256=CgQzO9gd3RCaVEITn3wXlApLQZK12kJorR110ycuI0E,274
85
+ pyrogram/methods/auth/initialize.py,sha256=fdub1gnvEDl5OiDi7qvAHl0hyfpU094UvauZwUGA9pA,565
86
+ pyrogram/methods/auth/log_out.py,sha256=OtJq__19gvSxYp2utZE2IOSFmDSOx21PRjWyTXNQsEk,309
87
+ pyrogram/methods/auth/recover_password.py,sha256=ZRsj-Rjk1TXDCcrDmEEPU9ZE0kwQNHbQeJYQRbGUewM,533
88
+ pyrogram/methods/auth/resend_code.py,sha256=P1WgH45p2ZYuU8d-H9kzu6jb_VsaVRocRTauImGQzeo,561
89
+ pyrogram/methods/auth/send_code.py,sha256=_ePCHuXNbi07ebgF_Ze-wNuDVILPVN0VvjQRfCGv1zk,1455
90
+ pyrogram/methods/auth/send_recovery_code.py,sha256=8ECXbjEjsRXioWqjdfY9qkylmxi6CQDf7AheZW-sM-E,316
91
+ pyrogram/methods/auth/sign_in.py,sha256=MW4GpI9UztT4zkjhDxATUzpwP4wrpjo-yxjULWdQxV4,1011
92
+ pyrogram/methods/auth/sign_in_bot.py,sha256=qY37Ew-DIn8I3eRhknY7Tk29tlS12vmZmGy1Ji6cj_U,1463
93
+ pyrogram/methods/auth/sign_up.py,sha256=LLJp3cRzLBrrX8ZDcdurXmJz5jQyWrqVP2uxuJa4vM4,770
94
+ pyrogram/methods/auth/terminate.py,sha256=-BaX2yxFJoe0rOmEoMMqGtqCn4ycHG6K0c3U6ZDXjDg,882
95
+ pyrogram/methods/bots/__init__.py,sha256=YFXtDNZVK7DU-8FMkJH-bOxzC_VLbyUqLBACBgy8j9I,1149
96
+ pyrogram/methods/bots/answer_callback_query.py,sha256=0C5Msgcrvl-P0iiqstrSn87t25lKnpJXIu18r4fKUK0,606
97
+ pyrogram/methods/bots/answer_inline_query.py,sha256=83P_3hteYTXKtBuDxZKCsoqigqKTEB6wD2tn6866QuI,1082
98
+ pyrogram/methods/bots/answer_web_app_query.py,sha256=wqJlBC6Tu-Do81dpgsFEQGuCEEI7rhaeorJKZM63UGs,534
99
+ pyrogram/methods/bots/delete_bot_commands.py,sha256=XuRE2FZbEU03PZWr8M_W9t59k0tlHNV3r1NPbU4KZDs,459
100
+ pyrogram/methods/bots/get_bot_commands.py,sha256=NnkBxXP9jQX3XBD8CbUZOY7Euh1zsEqeLfatsLZhBg4,557
101
+ pyrogram/methods/bots/get_bot_default_privileges.py,sha256=4rbBBFCKwZYqR4REM2J981VAiFIttdpWLWkRZUxhwRg,669
102
+ pyrogram/methods/bots/get_bot_info.py,sha256=sBttw_M8VWhTVpotJpimV-r8hJ_4njvrWcR6VLmQSLQ,465
103
+ pyrogram/methods/bots/get_chat_menu_button.py,sha256=MbXdKbsjM7570O2ZlZ3dqOGNqc9maXmVt9ZIr7gHbgk,1112
104
+ pyrogram/methods/bots/get_inline_bot_results.py,sha256=GgOEy0X2qUlYfvrMfRiwRz3vZ4jZqBCjaam1QseSdOk,1136
105
+ pyrogram/methods/bots/request_callback_answer.py,sha256=gIhjEvPFDHPpJrQ-M0EIvMKMC-SBqcmVmUBvq-EqI0w,966
106
+ pyrogram/methods/bots/send_inline_bot_result.py,sha256=JJouJ7dNwLmK-rBam6XMKRMKm3vwHtfe-imqE1NdiLM,1270
107
+ pyrogram/methods/bots/set_bot_commands.py,sha256=wDqATHm9KwPK-v3SZuOqzR1Th-I6Gt7P-RnAfar5Iyo,596
108
+ pyrogram/methods/bots/set_bot_default_privileges.py,sha256=wDE40D_Vqw5K3kbcMYKWlzTuzvjru9anFWO-velkm_g,1238
109
+ pyrogram/methods/bots/set_bot_info.py,sha256=Io7CVOBtwFYL1K6PDgBwP_EBb_D_mwu_Gkhee-tINKU,557
110
+ pyrogram/methods/bots/set_chat_menu_button.py,sha256=PV__SGu8urVWv6TGg3kuR9Zw20rr7xzS9rWkDK_uPQk,661
111
+ pyrogram/methods/chats/__init__.py,sha256=Hq-G6tWlmY0Pu536bilcDEWnMdJQ7s2M7gsKDhKIxTw,3535
112
+ pyrogram/methods/chats/add_chat_members.py,sha256=nSMoSFbf_4ByTK220XbChyYxzv3ubaXXEtDKKJNLdCw,1161
113
+ pyrogram/methods/chats/archive_chats.py,sha256=V0ESakfcTygENbklr76ZCvg915N7s5GLA5z6pCvLt7E,727
114
+ pyrogram/methods/chats/ban_chat_member.py,sha256=AUwk9M2mk9Cd5r4MSuxdZONiInqCx94VIP4c7DxvDf4,1958
115
+ pyrogram/methods/chats/close_forum_topic.py,sha256=l8MJUD9vIMP6ho7UJxZZ93Me2Uksy-Drghd9wgFZaAk,471
116
+ pyrogram/methods/chats/close_general_topic.py,sha256=6_paNuK-9FWZwSLeN3TMEGke7SA0EgFlOxKCLtZt9Xs,445
117
+ pyrogram/methods/chats/create_channel.py,sha256=T84G9rC3-nymHgOorPH6VpA6ehPsohpE-yL1lghoQqo,484
118
+ pyrogram/methods/chats/create_forum_topic.py,sha256=oUU5iZA24HxyDC02X1GYQZNbjPLwEMBPUZmjUM0Yskg,730
119
+ pyrogram/methods/chats/create_group.py,sha256=j2y3QY3-Fqt46qnp0zruw8RsVudSRgXVFC0QgDCOX1k,609
120
+ pyrogram/methods/chats/create_supergroup.py,sha256=4HJatRotvEMWfA70n8i8vsvYZ93-d-PVrfkffniJF2Y,490
121
+ pyrogram/methods/chats/delete_channel.py,sha256=gzsW3On9fvsIdh4U4JEkHBVo3Jnpkdp-lVuEufxjW74,380
122
+ pyrogram/methods/chats/delete_chat_photo.py,sha256=PjB8VRiN0Cn4QCwbfHI8PymuKP63dfds_iUi412JBSQ,900
123
+ pyrogram/methods/chats/delete_forum_topic.py,sha256=PdXWchc08LrA5i0IqjOjVA0oDF1CYO0LanYNjKYPKJw,564
124
+ pyrogram/methods/chats/delete_supergroup.py,sha256=RDNjsj3zGwza8RFqIJRwtpxr4zwuqQdD_gmFP78dCmA,386
125
+ pyrogram/methods/chats/delete_user_history.py,sha256=2tuLS94UInfY12T8gfQu5h37KsFW5LHI3ZflAGPaXgo,514
126
+ pyrogram/methods/chats/edit_forum_topic.py,sha256=YBsk2AbTySgiBsrZOviURDJHWJ8xTqCW8C-I2HmyyYA,576
127
+ pyrogram/methods/chats/edit_general_topic.py,sha256=DZxnoKJuTuPWYOWVvM__yaIOG0EumgAVp56kKvZa0Q0,463
128
+ pyrogram/methods/chats/get_chat.py,sha256=-1Ua0Pb0KmJryvrgUwwfQ15NM4554Kjn_N0evHQ0TuQ,1388
129
+ pyrogram/methods/chats/get_chat_event_log.py,sha256=huOrpLnjIoTeRmKtqUDxXTHIMZe0IGMTfxFwvbvSv74,1555
130
+ pyrogram/methods/chats/get_chat_member.py,sha256=vzDrO1Dfm2YX0JJ2xxzF5Aqy0Vwh9hp7kCvz8cu190Y,1703
131
+ pyrogram/methods/chats/get_chat_members.py,sha256=vRIF6l6cV2ZmpsnDbUR25CLXhUQFhCGEwlL4luOIcEE,2509
132
+ pyrogram/methods/chats/get_chat_members_count.py,sha256=oiU53V3SVlPg_i6rQRNuQWn60vbY-6nlWE7yVc-DRho,875
133
+ pyrogram/methods/chats/get_chat_online_count.py,sha256=sz_QBHa47N5icshpxziyndaaTpotwgVxncdzwcIkvao,381
134
+ pyrogram/methods/chats/get_dialogs.py,sha256=tzYaW8RkwfVTzETNySMDlEKTsAeOXwhOpGRr0njjKG4,2033
135
+ pyrogram/methods/chats/get_dialogs_count.py,sha256=7uusxoa-v9W6Xf8tqrNfgqN8w0QRx7XEohrTeMvsTOU,772
136
+ pyrogram/methods/chats/get_forum_topics.py,sha256=kLtnRClRYaxcNg4q-c5u6geAUZMLeYtQJv7OmqZ-qw4,688
137
+ pyrogram/methods/chats/get_forum_topics_by_id.py,sha256=MZYW1VmCnGHLf2aEYAN5mxCdla-WyONnBnXi2nFPD80,1219
138
+ pyrogram/methods/chats/get_nearby_chats.py,sha256=sOz-IEATrafb5XyzCK_SMb1cxBqsal77uqT0xoWC7F0,1041
139
+ pyrogram/methods/chats/get_send_as_chats.py,sha256=86bcnURhnth4xH9yvbsiFkmTOTXSBRNa82V08MdGzOg,845
140
+ pyrogram/methods/chats/hide_general_topic.py,sha256=IFKLrIhHBQSbyqZ0JF0-o8DA4IP_G0BbCgC8XI8FPNg,443
141
+ pyrogram/methods/chats/join_chat.py,sha256=0RIsaBhtkl82mZipu7xXRlWu4w3hWh4dMsirEDDrMnI,1005
142
+ pyrogram/methods/chats/leave_chat.py,sha256=n4Wth-W0tk_BkpwlB4wQhNZy1JVcn0Ex7UDHmfGsi_U,1026
143
+ pyrogram/methods/chats/mark_chat_unread.py,sha256=z6qvbDk8Nuut_So1h8ygXBq3UMXB9hyJe6u460nYxwg,399
144
+ pyrogram/methods/chats/pin_chat_message.py,sha256=9HKlnRk2hjlHEUY24_KodjyOim-_fwNB71LQEYrumYI,948
145
+ pyrogram/methods/chats/promote_chat_member.py,sha256=ggWIu72DZu5fqreouJlhC5aykk0n4TOh1F3Zd3PXMKY,2164
146
+ pyrogram/methods/chats/reopen_forum_topic.py,sha256=ocK1Tl3_5a00inOk-W9hdQ_cbYophKl2KiBh1Grc_kk,474
147
+ pyrogram/methods/chats/reopen_general_topic.py,sha256=aViH2f21OK2VLFp53ddOyMA0XhO6oQsU1ajHZ6jg-DU,448
148
+ pyrogram/methods/chats/restrict_chat_member.py,sha256=OzARqeEsDbctA3ZTapjshxGG-0d9VLjZPkykvEe6Nt4,6751
149
+ pyrogram/methods/chats/set_administrator_title.py,sha256=nQU7wzGaRMJk5tBbFt2gOMywGHi8kMrRdASvRdZbqaQ,1167
150
+ pyrogram/methods/chats/set_chat_description.py,sha256=2pPgBdLYPGqeQbr4CwWAfRda4IyE6tgp79aA1EhZzb8,667
151
+ pyrogram/methods/chats/set_chat_permissions.py,sha256=c9wZIFxzd6HZqd2xB4Ae-2UHMmL7BJdNi-Dm9HKtQiM,6541
152
+ pyrogram/methods/chats/set_chat_photo.py,sha256=p0B2miiJdXTJBsJaTCCBbeBb_TzZTGSxKV5wsbG9AMo,1768
153
+ pyrogram/methods/chats/set_chat_protected_content.py,sha256=dENHfBpyl_uVVateYCtEadk7noY3a__pXcgefR0r2hE,458
154
+ pyrogram/methods/chats/set_chat_title.py,sha256=d33y3vMlDDRxFQOLG1iRXL8N_MUk-3HO9U5Yrio5m_Y,862
155
+ pyrogram/methods/chats/set_chat_username.py,sha256=wKs1CiZQz8miJEUlrwGi5cvfhVfVDt7GJJYM-hc-FYM,711
156
+ pyrogram/methods/chats/set_send_as_chat.py,sha256=xbnnSUV6-C26mCa2kFQI5tFCT6QssGngsY7YnyOS9Jk,477
157
+ pyrogram/methods/chats/set_slow_mode.py,sha256=lo6hgPxKvZRT4pZMQWz1519P3rsNKZjconHbuG6C7yw,458
158
+ pyrogram/methods/chats/unarchive_chats.py,sha256=9qSDjS_9Rfl67_lBQWa6ZvNTqrZkr-0dngEDzhc3p1A,731
159
+ pyrogram/methods/chats/unban_chat_member.py,sha256=BTUbAx4R5k-jg6ur4ssoOv6v15Pm3AACfxzXTuX5g44,588
160
+ pyrogram/methods/chats/unhide_general_topic.py,sha256=-oVkYTmbpZq0gd3aQoUGaZs259HTNva6Pt57vxwBd8M,448
161
+ pyrogram/methods/chats/unpin_all_chat_messages.py,sha256=eW8TY2Dz6ZGuemIoW-kBeMd_qZl-NgVXJU-TePa21Gw,397
162
+ pyrogram/methods/chats/unpin_chat_message.py,sha256=xThk5CG4WOkIkzhwlJzeDXHK724M2ypi7c-AOkmP12Q,478
163
+ pyrogram/methods/chats/update_color.py,sha256=PjstSfqeaX_9lEW93CMWwFEdoftBwUg5AWU1o9-IvSs,1008
164
+ pyrogram/methods/contacts/__init__.py,sha256=nK8kODuRMNr96u8d4Iv84zXIsZe9bQTVNLIh4GKaiM8,335
165
+ pyrogram/methods/contacts/add_contact.py,sha256=AFe8yhmuyd52DDigUWjJAwXr0YdDe-227jLIE7nWpNY,724
166
+ pyrogram/methods/contacts/delete_contacts.py,sha256=gyh10hQ1BFZDKRCrEsBpBAI1_3pOu7ezo9GlVFo0MQ0,731
167
+ pyrogram/methods/contacts/get_contacts.py,sha256=-fveUN_Xc3wpFLOLdIfD3Xj1yXZ7GExLIVZagnOHk6I,418
168
+ pyrogram/methods/contacts/get_contacts_count.py,sha256=pnlNAsgr7zAslVZVgVEx1v0TyDbOma1ZRUJGf6r4jZY,240
169
+ pyrogram/methods/contacts/import_contacts.py,sha256=QKExjxKlK9e4O0g3LeR4W1FIYdG-CwyG4vhSc5sD7Sw,428
170
+ pyrogram/methods/decorators/__init__.py,sha256=FSPBF2aUNf3JiGJwC_ln-xjN9kUu-Ib8YoHwqswvEDY,972
171
+ pyrogram/methods/decorators/on_callback_query.py,sha256=l_Ms9VaH23NjNPYbCEDHOGdN59THaXD3NpkWvacDDpw,850
172
+ pyrogram/methods/decorators/on_chat_join_request.py,sha256=q8ZslgC0C31XefrN9vcrDlsA4dAYds7MBk_PCNnmls0,859
173
+ pyrogram/methods/decorators/on_chat_member_updated.py,sha256=gu_Tjc4ZlaFpq7SMe1p8OHP5gnV_ys3u73OYXzxDkpM,867
174
+ pyrogram/methods/decorators/on_chosen_inline_result.py,sha256=39ytAf1HijTMf8-qd9K_WMNGWUaUTtDR68vnkW3EQqs,871
175
+ pyrogram/methods/decorators/on_deleted_messages.py,sha256=IG2Pg0_o-v4fR_y126m3Tc6nV0Yxnhh-zCvsMmzZtGA,858
176
+ pyrogram/methods/decorators/on_disconnect.py,sha256=46_lALD-XVpeIsTS5IijVRzFGOJ4VKz2B238Ywaft0w,534
177
+ pyrogram/methods/decorators/on_edited_message.py,sha256=reRyKhKMlu9nmX2wknaWM2oHIulnr26PJlbJpQVvOhE,850
178
+ pyrogram/methods/decorators/on_inline_query.py,sha256=lj86I7VIS22NfF3hw14mWW2Q1wOTOkYb5-GW8gvPI0I,842
179
+ pyrogram/methods/decorators/on_message.py,sha256=x5_7oIzOroFxli5PGGnn-VXbN01G7TyeOugHXJQ-hy8,825
180
+ pyrogram/methods/decorators/on_message_reaction_count_updated.py,sha256=LxKO4nqiuE32kqFlf691FE8KQeGyXlIIXGePMtSnSxI,908
181
+ pyrogram/methods/decorators/on_message_reaction_updated.py,sha256=GqeBxjv-w5AWH4F43qafAJrvbJq1ePYXheMSl0KxU9w,888
182
+ pyrogram/methods/decorators/on_raw_update.py,sha256=5MDKZeeoAB2P4yxw350Ai3YNHBifGhiZGAB6UnbJLQQ,688
183
+ pyrogram/methods/decorators/on_user_status.py,sha256=pv26nS9fuNHjKQEJ7YBlR95w3NWsP0UVVL6_LhPwawA,838
184
+ pyrogram/methods/invite_links/__init__.py,sha256=PkZWa7ChGTy8pXJ04EXVatciXQQhH6NbCH6EtLUBtX4,1615
185
+ pyrogram/methods/invite_links/approve_all_chat_join_requests.py,sha256=On3FtSB2eBrQdh0pSqprykTzJTPIacmAx-4cZ8zbmwo,514
186
+ pyrogram/methods/invite_links/approve_chat_join_request.py,sha256=9kpcnZ4jhmXjiP2IZxB0QnrWbQwxPdW-YjuOpEsRJDE,515
187
+ pyrogram/methods/invite_links/create_chat_invite_link.py,sha256=mcRHyWu21k9-KxeTiqkEkbIApGJpsgAiC8jQ1jzPiF4,848
188
+ pyrogram/methods/invite_links/decline_all_chat_join_requests.py,sha256=1P0Yv2SkEAYOIgPlx-3p1ZAxmGeZhzaDYIy0MnX3eqE,515
189
+ pyrogram/methods/invite_links/decline_chat_join_request.py,sha256=f9zykPmczY-fVhgeY0aeI41phafiouCs2p12VviO7BM,516
190
+ pyrogram/methods/invite_links/delete_chat_admin_invite_links.py,sha256=8PLipmJaGPeTqp1XYnKCusTYdf7PAKQGE9_8BiGsPB0,508
191
+ pyrogram/methods/invite_links/delete_chat_invite_link.py,sha256=u3bLaxu8k2fK9ETNqHD9qa4LNIIGxKZowz-YJO035QA,452
192
+ pyrogram/methods/invite_links/edit_chat_invite_link.py,sha256=0_kwC_ksnYU2KjHoUSlHtsPmnpZHw1WGIU_jZtN4Xzs,968
193
+ pyrogram/methods/invite_links/export_chat_invite_link.py,sha256=E9-MPMLJ99y8zF68s0ojNXselNdWMPXYSxrluddD1VY,494
194
+ pyrogram/methods/invite_links/get_chat_admin_invite_links.py,sha256=Ouwj0lqUyH3BSIBkzd0Ef7_xrnH_rKnzmcpuIKdD_Jw,1388
195
+ pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py,sha256=_TyZtZWiTltNW4IDSf4GroRfsUulKcXkgfUfBWhaDdY,611
196
+ pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py,sha256=6HHD7zwqGdMISc_m_tdatj_ne_2iXnhIEFCFihS36GY,587
197
+ pyrogram/methods/invite_links/get_chat_invite_link.py,sha256=_5ksa7Moh4VKpbOu38U8hEpfYOEul_Su6bVQKIeWS_I,595
198
+ pyrogram/methods/invite_links/get_chat_invite_link_joiners.py,sha256=THRoW0amqQIJVLrG7bLj4yn01biamU8qN983D6LihN8,1333
199
+ pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py,sha256=SvX4qQ1aoiO6yTJGFP51Q7kfSNT16y8LtFvLfVyKv4g,600
200
+ pyrogram/methods/invite_links/get_chat_join_requests.py,sha256=4DE3kYylU-WxVQrDd9A9eDPVAfDLdDh9MwgJW2A11Mc,1348
201
+ pyrogram/methods/invite_links/revoke_chat_invite_link.py,sha256=PkOwhpvfl_e6TPC31BZSSJtyML1fACNQgj7sTW34mrQ,797
202
+ pyrogram/methods/messages/__init__.py,sha256=lPOWbhC1qjeWo5_GsJ_JQsbtqzL-2UEl3uXC8_pljqQ,2892
203
+ pyrogram/methods/messages/copy_media_group.py,sha256=x_ijftlxZx0Anzl7wBtfVv-QFTHHUV20q6DZGRbcEEc,3057
204
+ pyrogram/methods/messages/copy_message.py,sha256=ebzWeWmifhYizn2XWBZYDME1mbsub3CPw4GGvDTFoC0,1623
205
+ pyrogram/methods/messages/delete_messages.py,sha256=5wvMMJcVpP26nIly94ufk6i5kckqa1h10uB4zPdptuQ,915
206
+ pyrogram/methods/messages/download_media.py,sha256=L_P_0ZSZGfpsdXHb-NWchvkDUIpDahK7xVEXE7JY_wQ,3130
207
+ pyrogram/methods/messages/edit_inline_caption.py,sha256=vgjEDsupf3RlBbP4GUDMD5yysN97Byhb7-myaFgcnaE,559
208
+ pyrogram/methods/messages/edit_inline_media.py,sha256=TrqSh6_h4ec_117NK6W6qB3wYoeOAvkjPyctMuy1GN8,7998
209
+ pyrogram/methods/messages/edit_inline_reply_markup.py,sha256=LI5x5NcvxscvYZpE0JRXySVjr8UwZKSuNH51Uit7-Kg,779
210
+ pyrogram/methods/messages/edit_inline_text.py,sha256=2QgCbQOCfgQK8lWdXRK4moBJmYChw6lh5jcLPkCwvxo,1043
211
+ pyrogram/methods/messages/edit_message_caption.py,sha256=N2zeMT-NiXTKIfPriCeUi720hr3pX0CwRn1_8VgfyBc,804
212
+ pyrogram/methods/messages/edit_message_media.py,sha256=bHpMypvOo2NaMnsaHHtKDtHpL_X_BQGEXx-0KeKrxII,10329
213
+ pyrogram/methods/messages/edit_message_reply_markup.py,sha256=L1-fdS0KaTfeLr4ZzIMj7fFLlIbHmpyJSKPUuG06xok,947
214
+ pyrogram/methods/messages/edit_message_text.py,sha256=dYhrpM0Do4Evh8GNu22JgBFdWOsIHO6g_VC4iFY3qVY,1380
215
+ pyrogram/methods/messages/forward_messages.py,sha256=vFNrHcb56twhVkRiQv1ttdguEoxvbYPaVGBTawLh4ig,1959
216
+ pyrogram/methods/messages/get_available_effects.py,sha256=vUBT8_F9ojoUK7fi0c6taV7o5NApcn8qcDaeK-yauSE,685
217
+ pyrogram/methods/messages/get_chat_history.py,sha256=tYd7mfaYHM_QmUUf7LaanLl0i9e_WeNaa_jdTLLfYY8,1918
218
+ pyrogram/methods/messages/get_chat_history_count.py,sha256=r4xSgjJVAm2sj-_T99VDBe0EOhocNFN-PM091WrsZww,743
219
+ pyrogram/methods/messages/get_custom_emoji_stickers.py,sha256=EttCUh6O8sCdyxPdYeh1gIvNw6vFZd-GGxkXbEWf81I,909
220
+ pyrogram/methods/messages/get_discussion_message.py,sha256=wQOwwKn4cnnALxgaBNzlj9F2yfWZPJHk4V1bJe-szHQ,646
221
+ pyrogram/methods/messages/get_discussion_replies.py,sha256=zsxlL9iwAf7HuXaGYK1wZuPhMBzG6Dhoox0yj6rncMQ,1302
222
+ pyrogram/methods/messages/get_discussion_replies_count.py,sha256=7yqAk70oHEvhR3-W8iVvY-8qhtV_uIvgIUTpLjW-pJc,658
223
+ pyrogram/methods/messages/get_media_group.py,sha256=ccelcSCEHEU7ntBkKyXm98yjiISa7tK3lX1N5DguKdg,928
224
+ pyrogram/methods/messages/get_messages.py,sha256=IT6Lv8XH8PaTolP1ltKSB_2MFNsiQeKdtNebvY8bN5k,1527
225
+ pyrogram/methods/messages/inline_session.py,sha256=z7b8C6EvXbM2_ZoPDnDK7EP6d4IYvr2_HX56hPUbRKc,1356
226
+ pyrogram/methods/messages/read_chat_history.py,sha256=V0EE3BjbRcubUSf-rclDKGwXfqAT6KgS_Dtco52Y5dQ,651
227
+ pyrogram/methods/messages/search_global.py,sha256=ZFbzkpU8YF6jV8SA5prSpPXe5GsH66rKavYHPU6JgvU,1644
228
+ pyrogram/methods/messages/search_global_count.py,sha256=4UiWZfEs5szh4GQdVvDldYcQCuBh0i_dNSrE4BMhuPY,724
229
+ pyrogram/methods/messages/search_messages.py,sha256=IoGK6zTIUzhKPxN_qnYWPLNpxRgZ_1wewwpZV307JNc,2006
230
+ pyrogram/methods/messages/search_messages_count.py,sha256=93NTURi0HCcTloNqlwerr0UZVrQkOPp4hSUxPGGiRCI,1061
231
+ pyrogram/methods/messages/send_animation.py,sha256=BZE_UB6TsoEB6NuQyBSfrdshVWfjUPe2NZLuEXRWzt0,6821
232
+ pyrogram/methods/messages/send_audio.py,sha256=kmnEsDFvCdCwacaqhmyvFAsfrTi8QarWWUFtkWGgJuI,5568
233
+ pyrogram/methods/messages/send_cached_media.py,sha256=NbbvSnOEWfIaT45ahQDSOMEQN_Wy5j9JW2BsXv8irs0,2933
234
+ pyrogram/methods/messages/send_chat_action.py,sha256=JCKMB2RKGDhTH2PTYWh_MhIWcXZJ1ZF9KlHm0Z3_jak,2324
235
+ pyrogram/methods/messages/send_contact.py,sha256=Oe03ol20KzcEiLKPLJdH9Kv_UWFhWD2V6GO7s0hGk5s,2639
236
+ pyrogram/methods/messages/send_document.py,sha256=_AgKzlYlpRRt2HMe9O3xR5Dx9vhFcQCpiQMxXI4b6uU,5175
237
+ pyrogram/methods/messages/send_media_group.py,sha256=oqlVxVsauHa0E13QVenAIhNphGp-K7NsdWLbQw8amTU,18774
238
+ pyrogram/methods/messages/send_message.py,sha256=1nHCrHI2RcAXRunvsNAygc9YvrUHlqRirBy_zf4Nq9I,3683
239
+ pyrogram/methods/messages/send_photo.py,sha256=vOVaJjluHnyHF8y3-ZKm3ZTLz8pTes5VFfhxNO5UMZg,4892
240
+ pyrogram/methods/messages/send_reaction.py,sha256=_BHjIvBkmjDlqnlSKk9Hc7mu5_JySUhzhM49nCZi_bA,1986
241
+ pyrogram/methods/messages/send_sticker.py,sha256=7JN9XBImggBQRkw8DSNEx4UiZD4rC2oUaHwPAXyZ87s,4685
242
+ pyrogram/methods/messages/send_video.py,sha256=vApVnFP3ZlTuiwgOGQHDfkPgCSzBzMUhOS1IK6SL25c,6222
243
+ pyrogram/methods/messages/send_video_note.py,sha256=BpEcF1dpVLlYMsZJCbVvZcBLS4Iy5qYTcpiA_zBLQao,5172
244
+ pyrogram/methods/messages/send_voice.py,sha256=00LA_kFdqVUbW4y5B7em23IhFw17f6WL3EOwAQECpaM,4931
245
+ pyrogram/methods/messages/send_web_page.py,sha256=gwXqkSS5cIF4PWv2dKZfnN8NHcKbM93nrWXH8Tr-Yv0,3757
246
+ pyrogram/methods/messages/stream_media.py,sha256=siI0mcP2V2sor63dopm81p-LmXNPJ-GQiS1U_YsuEkc,1452
247
+ pyrogram/methods/password/__init__.py,sha256=85Acn9pHH79n-tcJMOWGsN7JsjeoCIQ2ZzfXO1_L2XM,269
248
+ pyrogram/methods/password/change_cloud_password.py,sha256=5aOZlpMXDcNvE63BZiPJ7xfm4agi7toe5FV2Hh7QbjY,1106
249
+ pyrogram/methods/password/enable_cloud_password.py,sha256=b569A9V_Sdx0AFE_VPc73m-IlGBPtyZsifxQ-WLVcZ0,1088
250
+ pyrogram/methods/password/remove_cloud_password.py,sha256=mS_iOREpP2k-E3o3hjScSkWVpdsKvROWlrQ2e3gUi8I,812
251
+ pyrogram/methods/stickers/__init__.py,sha256=iqdk_E_RutUHUNGCnBSKhQhRzH-LdWBrpSdDl3MR3RY,230
252
+ pyrogram/methods/stickers/add_sticker_to_set.py,sha256=f4jFs-FrCkuam_3U_Mq-Ety6jvf0ccriSwoY6KN3_eQ,1232
253
+ pyrogram/methods/stickers/create_sticker_set.py,sha256=rgIKQz9GDckupsyL744rlhfBZMA2Y-mrbCxWGplU6YQ,1472
254
+ pyrogram/methods/stickers/get_sticker_set.py,sha256=I7tV7sockd90O-WRS6YF17Kp0lUKhZnEKxWC06ZtdCs,477
255
+ pyrogram/methods/users/__init__.py,sha256=N_8KAHjqZjfFUBe1NQB82jLYa5IAtxV8hpBFduvPoiA,982
256
+ pyrogram/methods/users/block_user.py,sha256=M8JyXK7NS2XPnNjYSS8UOIUzIwz3mvdy9wEa0tKQtnM,389
257
+ pyrogram/methods/users/delete_profile_photos.py,sha256=MtlKekoQvQ08CRNwIP3x_fYX32Slpj8eh2mZVqE59Ug,616
258
+ pyrogram/methods/users/get_chat_photos.py,sha256=sE3WDLWp8MqDegNeIamNtO_V9jtc0qEakeVCERQrjEA,3537
259
+ pyrogram/methods/users/get_chat_photos_count.py,sha256=Hn-0ozaV30XDRCLiabIRYJafWqoLSvoJjkqWpj6x27Y,987
260
+ pyrogram/methods/users/get_common_chats.py,sha256=jyHwoMhugCJonLQFc40jgWZ9_LLdvPJiTHN3JOOAtak,734
261
+ pyrogram/methods/users/get_default_emoji_statuses.py,sha256=lN8kGiHbfdtiOibbf1DjQzoCH8feF9zeS46pnsLhp5w,428
262
+ pyrogram/methods/users/get_me.py,sha256=ENBiCE8P4UzJLvKV2x8qra9S5vKo4qNUck6ocUuvJeY,412
263
+ pyrogram/methods/users/get_users.py,sha256=AokNVzNDADvj4S0vgksfNQ1MGjiXwdhYv3S7ZRVcaIY,800
264
+ pyrogram/methods/users/set_emoji_status.py,sha256=mQpQfLN7UbBbTkPvalJSfMC5K94Egyv9yHGfO0LTtxc,545
265
+ pyrogram/methods/users/set_profile_photo.py,sha256=wbTCOl_XmX_g5tcjNvhgPQKbOe9q57_iYWhlIqeQqdA,540
266
+ pyrogram/methods/users/set_username.py,sha256=5ewYHpNbEI79vvBrRyi6fvbFd52a-7GYh8Ldunhaffs,391
267
+ pyrogram/methods/users/unblock_user.py,sha256=ln777GP5QhlgQT0dSHNjmEqNLXlv34LmS9XYTAiSnlM,395
268
+ pyrogram/methods/users/update_birthday.py,sha256=FqQrbqFzZZA5wp7ojcD61y7IqlxS8fIfZVrOUu1fa9A,470
269
+ pyrogram/methods/users/update_personal_chat.py,sha256=N-fzX7ovcu02NGW3tweJGP375ZsN-Aad8ZejUx3pODU,407
270
+ pyrogram/methods/users/update_profile.py,sha256=d63Lp6A00pjHghfA2Fhn79Z4AFQl7l8BZ-bXDNmfIyU,490
271
+ pyrogram/methods/utilities/__init__.py,sha256=kw7bqzjPXJ9xZGT90qz2Xq-9OhUUqDliwxquCboxdrI,477
272
+ pyrogram/methods/utilities/add_handler.py,sha256=x4-fHvgAVXPunE7m2RBipzKx30cUIzRBKEuAPIruHeE,449
273
+ pyrogram/methods/utilities/compose.py,sha256=GgzPS2lZFcdmW0ZqkoczutZ2x5Zo02xJnIf7HSbEWu0,473
274
+ pyrogram/methods/utilities/export_session_string.py,sha256=MBdw_J22N7A7MO0jubiHR66dapB05OWM-_ta_ywGi7g,179
275
+ pyrogram/methods/utilities/idle.py,sha256=15Xd1H06BURPH_5V7aLNjyIvqvdC_CMPNDwTG4Zw8dE,678
276
+ pyrogram/methods/utilities/remove_handler.py,sha256=4dcNhfryd0hi9k0VGBjQFrRDjwiygRDc5WW3lUumY5w,415
277
+ pyrogram/methods/utilities/restart.py,sha256=g9ZZx_-wzRvO79JHnawqKGaY5BkcNFCro5UH7lTMBk8,334
278
+ pyrogram/methods/utilities/run.py,sha256=b_-4rj3hk-GsDdkGVUTxB8-2LS3nUpiGe8EAs0fUR1o,593
279
+ pyrogram/methods/utilities/run_sync.py,sha256=3kqHgfyLg_gCA4V9zf-0ODzj_NN7_QXoAweLuo9H4M8,272
280
+ pyrogram/methods/utilities/start.py,sha256=jyUXHgJHW7Yuw9yEl4Smjfe4mORce88U41EMtVGB0Io,823
281
+ pyrogram/methods/utilities/stop.py,sha256=FYN6OXYtaroEwamUDbX_xYsssd29K3jZ_s3xKQTAhdw,338
282
+ pyrogram/methods/utilities/stop_transmission.py,sha256=h53SKhDNvARPy_Ri1agFVZqeuo6kCaDFLhQV38cj6QE,129
283
+ pyrogram/parser/__init__.py,sha256=q-FBaNO0uOAxM0gQVP209Il-5iDNnsZOV0MIE_2nbm0,48
284
+ pyrogram/parser/html.py,sha256=HsEEqOC449RvOcVRmXAsapf1uTIFXvd_zI1UoTMaqck,7265
285
+ pyrogram/parser/markdown.py,sha256=ai90aowJMInYPTO8MuZ78Vy1Kl3JqW8NPJ78NPCCAPM,7355
286
+ pyrogram/parser/parser.py,sha256=P83g9N3zr_YME2lPGbWnBhRs2NZXaECm758ux_4oqf8,1258
287
+ pyrogram/parser/utils.py,sha256=-SFTaSihOwYQGQkW7cfyMu-prKwnUrhvaSTcVYsKTfI,486
288
+ pyrogram/raw/__init__.py,sha256=Zp1GcEi6ur_B2DyLfCrqiG89aztG7UhZrVM5R_gEGlM,221
289
+ pyrogram/raw/all.py,sha256=Suw8itm-QYc_g9QfK9xx6XU59pIXGcjg3sQ9fG_cbEI,126978
290
+ pyrogram/raw/base/__init__.py,sha256=SXP1Ql4VOT1Vg-E8hh1llXgrxRxUJFsEP4vQFcRGkM4,16110
291
+ pyrogram/raw/base/access_point_rule.py,sha256=rLD4olGYdKp8Gt8YnshT-9suEagqfpb_XRHVep6HpwQ,1076
292
+ pyrogram/raw/base/account_days_ttl.py,sha256=Ge_RkycvcVd6n6jAThvxlYJAufMpvr-Jv3WeQlvMqTk,1221
293
+ pyrogram/raw/base/attach_menu_bot.py,sha256=PdWtj08A8kgQ72ktzXWBUucFlbWHJT2jHdRzB25Uj7E,1010
294
+ pyrogram/raw/base/attach_menu_bot_icon.py,sha256=8I1wGUlk5gSTlNtE4P2TzQLBFgd-uKIZhi92yhb2ehU,1030
295
+ pyrogram/raw/base/attach_menu_bot_icon_color.py,sha256=XvQrwkzCewe-0UI774tkHu3QF2EGZ1alUvWavd-YXAw,1055
296
+ pyrogram/raw/base/attach_menu_bots.py,sha256=i6-QlICUMuRG2EPLrk33Klbi82f63P5QbljzpxFruIk,1302
297
+ pyrogram/raw/base/attach_menu_bots_bot.py,sha256=IAUZfszrMIX3obxnTBVkEKaympUyDKKcG0aZSchwiLo,1240
298
+ pyrogram/raw/base/attach_menu_peer_type.py,sha256=tCUB-iNlNq2zRtJLGXF0JH2e0cBYDRN8Qn6IOuOp7cw,1338
299
+ pyrogram/raw/base/authorization.py,sha256=XCMZ7qez-sEYh-Va2ouhhv7SfItxgfkeoCTHhHAcUbI,1216
300
+ pyrogram/raw/base/auto_download_settings.py,sha256=x5SJ2j7zzoCSJ6ptJ6vFOkbSkZ50umDpaf6uUDu4_4E,1045
301
+ pyrogram/raw/base/auto_save_exception.py,sha256=J87nzOE2SLUF0e1rB-iR3z8xQHKbqo8SD-hsgi5pmg4,1030
302
+ pyrogram/raw/base/auto_save_settings.py,sha256=jW-GXqgNmEYS1TPzJHXtURRfH8TCjJ9mFjSRqZ_RKTU,1025
303
+ pyrogram/raw/base/available_effect.py,sha256=j9h5Uv4RSLTjVS2UbaY-JamLgyCwKKCcwSdfCcuNlk4,1020
304
+ pyrogram/raw/base/available_reaction.py,sha256=4eLqdXQUKJwlusXVehZqJymZrSiJ-VKXQV5jPVgQl68,1030
305
+ pyrogram/raw/base/bad_msg_notification.py,sha256=ZNKsETmJtoDx9vcHsUok55S1JO1i8-0WRPCZjMwD7og,1087
306
+ pyrogram/raw/base/bank_card_open_url.py,sha256=ROdJSYHzB8kpKY0q1vjqWfePyFw9xGKb_lCa7agbfO4,1020
307
+ pyrogram/raw/base/base_theme.py,sha256=PgHe-b3IVNtXhKxbfI5gLfrSZP-b6-OymN2Xo8J3w40,1217
308
+ pyrogram/raw/base/bind_auth_key_inner.py,sha256=ihJQIDQgG7_5ELHyJ9QSK9w9JspXXlTGte8acbQzU44,1025
309
+ pyrogram/raw/base/birthday.py,sha256=Pnt0Ocl7pnOsqdbHDLfhYTz_OYWguydzCtmevgwCUNI,985
310
+ pyrogram/raw/base/boost.py,sha256=GFe7MRo_I3dU0i1JF1-aFR45d23urTUAfQZvJbcOyWw,970
311
+ pyrogram/raw/base/bot_app.py,sha256=OpKJwnf5GvN2KBHIY7IFDUFDEfj2q7eqxjyWsTXiJHw,1035
312
+ pyrogram/raw/base/bot_business_connection.py,sha256=ctL9-f-TQ82ePI41OzqBoIjYw7lBmZpEKcYBpkhtoyk,1050
313
+ pyrogram/raw/base/bot_command.py,sha256=wGqznVLognGOi8_gMk0MJWdthRo09eRyWX9R6nteFfA,1199
314
+ pyrogram/raw/base/bot_command_scope.py,sha256=RJaKNqssDTVv9TgRURO13mBh7UF6Yn111sdtgFQ7m7U,1449
315
+ pyrogram/raw/base/bot_info.py,sha256=0gbmS-xxy8yZ6Umi2qcd5UJlAcmh53eN7hoankFo3tI,980
316
+ pyrogram/raw/base/bot_inline_message.py,sha256=BIhypeIjwYtsK94KqXyRBopJ7m_gmULUnZE1FtFQqmQ,1502
317
+ pyrogram/raw/base/bot_inline_result.py,sha256=9LHrHojOeuRMvWL27YBadSqEZX39XNDh7WVPJdn7KjM,1086
318
+ pyrogram/raw/base/bot_menu_button.py,sha256=hQGkNJCVQdkjwVN3r4kIVBqzXWgYwTO2qO-DfG8Kneg,1349
319
+ pyrogram/raw/base/broadcast_revenue_balances.py,sha256=C21gcB30Xoh8ArUaEPBvroHkyLbZIc8pZ0oQ6TsEM_U,1065
320
+ pyrogram/raw/base/broadcast_revenue_transaction.py,sha256=6HGoflUhUH0LM6QifRr9wYZP7TwuXwCkxTQkrQhJclU,1287
321
+ pyrogram/raw/base/business_away_message.py,sha256=DbhAfyXK0B5kij0D3QXLms9S9EJ4HoNfaw2RN1Gy8eg,1040
322
+ pyrogram/raw/base/business_away_message_schedule.py,sha256=KleVwEs7mQ9EUPyCBROn0FrGhL-zWiMfTgAl7Cb-_Vc,1295
323
+ pyrogram/raw/base/business_bot_recipients.py,sha256=uTPHxYQlyxgK8lpr8_vMjiqq9CQYFsgE8CVvlFflj7A,1050
324
+ pyrogram/raw/base/business_chat_link.py,sha256=CAmxyGrJCtaTOqQYoh6w8NGMx7wUqQwbKX0GQbBUmGc,1282
325
+ pyrogram/raw/base/business_greeting_message.py,sha256=2zCLrzQw6aUrNpvM3IqxBPwxQxfPhqdAxAQn9qngHtc,1060
326
+ pyrogram/raw/base/business_intro.py,sha256=ugmw4SyNkvqdxpixm8NqxFNDVknAEARyhPVCJvqSQrA,1010
327
+ pyrogram/raw/base/business_location.py,sha256=lABeC3Ueaq2Lble-415KuGZDVbfqyQismlFlgCtiq1g,1025
328
+ pyrogram/raw/base/business_recipients.py,sha256=6GlDcpaNRMQkRr5QM9cfOIN9YaWo386QjjY-xz0uYAg,1035
329
+ pyrogram/raw/base/business_weekly_open.py,sha256=ubZMCroi4l_fInOeTF6o7AYt8qS64uGIlW4bT6A_7y0,1035
330
+ pyrogram/raw/base/business_work_hours.py,sha256=EnS4CvjIZGHbIqMyla6ZtizgZYd8kUdO785AL4vGIIo,1030
331
+ pyrogram/raw/base/cdn_config.py,sha256=cXum4Hzr296ceU5BeOz8xsJHJcd7CV_sKVq7i5BBvf0,1192
332
+ pyrogram/raw/base/cdn_public_key.py,sha256=WYPJOvNac9G8bd5k8PJzJRlaMjqxRXMsuxqnsXVmlR4,1005
333
+ pyrogram/raw/base/channel_admin_log_event.py,sha256=e8yR9z71PLZpDyGbRhWSyVKOGJG2NkbfGSFaLmFeN4U,1045
334
+ pyrogram/raw/base/channel_admin_log_event_action.py,sha256=qiCzJNsHpwTpqSdRGUs-6kMzBkJkEH_n-SLTcTfk05w,6202
335
+ pyrogram/raw/base/channel_admin_log_events_filter.py,sha256=CgAyZlynlNn1tCs3PmpQhcY7buK-5FUeslutHqYQc_0,1080
336
+ pyrogram/raw/base/channel_location.py,sha256=OQNDOTHwLwcdtUu52bswBV-Iier86nM5TVfKZCjtRUk,1086
337
+ pyrogram/raw/base/channel_messages_filter.py,sha256=gsWhGB2ChOAqWahDPALkW0tQqGVyqlY31cCbW7U4ZVM,1128
338
+ pyrogram/raw/base/channel_participant.py,sha256=3aej6Vrw7N6-7g_MdRqMPTAFQMrK3LcQNrCp3FDkeAw,1393
339
+ pyrogram/raw/base/channel_participants_filter.py,sha256=GyMbrShImuLLbZYemtgXU_ipfnNxn6xH74HNcncsRoo,1600
340
+ pyrogram/raw/base/chat.py,sha256=PQGD2dJfAOHz9720KvgDoghVTBF9iSUpB6TH5NW6pzM,1156
341
+ pyrogram/raw/base/chat_admin_rights.py,sha256=FtQmtLSdFhBK_Fv5uhY9LsKDt9GRsCoDNkv9JTeCNFg,1020
342
+ pyrogram/raw/base/chat_admin_with_invites.py,sha256=k2oJQy4dTUU9ep_KFhIIrCtVh-ISsp315Ibl_h_l7UE,1045
343
+ pyrogram/raw/base/chat_banned_rights.py,sha256=l5fNBMldrYYtAbNWPdn53RjR3MK3yELZiLpeXdg5LUQ,1025
344
+ pyrogram/raw/base/chat_full.py,sha256=5neTGF075-PkjbiTaTpznbLv_kyZjDGqd7loKOuhV-0,1033
345
+ pyrogram/raw/base/chat_invite.py,sha256=kSSsDScphqBnC5sFzNhfjZVH12ar-3x0KPDnh-mkYgI,1317
346
+ pyrogram/raw/base/chat_invite_importer.py,sha256=wJ8-dJT4II-rTWWIgt1VqSfNGDAc11y3LSv_zG_H-ko,1035
347
+ pyrogram/raw/base/chat_onlines.py,sha256=se4lap_D2wECi0C1VZzaeJRLiIQsxULpUKlL-NgacGk,1204
348
+ pyrogram/raw/base/chat_participant.py,sha256=wHdMtxsr71d4V8MmdJN-E9abT-NE7ZAS69zvLDLdv5c,1155
349
+ pyrogram/raw/base/chat_participants.py,sha256=9Ca_YUlXqARQ4ebk4GTlKVqRqD42GBT5NPLNZ1C6zOY,1101
350
+ pyrogram/raw/base/chat_photo.py,sha256=_7R0dqXHEKukjLQHSEBuuXKi2GJlQNnVij18UqiUOJw,1044
351
+ pyrogram/raw/base/chat_reactions.py,sha256=uaUOTsXUSY4-rqkC-ahwfA33-laY_CfPC09rl0OvtLs,1135
352
+ pyrogram/raw/base/client_dh_inner_data.py,sha256=euWsokTwCmGWXiVPtqCTQmkOMCZTk4mKcKGy5Ksomi8,1030
353
+ pyrogram/raw/base/code_settings.py,sha256=XuknLo47QdchMeawPLBQwLlZwbhlHKBlWk2a1kla5-k,1005
354
+ pyrogram/raw/base/config.py,sha256=5QZfDOcSki8olOKuwBGrL5z9GKyGZVWs4WcHR-m_gE8,1174
355
+ pyrogram/raw/base/connected_bot.py,sha256=ydd3ZqCCMn9s-wwPSmFWek4smMV30gXIclKOfSOPDK0,1005
356
+ pyrogram/raw/base/contact.py,sha256=J7FqwjdpvfjCqxyqXh2z5pULbzmIASu6U1Jls0tDhcQ,980
357
+ pyrogram/raw/base/contact_birthday.py,sha256=1wwIR-jdFc5ZHeJyCs993F-GoRHv_lHX7IXtr4KZa9M,1020
358
+ pyrogram/raw/base/contact_status.py,sha256=QIx1xhCuOFgwT2EncJoPdCJn0v3ZtHhtFPAr7JCnOqc,1215
359
+ pyrogram/raw/base/data_json.py,sha256=7C3uiHTD4ZyTL3l7kDgUk3BCblXmZPM9JygeCsdAbW0,1268
360
+ pyrogram/raw/base/dc_option.py,sha256=E42zWyPe-CyY4M-KOLAP4TPsBUODj7dWzC0I85zKN-8,985
361
+ pyrogram/raw/base/default_history_ttl.py,sha256=KQ5VCjHE1wuGfbteWXQ9XcaYoH229A7zRC-Ipv_Pj8M,1244
362
+ pyrogram/raw/base/destroy_auth_key_res.py,sha256=t-Rt0PBSE7kxjSFKLYKIeJJ2Zy2x8KjyTITFN4PrzEw,1350
363
+ pyrogram/raw/base/destroy_session_res.py,sha256=8FL3tkibPQNRk4zBg7o0CxCPuy540OY0Z8-LJZS-Y5k,1289
364
+ pyrogram/raw/base/dialog.py,sha256=XMlozU6oRALTmuHdlqSk5XAR82i1j8yrmNYo2iNTXcE,1025
365
+ pyrogram/raw/base/dialog_filter.py,sha256=5tJ7yQN3s46bRWus9mXn61Zq7qPCW7Lvz0PMw9zw_mQ,1134
366
+ pyrogram/raw/base/dialog_filter_suggested.py,sha256=2_dTtQUPza3uymh0GuHLNV1FUs9oCQ5u-6Vr8Inrc28,1269
367
+ pyrogram/raw/base/dialog_peer.py,sha256=J-nPZee9C9zRh0Tg5YDhhIJXrG906QNVZLdWNCabn70,1267
368
+ pyrogram/raw/base/document.py,sha256=DdRtvXQ24_6wexm1684VL8r95NqmkDwepHww5sWNPz0,1361
369
+ pyrogram/raw/base/document_attribute.py,sha256=PkbeiKvZZEHE2kPIyFznp_DG_kVqjuKlovlQDXldAlM,1572
370
+ pyrogram/raw/base/draft_message.py,sha256=8CTv_ERoVa6fePmg7BtUDgo_iBp2GujvZJhPLu_ArAY,1065
371
+ pyrogram/raw/base/email_verification.py,sha256=yJvL_I94yMlCBxIu9VgNghf4E-B2P7rZKbEezOe5Dl0,1179
372
+ pyrogram/raw/base/email_verify_purpose.py,sha256=wzVQEEDUnsEYWegn3dB5wUJRH4cOMP40wNDOdMiW9VY,1216
373
+ pyrogram/raw/base/emoji_group.py,sha256=tJ3rvW5oGSekgeudnGYwOwYM5PQcne-IER0bBUhGHlA,1116
374
+ pyrogram/raw/base/emoji_keyword.py,sha256=ptjGQJIQvL-DJOOxOODUIbHmW7xLE-HeCKMvHZdwNeM,1069
375
+ pyrogram/raw/base/emoji_keywords_difference.py,sha256=gefZPraeWix4gHe_f0QBPCW9_jHSVAxJQoGDhpFx1mM,1319
376
+ pyrogram/raw/base/emoji_language.py,sha256=zr21q3j3AUkOfMMus1i5bHFxz1KbNVzEy-6RJJOtEt8,1229
377
+ pyrogram/raw/base/emoji_list.py,sha256=em8pIMdUFkg-BsvQ__uPM9_Z2h-_MPM0v3T3kHuSl_8,1464
378
+ pyrogram/raw/base/emoji_status.py,sha256=smS3cAqgrfkqzASLjPg-CoIzmRLHyhX8STVT2mgs8AM,1115
379
+ pyrogram/raw/base/emoji_url.py,sha256=-IDYi4tD0HUYYUuU0MNN_HP9Nc5_dCAh8CyX3cBx-2M,1190
380
+ pyrogram/raw/base/encrypted_chat.py,sha256=a29x6DQMUnT2zcMmmiz-2t37suu7dMzyp0jnlOhUkEQ,1525
381
+ pyrogram/raw/base/encrypted_file.py,sha256=ns8gSzApVQxXFMFXZM5sHa0suorcGPD9PWXhw-3ioZk,1285
382
+ pyrogram/raw/base/encrypted_message.py,sha256=imiWtSlZNuizhdQYVxv2pTzHeh9rKCG7h0kvQxQQI2o,1097
383
+ pyrogram/raw/base/exported_chat_invite.py,sha256=yP730QvzXqtWvaoVkNUpMpfqOU_1vzcQVSybfB-41wk,1327
384
+ pyrogram/raw/base/exported_chatlist_invite.py,sha256=V6u0HpT1WkGhKTTJOD7Z470yLA2mMQTcQiK-vqKRMNQ,1268
385
+ pyrogram/raw/base/exported_contact_token.py,sha256=ki4DinVSzuDOzOBSi6FoxI3AdacqMx-QCpuinu4dGKs,1257
386
+ pyrogram/raw/base/exported_message_link.py,sha256=0zU2TvpeN2sWOwqiHP9xth5iQCJv877ufoyTV8NpqU0,1251
387
+ pyrogram/raw/base/exported_story_link.py,sha256=2-PvYOVj9mIH78AX6yf7w1OqjakMEvvbjDTC23z7JFI,1238
388
+ pyrogram/raw/base/fact_check.py,sha256=jf32t5S5GfoP0JtvQssueMnBpuFWqQ-ebFJQWRclbco,1196
389
+ pyrogram/raw/base/file_hash.py,sha256=cR_jYMQ6tp89AaG-bny3A9dyoa4SqQHMD4YlNaKZVlo,1262
390
+ pyrogram/raw/base/folder.py,sha256=6I9duK_TJ-ab5U2afCxBH5X6JNNQl34Zt6Jks3PHt7E,975
391
+ pyrogram/raw/base/folder_peer.py,sha256=ShIDEEuC-YULZQOhAnqyAE8mJb95qFP4TM7nNoCzy1g,995
392
+ pyrogram/raw/base/forum_topic.py,sha256=vE5QipnpY1qTpBvs6HxUPTXUQaE_jwKb9kD7hUv3Kjk,1055
393
+ pyrogram/raw/base/found_story.py,sha256=0MHsLqIX_MYMml6qIX3hJik5kgluprmzYacMqCBZHPg,995
394
+ pyrogram/raw/base/game.py,sha256=ZkiaIBzX2YVSYCTrbjsoeLF5B09CLhEWTw2YuOn-nmw,965
395
+ pyrogram/raw/base/geo_point.py,sha256=PYDFsOOmTWyt8fB1UrcFGVwLmbybSGDbXfrOs_J9o1g,1037
396
+ pyrogram/raw/base/geo_point_address.py,sha256=j0LzhcnOf9ycN2d1DMIlEzozeVkyXdCzQMhlgCg8LhI,1020
397
+ pyrogram/raw/base/global_privacy_settings.py,sha256=_-JBfZ6XyLNuQihCFa9GIRGoyNaYKNdAD55auA2DUuw,1313
398
+ pyrogram/raw/base/group_call.py,sha256=qB7mRg3VNhAe3oeI_6FP_Wr3Ux9DmMcNMptJJ-xHf7o,1052
399
+ pyrogram/raw/base/group_call_participant.py,sha256=XUHGMjXeNAV8Xl0DCOU0Z-1_SBFjDwDW-DngAnFQiPU,1045
400
+ pyrogram/raw/base/group_call_participant_video.py,sha256=c7LgjOQYinGo4BTeIbPbn0YOkMZ0e6zZm2enHfxL5hQ,1070
401
+ pyrogram/raw/base/group_call_participant_video_source_group.py,sha256=4zWfBNoM--C3Gom3Ke7czTqXCXTVwhClB4_RO4sgC14,1125
402
+ pyrogram/raw/base/group_call_stream_channel.py,sha256=pGVBqBnDQqWCHbZSCTdhpyTJT7VZ7Oz1eaa3d_xJlxg,1055
403
+ pyrogram/raw/base/high_score.py,sha256=wdQP7Q7IEH9FNN431zf2122uRvpaL7DcYFBSh9Gx8eM,990
404
+ pyrogram/raw/base/http_wait.py,sha256=GSKq3i4Kg-Al9ef9wLDv6T9n-Fn8_jy3B91aYzTJ3jo,985
405
+ pyrogram/raw/base/imported_contact.py,sha256=R0UrxF2lohR7q4cKpam7fAN8kSjDkZD1DfHKDcZBsyY,1020
406
+ pyrogram/raw/base/inline_bot_switch_pm.py,sha256=j-k1FXmD9EvU9FUk5wKOsppsIm1GPLIqKKfVM_qNw-M,1030
407
+ pyrogram/raw/base/inline_bot_web_view.py,sha256=lBq4fnftaIWjn8AzIStvRLEeMgwkORuGeC8dtYj4N5w,1025
408
+ pyrogram/raw/base/inline_query_peer_type.py,sha256=hXHOptt9pZEhe7fsNp2fSiuDqsZsbuTpQbwuBEQKmLs,1432
409
+ pyrogram/raw/base/input_app_event.py,sha256=dbGPT64jwNikLcX96wjYXJoPPHH-IUlxVUqgdulKZjw,1010
410
+ pyrogram/raw/base/input_bot_app.py,sha256=8DJY63V5KoV2Jm_iI7AMPIwg7mC2GVGIH1eyr76gQsY,1070
411
+ pyrogram/raw/base/input_bot_inline_message.py,sha256=BiqJN6DFlWV3x4X5FvoRtbAmi2USx4MDxWfeyv15OeE,1662
412
+ pyrogram/raw/base/input_bot_inline_message_id.py,sha256=dT_Q6474XBd-VhgytfuLLUqL6SF1wJHoRdHEBEvHAuE,1136
413
+ pyrogram/raw/base/input_bot_inline_result.py,sha256=hBrz5b0P0_NgaSnqaQsJ4Su2-rCAMtc-AD7TbwlQIMI,1275
414
+ pyrogram/raw/base/input_business_away_message.py,sha256=4ekZ5H2ovZxbyGts0vmw69dXBahHiLw3DWcqaTXuSqw,1065
415
+ pyrogram/raw/base/input_business_bot_recipients.py,sha256=yb8Vp0bS3vL8oi4Ec1iwEj3-FDa_QtnCAKgekbo9RrQ,1075
416
+ pyrogram/raw/base/input_business_chat_link.py,sha256=c87seR_xUi9JaPrJA7O5U9Uae8oxutGpV83Q7_V8yMQ,1050
417
+ pyrogram/raw/base/input_business_greeting_message.py,sha256=SPZpnxnhHIbeXrfmK_6ld1L8oiD2OYqYFCqNNWmlD5M,1085
418
+ pyrogram/raw/base/input_business_intro.py,sha256=TE9xiqxEyrzgrSKFVGdhHYfAinjP2Kle2ojPXrQ5qsc,1035
419
+ pyrogram/raw/base/input_business_recipients.py,sha256=c9vTH2PV1WbeIu2FVDh97SVb-c7io7LHsRGtWUD_AOE,1060
420
+ pyrogram/raw/base/input_channel.py,sha256=fxHs0zCIhVZGFh0koJGPSDTDrji6Vx4CeQd4l_--GZ8,1136
421
+ pyrogram/raw/base/input_chat_photo.py,sha256=dNitgvcubsn8mVSgcLUMiYUMgNOfeSmf5d5uSWH2Zto,1148
422
+ pyrogram/raw/base/input_chatlist.py,sha256=XIx4Jss3oop864Gt9GfMQHWWqlkdd2wmb06w-QlNTiA,1034
423
+ pyrogram/raw/base/input_check_password_srp.py,sha256=K62hXFKnspBxdMc3Lq4L-_Wpas7pVfYZGybskCfBVCk,1122
424
+ pyrogram/raw/base/input_client_proxy.py,sha256=uDNvUup-11lijeK9_os08c0ddMwje_BEjNXnHi6V4J4,1025
425
+ pyrogram/raw/base/input_collectible.py,sha256=oZr5-ZTPhOG_CCynkqM_EyI4MJV1W93HyldpKNBKrEo,1109
426
+ pyrogram/raw/base/input_contact.py,sha256=8WbV8m4sXkTuwGQhuHjlTHKNM-ywSmuMEKJw3d6NvCQ,1015
427
+ pyrogram/raw/base/input_dialog_peer.py,sha256=8Ap__qCw_w6UDG9Tw9kPMQZ_zrF5iuyl9leJ4F6Bllk,1088
428
+ pyrogram/raw/base/input_document.py,sha256=EFs8kCgDD6e7E52vmksNCYxx02aH5wosQiibH1MNli0,1072
429
+ pyrogram/raw/base/input_encrypted_chat.py,sha256=AJ0l8dBJtbAFv68-nU9XAdj76SAO-dD2a_vxvLZzw5I,1035
430
+ pyrogram/raw/base/input_encrypted_file.py,sha256=lGxhCcE1ZmkCm18jEpjqzkus5--scC7sffEoBaJvJFA,1267
431
+ pyrogram/raw/base/input_file.py,sha256=hIieoL3Ayr_lNQzwFYEX3Qahoun5f8L7lDlSNyxbzxo,1040
432
+ pyrogram/raw/base/input_file_location.py,sha256=Hl2SvrdL4x4oWuBs1VG5KKsCRwB-W2Dm9pyMjYzLzwM,1851
433
+ pyrogram/raw/base/input_folder_peer.py,sha256=yy_izMQikjYO2yT-hbkJrezF38pzLAgF931ytvAw9uI,1020
434
+ pyrogram/raw/base/input_game.py,sha256=WVzhKz6Ix-wM52ZaYDJl236by6FTEiPlqPQxP78Cv8o,1056
435
+ pyrogram/raw/base/input_geo_point.py,sha256=oyINouf8rGK8EbYC--eCgH6QyGfbJ9XYbNVwWPI4L1M,1072
436
+ pyrogram/raw/base/input_group_call.py,sha256=NrZCTRf1mFXwAbd14S4Yl9pUdYUrW6Zh2DY_JW0Gr4c,1015
437
+ pyrogram/raw/base/input_invoice.py,sha256=tAS2VbYydI4Q4gskxcP2CC3OI3Zlkn9JzgSocTiqeG0,1215
438
+ pyrogram/raw/base/input_media.py,sha256=xlMX82EWR6KC1s70AP61DsQbZJ0eVntoOWhg0ay3XRU,2048
439
+ pyrogram/raw/base/input_message.py,sha256=ujiDAeXMOEG0VT_WF6SvM5iIqUwGGInG2sCtw6cW-m4,1209
440
+ pyrogram/raw/base/input_notify_peer.py,sha256=436jBkglBi7ywh9yNehInPakbtnO19akNG7y4yhlfn8,1269
441
+ pyrogram/raw/base/input_payment_credentials.py,sha256=TcaJz_GeYJuKF6beFdpIHPh2JqJ6Et3X1DcDzgOLldg,1318
442
+ pyrogram/raw/base/input_peer.py,sha256=kpm6ZR3YmjQJ2JDezPP8rto5CuTEgJ_bR1fuWLWU_SU,1363
443
+ pyrogram/raw/base/input_peer_notify_settings.py,sha256=gzUna8vmEnhlkimwt3hyIol1iGu-rePsdWkAJgL6lC0,1060
444
+ pyrogram/raw/base/input_phone_call.py,sha256=9lGg_D5_qjESd99BV8bLbD1gRlo8rtJ3KQymt3lgHIk,1015
445
+ pyrogram/raw/base/input_photo.py,sha256=UHKmoZEVnRHCdJ_LbYdzZTFvxZs0Vn9NZoG314rNL7Q,1051
446
+ pyrogram/raw/base/input_privacy_key.py,sha256=ZefjqRtaRs_Ag_ZxVVLI9fO6zqnq4iitIC2sN6rTo4w,1794
447
+ pyrogram/raw/base/input_privacy_rule.py,sha256=DFlQAgvSQSPE33cglYda0WCe7KJMGzMHktkKBqrS1Us,1850
448
+ pyrogram/raw/base/input_quick_reply_shortcut.py,sha256=wkgUTN8lcAEceGLbFSb7_zglEhZH19P1UmBz_6ebMjE,1136
449
+ pyrogram/raw/base/input_reply_to.py,sha256=ikN8WaDwGvQL4Yj_UV4o9UdsfJg1AKr84N2rrbKlJ-s,1079
450
+ pyrogram/raw/base/input_secure_file.py,sha256=3XZYxo8TzinEqdETO22KbA5wscYkwupTpFTPIBRpq1Y,1092
451
+ pyrogram/raw/base/input_secure_value.py,sha256=Siz8Zc6938YVNmm0yYL1TqLqeShBmzeaGtPPdumox2o,1025
452
+ pyrogram/raw/base/input_single_media.py,sha256=ABhy4QbEnNEq3d4J6Ajr8keZM20GDuq8VW0c3Mc-AvE,1025
453
+ pyrogram/raw/base/input_stars_transaction.py,sha256=7eRKXbzougfywj8fQr2HinPpDosBwoz3f_r-vjGXSJM,1050
454
+ pyrogram/raw/base/input_sticker_set.py,sha256=Un0Oi8jW-N2eM0KkZFfwEBos_5T0Nz6_H-1soLRXyFk,1890
455
+ pyrogram/raw/base/input_sticker_set_item.py,sha256=_zADl4nuW8xS86DXWqCygNV3_0vnjev9G7G3bFBlESo,1040
456
+ pyrogram/raw/base/input_stickered_media.py,sha256=FvWY5bMtiteFYp4W2tXAInaaErkPaUNecc0siioo7S8,1130
457
+ pyrogram/raw/base/input_store_payment_purpose.py,sha256=TS0rn07S7D9z5tUK5ezhF4l6gp5_ZlBq2aISmoyKOjI,1418
458
+ pyrogram/raw/base/input_theme.py,sha256=SvpTKSRu3BxaE33um6s79alqjIHp0roFTgagZe9fnvM,1049
459
+ pyrogram/raw/base/input_theme_settings.py,sha256=F9RZpAH_ikH0HOpWRNG1D9q7Lca3z9xQTgrCnBKBo_Y,1035
460
+ pyrogram/raw/base/input_user.py,sha256=fXytHaVpawkSbu_vElA6l2adr3Wrt7QeiEbGnG6eNn4,1160
461
+ pyrogram/raw/base/input_wall_paper.py,sha256=BoC9T7POt1NU1kyH1i31PvufpvVNc6jF-V0_Yfbd9No,1142
462
+ pyrogram/raw/base/input_web_document.py,sha256=Jac4-EZOngz8_HpTW9SuRLV2tOv-xec8-AGio4bl5iY,1025
463
+ pyrogram/raw/base/input_web_file_location.py,sha256=k7UTeU0jiwgISs__CDUXKF0ys-KiOg3cXIqmtPy49BQ,1222
464
+ pyrogram/raw/base/invoice.py,sha256=5zAZFwQEAwmtg9MNO9Khv78qQrmnjjL_V9CqfPkUSPY,980
465
+ pyrogram/raw/base/ip_port.py,sha256=YVwZkAP3Dme6vPUhVSFd4qvDK8WnRQsNgIPd4UVpaYQ,1111
466
+ pyrogram/raw/base/json_object_value.py,sha256=WoQSyB4DkRQny1B2enSTWDd0D9PxkH0VHlbTrHr5cI0,1020
467
+ pyrogram/raw/base/json_value.py,sha256=IiJc0h7AN8T47D1la-VoFQDLA4US1Y3nKesunJN6rJE,1208
468
+ pyrogram/raw/base/keyboard_button.py,sha256=0NUGXxwZzEIgs6y2HkizToW8BScNlEAeaARwyVmxnas,2193
469
+ pyrogram/raw/base/keyboard_button_row.py,sha256=JbqlZXhy348KP5jssIfKslN-cm3DanR5TEtWadzsl30,1030
470
+ pyrogram/raw/base/labeled_price.py,sha256=27R_cib-1QV23UtI4rC1wUXc0XFg_NAHDLlg5r-tBHw,1005
471
+ pyrogram/raw/base/lang_pack_difference.py,sha256=0kBtNxgXUAkh7loC7qKFGWaUWy1qEzHNdWiuGTNfuwo,1276
472
+ pyrogram/raw/base/lang_pack_language.py,sha256=APMwKf9U5Ct-H-Xsx0hZTHQ6NpBES0f9ybaLGobo-Lk,1265
473
+ pyrogram/raw/base/lang_pack_string.py,sha256=Y4IvIiE6PjQjgTJQOq1aseY7noboOR6HkXlpyswTe8M,1360
474
+ pyrogram/raw/base/mask_coords.py,sha256=cYdtG8hP2muwHNl8ivDnAIshaEfgU66rDuv1g4oIy54,995
475
+ pyrogram/raw/base/media_area.py,sha256=jMlq_pbi6siROWdgVMHI84XZyRkPVff_cDxDf2mqDn0,1389
476
+ pyrogram/raw/base/media_area_coordinates.py,sha256=RMDpDMcqN9KvEtWn1bQAD_D9nrK5vBqAc-GzOvf_RCE,1045
477
+ pyrogram/raw/base/message.py,sha256=FMI2KbNOhZWPJiPKqz1PS9pmLYX9m5yx_Dsx9tib60s,1083
478
+ pyrogram/raw/base/message_action.py,sha256=qeBCGe_1iX_LzVNhF7xjouLf0dfHtq2taW0qbl3wueQ,4383
479
+ pyrogram/raw/base/message_entity.py,sha256=Ziut2LTTDQGKAf3_9R-BL4fL8DdA0yZXx6K3GZKmm54,2338
480
+ pyrogram/raw/base/message_extended_media.py,sha256=yhK04m-DFO5SupJCyfX-ss2ZtIRY0563Ei-ZMRM6ChQ,1125
481
+ pyrogram/raw/base/message_fwd_header.py,sha256=52DlIdH3q42-CCCaEsG6QS5CzpAFdvalr2a0bAJExtA,1025
482
+ pyrogram/raw/base/message_media.py,sha256=fbQ-l8DVuRleMHXSzK2SCL_9tjlhuntt5bapJLKzrTY,2305
483
+ pyrogram/raw/base/message_peer_reaction.py,sha256=xIw9IjLCfxUaN4PQrK4BbAbhwxEifKq_r5SP9HcbwMM,1040
484
+ pyrogram/raw/base/message_peer_vote.py,sha256=DmkC0Qii3oTve0uXKdxvvKbqvsvlras4dK-PjjfvrWc,1169
485
+ pyrogram/raw/base/message_range.py,sha256=dNK0hnUSgpVve-ilyZQu6rXrnxPipb4dpqt6i6BDZ_s,1213
486
+ pyrogram/raw/base/message_reactions.py,sha256=1Rw-N4S_BDu5xXqXA406Hcig6e55v5ZvXqNI1st8FLM,1025
487
+ pyrogram/raw/base/message_replies.py,sha256=WRdo2CwLQCEOORw4QNfKXS38ZdzV8IwGAoNV566hfFA,1015
488
+ pyrogram/raw/base/message_reply_header.py,sha256=1EyGCsgoSXOouaPGU_SJIQE2tk3bH3d8D5egCvSmX4k,1107
489
+ pyrogram/raw/base/message_views.py,sha256=RGiG8tszYIp71U51TAFisjNt2-z2GMG_LZ7xI1ndbfE,1005
490
+ pyrogram/raw/base/messages_filter.py,sha256=E0lt8F7hN7EdIV6L_2Igo2eQqwHffK4HLZXNhI28HiA,2269
491
+ pyrogram/raw/base/missing_invitee.py,sha256=iq7NzRH5b1hTjnahUZzO4SmZ1n1n4tvtk78WF06gC6w,1015
492
+ pyrogram/raw/base/msg_detailed_info.py,sha256=1qA1BP44G7dGhJM-3Jii63MVaVTi5uCynu0CYaZZtLk,1082
493
+ pyrogram/raw/base/msg_resend_req.py,sha256=_SqGD-OKnYVa_lzYWiG84PLz1DLACvx-Wj4NyPEuNI0,1061
494
+ pyrogram/raw/base/msgs_ack.py,sha256=SwqSKj4TGG-thMippAIXMbSe-dJ8BMvdcCZD0PXj4zI,980
495
+ pyrogram/raw/base/msgs_all_info.py,sha256=Utz44qis15DqITVBAFfCiqRRfzWhyTnqgFcJohj3T3c,1000
496
+ pyrogram/raw/base/msgs_state_info.py,sha256=Pcze6W-lDZe1KmpjHBWAVIIh9oLftGy5ZMrdBfeS3cc,1010
497
+ pyrogram/raw/base/msgs_state_req.py,sha256=ha7LULTHU33PVqhs5MABapm-ymbBm5rCRT9cxlY85hQ,1005
498
+ pyrogram/raw/base/my_boost.py,sha256=c9OxJdI8ajskTq3kbAKgphysf6T0CbXgu7I5lvfMaw4,980
499
+ pyrogram/raw/base/nearest_dc.py,sha256=D9J8wkGolrD7ota0Yfgk5ZAISzqVWuQfDpyJGqI8zrs,1192
500
+ pyrogram/raw/base/new_session.py,sha256=pBWPBHXWmiLetgUva758dMrOnwQBagJXoWOUp8MkHlw,1009
501
+ pyrogram/raw/base/notification_sound.py,sha256=6MTDXyZ2MjiJxLZvSM77tMKnbvBm9H_hOb9VhFmKfwQ,1256
502
+ pyrogram/raw/base/notify_peer.py,sha256=TTEAlNmJnuwfZ7pTZjxHdP2AmnOTCzETEGHGrnaomQk,1204
503
+ pyrogram/raw/base/outbox_read_date.py,sha256=4bRpYgysW3zLaI6Ytn1-0SzyQsmFalh5ZSbyqxIyIrg,1226
504
+ pyrogram/raw/base/page.py,sha256=JOrZAZl_y6fkS_qmyxlgwzdXXfJLHww3yS6rHI_kbN4,965
505
+ pyrogram/raw/base/page_block.py,sha256=nUjlN2fcT-uCAnhtxeX9MECymOwCcPQHmjaXAev1yzY,2628
506
+ pyrogram/raw/base/page_caption.py,sha256=xXpiYefb70V4M3HN6Iy08TinsEQrjIV6ivk1W2p8cKM,1000
507
+ pyrogram/raw/base/page_list_item.py,sha256=GHGqn7S44cvLH4jrOrEYuySko5ovQRy8OvTcN1Pr32o,1075
508
+ pyrogram/raw/base/page_list_ordered_item.py,sha256=2TEc6b2PDjEiaRs1c1cIcPCiyUAhFQCIHFuJhrT2mUQ,1124
509
+ pyrogram/raw/base/page_related_article.py,sha256=HtgLAuRrVZarrg3b-8dcrfrP3qMgUprSPAublO8aftw,1035
510
+ pyrogram/raw/base/page_table_cell.py,sha256=v_aIxOjlvwwltl6xxr5vI9WASzqYz93pwhgJ8ONcEng,1010
511
+ pyrogram/raw/base/page_table_row.py,sha256=5JWLlHFJeE2gMm0btZScBpiik84fX_EgZYxLeIwrqJk,1005
512
+ pyrogram/raw/base/password_kdf_algo.py,sha256=_Zh7nSTfCyINDSy7hpdln567AQu7KHs-CJzmM5alzas,1190
513
+ pyrogram/raw/base/payment_charge.py,sha256=3EeTdIbUJNrW30kP559N6Klh2rVwyYUlCTyUtlt6Y0k,1010
514
+ pyrogram/raw/base/payment_form_method.py,sha256=7aRV8FT3ima0bNDYobE4YCiMSG_Qxmfj3HWT5-I-0Wk,1030
515
+ pyrogram/raw/base/payment_requested_info.py,sha256=e1RGB6F1Rz_twW02sP53DkbU4YO-ayIYdZvShP9fMGg,1045
516
+ pyrogram/raw/base/payment_saved_credentials.py,sha256=1fLfjPr49kRQa5nkzsvpBgUa6sG32RCwrmoMBDWO2kY,1068
517
+ pyrogram/raw/base/peer.py,sha256=91ydMZMEmLD-5QlSfkPu7kBxjC1qTG6t1UXfOiXX59Y,1284
518
+ pyrogram/raw/base/peer_blocked.py,sha256=SvzL7IQaddC6QXDHBx9_nfBG_q-hmTXNfhkdu-p0Tac,1000
519
+ pyrogram/raw/base/peer_color.py,sha256=tooRWQCBQf7U6SLkGXj_35Vplk_QnGODXJcVKkUKLeg,990
520
+ pyrogram/raw/base/peer_located.py,sha256=zXTRfB6rlhlEvGMI_IUXTQq2sdk_MsavZ_xn5s6VrCQ,1056
521
+ pyrogram/raw/base/peer_notify_settings.py,sha256=rpIFy9H4TYPzbc7soQLyN8oDjTE0a0cmMcKXzI8sjhQ,1245
522
+ pyrogram/raw/base/peer_settings.py,sha256=fg60YXzMY2jMzwmdOkkf8sUWEyvmKQC6mrKPBBlhd60,1005
523
+ pyrogram/raw/base/peer_stories.py,sha256=wvqmFyzVUirNUGJharvGY7S1B4up79oE9FsD_kAZFFE,1000
524
+ pyrogram/raw/base/phone_call.py,sha256=lLaxl4LBQYopVHHsEp0HKgSUxRrnVyfCjPSvvtIjJyo,1282
525
+ pyrogram/raw/base/phone_call_discard_reason.py,sha256=iesbDQXmpIqjyio89OVfSMtXK4k-BTw0qwC_-TMhyN8,1315
526
+ pyrogram/raw/base/phone_call_protocol.py,sha256=fcyMt1VH0X0XC85_Q-RBGfbniwmW0E9SDExdnGv9nt4,1030
527
+ pyrogram/raw/base/phone_connection.py,sha256=8t7gUb-0S5HcCAxbnAR5xMlw76O8jkgTCJ55y96G_FI,1088
528
+ pyrogram/raw/base/photo.py,sha256=lwN523Asa-0mV3lCET-G1p7dKp3HZdA3Gg7oo31Oxv0,1016
529
+ pyrogram/raw/base/photo_size.py,sha256=HaVX_ZIzTVLMzJNehgS1x-j5NY1hqqX49iQuq16-5xY,1274
530
+ pyrogram/raw/base/poll.py,sha256=9YMCNIIGsOOnABbmCPIx32cTfpUQPOqqt9f2kUnrn1I,965
531
+ pyrogram/raw/base/poll_answer.py,sha256=2DfRMlkVvC4P3_gijTKsGk4WiYygIcxRmBiP1QbzdCs,995
532
+ pyrogram/raw/base/poll_answer_voters.py,sha256=nCFrmmYIb-VxgkKe_XdAXFjltCY74auHNIgJkAcLQUU,1025
533
+ pyrogram/raw/base/poll_results.py,sha256=FFW45vTJltVhXLW_xYUpAWjq-GeWI0O_QkXEaZ2qtEI,1000
534
+ pyrogram/raw/base/pong.py,sha256=wfSqcC4lBXGOzOuHzDsnLdordW2xpuVRK_Yh8hKWs7Q,1187
535
+ pyrogram/raw/base/popular_contact.py,sha256=HFQ4JWQE8Y9OwShovsIgizk5m9pnhHW7J0iguJS-C7g,1015
536
+ pyrogram/raw/base/post_address.py,sha256=kyFmHB4PDqhyauwFyrF4miLfWvPVdOsRYqCdJwBmGeg,1000
537
+ pyrogram/raw/base/post_interaction_counters.py,sha256=aUq3jiv1HMG0PFes4HqVC1QbKMpRt9xkvI1YTTDiSH4,1156
538
+ pyrogram/raw/base/pq_inner_data.py,sha256=OCCr7XwwzygDHYqGCzEbfimI-kiW_G8eWz9iljBsGtU,1166
539
+ pyrogram/raw/base/premium_gift_code_option.py,sha256=YsbtEGPQzstk0lxzr9J_8VO0yB2Jpz3dAyFcJYWlZLY,1269
540
+ pyrogram/raw/base/premium_gift_option.py,sha256=r6x1z28bfp-8DQqhQGl3RWoD4Fy0BiJBFXsmOdoTOGU,1030
541
+ pyrogram/raw/base/premium_subscription_option.py,sha256=eI8rfy5-EO4B--zxsXI0Z9dPRlKTGfK7wgIeSY8V0hQ,1070
542
+ pyrogram/raw/base/prepaid_giveaway.py,sha256=-NMaXc4mWHadMwsJ_KAFIA9k0_xBe1K13Z1Pdl8gxSg,1020
543
+ pyrogram/raw/base/privacy_key.py,sha256=e0b3mQVI18rJ6Y9HvNXskY_sZAY-wdFh4F5zFj5UeOo,1669
544
+ pyrogram/raw/base/privacy_rule.py,sha256=Y4yTWmtZPXzHWSE6xvHXXuHGhFWgYlIwcVYHUhBSu9M,1735
545
+ pyrogram/raw/base/public_forward.py,sha256=wFKLhm23BvpQci7IE-irmNE3LFjPKjCsxWaDu7yqaE4,1086
546
+ pyrogram/raw/base/quick_reply.py,sha256=GnnKvGA_i79HMIfceCOASixa94BB_DGIZddhcmP7cvI,995
547
+ pyrogram/raw/base/reaction.py,sha256=mz2TLfFY6r8FZyoU9vAqswOdFqQ-8JnBOF6nu2Kd1jA,1110
548
+ pyrogram/raw/base/reaction_count.py,sha256=O5MlgOWorjVXswIo-092EKBZdGL02mn_RePg0eDo1tY,1010
549
+ pyrogram/raw/base/reaction_notifications_from.py,sha256=gYt3gaNdin5O8MgTSKHMTa-N5YWLpwkygQCwcB9QHmo,1168
550
+ pyrogram/raw/base/reactions_notify_settings.py,sha256=vlCrLt8kkCytRWi1BlBlsRxVVLU4czejQw0fY1gYjsk,1327
551
+ pyrogram/raw/base/read_participant_date.py,sha256=7cnrQN2QbpmwMQG3oAf66SpbgIiMqs03eXP_Cv1zyEg,1260
552
+ pyrogram/raw/base/received_notify_message.py,sha256=iau6gghHTMRUUvQGQ609YkAx60eNfTKhgZ28cz9Zcps,1260
553
+ pyrogram/raw/base/recent_me_url.py,sha256=I5RUUERVVKIxgJeeqLfWuo0fstvzJIqE6buAjGuI_ZY,1259
554
+ pyrogram/raw/base/reply_markup.py,sha256=VK0WdEe_f5tMeFghYaEIK1MQ5iSefY8hseFime1Bhs4,1206
555
+ pyrogram/raw/base/report_reason.py,sha256=i4diyh9JGL-s2WL6mKOBhxnidNKzLEIxsWY7d8tH87Q,1730
556
+ pyrogram/raw/base/request_peer_type.py,sha256=DlkZQ-8lw-qbrDVZqYqUeDQFhttwN4e2HQG1PLnq-5U,1165
557
+ pyrogram/raw/base/requested_peer.py,sha256=oIL4tStIRF07lf-RUOUfnTD2Qf7KO2_O4VPDLnYaQic,1143
558
+ pyrogram/raw/base/res_pq.py,sha256=MpHVga3RLxHGyuYhqMjiE1bx8vF3eY0k6Krs8W6HN2Y,1184
559
+ pyrogram/raw/base/restriction_reason.py,sha256=rML1IOgIipTyWtwOIIPukq7VsU-8aZBNl9sxgEid1B4,1030
560
+ pyrogram/raw/base/rich_text.py,sha256=MKfFLy3JbQxRW6Ig9xc-t8hypOhZuAEfMreEFxUS2Q0,1666
561
+ pyrogram/raw/base/rpc_drop_answer.py,sha256=PjQIvGndoNQ5xfRwynzVAtK0rmbXFnW6-QFiTstppn0,1343
562
+ pyrogram/raw/base/rpc_error.py,sha256=JWYJr4zT3n38TCJqs12NMiSFYuxlDz1dYvJQ5VCx65U,985
563
+ pyrogram/raw/base/rpc_result.py,sha256=kVl-62geAlQ5h7Ts3Mo-HtGhoDGnfY8E5C9CkJ8R0ag,990
564
+ pyrogram/raw/base/saved_contact.py,sha256=HuLMhD93n9mpE_9a4_xgBBnxsyqFt4WUf8Zu1nJPnK4,1217
565
+ pyrogram/raw/base/saved_dialog.py,sha256=oLcaVd0DB5I0nB983NkXoTOstjc472JP8cf4Ln2JD6s,1000
566
+ pyrogram/raw/base/saved_reaction_tag.py,sha256=9B-uVRIDQOappFsJHXJJKTcJ6q8sQOgN1L_X4vcvps0,1025
567
+ pyrogram/raw/base/search_results_calendar_period.py,sha256=xiIg-sBXtyV1dWUBVj4QU_euDPiB2IcDyeQDgfXSAj8,1080
568
+ pyrogram/raw/base/search_results_position.py,sha256=RLb4_CTfT0M8Mh2uRC5JyuqGsim5RJrk9mj1AheaUzs,1048
569
+ pyrogram/raw/base/secure_credentials_encrypted.py,sha256=dLa_-ljgndCkbTsI1y1t-8_yv2spHnqRPSgnSHY4r2w,1075
570
+ pyrogram/raw/base/secure_data.py,sha256=IZwr6oH2lFxHjh5ezWhMb87vv5K-MBU3j5lRpbEcBrY,995
571
+ pyrogram/raw/base/secure_file.py,sha256=ahLgRvS5mhqGrFEzKoyGMSuFQeLmtFqvj6jltny_fIE,1051
572
+ pyrogram/raw/base/secure_password_kdf_algo.py,sha256=Kub--2woGJiRXQ4iauniMgxgD5gvdxlV-bM6P58lgFQ,1263
573
+ pyrogram/raw/base/secure_plain_data.py,sha256=Rm0d4xJVP8gaADbG0MphVoJz3SCJBcdxDhJQiyom7rA,1080
574
+ pyrogram/raw/base/secure_required_type.py,sha256=SH5bEwdYxmXi9RMOGlWbfIC_04xHYmVTCwN98Z78R0M,1107
575
+ pyrogram/raw/base/secure_secret_settings.py,sha256=iH_n3BUE4MUCmrvEtfVwvaB4cHrN0Ldz7RrqmBwCFBo,1045
576
+ pyrogram/raw/base/secure_value.py,sha256=62ATdp0lcxmsex4ccTdYszLmhGzVlW-FzfoRgk8g-8M,1283
577
+ pyrogram/raw/base/secure_value_error.py,sha256=yH8PSe9Lvg-NVmPAVg1_OizI2MFINfowsECyKlu8wWg,1622
578
+ pyrogram/raw/base/secure_value_hash.py,sha256=7ymobbI8x12R1uLUBjt-IaIvoJqcOhWFA_TZRyKVlXU,1020
579
+ pyrogram/raw/base/secure_value_type.py,sha256=Jo3hDBRzPr5xCl8mNy8VRVON35bdCTk_e2RT57YPyHM,2004
580
+ pyrogram/raw/base/send_as_peer.py,sha256=7fiNQfz-wKx2lSJ57BWGVf4iLcykqXDgAbovYS28fQo,995
581
+ pyrogram/raw/base/send_message_action.py,sha256=f5_R_aamRCiZ82mt42_OulHYxKD-iTsQfZI_nuZZHdo,2421
582
+ pyrogram/raw/base/server_dh_inner_data.py,sha256=-EoFIkFg7GV1FuEr0QGpoXy3Kgb7t4TGrexwSQNkce4,1030
583
+ pyrogram/raw/base/server_dh_params.py,sha256=H0IZtUY-0lN9Gfm9zdrXkUGSE03Hj5MU2-z21xwCEJ8,1277
584
+ pyrogram/raw/base/set_client_dh_params_answer.py,sha256=mzvdb4VChOiEi6WNP3YMmhYDya4VTUSchWHpHnKXFsg,1319
585
+ pyrogram/raw/base/shipping_option.py,sha256=XzB4hEg7hiDYbkew6xB-2EfPFjQfD_acQsIP6b7jWls,1015
586
+ pyrogram/raw/base/sms_job.py,sha256=iuA5nUjdAViC-xfBVgEmdwmHvgRcqH1fWpida6EogMs,1177
587
+ pyrogram/raw/base/sponsored_message.py,sha256=s7Ey-GeZvJuMbHCU7RBoASm_PymVqahQR3qWRBNa78Y,1025
588
+ pyrogram/raw/base/sponsored_message_report_option.py,sha256=66kYnvqayvmostl-s1E35RxtY_C3G60gXjR7qPLZ4J8,1085
589
+ pyrogram/raw/base/stars_revenue_status.py,sha256=LEkat8dFwKxarXiWQ34fEjsPtMOHzGk03UPr5g5IpsM,1035
590
+ pyrogram/raw/base/stars_topup_option.py,sha256=P3G9xm3nfbTPsMbja5XIWw9QN1w-eh2CeHmYIqGMUic,1239
591
+ pyrogram/raw/base/stars_transaction.py,sha256=UrODIZ3ty5xyJ0qnOU7CJoJLSKewITwtcxmYO9q4PD4,1025
592
+ pyrogram/raw/base/stars_transaction_peer.py,sha256=3zfQ1FoHlagkIjforLZ7vVYdjqiikzCo3JQDebiA6UA,1536
593
+ pyrogram/raw/base/stats_abs_value_and_prev.py,sha256=gbtOD7oxrWSt6P4dKY7lpbIwbv28B4D4zNIvJgrVOYA,1045
594
+ pyrogram/raw/base/stats_date_range_days.py,sha256=XnYnGE6wDkOKNBzFykCAVJwHT9XZrl4s970t4Br78mo,1035
595
+ pyrogram/raw/base/stats_graph.py,sha256=kkRr3Q08nurdV6ATyTqdfmdKlQsw99MC4ZEmARpGLW0,1311
596
+ pyrogram/raw/base/stats_group_top_admin.py,sha256=v7uhX8nP2VbxGtV2hKWld5F20VOSGmDyK4QyzkB7Xag,1035
597
+ pyrogram/raw/base/stats_group_top_inviter.py,sha256=uV2_u4WAzWquJZwEDew8AiwtRVGDS2gVDPot8kZbxR8,1045
598
+ pyrogram/raw/base/stats_group_top_poster.py,sha256=aNrCyQAitcPIBrqjPO8FH9a1UpIq5f0KvzJI7OokI7E,1040
599
+ pyrogram/raw/base/stats_percent_value.py,sha256=BbaCCKhtrAURUC2hqcZ3ZZvhixdxE1DrGXAyianCl_k,1030
600
+ pyrogram/raw/base/stats_url.py,sha256=jPRkQs_uOEMoiVhaMCPGGwb_aDmqtoOvi--yvIE8Epc,985
601
+ pyrogram/raw/base/sticker_keyword.py,sha256=ngr-NLb_Cj99Q9GLsdEvQRtjunWNFUgkA4n4fN1Nd94,1015
602
+ pyrogram/raw/base/sticker_pack.py,sha256=CKsZF-5gjlzzKUXMQVv5xQfXND4H05ryXm_29zDNjr0,1000
603
+ pyrogram/raw/base/sticker_set.py,sha256=ftcK3qqZRuOQsaejnFhtjyKruwCoMNUPw7pnhHb_aDU,995
604
+ pyrogram/raw/base/sticker_set_covered.py,sha256=WKsbTmnPGYtea8hu0nCWKdbMxUI6aga_cm-0CPkbi60,1443
605
+ pyrogram/raw/base/stories_stealth_mode.py,sha256=OpyB8K9G3p50DoHMqiOdG0wtLEy_bYpxsUJXa8FSuBY,1035
606
+ pyrogram/raw/base/story_fwd_header.py,sha256=BIEV-xd9vK4p2D0sIl_eYj8oLW6LzGD-7qF4_rHc3l4,1015
607
+ pyrogram/raw/base/story_item.py,sha256=1INfVsYJu_pNt9dO7ZI7Hk2XljiwXSz-aI77BxeEvQ4,1105
608
+ pyrogram/raw/base/story_reaction.py,sha256=SuFXRuXI5sZWI_R2tGfaWJ62QhBiMFw1ISzP8TW26ho,1163
609
+ pyrogram/raw/base/story_view.py,sha256=bjmELQ0qcWdeEOtLOoAwdetV1W4oNAZMTpxRULs0Ow0,1127
610
+ pyrogram/raw/base/story_views.py,sha256=QbRjYzKeL4fVtYujzD1xbfu3wyJNpdaVE7MJ6qQKlsI,995
611
+ pyrogram/raw/base/text_with_entities.py,sha256=-uRq9R8-9yByWcWsatZrZJB_UqeoF9UJuIzAvb5SJZ8,1025
612
+ pyrogram/raw/base/theme.py,sha256=-5GkfvFQG1q013MYoK98RsKGjB5EcYNrn3fsFvlV6HQ,1236
613
+ pyrogram/raw/base/theme_settings.py,sha256=ZtHvNLIFTkWPXBw3go9MJyZNrYvmaGtiXTuuhN5jjgI,1010
614
+ pyrogram/raw/base/timezone.py,sha256=DQx8hTJZNwePOf3K0jimJgXXD0dvidBOLJQ3U8TIw9s,985
615
+ pyrogram/raw/base/top_peer.py,sha256=fbm_6RS1e8s4W-SZ1McnLw5h3ToyYjSMQLuQKcqE9l0,980
616
+ pyrogram/raw/base/top_peer_category.py,sha256=u0eS3CkUYuawfogfnYGbKi4ybAX-V2ZK9ihQrbkOIPQ,1562
617
+ pyrogram/raw/base/top_peer_category_peers.py,sha256=XiSqZtz65DL3IK8T6hsKorHfYYC9XSSaI3n-KOAfG-Q,1045
618
+ pyrogram/raw/base/update.py,sha256=KWhjH-of1bzVeRELRp0BKmV95Qd0vYzxep3rwoJUWdc,10378
619
+ pyrogram/raw/base/updates_t.py,sha256=8i6nDZaA4dfYRujbF7HCdfFLkoMdn_NiaFCG_ar6e_I,5433
620
+ pyrogram/raw/base/url_auth_result.py,sha256=2CEspQUpUcMSLjiKX87VvypTw-x4Vr_pVTa7JrpoBic,1401
621
+ pyrogram/raw/base/user.py,sha256=ZD-srGlvJDAa9tVMXvTYgnrdz7oVGbGftU6ZPGhmSVQ,1350
622
+ pyrogram/raw/base/user_full.py,sha256=XlJFNSGR1TM6lGUnBN6sXXz5WimfpixOA67lt47v-wA,985
623
+ pyrogram/raw/base/user_profile_photo.py,sha256=eMRCuod0Jh-m2Rbwp80FRlnrrtxTR0r7mAy7iDsxW1I,1093
624
+ pyrogram/raw/base/user_status.py,sha256=PFZVHS4yP6eCl0MlLc_EFUWbAYI5kguRLZ2csMIE98M,1307
625
+ pyrogram/raw/base/username.py,sha256=7UDM6WEh47YVyPaop_oOMsF4If8prHKHMM-rXhKI0nA,985
626
+ pyrogram/raw/base/video_size.py,sha256=wDMWOPk-cyv092odDAxCMVhhdLwDUjKwM8zqwkLwY4U,1125
627
+ pyrogram/raw/base/wall_paper.py,sha256=EtLYpejD7Ook_yNvM87lGPh8aeL4oRPNo_YClfsu2tc,1327
628
+ pyrogram/raw/base/wall_paper_settings.py,sha256=Obm1C3xZ0pBCqFtODkMT8mM12i8N9s2aKwmzseaiFvg,1030
629
+ pyrogram/raw/base/web_authorization.py,sha256=XpsNaQs9dMyL0Eual-VfZgCWvaLpWChHc4msua1Stbc,1025
630
+ pyrogram/raw/base/web_document.py,sha256=vzYo_TLf1lrYVEh5HV-jw8Ke87hmL7PFzb435b9W_UA,1062
631
+ pyrogram/raw/base/web_page.py,sha256=H29H9CXNb7LM7gproK8uuYxUZHQ2dZjhSsWPnhXcYAE,1144
632
+ pyrogram/raw/base/web_page_attribute.py,sha256=Nb5f1nWla8rNb9Hjr8MPrbO2re4zonhuu1DP7U7Nz-U,1180
633
+ pyrogram/raw/base/web_view_message_sent.py,sha256=NJmtTxhO1a_XIMNyZ2MvHhQolsY3Eqj8872OU2xg6fE,1253
634
+ pyrogram/raw/base/web_view_result.py,sha256=_2VYCkLpwGQ6IKTTPImxTWZUSYKFIoWwZ34UjmU1dpk,1306
635
+ pyrogram/raw/base/account/__init__.py,sha256=FYQDfSoOmhc7MSBom0Glj9LN_2yu47fo5wxuQU5xmPA,1273
636
+ pyrogram/raw/base/account/authorization_form.py,sha256=dEdWriDcWcOSqArUMvhi7Jb0E0JjvgxO43Zkg_bE68M,1267
637
+ pyrogram/raw/base/account/authorizations.py,sha256=Hd39noC-XT3AF-AcIebAQtSUS0MR5rWA7f_n4z5Iki0,1249
638
+ pyrogram/raw/base/account/auto_download_settings.py,sha256=f--Q-QhMJ_IlZD8y3g3bGqMGAtnavoyaUrF1GD3-2do,1285
639
+ pyrogram/raw/base/account/auto_save_settings.py,sha256=9unZ-OLK2r_ZLmbRr5zrtq0eYZQWApL4ZdfIytOLZfQ,1261
640
+ pyrogram/raw/base/account/business_chat_links.py,sha256=ScqgNIvIiPw65joOTW8RAC1_0392hOe_yd4EHqbd5vU,1267
641
+ pyrogram/raw/base/account/connected_bots.py,sha256=S5boHULGgSz6azX7zvsQqjC2wvQmFv7pesJ-B3F5OaM,1243
642
+ pyrogram/raw/base/account/content_settings.py,sha256=kXbS5otdxUk06zpx98oeZLU74e9A40zQ9PPGBcEFToE,1255
643
+ pyrogram/raw/base/account/email_verified.py,sha256=RzY0Zn1AI9knO120T87LfFonoEaFGcPQwu7XT5MPLqg,1316
644
+ pyrogram/raw/base/account/emoji_statuses.py,sha256=xblm6rsZOG8lmSdEU4CAX2BlXI6AaT0bNga0-31wm_A,1435
645
+ pyrogram/raw/base/account/password.py,sha256=WKkpCjEto9oCRKzHf_PaCWYK9AdSe2rRV8A6x9WfFGU,1213
646
+ pyrogram/raw/base/account/password_input_settings.py,sha256=DhtqnBsIdixKazCZ62Z6aPPmqae-p_p1wjZbJ5oaI_Y,1074
647
+ pyrogram/raw/base/account/password_settings.py,sha256=aK4njLDWeUcZ-FLbdPIEgZsB332DLQub-f8l1X6qY5w,1261
648
+ pyrogram/raw/base/account/privacy_rules.py,sha256=tCFyl1u3YoQYD4OK1EohrFOxoMUIUxycj0m2fFMXCQc,1264
649
+ pyrogram/raw/base/account/reset_password_result.py,sha256=ynh2hJ-arp08ZswCyLQMNFk8KDZSWPR8tBHDrtlzd5Q,1443
650
+ pyrogram/raw/base/account/resolved_business_chat_links.py,sha256=4sec-kQ9UnWlXDd7H_rNf6MbHy5KhM1_At0ivqX6e1k,1310
651
+ pyrogram/raw/base/account/saved_ringtone.py,sha256=JBQ6wXtEcX2KSBwAy0JmptiW_u3-EKK4G4fiehD8UCs,1325
652
+ pyrogram/raw/base/account/saved_ringtones.py,sha256=oWfSlcM_1OSv-gZ2xwRTpd7nIMh2K6XHlbN5AyFuN5w,1341
653
+ pyrogram/raw/base/account/sent_email_code.py,sha256=cGTqXvxYTK81SAQHs95lvL70MHcTqCd2bqcwdadxvDA,1246
654
+ pyrogram/raw/base/account/takeout.py,sha256=tFPs6dmuCPtEFFQ0tqNov-B9m9pORhv0PLAdF_LHso4,1215
655
+ pyrogram/raw/base/account/themes.py,sha256=2uZIZsGdE55DBe44krfItsvMx7l2MzfkY8_53Sr0fVg,1312
656
+ pyrogram/raw/base/account/tmp_password.py,sha256=MOt7ByBSQyqucMyE4i2ZRR79IiUVUDDy0O6LW-arJWs,1231
657
+ pyrogram/raw/base/account/wall_papers.py,sha256=YCHQOlm4ixYYIMnsFeC23zSGwjErJso3lcvobzOnHv4,1309
658
+ pyrogram/raw/base/account/web_authorizations.py,sha256=RnwN6DUDcGgA5IbX_JYBiHUaCLg6aLv2vykn2xTkGh0,1267
659
+ pyrogram/raw/base/auth/__init__.py,sha256=4Tn9SOsXNH0J_dBiQUyVdiKDhcLZ-fl-PRPp5aMz670,563
660
+ pyrogram/raw/base/auth/authorization.py,sha256=RZd0CRdQ5DrL1OMD7EYNhoGcTtLJLVtWO2J4OiSo67k,1522
661
+ pyrogram/raw/base/auth/code_type.py,sha256=XVgDStIV54WrHGz51xlmNKH9YXpwtGp4npzzqjerZok,1279
662
+ pyrogram/raw/base/auth/exported_authorization.py,sha256=n8Tjr3jTYxjIjCtu_K4KvCOJku0zd8DhHTLjxBozOjs,1274
663
+ pyrogram/raw/base/auth/logged_out.py,sha256=7HohDnckrccjJs56yg1HqksNqivIo3U67RKFlmrlRAM,1201
664
+ pyrogram/raw/base/auth/login_token.py,sha256=rtitfddF12m6eqH7GNx02jpAuOtdSilQgZ5XaivsTes,1394
665
+ pyrogram/raw/base/auth/password_recovery.py,sha256=vX2RXn54lYKCWda7Mx4OwW-FNiDH2YFy9zUjUPtdEWg,1253
666
+ pyrogram/raw/base/auth/sent_code.py,sha256=J6xv-0VfcyEdH22orI-mQ0M-EZZ0z9lj3kYscq47n_o,1447
667
+ pyrogram/raw/base/auth/sent_code_type.py,sha256=u6pPF4U5MqOJrhPX5AXv6Al8WHMR8WuqOJ9LWCY95Q8,1800
668
+ pyrogram/raw/base/bots/__init__.py,sha256=qoMJoG6pAMIyoBUxqWGdawnI0oPpXHR0siHFkWxUCqY,271
669
+ pyrogram/raw/base/bots/bot_info.py,sha256=nrtDLMRca5xEs6Z9cd40lYu-WA4V9mihsDCqV09egJQ,1195
670
+ pyrogram/raw/base/channels/__init__.py,sha256=x7Tpe2LUNoI3KzYCCgIfzaNWDa6SAT4O07dWRHTNPNE,507
671
+ pyrogram/raw/base/channels/admin_log_results.py,sha256=Jn9f5JK8p49M9wj_ami1YjaTraptXx6DSReJXYOAyck,1252
672
+ pyrogram/raw/base/channels/channel_participant.py,sha256=D8eljsEwxIAhNZAkXyoJJZ987G2Kl3p_2C4OsKGEPKQ,1270
673
+ pyrogram/raw/base/channels/channel_participants.py,sha256=8dkdBihfkLegNbCtw-KSGZuZwEmGz_SYTnWbqmm3E5g,1380
674
+ pyrogram/raw/base/channels/send_as_peers.py,sha256=yp2OvQt3B0YkNOhl6aOVDdZE2OLCBuOjI7_x7z60b4w,1230
675
+ pyrogram/raw/base/channels/sponsored_message_report_result.py,sha256=3OwTePxDtBif-K-FbpfF8cpOqThLYEfWPQo2e0L8w2E,1585
676
+ pyrogram/raw/base/chatlists/__init__.py,sha256=AcGmRFAFTfshmp0xhXg1tww8igISZVQ1QT73ksoAxOg,438
677
+ pyrogram/raw/base/chatlists/chatlist_invite.py,sha256=q-VEeu8xjH3Vr5hooCvhtZVlUTImVeyxFgUkAveAXT0,1347
678
+ pyrogram/raw/base/chatlists/chatlist_updates.py,sha256=5HSwQHNpXZNoaVgSjZ0g87Sz5rgCUmexcV80GuABYPo,1263
679
+ pyrogram/raw/base/chatlists/exported_chatlist_invite.py,sha256=DbwS6qJyTUmhmpArFe1OokhjfGwr5T2l7NMsWqR-YDM,1300
680
+ pyrogram/raw/base/chatlists/exported_invites.py,sha256=ce1VNOBFDQskWzn2Q_lS72KskgxTO05T5AIki-7DGBA,1263
681
+ pyrogram/raw/base/contacts/__init__.py,sha256=qzA6ktt0TerNz0whl_nXypN9nxEAMaURllx7WP0av4g,494
682
+ pyrogram/raw/base/contacts/blocked.py,sha256=lgUPwalKULiQM2UMlUjFr64aK2VT7tc2rIR6FIxUQag,1279
683
+ pyrogram/raw/base/contacts/contact_birthdays.py,sha256=PGSroJ21B8p8wspDUUZ2XXngD6N8UVdS2OqonhS5a2g,1258
684
+ pyrogram/raw/base/contacts/contacts.py,sha256=poc6zh5jMCLugs8WWU-3m4J77U-_hrurm562eSl5cJA,1299
685
+ pyrogram/raw/base/contacts/found.py,sha256=GJBQValFo_d8ctZL_lihNFbG-1qd8IWB0VwTR39pons,1197
686
+ pyrogram/raw/base/contacts/imported_contacts.py,sha256=kf-HvtThM5IkPYcHytlh57yPTdDz36uk8G-md8kfqao,1260
687
+ pyrogram/raw/base/contacts/resolved_peer.py,sha256=fEM1ySWVB86VdUZtG3JRuy3LoWbl6xxsxwB0PxEWpTk,1276
688
+ pyrogram/raw/base/contacts/top_peers.py,sha256=yK8AFFFl6_ocaOLNyJp-9RHWpPbyU4bTSg4UA0_GeoY,1374
689
+ pyrogram/raw/base/fragment/__init__.py,sha256=FbfYryetW3yubN3w-7QmEqgNeiZmWQEKt4qWB4phHEY,287
690
+ pyrogram/raw/base/fragment/collectible_info.py,sha256=7l9xs5wVdPEIAmK-16X_2PwJJ8IGpOL6_O-vmP68oKo,1259
691
+ pyrogram/raw/base/help/__init__.py,sha256=sNSS88zAqREKQhwwLa1Fo8pbMnAJNLkikHgSDnN7f1Y,1062
692
+ pyrogram/raw/base/help/app_config.py,sha256=7klsPBcP8Xdl6qwQFdjTrnFhqFVkWeGeKx2mrmND7Ks,1283
693
+ pyrogram/raw/base/help/app_update.py,sha256=iacqNBacNhrUDtmLMDw2QkTlmyXN-9DAPNkNYbAOTjE,1265
694
+ pyrogram/raw/base/help/config_simple.py,sha256=4TpNYW3hTFsOBC9dGJEaNgzPHeI_4MqNXOSooXmFnsA,1080
695
+ pyrogram/raw/base/help/countries_list.py,sha256=O4zfaEGPBUO41z1CfEUEY16g3P2Bwch3E6FVmS42iyg,1315
696
+ pyrogram/raw/base/help/country.py,sha256=pgeaNgu40M4AFll0DFD8LXeFtqRIrZpFqir4pfAsusM,995
697
+ pyrogram/raw/base/help/country_code.py,sha256=3gZ0NFL0HUKhdxvDL0xOUKNu0BIj68dl3VlZjy1ZwpI,1015
698
+ pyrogram/raw/base/help/deep_link_info.py,sha256=jhX6gmdnY7MWpiGkRslCUrdsoTFWvFEhM3SafcWyua0,1295
699
+ pyrogram/raw/base/help/invite_text.py,sha256=TOFPf6ODm-CCWgXaOvav1ffkkGTEfcluzkvbAD_2gPk,1213
700
+ pyrogram/raw/base/help/passport_config.py,sha256=VTqagWC3lO_Xb3wLLvOwwzGG0F4VTG1gyrZc2DBDl98,1323
701
+ pyrogram/raw/base/help/peer_color_option.py,sha256=Im2ImAjuoE86JUVV6TXjBnk1c0FHdf3UPbp-I_jX_UU,1035
702
+ pyrogram/raw/base/help/peer_color_set.py,sha256=PxVFzeDRTCoYP3aF788pzcGh0zv1uBxiurZ-FnmT0Is,1094
703
+ pyrogram/raw/base/help/peer_colors.py,sha256=xGAGvPhNCRNV34E-K9iTJVM6pibjB-WYr5mVB3CfDg8,1330
704
+ pyrogram/raw/base/help/premium_promo.py,sha256=mtg_WtfebSnXweDqrtU6vaX0aiIlgeBa_DRyloZ-AUw,1225
705
+ pyrogram/raw/base/help/promo_data.py,sha256=t616X3Nkiw4kcbUDBeOYq7A-O22D_NhuuGT4jqrhXQg,1271
706
+ pyrogram/raw/base/help/recent_me_urls.py,sha256=cA0UvBArPwToNvwiU3McqtCHU92bX6RrNgt0arq40UI,1225
707
+ pyrogram/raw/base/help/support.py,sha256=ry9ufRID67NdvmNGxD4P8k6FXIFBQqUpIg8ITscMnNY,1195
708
+ pyrogram/raw/base/help/support_name.py,sha256=cEzrqQa6BuSqyEBnyP4yp0hm19uvBIa_AoRUcI9Ge4g,1219
709
+ pyrogram/raw/base/help/terms_of_service.py,sha256=GMYVGUYNEZad6SeRqH7LEKQajFv4EC_L7QatvGDMZK8,1030
710
+ pyrogram/raw/base/help/terms_of_service_update.py,sha256=1jh1jVuUg6BmbIyquqqT8NNQkqkvMacg0DXd7GW9BNM,1359
711
+ pyrogram/raw/base/help/timezones_list.py,sha256=E9N8gV_RTEHIuZHIaJNS7-kZiImQE5iD3el2BoTyXfY,1315
712
+ pyrogram/raw/base/help/user_info.py,sha256=JxFgTTrv91tt6T-pp_ZOjIF37n-OvXBrJaP4Wx4kisA,1294
713
+ pyrogram/raw/base/messages/__init__.py,sha256=WiuyC8IH49iMkGVnep8odLnpDJLT09J_6wu4IHEHqaU,2711
714
+ pyrogram/raw/base/messages/affected_found_messages.py,sha256=L0qyNTNe0WZcT9Y4Qup-GxjMCKFMJ5OvpPZpV1svZzM,1293
715
+ pyrogram/raw/base/messages/affected_history.py,sha256=vdwiuyv9ZcS9-IVSowc_73m2j6366GcBh8dPoh-Aibs,1488
716
+ pyrogram/raw/base/messages/affected_messages.py,sha256=Cdr9D6NmtoIIcNG9bY3PbOPb1CBLQe9ynlmgsGQ3p7o,1371
717
+ pyrogram/raw/base/messages/all_stickers.py,sha256=bgRV0HUtqT6GVPFI1TOwsnw5X1feJ5ZTyVp5jjh1Qng,1399
718
+ pyrogram/raw/base/messages/archived_stickers.py,sha256=CA6DEIDX6d0rh0H4IbhjYjE-EsTP83WhQ1J0lBrwtyA,1265
719
+ pyrogram/raw/base/messages/available_effects.py,sha256=kbxUbuir4qd1g4P1mklVXZu7zDmG6LBmNC01tBaNDMg,1363
720
+ pyrogram/raw/base/messages/available_reactions.py,sha256=zAVdA1EgO-dsLrvtJnIG5v9aJvVypvmRTUopV5cOo2c,1379
721
+ pyrogram/raw/base/messages/bot_app.py,sha256=fNoHmINKwdto1OLv_8rMY9Clpfs1luhqrzVHOvkc8lQ,1205
722
+ pyrogram/raw/base/messages/bot_callback_answer.py,sha256=j0R3TyZYNsa2toyCFUgCpdcD5MmmLb9dkgIJmLobmbs,1271
723
+ pyrogram/raw/base/messages/bot_results.py,sha256=MBnIuJBzGYyEH3BjF5Xv2sAL8SKUK4CUv_Lbpz9Wl-0,1235
724
+ pyrogram/raw/base/messages/chat_admins_with_invites.py,sha256=39gXjhCK7Jk9CBZkW9yIcPbeTQfZ4tLPQ7lCtRgNEyM,1291
725
+ pyrogram/raw/base/messages/chat_full.py,sha256=eAblxmKwOqDABh6qSy00C90R2HBYLP2DEjolB4D7vTE,1254
726
+ pyrogram/raw/base/messages/chat_invite_importers.py,sha256=HAPKRMeKlwAwrQYtz4bE6DI9o1OXZlI-ATIGpmoeHU8,1283
727
+ pyrogram/raw/base/messages/chats.py,sha256=50TY-0z54cmWgPdbHW_a5AyPMPkrvGcWjMKJFhuK2aM,1542
728
+ pyrogram/raw/base/messages/checked_history_import_peer.py,sha256=sU-m79p8dRn0V7kIID1FDEnpQc3fck45Urvl5V2vAhQ,1308
729
+ pyrogram/raw/base/messages/dh_config.py,sha256=wIg_JoJCm3sbDutn6n-mxaCMOSWicUF_MybajRpDULI,1299
730
+ pyrogram/raw/base/messages/dialog_filters.py,sha256=y6X7Pua4YRxYaW9t9N3OcdDFcc7Z-5YS7n8BumiuM3U,1247
731
+ pyrogram/raw/base/messages/dialogs.py,sha256=ZQqLnQOzsTwGuccBvtsYqOy8IH4nOMgpkD4wqlS3PXI,1358
732
+ pyrogram/raw/base/messages/discussion_message.py,sha256=QV5y5zaACdRrTat_ckM8aVu5j9lFGZRoa5Wxhz4Gi1w,1271
733
+ pyrogram/raw/base/messages/emoji_groups.py,sha256=5qPwiTN3sJ59S2fvHP3fpJ4fSkWPmHfM9fEyTq1l3JM,1457
734
+ pyrogram/raw/base/messages/exported_chat_invite.py,sha256=SATSlpW4ZUu3bgUQmAAyT9uujfdT_CWf2O86cj5Bw7c,1418
735
+ pyrogram/raw/base/messages/exported_chat_invites.py,sha256=F0Qxva09qXmveY56YA6WYWdoVRJmvx0-fLMbp3IhzHI,1283
736
+ pyrogram/raw/base/messages/faved_stickers.py,sha256=LHeSmnsTz3yS6HPc4jF1d_sOcLbOgavUMM8QqdMKnMA,1339
737
+ pyrogram/raw/base/messages/featured_stickers.py,sha256=FlfpfgyJs-2UzpBrfVmqhURH7dEQCy-wfQlcjLQBxB0,1454
738
+ pyrogram/raw/base/messages/forum_topics.py,sha256=zUuQfET0ZR0_hf_z-3DmUSz9BMCMGjwXp8cAhM5AjdE,1276
739
+ pyrogram/raw/base/messages/found_sticker_sets.py,sha256=T7xVSLKW1QczCl2aqx-K2_hJ39IDCqhFk5eXpDeoQmM,1406
740
+ pyrogram/raw/base/messages/high_scores.py,sha256=0eSGTF5w_AVdA4XHK6ATSN3WQZzvYpXKlU-yQR6zol4,1279
741
+ pyrogram/raw/base/messages/history_import.py,sha256=zkdDmFaKYcISU6CzdfNdIv3zRzOWT_PEF7ar_onXUIc,1248
742
+ pyrogram/raw/base/messages/history_import_parsed.py,sha256=KWXTVexBR-U1mUKeCZ1hXiABp_P0bjQ5w9aQ7Jzc9_A,1279
743
+ pyrogram/raw/base/messages/inactive_chats.py,sha256=4ORlWlO8JbVPqb6zCoMoHU5LEknOiIcMhnDqD-45G8A,1250
744
+ pyrogram/raw/base/messages/invited_users.py,sha256=X1olOGcKkEfyy8MKns9x6OU97kdJA2ukOaJKM1Ej9Sk,1307
745
+ pyrogram/raw/base/messages/message_edit_data.py,sha256=7oXCy5BiX_jUsiYYh0EvSUiuuHyJji_mRyoTh19BGRs,1259
746
+ pyrogram/raw/base/messages/message_reactions_list.py,sha256=gyeeVLL8GXvmnK-w5oxJ4vbuEA_j8v_9aXr3uRLUhKM,1289
747
+ pyrogram/raw/base/messages/message_views.py,sha256=CUFY6Un6t8s73TPub4HEqmkiAnig_1BsU4YnWukfMVo,1242
748
+ pyrogram/raw/base/messages/messages.py,sha256=Fe1I_rvhEM1dDSAN8-0kxKLKswSH4hhq5y5wzlV5498,1954
749
+ pyrogram/raw/base/messages/my_stickers.py,sha256=c2I9dq5nfm64rJAd-WAx6DQnTI2A382c8yDvHJregR0,1229
750
+ pyrogram/raw/base/messages/peer_dialogs.py,sha256=WIobqDKC4ChSnVOqL6Fj_aw8hEApz-m4RsLTP4Il6_M,1274
751
+ pyrogram/raw/base/messages/peer_settings.py,sha256=GOvhdv3BSIOZBICHnJrOvQvsKpmTz3pZqrU74jPWrXk,1241
752
+ pyrogram/raw/base/messages/quick_replies.py,sha256=p8IqaPTQQPIbsKc51Qbl9eb21f2H6mYM2caOk6utSqU,1331
753
+ pyrogram/raw/base/messages/reactions.py,sha256=sy1bdweyo33bn9d0AbKlRZxdq7aYjoMRF-n4Wf2tvu8,1395
754
+ pyrogram/raw/base/messages/recent_stickers.py,sha256=Ot0KQNXwITGrnBQKRmdQMP_HwSIlEDB1433z9F_L40I,1347
755
+ pyrogram/raw/base/messages/saved_dialogs.py,sha256=QV_vWg6H5NsH1LQBUr7-p0u4gUK6aTv4B7agWn4kAs4,1452
756
+ pyrogram/raw/base/messages/saved_gifs.py,sha256=yvAWreh6C5fZMcT99XWwD9rC7vH0kAFgXzS9Qcy__iw,1307
757
+ pyrogram/raw/base/messages/saved_reaction_tags.py,sha256=gduIetfgAAHN4ziUZmNjBEQjXOdpW9_unfmrenkbsv4,1371
758
+ pyrogram/raw/base/messages/search_counter.py,sha256=wcZVmb8gXbY50kjsJt5ZY93aOmAl9oCHOzrNH1S1uYE,1248
759
+ pyrogram/raw/base/messages/search_results_calendar.py,sha256=uW0ocVHvkBunYet-1TGrOtSAC0vE0_nFzsfCNVLTpSM,1295
760
+ pyrogram/raw/base/messages/search_results_positions.py,sha256=0wCqvYjEQpLpGcLl5M_rwPfx0-Rj8pYv80_7Faz-ftg,1301
761
+ pyrogram/raw/base/messages/sent_encrypted_message.py,sha256=JDgWYZUtXsvASGG5v19HRBwa_hEX6q455x8qxVHjz4w,1439
762
+ pyrogram/raw/base/messages/sponsored_messages.py,sha256=qpJ8i7QIFZ7EeM9qRTdKg2-i9c7rdKLJSYKyCVReVjA,1359
763
+ pyrogram/raw/base/messages/sticker_set.py,sha256=ps8ygzrP3gfkrXB1JKXP3i2Sgp4zYZII5V9u-qncEjA,1625
764
+ pyrogram/raw/base/messages/sticker_set_install_result.py,sha256=40E1E6R9cR_AIYD6U-3jXZipVKt5ofj3TlTD-RtQYY8,1416
765
+ pyrogram/raw/base/messages/stickers.py,sha256=GnESgh3H1kshS7-l0ogeOA28y8Wh-D9W5nQUpznF8vA,1299
766
+ pyrogram/raw/base/messages/transcribed_audio.py,sha256=Bys9EFdbccYCpq82p-Z0LWb1t-TtiTYC1NeS7UnGyDE,1261
767
+ pyrogram/raw/base/messages/translated_text.py,sha256=QDgzHV9NSlUWwHAuFo344ARjtfldRVWAZRxDWBmmMzA,1251
768
+ pyrogram/raw/base/messages/votes_list.py,sha256=bAIPNOkE2W1ZzX9z2RwkG3tLJHeEhS-uOpRnS0FSvaE,1223
769
+ pyrogram/raw/base/messages/web_page.py,sha256=8wEMHTRxxaPD6tS5gR_PqBU7cH3ztXdRlZktvR3jdDU,1211
770
+ pyrogram/raw/base/payments/__init__.py,sha256=ez1Rbr8eFT7ZypcwzmkuEUC7aLc9tHtM1YKpdgiGISQ,860
771
+ pyrogram/raw/base/payments/bank_card_data.py,sha256=GIR4l4y7lBkeImVhtcvlzH8nxdli6NRJYyTMW4jSIOo,1241
772
+ pyrogram/raw/base/payments/checked_gift_code.py,sha256=cI8oArmeI1PO1RtOl4b2iIYzImLeGHzDuGwtus6fNag,1254
773
+ pyrogram/raw/base/payments/exported_invoice.py,sha256=wUOANHUBUt1zy56YKGmT7V8RuG4tsaJbXjtx7zEOoaI,1254
774
+ pyrogram/raw/base/payments/giveaway_info.py,sha256=nXBiKdz4JaPUCffVs6ECi7m65tiO9ct_2QBt5p7T6Cg,1323
775
+ pyrogram/raw/base/payments/payment_form.py,sha256=yulcPWysLhQ4rd4yzxFJ7qIo2rOsdIBPStA48DdaQXI,1311
776
+ pyrogram/raw/base/payments/payment_receipt.py,sha256=CrFOvAEGYAeiku0uISCCsXyMyataku7Rx-u4p5mWE6c,1335
777
+ pyrogram/raw/base/payments/payment_result.py,sha256=hoxpLDWzYDccJUMWR7acnpDU-HKk--Llpdd4Kkn6J_M,1376
778
+ pyrogram/raw/base/payments/saved_info.py,sha256=k9x_btxI9jD-bVWvvwOpph-3NNNw9ztwa2RQcyg0EGs,1223
779
+ pyrogram/raw/base/payments/stars_revenue_ads_account_url.py,sha256=yFIh-2k4H1z3pBNIuUbgsYm9lHLkhJ2BhlJcwyq1qro,1319
780
+ pyrogram/raw/base/payments/stars_revenue_stats.py,sha256=K6dH9SlBzwJq8pq92a47VhJFkcIJ5_VsDG5MLn7fpEc,1271
781
+ pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py,sha256=wBc59ZGaZDN0VlUirix73cb5ckuIPw2nP_xXNywJo2M,1319
782
+ pyrogram/raw/base/payments/stars_status.py,sha256=E-0oELd_OznP7HGmSNPbIXnsfLDTidB1nlFV9nh8dyM,1324
783
+ pyrogram/raw/base/payments/validated_requested_info.py,sha256=UmDFVmZ29yDezjcTZRjVszuxhxRvtcp-Z8QqYBBe43w,1297
784
+ pyrogram/raw/base/phone/__init__.py,sha256=Of419_6aMENr1mZsToNfdomh50gedUteqm1kPFjUzN0,589
785
+ pyrogram/raw/base/phone/exported_group_call_invite.py,sha256=Up-zlF0m9eSDrfE7owy_3nugQVex34RBbPRrGp4OH-c,1290
786
+ pyrogram/raw/base/phone/group_call.py,sha256=Ivlv1kgu874arx_FhxahT_2B3-AIOvYgNY4ry8N7iMk,1211
787
+ pyrogram/raw/base/phone/group_call_stream_channels.py,sha256=Yh2dfYL8xKJxx9zhImF3KzQKg30yKGj1sMovYnvhNGg,1295
788
+ pyrogram/raw/base/phone/group_call_stream_rtmp_url.py,sha256=hGNaMlgKYa6xBlyMDir67wFDCQU7c2b51RdCtfBAZTI,1289
789
+ pyrogram/raw/base/phone/group_participants.py,sha256=sKzmXBpUS-9uR1h32IWJ_z8vIoflMn3LZYnPkaotNmw,1259
790
+ pyrogram/raw/base/phone/join_as_peers.py,sha256=DMZ6cu8zcaG94fUY7uXReCLdCQXeW5xCWdwX0Ljy3bY,1227
791
+ pyrogram/raw/base/phone/phone_call.py,sha256=oY9LKFFKGrEoJJrZLdjZPkZO-ZGhIwo_4XimCwQGPcs,1270
792
+ pyrogram/raw/base/photos/__init__.py,sha256=IzuzoZkRdEpg4MzUwzw1-p51ESCVTe48q5miXQVOZQg,293
793
+ pyrogram/raw/base/photos/photo.py,sha256=dKJz_Uvg-lK46hm1yJi4TVE4mCyUKQNcWBpO2abduI4,1285
794
+ pyrogram/raw/base/photos/photos.py,sha256=IGXWgLMGJRcsm9HoFYgXbHjWRiyJ8eZrxw-GiWs9cX0,1263
795
+ pyrogram/raw/base/premium/__init__.py,sha256=TMz_e8iy4liAHwV1SVPtG-j3YxcsqCubN99OrRy5QZo,349
796
+ pyrogram/raw/base/premium/boosts_list.py,sha256=jJqnh9WVNIcrRG2KaWtQCI-ZeAeSkBb0HxhgUMGMRa8,1260
797
+ pyrogram/raw/base/premium/boosts_status.py,sha256=y7YVmMxymVliVJoiH9yEOyC9ObS2OQieHqu4knjQB8Y,1237
798
+ pyrogram/raw/base/premium/my_boosts.py,sha256=7kLxUS8ddpbOij0EmfkMKmeaq3_-PeKckQSbvo85YS0,1245
799
+ pyrogram/raw/base/smsjobs/__init__.py,sha256=wWrVfkb0jhqgQPzHnJkZd3RU6eRReD6hk90qGYgIwf4,319
800
+ pyrogram/raw/base/smsjobs/eligibility_to_join.py,sha256=b9YvE3l23bv_464r28muHS5I2i8chZnPpctJLrEgmxE,1257
801
+ pyrogram/raw/base/smsjobs/status.py,sha256=jNcKpbpw15tmx70IiYy6n4ewwpZrkD1s3PvP6-nbnC0,1201
802
+ pyrogram/raw/base/stats/__init__.py,sha256=VlpfIcXnPWyeiBrPBCiK59RhdSZciNaVplM8I9S4Pvg,657
803
+ pyrogram/raw/base/stats/broadcast_revenue_stats.py,sha256=Ar_sEnCU1_SwdImtmZwTWARU9j9opAoWXkio8tG5aYI,1283
804
+ pyrogram/raw/base/stats/broadcast_revenue_transactions.py,sha256=bXQ3Mu3Rf8iksel5sejdPdNqWk-4igm41rwefRr4s7c,1325
805
+ pyrogram/raw/base/stats/broadcast_revenue_withdrawal_url.py,sha256=S13VAGOj3rJwn2XCAwIs335o_rcjHozQ1KAvmcrd_sI,1331
806
+ pyrogram/raw/base/stats/broadcast_stats.py,sha256=DJ5zXMn98uNypMUOaWM8q_ny60VsWgBQJaMV9lrfqnA,1241
807
+ pyrogram/raw/base/stats/megagroup_stats.py,sha256=7I0GbyJM9nSyAsikbx5TMTa4VSEyY94t_Ix04PU5gv4,1241
808
+ pyrogram/raw/base/stats/message_stats.py,sha256=McY-J3pXLeowRzw4JbcWRkOd2Q1fhpbEmBgOq7mUdfE,1229
809
+ pyrogram/raw/base/stats/public_forwards.py,sha256=5A9MEqFz6TYJvPZZwnvAMGBNz4r52WQq4tVwSJ6RbrI,1290
810
+ pyrogram/raw/base/stats/story_stats.py,sha256=6u3VMfCI07CZ9wm_duVtWvThWcc5sTSINsYLeWl4uqI,1217
811
+ pyrogram/raw/base/stickers/__init__.py,sha256=m97KHCZp0H6EwNRzs9UNgOoGfqMyqW1pkIdtWf3gGsc,294
812
+ pyrogram/raw/base/stickers/suggested_short_name.py,sha256=EHVeG2Cxb9y_6au1sbClctC3aYo-zNGkt9fltdnxwKk,1272
813
+ pyrogram/raw/base/storage/__init__.py,sha256=UqIpBDE1gbXoZQ2WqWWqbM9RTyYJ_Cnm6Ky0w-sG9jg,273
814
+ pyrogram/raw/base/storage/file_type.py,sha256=puXQdA4zEhKkTUeBROsTlOm2nfMzW9kgw-Ifz05k1TA,1524
815
+ pyrogram/raw/base/stories/__init__.py,sha256=eBkp2yZZwIYn-DHKCZ7hzd6VG9rnlo70iTuWA_l7O3Y,518
816
+ pyrogram/raw/base/stories/all_stories.py,sha256=K0gRixDyjzseJW0RmX6cS6wBweCX6HLPrXpXQAbCZKw,1309
817
+ pyrogram/raw/base/stories/found_stories.py,sha256=PlqELfz0GoboQDpR27r5Qyls1HsgqQfEFwJn9xInPJs,1233
818
+ pyrogram/raw/base/stories/peer_stories.py,sha256=VQ1I0LnbUT6Yz_0NlFSCU1HhmmOHS2tg3cIy2HLrMLw,1231
819
+ pyrogram/raw/base/stories/stories.py,sha256=yPKVorwjen6rCs2tKjaCqtpC9zMoiGBvBsLl0X8Tdn4,1287
820
+ pyrogram/raw/base/stories/story_reactions_list.py,sha256=u1ODdFy-OYChUL9oIMaiUxaPcP1P3XRZRAkoVVVLfHs,1273
821
+ pyrogram/raw/base/stories/story_views.py,sha256=64cV8NcPXBToU4zamEqPqPyc-qBpaPhfBs1-rwXmanY,1227
822
+ pyrogram/raw/base/stories/story_views_list.py,sha256=ZG09iMlTSuAVdKEEy6lH0wSooAhVU7HNK-pKsDr_q3g,1249
823
+ pyrogram/raw/base/updates/__init__.py,sha256=TotRWSPfKkd6HQINvoR9Up6LZAJUje8RQKFEaeMso58,351
824
+ pyrogram/raw/base/updates/channel_difference.py,sha256=cUZWIFN1_6EXX1U0DjMq_NcFLfgKg9TkyDnQ_IGeDh8,1442
825
+ pyrogram/raw/base/updates/difference.py,sha256=qaut-VCD4-t6f3Fk1-Kf1zGClJ4mbOfRMGRms3Q_CHA,1443
826
+ pyrogram/raw/base/updates/state.py,sha256=sT1Xzt7RewaJYp8-ZAjdsi22Vxct5JF2R8SOPxDE5fg,1195
827
+ pyrogram/raw/base/upload/__init__.py,sha256=ZEzgF5lSgCd24_UNSaeW3q_-DcgS1kG_FGx_X6e_gYU,324
828
+ pyrogram/raw/base/upload/cdn_file.py,sha256=-Ig6ymHlnnoLDPVaZxm_uElLv3iyOub1jtzOgi3fJs8,1285
829
+ pyrogram/raw/base/upload/file.py,sha256=kikWsVK5dIGQ8E4Kt4jXQcnPk4rzvsNTwDKwCxI6UhI,1255
830
+ pyrogram/raw/base/upload/web_file.py,sha256=jpl_13W-NhhmPkaITHf-LX6nUEnyWq3Yh_X89nKRR28,1203
831
+ pyrogram/raw/base/users/__init__.py,sha256=Hhw2iuFmcwt1Po5Xrp6J0CLnao-sbQiu903ZRqwOFE4,273
832
+ pyrogram/raw/base/users/user_full.py,sha256=kcodSa4Grd4l2Y-sVTgr0MfuuBHgitaqNWF7Ebvqv70,1205
833
+ pyrogram/raw/core/__init__.py,sha256=IE8mravGGf3Sg348V5AU8T5vMRre5S1iLwkp4Laxc5M,493
834
+ pyrogram/raw/core/future_salt.py,sha256=ybNuukhQnyMUJ-Kw_Qb0IeULMvthooLVlBaZsarcznQ,873
835
+ pyrogram/raw/core/future_salts.py,sha256=UzuVbSBAqfdGXpjN2ke7bA9Suo8k25N4O0NmJKdNzO8,1072
836
+ pyrogram/raw/core/gzip_packed.py,sha256=tY9LqevGeIGPi1YMjmGmk68fF0x7PIAktP1kGCMdPi8,924
837
+ pyrogram/raw/core/list.py,sha256=A8IIuLewn_Sf9TEmWKDEM5b1f-QoyoMtnjUUBbnHfTI,229
838
+ pyrogram/raw/core/message.py,sha256=eulOWTPIAtYK0pN1TBpDkS1dKuKj22fT4ze-Nmlqrhs,952
839
+ pyrogram/raw/core/msg_container.py,sha256=ZhIpvibOolvqk4KTjZg4vxlU27F12e3l7CEl9hUFGXA,795
840
+ pyrogram/raw/core/tl_object.py,sha256=to_PnrMm7JP985a4xQbhscZ38QSolCYri7fTCnZl_mw,1676
841
+ pyrogram/raw/core/primitives/__init__.py,sha256=VwXgsxDqwsl-TsbMifTGa_wW0G1sR7hQusNlk7TDguU,193
842
+ pyrogram/raw/core/primitives/bool.py,sha256=5HSOCzmKBxiU-N7hWANPFGXPgfYX7xiPEphC-c5WaY4,646
843
+ pyrogram/raw/core/primitives/bytes.py,sha256=lMsDG7VsC8Y75sQd60R0fkcNmxxpbqKgEcuv6E2kXK4,924
844
+ pyrogram/raw/core/primitives/double.py,sha256=PEFsZRQJN-QRC9WnXfhtQTcvbGn2nXYhaHwaOUTjuDk,358
845
+ pyrogram/raw/core/primitives/int.py,sha256=eMk0Ulj8KFbhgHk9S3O94P6Pw7dFMAytDJUe5QAiCHQ,523
846
+ pyrogram/raw/core/primitives/string.py,sha256=DaIMwBJT-GdWU_xdAce6oL6NcEfOtEXgzBytf-UkNr4,343
847
+ pyrogram/raw/core/primitives/vector.py,sha256=W28DRvEJOTZj-oLx4N9URnv9F7XKW0xaqJmPt4eEbOo,1320
848
+ pyrogram/raw/functions/__init__.py,sha256=jJZxzjo2_JATxH8go0tLlkxQNCB6Drp1_2QFCf4QbX0,1425
849
+ pyrogram/raw/functions/destroy_auth_key.py,sha256=e54HePYkKUOE5iVnNTlULyakEE8vnfMsuhsrK1l38f8,1191
850
+ pyrogram/raw/functions/destroy_session.py,sha256=xVWbB5sCDkyUbUnHEVpHlSD2C9v6J23kA4aO2VKbhxc,1392
851
+ pyrogram/raw/functions/get_future_salts.py,sha256=PqMsVyZGwK-xZYtERFsBMoj660zP3P5Xi45e_fIZJ1s,1314
852
+ pyrogram/raw/functions/init_connection.py,sha256=QQGcIXPOHsv8NlwPGaNKcDV7EjJeY2OoqDPixXxRbMs,4044
853
+ pyrogram/raw/functions/invoke_after_msg.py,sha256=odVtmDnN0MdgLU9kK5UbtVMoTWc2HhSMjzePFcMFNak,1578
854
+ pyrogram/raw/functions/invoke_after_msgs.py,sha256=CDq-MIQTQ1aeotQ4Hwtmu-aFiqCkbnZ4LCHYy1nVaw8,1631
855
+ pyrogram/raw/functions/invoke_with_apns_secret.py,sha256=_Gh0eylljR85P20DsTtw0RD59WTqvavN8UuTpfGfJTs,1795
856
+ pyrogram/raw/functions/invoke_with_business_connection.py,sha256=6Br6EA2IOL_iDpO6i_DBiV0vAaognCB205BPqkzd2KM,1692
857
+ pyrogram/raw/functions/invoke_with_google_play_integrity.py,sha256=1TKs5q6anMvTZ3XVyL0ECMC_MhC1iSOuOHsctouWLqE,1822
858
+ pyrogram/raw/functions/invoke_with_layer.py,sha256=K4LEp49UwvQme96zOSyPaEpetg8zdSyxDxy92zqUU0M,1570
859
+ pyrogram/raw/functions/invoke_with_messages_range.py,sha256=SdtKpsfHeA2RssZXudJDZ4Z-8qgLKx_Z5GAfhcAtINQ,1673
860
+ pyrogram/raw/functions/invoke_with_takeout.py,sha256=n_6aytwRPn3i4ueoEmFAwyh9CBLDvwo0p6ZeJ6TmUH0,1626
861
+ pyrogram/raw/functions/invoke_without_updates.py,sha256=BiyUqenXyzsEuNwACjnZPHACzaXwuYUOz51t1bC-gZc,1390
862
+ pyrogram/raw/functions/ping.py,sha256=MkfSm5W5QkQaTGnrKuVAci4FxZMFviJEtHo5t0cHos4,1299
863
+ pyrogram/raw/functions/ping_delay_disconnect.py,sha256=197HgqIOylUimleAGksmw9kuoxU70hDtVZdXBdSRWA8,1658
864
+ pyrogram/raw/functions/req_dh_params.py,sha256=GbAibQrpShDhVciQnb8SA4Bdjq7ZFxHcNLx52TJBVpM,2571
865
+ pyrogram/raw/functions/req_pq.py,sha256=GPI01p-sqyWULF6r9xijWlNH9cRWcn_rO2VFUK21XYo,1294
866
+ pyrogram/raw/functions/req_pq_multi.py,sha256=nywlw32j4Vkp-2I6LBH--uW-PxZJQgmMALZCy4QkIwg,1314
867
+ pyrogram/raw/functions/rpc_drop_answer.py,sha256=EStcyxzJ8n8GAICL32UGJCPii2ufbbKiKLKOtJn1SVQ,1380
868
+ pyrogram/raw/functions/set_client_dh_params.py,sha256=13p8REKzdUDbYVmqgrwJ05T5ZmuZDOfwA-41haNHzd0,1931
869
+ pyrogram/raw/functions/account/__init__.py,sha256=or1JDl7biIbe9cWak02YAj7ZwDnBsGR5_SRJCIDprUI,6226
870
+ pyrogram/raw/functions/account/accept_authorization.py,sha256=jwCyi0ESMRrKwo9DS-_oFUauwBzGWk0x2hwYjLRfYAk,2520
871
+ pyrogram/raw/functions/account/cancel_password_email.py,sha256=CP-MOcVoOsNVw-kskVvy7qxpZpjNOxWSHOeGdJMxVsw,1165
872
+ pyrogram/raw/functions/account/change_authorization_settings.py,sha256=49i_oVFiMbNjd8GOfhIAF3epOP0RExoy_hiZNLXpIIY,2803
873
+ pyrogram/raw/functions/account/change_phone.py,sha256=ewTAQlo9jFFv0K1PfHCI6nCwOLeA66fvc39YAzfDZ2c,1906
874
+ pyrogram/raw/functions/account/check_username.py,sha256=G_AENs2j84UDyUS-iYgZ3wlBIpTNfQzH_qZLh8AvSuc,1319
875
+ pyrogram/raw/functions/account/clear_recent_emoji_statuses.py,sha256=S0uqUiSUaVcR-gW2tZ_TLCsrA1znzcLxO5qs0uOpfkE,1185
876
+ pyrogram/raw/functions/account/confirm_password_email.py,sha256=TyOiuVAmR_K1AsD1gg7iV_S55RBQZojIAI11BQZ47aY,1311
877
+ pyrogram/raw/functions/account/confirm_phone.py,sha256=PSAbCGlji8EDQ92XC8TMBlnvsJKtIp20vRdgF-2ui2Y,1621
878
+ pyrogram/raw/functions/account/create_business_chat_link.py,sha256=UdUoc3P8tcxvKKCN2N-lmAKYGJhp_hYPQrGZ_Dc4g20,1480
879
+ pyrogram/raw/functions/account/create_theme.py,sha256=-MVHKhq4RojkKhQqUVwuxX8PFxbdhhiY_wTumOpcjIs,2512
880
+ pyrogram/raw/functions/account/decline_password_reset.py,sha256=UvE58KnAux6M5h7RGzJSUyPA3pTI90EREgUvnIF4_vU,1169
881
+ pyrogram/raw/functions/account/delete_account.py,sha256=q1-3w1prsQUuqaYvpy3CyUMft_r-4saHSWKMMhUskzg,1841
882
+ pyrogram/raw/functions/account/delete_auto_save_exceptions.py,sha256=W7dAzjlvyXo1zwc2sUMw0KgbKQN_obMKtYMUCVyLJg8,1185
883
+ pyrogram/raw/functions/account/delete_business_chat_link.py,sha256=YqmOj-Or38goaFF2WD6m2fFmAD7RZDYjA4uJ4dXhvzs,1319
884
+ pyrogram/raw/functions/account/delete_secure_value.py,sha256=_4Brd8WUXygznvj1xXNJ9ZltOaIlF2njslU9h9X11Mk,1415
885
+ pyrogram/raw/functions/account/disable_peer_connected_bot.py,sha256=ZR0whlF9MZ45J-SrXqDFC2L9YJj6_2y4oHlKWY13RYI,1384
886
+ pyrogram/raw/functions/account/edit_business_chat_link.py,sha256=_qEFky56LLcEb_PblGKrYIRT8lntOCVQMx01D4u-wBU,1661
887
+ pyrogram/raw/functions/account/finish_takeout_session.py,sha256=k0vrpsOdbISlEMPgqD3cCfCSEI45BHfizVEpHeKnP8Y,1434
888
+ pyrogram/raw/functions/account/get_account_ttl.py,sha256=Rlf6FLmrrAvyOrMcX7VDug_cWSzzAhGXE8cGb9rR0M8,1187
889
+ pyrogram/raw/functions/account/get_all_secure_values.py,sha256=EX9_U55XTuhnPaCg3tbQ_xn3P1vSXzAkdzSLHpLbTLU,1211
890
+ pyrogram/raw/functions/account/get_authorization_form.py,sha256=GT6R2L7xQykErtzZC4FMgcHwdOfp-cSGKuBBB3QxYQI,1845
891
+ pyrogram/raw/functions/account/get_authorizations.py,sha256=C9vena-ROcKD-dLfFA9t2Vy4Clyhbs9OiQLRi6Ou3Ig,1221
892
+ pyrogram/raw/functions/account/get_auto_download_settings.py,sha256=VhljE-9xs2n268ojhS42yOYoEemu-JrFUEDvqGjhPBk,1257
893
+ pyrogram/raw/functions/account/get_auto_save_settings.py,sha256=qWeIiuJyhUKE4R_G_BLhZvTpgj6rN7_oSXtEuLOwLlo,1233
894
+ pyrogram/raw/functions/account/get_bot_business_connection.py,sha256=clNwfPFW7nVxXuawodNrR1_MdEOTg9c7ysYoPewqYHg,1442
895
+ pyrogram/raw/functions/account/get_business_chat_links.py,sha256=0Mj-zVPxS5XlJt_09KUfBKIoWrqU8e1TtfdWtkDPXdM,1239
896
+ pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py,sha256=2oAr8LfXO7ohiathtb5sdzrKZp3BeX84BBN-j0ccHnM,1418
897
+ pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py,sha256=d00n5d6FkuLfSnBKiMAjtEW_MBkB6U8P5MFUdMZlVro,1402
898
+ pyrogram/raw/functions/account/get_chat_themes.py,sha256=K5S5_mCq9KqMl9an1z6P43SNOqYQR0QhbRzjO4jVZR0,1336
899
+ pyrogram/raw/functions/account/get_connected_bots.py,sha256=HgD5AO1HvYMGraqZSw702xv4g9uueLmWh6X0fOxyOqE,1215
900
+ pyrogram/raw/functions/account/get_contact_sign_up_notification.py,sha256=qIp67jNKYFDchN7mlWqCPMw3vVVTuv-aUs8UgUxatWU,1201
901
+ pyrogram/raw/functions/account/get_content_settings.py,sha256=uHjZ2DKFrgd-s771jKLrXadVGoDjQT4B1wcCuuNl8KM,1227
902
+ pyrogram/raw/functions/account/get_default_background_emojis.py,sha256=TxIN04BZcT424gGUWQNKzDCKTl3Da2_B6PnJ3nIIX-I,1378
903
+ pyrogram/raw/functions/account/get_default_emoji_statuses.py,sha256=gEUbUMO3EAcMd3xGQwcdeLIf3f0wCYHyMV8wKaBHWfw,1390
904
+ pyrogram/raw/functions/account/get_default_group_photo_emojis.py,sha256=84VBwjdSPQYIMN_09MwAMUGR7yocZUBo9IDCadWbX2I,1378
905
+ pyrogram/raw/functions/account/get_default_profile_photo_emojis.py,sha256=vNKDySl3ApexHoW7kBfC2lYcLNwLzJ5KBYSdNb7abCs,1386
906
+ pyrogram/raw/functions/account/get_global_privacy_settings.py,sha256=OIeewfvi0W-4Bzpm1U1dM0OhW2jyzt3QBDX6fhL_8_Q,1247
907
+ pyrogram/raw/functions/account/get_multi_wall_papers.py,sha256=P01MItM8qqL6ycrKj_XtwMi_k8w2WMwKe7nEge-pn7A,1506
908
+ pyrogram/raw/functions/account/get_notify_exceptions.py,sha256=LDAQ8EjEc6sNuD2lhEg5nCn6X7ncp4OHBlzfCiANqjs,2284
909
+ pyrogram/raw/functions/account/get_notify_settings.py,sha256=LGyaiiHHG4RsEk95IOr644Yow5S7A5raQmNoA23UkFo,1440
910
+ pyrogram/raw/functions/account/get_password.py,sha256=zHPcvyYGhIwL3KzVQ4X8xUl6M8P3HCyyInl0muwS1rY,1185
911
+ pyrogram/raw/functions/account/get_password_settings.py,sha256=QCtfHMOdC75KC46WQ0lzCaNGYxCwM95mCPkkVer8b2g,1520
912
+ pyrogram/raw/functions/account/get_privacy.py,sha256=yi1LAevJLZHCroGaJPPnu5YahpBZLC4OlA_k-TnuPuc,1407
913
+ pyrogram/raw/functions/account/get_reactions_notify_settings.py,sha256=9OkBVL-nsLYg0aNP0k3EI6qaEd_OhM41geJzj7ehR28,1257
914
+ pyrogram/raw/functions/account/get_recent_emoji_statuses.py,sha256=IO9dwaHxejigPNc0cNNGv92p4C88puip1ANW1mYSZtw,1384
915
+ pyrogram/raw/functions/account/get_saved_ringtones.py,sha256=zpMwHT1H_pnNXVUQCxWyhkeJFbiPMpaPfGoIEEGANUg,1368
916
+ pyrogram/raw/functions/account/get_secure_value.py,sha256=_nds50ljmTNb3fV0Sr-7cedULAGDINOo0VjoAHaDdek,1453
917
+ pyrogram/raw/functions/account/get_theme.py,sha256=NGA8RTD0AF_XvlaXhxF0Xbqizxlfu0Gk_YHj5H2DXEs,1574
918
+ pyrogram/raw/functions/account/get_themes.py,sha256=29uDMKggmPElkTI0CiKpYzPXjzxQo344_UxCzTuisHg,1527
919
+ pyrogram/raw/functions/account/get_tmp_password.py,sha256=RIfRmFXSxr0IpxWNrF7goxAmo79iOY3T3x33H_5ct3k,1699
920
+ pyrogram/raw/functions/account/get_wall_paper.py,sha256=UFgwpKBsVrDesylofHsE8YDUzaHBxCzJh3dOMlqR6ic,1443
921
+ pyrogram/raw/functions/account/get_wall_papers.py,sha256=YhE3a2KdLiGeYELfb6LB14NZ8lCDnVGgA6ZuL1qvLo8,1342
922
+ pyrogram/raw/functions/account/get_web_authorizations.py,sha256=5wnRxxegciAdwLaId5TWsTGER2jfQgoCKGq9cMKmPWo,1239
923
+ pyrogram/raw/functions/account/init_takeout_session.py,sha256=DVB2uUlxkttLZFMI3QtFoPDHIxjfw2_nSfs2G931dmU,3537
924
+ pyrogram/raw/functions/account/install_theme.py,sha256=zBMXsjSHnxaBm6O53ytCrb72LReT9nJwbD3HOjukt5w,2627
925
+ pyrogram/raw/functions/account/install_wall_paper.py,sha256=YyvCyGI4no0Zec0Iumf45-zs_mLvAcWMhwnXh6AYqfM,1739
926
+ pyrogram/raw/functions/account/invalidate_sign_in_codes.py,sha256=V5KEyQymcBH_PxddE8ophOh895Ay0-ypyCApZ3UrKPI,1364
927
+ pyrogram/raw/functions/account/register_device.py,sha256=K1og3fA3swY2HmV5T45IlPNcdX-cetIZg4jJ-g2LZK4,2606
928
+ pyrogram/raw/functions/account/reorder_usernames.py,sha256=3lQ02RioirhXPlUtodZkE8DMEvIDofNw7NSLu7ILVu4,1344
929
+ pyrogram/raw/functions/account/report_peer.py,sha256=XTVs6YDG2yExnny8obE_-VaKbsKxec2tmh-607JjlBU,1828
930
+ pyrogram/raw/functions/account/report_profile_photo.py,sha256=K2XZAt3vquUkUVQMDcF3xsyf99OkCsFK4BCapdelRQs,2150
931
+ pyrogram/raw/functions/account/resend_password_email.py,sha256=OhnzGq1Ver_Baj1wfX2hsvSZbE3Wt0VXuaQ-kM8i2R8,1165
932
+ pyrogram/raw/functions/account/reset_authorization.py,sha256=sliX3NuZ9PImUfAOq7pjAkKFvJ5SrquTLb24hNepKIE,1308
933
+ pyrogram/raw/functions/account/reset_notify_settings.py,sha256=yfgEyD4zIb3t7vflkW0BGK_Gq_nyGNSoKUpW7B3nVgw,1165
934
+ pyrogram/raw/functions/account/reset_password.py,sha256=_ryBK9mDh4ZJivDQU3ePWHYQpLpuNCBNKpUftblBQoI,1215
935
+ pyrogram/raw/functions/account/reset_wall_papers.py,sha256=5zUYlBRarujWE5h8siiayjyuCfR3hAYmUZqBsujfna8,1149
936
+ pyrogram/raw/functions/account/reset_web_authorization.py,sha256=fNLkbMI2MOtjj3oJgPO8opUeXUMwuLkYTEdICh5ml_4,1320
937
+ pyrogram/raw/functions/account/reset_web_authorizations.py,sha256=hYtAMGABs67PQcIkYy7HRhuDgWc7oblnfB0KsRZgBrs,1177
938
+ pyrogram/raw/functions/account/resolve_business_chat_link.py,sha256=NUhbGucfwmRh5jxV7UHijf-QRHs6_gt7p0HvUrJfLdQ,1409
939
+ pyrogram/raw/functions/account/save_auto_download_settings.py,sha256=0Tzt3aPsCZVy7l-30t4fZLfYVvNSRj3GXmLXq4pShj0,1984
940
+ pyrogram/raw/functions/account/save_auto_save_settings.py,sha256=aVf3xBj7Byi35v7OkbGlPA5PFk3o2BtzTydQNGhf-0A,2676
941
+ pyrogram/raw/functions/account/save_ringtone.py,sha256=Rfn7KyX3GJ_LPMR1Ob_jEy3HVr3MsPVoOJRxRyb_U7w,1603
942
+ pyrogram/raw/functions/account/save_secure_value.py,sha256=eamHU1sgnyAxrCNNr059gMBb09EvGm9YngcW3OCgU_c,1733
943
+ pyrogram/raw/functions/account/save_theme.py,sha256=Ne0_GG46CY3MKMPAC8xWiivNiHcy3ubtgeUIdMVRE4w,1544
944
+ pyrogram/raw/functions/account/save_wall_paper.py,sha256=D_liJG2cVSzu2CdNQRFOtt2Zvc6JTP6oSG7OMqCZ6bI,1930
945
+ pyrogram/raw/functions/account/send_change_phone_code.py,sha256=sfEutNdmGOE_BXD1Goz9_vhnt_o1tX3uMNxzIh6jscY,1723
946
+ pyrogram/raw/functions/account/send_confirm_phone_code.py,sha256=nQ4efWJBvLlmtS3heNu-eT8ct8j1zPIRb1Z2XIDzJe0,1655
947
+ pyrogram/raw/functions/account/send_verify_email_code.py,sha256=_xXG-sJBwOq4b5-6i2wYPOyRm-lbsshI2Keo-ZuY8ME,1691
948
+ pyrogram/raw/functions/account/send_verify_phone_code.py,sha256=oeLhUFUkwrxTq9oe9oTCidasaW4k3OzDUetA9PA5feQ,1723
949
+ pyrogram/raw/functions/account/set_account_ttl.py,sha256=C2BG9G-4CDXSoNEwIVw9Bm3pbJ6TswXFnjlmfPG-Dt0,1355
950
+ pyrogram/raw/functions/account/set_authorization_ttl.py,sha256=zpXmc8TpxUa8tRCyA9nDMmZpUetldTbdUtDV9q_lETI,1471
951
+ pyrogram/raw/functions/account/set_contact_sign_up_notification.py,sha256=3x4w8_kuSIQ7xyRFdU4RYCRTO0-oKwBU0pnQZdHpjpg,1357
952
+ pyrogram/raw/functions/account/set_content_settings.py,sha256=F2Hg1FlF5LO1bkDetwnKHWkD9TxiT2R3wyLxqK-9dGw,1516
953
+ pyrogram/raw/functions/account/set_global_privacy_settings.py,sha256=l70jU55sOcm6Od_fg1GMyYnFBoQjWgwF4C8bkCDk3Og,1534
954
+ pyrogram/raw/functions/account/set_privacy.py,sha256=og4e0sL-BwiCpO5dxe69wwSbWTex5lqbK5KCulHJSZc,1716
955
+ pyrogram/raw/functions/account/set_reactions_notify_settings.py,sha256=LF301vDWTwzbD79i9VgmThUqvsTTn7A2cZf4P9OzqP4,1554
956
+ pyrogram/raw/functions/account/toggle_connected_bot_paused.py,sha256=9c0J4-knIqVTELo_DICXzX_2uV6HfMJT4ymgf4TMRRk,1591
957
+ pyrogram/raw/functions/account/toggle_sponsored_messages.py,sha256=FxeW_ju8JfpE1yAea1tNAgO3jng4SKoF4JBmHHovNzM,1346
958
+ pyrogram/raw/functions/account/toggle_username.py,sha256=kDYk_qqt2f1cy9dLptjEoJS-PBhvosGLjoUg_edHxYc,1526
959
+ pyrogram/raw/functions/account/unregister_device.py,sha256=ckejb_1TiTLsPNlzJoAlZVlWcNRFGb4g0tPpfY9MiuA,1837
960
+ pyrogram/raw/functions/account/update_birthday.py,sha256=4HLDPNkuSxSfCc3qQzLas9BlnKKLyy1Ia5Ao6aSjn0k,1586
961
+ pyrogram/raw/functions/account/update_business_away_message.py,sha256=rhzu8aAKJYwqP4J-Odv_8h052qMR98rMNr_rdFjOjBc,1683
962
+ pyrogram/raw/functions/account/update_business_greeting_message.py,sha256=GbmfNlLJMbg0A3qf5rucdAktVmBuiFNe6AbEE4-5k7Q,1715
963
+ pyrogram/raw/functions/account/update_business_intro.py,sha256=F4d7TDxRUiaM8VwjZONZTdHYU3Br7k9tAP_XrCla7zE,1613
964
+ pyrogram/raw/functions/account/update_business_location.py,sha256=I0gx8wujFTswttRiNBKJSnfLro8wRdiw2a_UjOV5G7c,2025
965
+ pyrogram/raw/functions/account/update_business_work_hours.py,sha256=kKoi2pxII-JijB1bqR1rCImC4xudf-Za-v2KtWsBSRA,1779
966
+ pyrogram/raw/functions/account/update_color.py,sha256=6Tvtg31mt7SpuyjfO5jGD-O0E4Ue8e7SDmxC9083gt0,2303
967
+ pyrogram/raw/functions/account/update_connected_bot.py,sha256=BZgDlJeu-hx-BAA3HDamSmRinaJLmEVl5bz3cn7S_Y0,2358
968
+ pyrogram/raw/functions/account/update_device_locked.py,sha256=ZmMEAKilucU47AjJ8BcBxsIKePUuCvqfKjMB0Nyb8hQ,1323
969
+ pyrogram/raw/functions/account/update_emoji_status.py,sha256=ewFEEKmWkDtZYYwyVYVmVkyTrPIbRgsSdtF9qA4WQg8,1440
970
+ pyrogram/raw/functions/account/update_notify_settings.py,sha256=rhC8Zq3ceOVZDapw0XpAiD66zHj4yypIo2fQMp6bbKQ,1738
971
+ pyrogram/raw/functions/account/update_password_settings.py,sha256=t5p8idKE_KyxUUks7MILAgxuLFWq926RoxE7qvuZ43U,1866
972
+ pyrogram/raw/functions/account/update_personal_channel.py,sha256=Ao1aIKJoUNJvPkGY4NNptzP6v4CciuG52SOkoM8lwIk,1415
973
+ pyrogram/raw/functions/account/update_profile.py,sha256=4d5ItVIYIwY_azFsEwjaMPUzbv6Hy1Y_REpVOPmD4mA,2328
974
+ pyrogram/raw/functions/account/update_status.py,sha256=L7czuQ7P_WrzJGTR6WTrH05oeWsxQ9T3txV_YN0icic,1302
975
+ pyrogram/raw/functions/account/update_theme.py,sha256=_CqZHGpEawXUMLbEslg2kQh_73auzIr4XG_tN0A9KU8,3292
976
+ pyrogram/raw/functions/account/update_username.py,sha256=RF_tpOWw9WQhU3vJIc9r0zdxMThAr9pc90D53bWa1kM,1351
977
+ pyrogram/raw/functions/account/upload_ringtone.py,sha256=L6XoSk1irbzKWIFHM-p88cmPxN5S56xneJ2uu7_gT3E,1852
978
+ pyrogram/raw/functions/account/upload_theme.py,sha256=T8zGLWsto6YPcb5lJyZ8annLwuiskMYbn5UkumE0dP0,2299
979
+ pyrogram/raw/functions/account/upload_wall_paper.py,sha256=D_uR9lVyX3e9l_enxgH4XvDz32C0StnTZZMFm0OBj5o,2263
980
+ pyrogram/raw/functions/account/verify_email.py,sha256=JKQGmvAX8gEsT_CNlCxtzqpVxV5YblbzKpjl4SsUwf0,1813
981
+ pyrogram/raw/functions/account/verify_phone.py,sha256=KvgXm1r84mPD3IXi9Tv8RGN-UL8Lbupff5TPkinW4WE,1878
982
+ pyrogram/raw/functions/auth/__init__.py,sha256=eVkrAQf4S6SXcGypS5y8NTnqGdacloiZV-uETDDNeKE,1330
983
+ pyrogram/raw/functions/auth/accept_login_token.py,sha256=WGH6iz6lenN3WZXXsURypRRCu8hn4DJrI57cu3GnkJQ,1348
984
+ pyrogram/raw/functions/auth/bind_temp_auth_key.py,sha256=Als-osN1MmYcSLJ9fQBXVtJLxPICw_3tPufi_WGClnI,2156
985
+ pyrogram/raw/functions/auth/cancel_code.py,sha256=oXkp4_rKYFLe7cXp2mvd6NGkYOJQta46kiSvEFNU2OU,1628
986
+ pyrogram/raw/functions/auth/check_password.py,sha256=D3P6pjECulSQMbQZIAnauElt0PfVcdVAYK9ip6uU3fk,1481
987
+ pyrogram/raw/functions/auth/check_recovery_password.py,sha256=qivbQ7fnokMqDbXF8QXa40Faw_7numZIk5ZAV_6sux4,1310
988
+ pyrogram/raw/functions/auth/drop_temp_auth_keys.py,sha256=SX2HvxDRcuoe27DXW0g9jVe3PmfskU-KXA3hkCJ4FFU,1445
989
+ pyrogram/raw/functions/auth/export_authorization.py,sha256=CqSB38vXwoZ22SgfVxxL53MH8K3VXRXMpZm1vMT6rOo,1387
990
+ pyrogram/raw/functions/auth/export_login_token.py,sha256=SNYvuVEn4Nffu7F7DlrHfB_S_GzxsZdb_cyWDgErxeA,1875
991
+ pyrogram/raw/functions/auth/import_authorization.py,sha256=vESDtmKHeTx2ER8Z90y4mXSa2w2l6kvakAjgtn1acTw,1546
992
+ pyrogram/raw/functions/auth/import_bot_authorization.py,sha256=Lb-PY278dBU19TFwpP5JOtxamzdvJlyyi66fz3jHHZM,2096
993
+ pyrogram/raw/functions/auth/import_login_token.py,sha256=64xyjc0IlYfZQ3P-YkIGobU2dJy4E8LUMphAHUUhu7E,1352
994
+ pyrogram/raw/functions/auth/import_web_token_authorization.py,sha256=Ekb1tFXjm_3a7emlN0_DBWkVgACqEqxQcfdhFQvbLIo,1916
995
+ pyrogram/raw/functions/auth/log_out.py,sha256=bF4IqT61muAlwzzeaBYkoW73VRAGqn5JMTCXffEL-ZE,1158
996
+ pyrogram/raw/functions/auth/recover_password.py,sha256=qT0d8es8UgsGG0gyYSbrBf4zn0_nzfi2ELQMBrDqc5w,1960
997
+ pyrogram/raw/functions/auth/report_missing_code.py,sha256=2KfRwClC51Ao_8iYeV80_1nl5GcFiHrpVSDc2B9hrOs,1836
998
+ pyrogram/raw/functions/auth/request_firebase_sms.py,sha256=4pTpV08k_ILhArr7o-Mr8WEsjhxz6bRzHnL1L2gysjc,3163
999
+ pyrogram/raw/functions/auth/request_password_recovery.py,sha256=lspb9N_Tz0jSOS4XAJQa2sUoEusKNMpER1jkb3xDGx8,1240
1000
+ pyrogram/raw/functions/auth/resend_code.py,sha256=rStEleYYK2Ya5egAUmamqrVMFoa21JijnLzBkBr-JHg,2084
1001
+ pyrogram/raw/functions/auth/reset_authorizations.py,sha256=_pQeVPJgvHVxUNlhm9zGQMqJPKXNFXRNkv4YiXITM-I,1162
1002
+ pyrogram/raw/functions/auth/reset_login_email.py,sha256=W7sC3022y5wh2HvMh95LUFqUzTzfIOALiIBE2z7xivA,1694
1003
+ pyrogram/raw/functions/auth/send_code.py,sha256=4RVQVzNFRZsbIjl7WYOVBRPKnWb08vHv8B9tP08NpIg,2110
1004
+ pyrogram/raw/functions/auth/sign_in.py,sha256=kJOYR4ecwxNYf2FDGhJOvFupOixJ2Lh8hEQVFkBhI2A,2711
1005
+ pyrogram/raw/functions/auth/sign_up.py,sha256=oe9gwvrPZYLR41BF9DQrUrmBxzbJobcp6-vfA38uTUo,2601
1006
+ pyrogram/raw/functions/bots/__init__.py,sha256=HSdc12uOWP2jamTasAiObx_QkQ7QWuL0WoIejp6dhC8,1086
1007
+ pyrogram/raw/functions/bots/allow_send_message.py,sha256=iUOviXR-moii5cIc-1h7fFEoOIJJnaqzmsvqEj-6hec,1378
1008
+ pyrogram/raw/functions/bots/answer_webhook_json_query.py,sha256=T3bBzLkpKLxfUpNr4QOKN7iNAIC8Nvhcxq2sxoytqio,1603
1009
+ pyrogram/raw/functions/bots/can_send_message.py,sha256=djvykLCZO9sfkRZB5OfBdMrPxoNqpAvnEUUrzD_-bBM,1336
1010
+ pyrogram/raw/functions/bots/get_bot_commands.py,sha256=jr3Tnc6N6li7QJKbo-XML84m9V1bBbsT-0DfY6zuVTc,1660
1011
+ pyrogram/raw/functions/bots/get_bot_info.py,sha256=EFtfBb6YCPlcGYzhS8cjUfGdDo9-SMT-WfjgDimxSFY,1794
1012
+ pyrogram/raw/functions/bots/get_bot_menu_button.py,sha256=glIP6-WPfSc30yviFV64Em2oBDhUDtTBbys7boF8zjE,1426
1013
+ pyrogram/raw/functions/bots/invoke_web_view_custom_method.py,sha256=xQyLx9mcQ6sI0aBL9NS24xGJbJmp_TV61dEe_Ah7ioc,1948
1014
+ pyrogram/raw/functions/bots/reorder_usernames.py,sha256=TO0iV7xC49e6vI8g8LGbY0znFFo8_RYcBPmL-Bg9y3Y,1582
1015
+ pyrogram/raw/functions/bots/reset_bot_commands.py,sha256=Mz-eHsb16UUN6zg2G1gFgydYgz-G6t0zjWabpkcg4iI,1620
1016
+ pyrogram/raw/functions/bots/send_custom_request.py,sha256=63Xfpe8WB0OU0Y7o1g_D8u6h5NcJ0Ypj_RXnm5c7CQs,1677
1017
+ pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py,sha256=VR_F4TXKrtjCxvbdWo97XTdqEzqzoT-lYS8RHgh2BOo,1517
1018
+ pyrogram/raw/functions/bots/set_bot_commands.py,sha256=IzfLMjQDfLHgXXXhBM_HgQoSc_xd8PBVJy5bHUFHiPc,1922
1019
+ pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py,sha256=Xqe30GDIwSfbSxomGxJzOX9Rk0FJ_njOAMeM2gGz5bA,1501
1020
+ pyrogram/raw/functions/bots/set_bot_info.py,sha256=NwDjOMh3M8O-a9rVyeDlS9K8-2tA6LrNiPt4Jhc9f3U,2867
1021
+ pyrogram/raw/functions/bots/set_bot_menu_button.py,sha256=Lhdt9lCT_0jnYevgcBcNk7CwhPsX3DtFtUQaZkbsrOE,1664
1022
+ pyrogram/raw/functions/bots/toggle_username.py,sha256=kP0fLpMlHX-LN4AiL2bbkVWcJtJ0-TQ3DkwZjRkLfHk,1762
1023
+ pyrogram/raw/functions/channels/__init__.py,sha256=YSt60xMVt4EKwxyiErpIB2Pqv5lgqzA0chK0KaQRf8E,3439
1024
+ pyrogram/raw/functions/channels/check_username.py,sha256=CO7tFQ20BvxlHdVWRoUG72AQfS-azSdRknc7SqcXAHQ,1609
1025
+ pyrogram/raw/functions/channels/click_sponsored_message.py,sha256=LKlKlz9gM1ImZa_zkxSOSPGO1_30P0jwEavOq5tC8aM,1651
1026
+ pyrogram/raw/functions/channels/convert_to_gigagroup.py,sha256=8-SOP0-2qcMVLeyfNyPGMlmkDWbMUWSsO3Re-3kw0bM,1436
1027
+ pyrogram/raw/functions/channels/create_channel.py,sha256=1-nCaKAL8K16Hu-p48Nxdx63s0rUYveiHqAu2t6SY0c,3944
1028
+ pyrogram/raw/functions/channels/create_forum_topic.py,sha256=qru0rTqbeviYHO0jxnhvCUNXTSkrFBZHsxRkuZxl0GE,3206
1029
+ pyrogram/raw/functions/channels/deactivate_all_usernames.py,sha256=T184nGlobMuFHa1EQMogn-89jjzTCA3Y8bRR2EvYX5E,1418
1030
+ pyrogram/raw/functions/channels/delete_channel.py,sha256=1RelYgKWUHPMyrnODnx6KGDUJUTMv-vvDNTJokEIdBQ,1418
1031
+ pyrogram/raw/functions/channels/delete_history.py,sha256=cAOglVX1vBVt5aFnIG_psS3_9TWdTyxRuGlGkikupQg,1984
1032
+ pyrogram/raw/functions/channels/delete_messages.py,sha256=YkhozycFRw8mvSfJx6Xwgo4E1eX3PMCkfhlSqVonR3w,1671
1033
+ pyrogram/raw/functions/channels/delete_participant_history.py,sha256=8DSOaH_jIK4s7TmWuFeluFK9Smz5R5CbpN6-Xu_JhIM,1809
1034
+ pyrogram/raw/functions/channels/delete_topic_history.py,sha256=sW8vm1XT_cIECYBa59Jihl0z9D7XX8BKYXBFEL1A_BM,1717
1035
+ pyrogram/raw/functions/channels/edit_admin.py,sha256=qGH5n0hZ6xIHe7-qqQgNpEatNMIC5WI5YPZbZ3Z-x2w,2214
1036
+ pyrogram/raw/functions/channels/edit_banned.py,sha256=SxOANklFAfRlEbuZbMkmZQ9iNs63ppkToDzW0sJF19o,2078
1037
+ pyrogram/raw/functions/channels/edit_creator.py,sha256=6qSOeCXR65kvwaQwzmWNYfYvTpqPi_UEWoytpcUhTEw,2021
1038
+ pyrogram/raw/functions/channels/edit_forum_topic.py,sha256=IZOITLxBCnKdhpvwNepQnD94BxFLGdmaGlwWSXy2Rsc,3217
1039
+ pyrogram/raw/functions/channels/edit_location.py,sha256=kZIodrcaVQrXpmtIXvUfKk2tYWy6tdemitkrZbYmkGs,1907
1040
+ pyrogram/raw/functions/channels/edit_photo.py,sha256=h_qw3F32YY9qWTUxro2GYk6Z7Je5APXUD92frdCqAJc,1681
1041
+ pyrogram/raw/functions/channels/edit_title.py,sha256=6hHDfUI5vjiFSkLvj7P4R1fRqMivo7kRDnAHXGXzh0s,1600
1042
+ pyrogram/raw/functions/channels/export_message_link.py,sha256=-oV-8Zg2R3nv-CnCuseo10n-XFd6uR1zWCe3M3SsS4o,2201
1043
+ pyrogram/raw/functions/channels/get_admin_log.py,sha256=LoSO3jceHnGvMJXecjp09NOKqgiOhkUfXSZSSdkQkQ4,3292
1044
+ pyrogram/raw/functions/channels/get_admined_public_channels.py,sha256=VpzRL6H4R0nOZ_FNm9nHNJAaQRkx-hd40pXhQeNZqMU,2150
1045
+ pyrogram/raw/functions/channels/get_channel_recommendations.py,sha256=4QvGbVE7jacrnfUQiQk23vFXJrmUyJKl900FtqzA3oQ,1684
1046
+ pyrogram/raw/functions/channels/get_channels.py,sha256=4pN5pYtoDjVJOfpMzXdQcjmS9Tirrb8pUoLkhnZNeZw,1399
1047
+ pyrogram/raw/functions/channels/get_forum_topics.py,sha256=7VF0SvBr4Cmk6Of34hmCDW7NJfPK1jXIQeEJgjtx930,2754
1048
+ pyrogram/raw/functions/channels/get_forum_topics_by_id.py,sha256=vHmSsVRg7CWhw5OlOZ9FTVHEYpiVtZlIYVy3jVcV9NQ,1713
1049
+ pyrogram/raw/functions/channels/get_full_channel.py,sha256=a-kvHTpJMw8CQd0MAUVPh3W89-EcS85AK2rL2H6--c4,1440
1050
+ pyrogram/raw/functions/channels/get_groups_for_discussion.py,sha256=BAOM8CnXA3PzOsNiOgWldH4zZ9INNAfCji8eIFbwNx8,1226
1051
+ pyrogram/raw/functions/channels/get_inactive_channels.py,sha256=8RcbrzJcSvDLRhhjkL44X1KJcJ_65tiV3-sVgQ7DW3Q,1230
1052
+ pyrogram/raw/functions/channels/get_left_channels.py,sha256=hhE9d1GajquCXgPPkIhozhJgcNWB3cK2g7IH3Lgdx9A,1360
1053
+ pyrogram/raw/functions/channels/get_messages.py,sha256=nc0XyjKMQQQ0OtNNZII0F-0xvUxeDQ3QUGD80u6JE2U,1696
1054
+ pyrogram/raw/functions/channels/get_participant.py,sha256=wzjphmuEmv4IwVrtBuWA0bvhWEFzC7Qhz7ADncH6H1s,1775
1055
+ pyrogram/raw/functions/channels/get_participants.py,sha256=wHMY5st_fxP-rX9iYsKuhRnRbjPHhVNp8ZKWipSCa84,2403
1056
+ pyrogram/raw/functions/channels/get_send_as.py,sha256=aX7SkVXXFqMtUICIrNAH1xUiubom21mwlnyn5yruMIY,1387
1057
+ pyrogram/raw/functions/channels/get_sponsored_messages.py,sha256=puH_1BqiHstQlATmPxAcfHxOMdAW0Dfg3OPdNDcjhu4,1484
1058
+ pyrogram/raw/functions/channels/invite_to_channel.py,sha256=BZUNmzGw-LqycncXBPxIWf55Sgve2AxDcTXO4p3_1dE,1735
1059
+ pyrogram/raw/functions/channels/join_channel.py,sha256=O08fQyOEF6DaHXULYhNr-ZzigPty7VKR-8Zcnz7998c,1410
1060
+ pyrogram/raw/functions/channels/leave_channel.py,sha256=nzOzCSyh5WfogMTGLU0qci4-9rEc6mWtWpiS4wMG9iE,1414
1061
+ pyrogram/raw/functions/channels/read_history.py,sha256=paHXcn7_bPZYr2_PRL9lLTiMcZvfs7YGX5AjIco8IJ4,1585
1062
+ pyrogram/raw/functions/channels/read_message_contents.py,sha256=GNoPa7qUvEn2l4q7qk8MPImz27EsCCkVQlPV9TrRLGY,1621
1063
+ pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py,sha256=Lkuc9pO8fDAumanoaxpL6BBaOIxuUNDWJYnq__KBSOM,1996
1064
+ pyrogram/raw/functions/channels/reorder_usernames.py,sha256=fbtSAYfgtxHc74KQwJqjsdGsXCRtbbk3xymuXBv3TXs,1634
1065
+ pyrogram/raw/functions/channels/report_anti_spam_false_positive.py,sha256=kf2eWfoLx1hDUOM6sWNsB36rvTiuaK-Tah-nEgQNtHs,1649
1066
+ pyrogram/raw/functions/channels/report_spam.py,sha256=vVKC5Rw50hSLKdsnVZnkcOQ2Rd3Jl2WpIicInQr5alg,1898
1067
+ pyrogram/raw/functions/channels/report_sponsored_message.py,sha256=C7G5kFkcH0clAnc6X5OM77w6ygrS3C_xgVxCqtHNYEA,1957
1068
+ pyrogram/raw/functions/channels/restrict_sponsored_messages.py,sha256=Dg3QlGjKxWR9urW6aPOaUzjnP3CZFAZHUrcWS3tMUes,1705
1069
+ pyrogram/raw/functions/channels/search_posts.py,sha256=ywX1cBIjmB-DbklOBDw-QiZhW6HrTKQ0OZmMY9Fc_oo,2360
1070
+ pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py,sha256=KbHItYs8h0B-KmpjveL8z57-24E30jQrMG3AabgjS8I,1695
1071
+ pyrogram/raw/functions/channels/set_discussion_group.py,sha256=dHjw1BqehIZOnBHEu3lptyGxMNEWA86qyLxchFNe7Bs,1693
1072
+ pyrogram/raw/functions/channels/set_emoji_stickers.py,sha256=uqWah6OqdPeyUMB7fJYyZrkck0xdYTBatuQcnBSHl7o,1724
1073
+ pyrogram/raw/functions/channels/set_stickers.py,sha256=986T73nwCKIkih5t6c0PCKdlsKFG_6rEnmmZTNiSloM,1704
1074
+ pyrogram/raw/functions/channels/toggle_anti_spam.py,sha256=SjjzZE7hGcNyruxHZtBENFeb4UBm6wJh-Szl9uQ56f8,1634
1075
+ pyrogram/raw/functions/channels/toggle_forum.py,sha256=3cI-QzMS-4mFeAVy5TCb9VsLOLSsPX31EAk2EYbsC_A,1622
1076
+ pyrogram/raw/functions/channels/toggle_join_request.py,sha256=hoN4k4YE1RHWR2dyst33Xo-a6wdfc-Nep-eyZ4yxf9Q,1646
1077
+ pyrogram/raw/functions/channels/toggle_join_to_send.py,sha256=h2HJxPu_grPJHX2GnxHiyWBYCnRr-2d-TfDb2o1aELI,1642
1078
+ pyrogram/raw/functions/channels/toggle_participants_hidden.py,sha256=h5l030x7MTjxnC_Gr7l1cB9ekd3YHqUP53jFwPrdXyI,1674
1079
+ pyrogram/raw/functions/channels/toggle_pre_history_hidden.py,sha256=SPlo2crnF7mBOwid6DtBgVQE1RXxgK1w5RSCTd4cZyM,1666
1080
+ pyrogram/raw/functions/channels/toggle_signatures.py,sha256=Oayq0NeOjH8lNVO0zEbrPPQxGvnehetQXUZaAWrktm8,1642
1081
+ pyrogram/raw/functions/channels/toggle_slow_mode.py,sha256=GBtWhsZGD1Edt4SsF4bzzIdGs6SXjNiM4juRkvlviS8,1640
1082
+ pyrogram/raw/functions/channels/toggle_username.py,sha256=wKH0HTgQdrscGpUJ3cMg0S_0ls2GORFVkwUh4TwycGg,1816
1083
+ pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py,sha256=Qx27jZsvy6M4hSHdcUi19DhOYytqsWkJdS9FwxVZ8zM,1678
1084
+ pyrogram/raw/functions/channels/update_color.py,sha256=sRwtVqYSSr6gFKLjSL2Gzr8AXT7392LKF-0p5TLLsg4,2627
1085
+ pyrogram/raw/functions/channels/update_emoji_status.py,sha256=D8SzgHcnEOQdtfR9wfWhGAuxF8ByMcxDHpyQRTlxLxs,1764
1086
+ pyrogram/raw/functions/channels/update_pinned_forum_topic.py,sha256=YFxQ_Cs3J5nbLHfesNjVBA-rk7P765D1NxEMDIDDmxg,1884
1087
+ pyrogram/raw/functions/channels/update_username.py,sha256=4Mhd-PuQ4RYZXLGuHNoHFW_WURhbultxJ78JHHkMNk8,1613
1088
+ pyrogram/raw/functions/channels/view_sponsored_message.py,sha256=U0FmhWYMNYTbEFpdzq6SWPJJHvn17Da1wie6X4y861E,1647
1089
+ pyrogram/raw/functions/chatlists/__init__.py,sha256=gkJV33mu4q1Bamol4IkXuFLT21OMbzJAt0RZENl4bnk,846
1090
+ pyrogram/raw/functions/chatlists/check_chatlist_invite.py,sha256=rZYREFfnjzldFMudqBUGbKBsEhD7K0oXc06aYXQdWQA,1377
1091
+ pyrogram/raw/functions/chatlists/delete_exported_invite.py,sha256=F045PTQI03bI9gKLGTMaaA_qXvINaqZcHbzoxjLeDTc,1615
1092
+ pyrogram/raw/functions/chatlists/edit_exported_invite.py,sha256=B5fKJ1D_Sbdm7qKF1G2zTpXDGsJ5h6KUtBnY7zPcoIg,2502
1093
+ pyrogram/raw/functions/chatlists/export_chatlist_invite.py,sha256=auGWo1qrshSJZo0Wf2vy0Sn9GNo_7-F1bT4vfR5U_e0,1989
1094
+ pyrogram/raw/functions/chatlists/get_chatlist_updates.py,sha256=tyX2IQ1AHh0ONusiVlGX_ig_PfZ82prxnMSaab-7e1s,1488
1095
+ pyrogram/raw/functions/chatlists/get_exported_invites.py,sha256=TztVwVA-FoM8AuI5TeoWkg53pGAhka3QLYbrtO4kRAk,1488
1096
+ pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py,sha256=sHm8Y3B7_F177VI-W-IIGrPOvwHcZcwq-WX0K-P2U9c,1490
1097
+ pyrogram/raw/functions/chatlists/hide_chatlist_updates.py,sha256=iYsK1duCO7vcmBP2Jf5_-a7q4lnfBkkPlbTx3flpNeM,1422
1098
+ pyrogram/raw/functions/chatlists/join_chatlist_invite.py,sha256=1RQz6-HG2vMJ3_G_IbaTiptAK6tNC8NPRFnWufQHVqk,1620
1099
+ pyrogram/raw/functions/chatlists/join_chatlist_updates.py,sha256=5HbDnZIPXO3Lb2lV4Hzd7rmsE1KvQ_8X7XIBtPiQI58,1737
1100
+ pyrogram/raw/functions/chatlists/leave_chatlist.py,sha256=9CUB0bvWExIGOvrmpeJLucOIMFZWQRihnvV9Unvepxg,1713
1101
+ pyrogram/raw/functions/contacts/__init__.py,sha256=mflhqkAhsvFasiW-U748W8eRHsymIPcCqGqy1LAACOA,1297
1102
+ pyrogram/raw/functions/contacts/accept_contact.py,sha256=cXSSorjEDLOYQZ0m1nzFmn-mTO9A6RVr2WvGQvjApLU,1361
1103
+ pyrogram/raw/functions/contacts/add_contact.py,sha256=exxD0qPTXrq5mWySpgSUndzXDwayKzOE9wL0BKqRlNQ,2516
1104
+ pyrogram/raw/functions/contacts/block.py,sha256=iY0cBisWZ5mepHpClIa2HHNDs2cUBR9cCt_lJ9PA5f0,1679
1105
+ pyrogram/raw/functions/contacts/block_from_replies.py,sha256=fPOSUhcA4vbPoLQCNi6M6ZYdtgvCk2Ql2yUlAB-DPUg,2358
1106
+ pyrogram/raw/functions/contacts/delete_by_phones.py,sha256=IfMFYfv-BedKSlfcDOsfEWDTqnaEiw7IpYyJz8f3pzc,1346
1107
+ pyrogram/raw/functions/contacts/delete_contacts.py,sha256=lnT7bDw0yx8_7cDeY7a5S7ILmUe7t7mptihj4SMGpJs,1385
1108
+ pyrogram/raw/functions/contacts/edit_close_friends.py,sha256=FASMyF2bvs2bjkLuIbL4tcbKz_nIFTXkBvFbhjmNtIc,1323
1109
+ pyrogram/raw/functions/contacts/export_contact_token.py,sha256=DbYhW46Dd4OcCthy8GOH7l5LSOtysP3lpFkev5A3v8w,1222
1110
+ pyrogram/raw/functions/contacts/get_birthdays.py,sha256=o-L2b7yd-IynI0Me650CHOvedK2c2z-IE6xwwF2eSsU,1208
1111
+ pyrogram/raw/functions/contacts/get_blocked.py,sha256=hCri3MZgABMzP0wNyVpLNudrxf0lhVoI_z7EijJ1OhE,1928
1112
+ pyrogram/raw/functions/contacts/get_contact_i_ds.py,sha256=8PEC0e2VQHuKlbSbEh2QhSACuVh-I9kVT2G5hwKuNT8,1307
1113
+ pyrogram/raw/functions/contacts/get_contacts.py,sha256=54P6f8CS3IQSQb8ZBBsOhKaF-X5ZqLLzrGEUR1jxAwk,1335
1114
+ pyrogram/raw/functions/contacts/get_located.py,sha256=40LYdVRaLuJGvkZ1nZeXzNmQookFK11Ti9ET3SVZZcg,2200
1115
+ pyrogram/raw/functions/contacts/get_saved.py,sha256=62R3rq95sX7MtuWaHRvliQMZ_JW84zOJxfMqNaEqnnE,1174
1116
+ pyrogram/raw/functions/contacts/get_statuses.py,sha256=8UHbGjoET9LIRz_CgotqN2K1Xees3DCTlbc9HUoLPTs,1188
1117
+ pyrogram/raw/functions/contacts/get_top_peers.py,sha256=eWwRllelsyEmLm48_PfGekNCNfOqC1IGfsuV5aGlbRc,4174
1118
+ pyrogram/raw/functions/contacts/import_contact_token.py,sha256=5FVPUz9ZFYjYBTMsn3GJgivAVqQlBWf3QxJUR4vCqHE,1341
1119
+ pyrogram/raw/functions/contacts/import_contacts.py,sha256=zD6vGeXXQ04ahHQWvYfDUZVJVE7FRqKZS7OLW0AqB7w,1489
1120
+ pyrogram/raw/functions/contacts/reset_saved.py,sha256=rQNNw8d-VluZUKzN5crrBc4B8DbKkA-R7tEDWmCI4Hs,1130
1121
+ pyrogram/raw/functions/contacts/reset_top_peer_rating.py,sha256=FifgEbfql9N49U9_RWnXbEAYah1b1I5gg8KHuABBz5o,1675
1122
+ pyrogram/raw/functions/contacts/resolve_phone.py,sha256=Mn527H_eHGOaRuka8hSX-iSiQ10cf_NrYaUNgJZd--o,1351
1123
+ pyrogram/raw/functions/contacts/resolve_username.py,sha256=VAoYgsFB7os79Cj2DdsjsYaUAAyfwRj2ojnSm9aszUE,1390
1124
+ pyrogram/raw/functions/contacts/search.py,sha256=LIjRIuCvAAFX97D0Xq5OxgdtZ9pSN8TAt_kqlbshkcs,1477
1125
+ pyrogram/raw/functions/contacts/set_blocked.py,sha256=VlBFZs1ilGsHb1L3zn8RwQvcI0De1NuevjspTIeVuzU,1921
1126
+ pyrogram/raw/functions/contacts/toggle_top_peers.py,sha256=hHgWC3b_WmeUrVxBlhVUvQVp4Fgb8odO19dwVD9zA2c,1311
1127
+ pyrogram/raw/functions/contacts/unblock.py,sha256=nMsLY_Eiz5OTztCOW8PEAnZducEwDRda0fQ0Wqq0wss,1687
1128
+ pyrogram/raw/functions/contest/__init__.py,sha256=gseHRU9fGp-MB6Cip742cfZafzEOIV4POPz95fr67vw,292
1129
+ pyrogram/raw/functions/contest/save_developer_info.py,sha256=8azxEfvoJFSxxCRCjbEvKMA6C_wsxmqx89rEDm_pVs0,2131
1130
+ pyrogram/raw/functions/folders/__init__.py,sha256=afa042M-1LwmH2-GkWbZ1P3LLVFyq3BYknuJSBcR5Bs,288
1131
+ pyrogram/raw/functions/folders/edit_peer_folders.py,sha256=opCRiGhsbos3aSwgNc6DMQ0E8yYGZvW63z-PhHm_9nc,1504
1132
+ pyrogram/raw/functions/fragment/__init__.py,sha256=mgFkup_hHVB0yzIWXAj-DEb-rIMehOwCrkctDE1IOCY,294
1133
+ pyrogram/raw/functions/fragment/get_collectible_info.py,sha256=Ty4vJrbMtErQ34totEJwilseWZg4yXnLLbz6_CPC9aE,1524
1134
+ pyrogram/raw/functions/help/__init__.py,sha256=mBnyz6Q9bSg7evZXASl3Q3HXqb2xHhFTjQy2SNIXXM8,1386
1135
+ pyrogram/raw/functions/help/accept_terms_of_service.py,sha256=oyAzmuAvqHzvBT-KIZ5dsXQZAwYEScSRfkitiutdaSo,1347
1136
+ pyrogram/raw/functions/help/dismiss_suggestion.py,sha256=EHo7yZgwvCTlXbeSS9_NcNx5JIysTsiLKOB-94wxpik,1600
1137
+ pyrogram/raw/functions/help/edit_user_info.py,sha256=56sjaXUak35DRGv9bA9eoOdlioDxhEBfvpOZsdgeRSY,1950
1138
+ pyrogram/raw/functions/help/get_app_config.py,sha256=Wa_f5YeTrkEkygC2XuoYxB5c7ggD4AEvQPTUPQz7rck,1326
1139
+ pyrogram/raw/functions/help/get_app_update.py,sha256=hPHBC2FTPh5Bewfv9l78-OwiQ-ZxYZzhzG3dVHtvMGs,1342
1140
+ pyrogram/raw/functions/help/get_cdn_config.py,sha256=EWR0YCvtdcVJSu7mj1f_572j918bXI5Ptu-skOqrrPc,1172
1141
+ pyrogram/raw/functions/help/get_config.py,sha256=aay6SK9EJ60oZdxMW2G_NozanFg8bwvUuAscMVJ6ZVU,1154
1142
+ pyrogram/raw/functions/help/get_countries_list.py,sha256=OkfbJsPaJnFDypAkvcTSKTC8gGlRiH14sFQ0w4VuZL8,1584
1143
+ pyrogram/raw/functions/help/get_deep_link_info.py,sha256=HYzfzUx_S__e5XF4cd3DUJN80mO_SsBk8gwnaqphJIQ,1342
1144
+ pyrogram/raw/functions/help/get_invite_text.py,sha256=XC4NAYjqEnvcn5UPIWgR_sRuO1dPzVvSflNZYL-VLB0,1188
1145
+ pyrogram/raw/functions/help/get_nearest_dc.py,sha256=I7d3aZnIm0nukqGaDY1xzRR163ApQ3QXV_zBg--e79M,1172
1146
+ pyrogram/raw/functions/help/get_passport_config.py,sha256=1QdmG9ITb-DYhpvmHIGJthK5TpPiis8NuUZso6iuRlg,1356
1147
+ pyrogram/raw/functions/help/get_peer_colors.py,sha256=53_txfUdcprXoASigkyG01ywZr1n5zb5PwYya_2DWqc,1332
1148
+ pyrogram/raw/functions/help/get_peer_profile_colors.py,sha256=A-iLWuzOdJM7TBTEbXP6cWf08iJTWsVeEK00ysAcngk,1360
1149
+ pyrogram/raw/functions/help/get_premium_promo.py,sha256=4n4lKiLcBBaZEG8WAeses5zt3hOuGsw9z9p4v9lF4tk,1200
1150
+ pyrogram/raw/functions/help/get_promo_data.py,sha256=Ejd925cvgQbbRIvo7-M_e3qfseWJx7s3Nz8RTwISiyk,1182
1151
+ pyrogram/raw/functions/help/get_recent_me_urls.py,sha256=876ssGCzHb4gCQQYaTizuIw68HUg5EkPTpLeI5TNYFI,1369
1152
+ pyrogram/raw/functions/help/get_support.py,sha256=br78yUpW_5eKqbBnbx9j7nROM2iX9VNKIDYZ99w6X-Y,1170
1153
+ pyrogram/raw/functions/help/get_support_name.py,sha256=yvVkvPWSCOLDyGwQFBquLpZnFTAOUYpjcCq1h1IMUFw,1194
1154
+ pyrogram/raw/functions/help/get_terms_of_service_update.py,sha256=5jsModUsbrxWf_6UVn2zH2rxwmK6ElVVeyqE5AW9QC4,1248
1155
+ pyrogram/raw/functions/help/get_timezones_list.py,sha256=pRpM8lTHUpVDoSg4C9v-zMDIpdo_h-JPKmS2XA4EBhk,1350
1156
+ pyrogram/raw/functions/help/get_user_info.py,sha256=JaVgrF3KTm_I8eyrzlZDxIooGmJfxvoxUvgy8rCqe8Q,1404
1157
+ pyrogram/raw/functions/help/hide_promo_data.py,sha256=kwBtC_uOIc0jZQ9UjCnk5FhLEwvBk1RLNLleFalzIP8,1341
1158
+ pyrogram/raw/functions/help/save_app_log.py,sha256=naNFSytuu_532-kBfAM23Mezt36kCpI_Z9kftGSrNMk,1385
1159
+ pyrogram/raw/functions/help/set_bot_updates_status.py,sha256=lU8Z3AxNvRk4AfJEygp8EZZL3uSPZecH0bVuQjfTxvc,1675
1160
+ pyrogram/raw/functions/langpack/__init__.py,sha256=VxN_xwtBenBiEQika66udGpu-1_IIbX8GoOTs9EDqZ4,436
1161
+ pyrogram/raw/functions/langpack/get_difference.py,sha256=iP-WxcAxlfksvO_uqxlVniVTwMNIAZsxnmvWQDn2Z2A,1882
1162
+ pyrogram/raw/functions/langpack/get_lang_pack.py,sha256=KeAE3bLqhVCBOnW7lcA06NSTDlwa3Fzgs0sh8FzVbLA,1611
1163
+ pyrogram/raw/functions/langpack/get_language.py,sha256=61OoHEpnyHQYZZ0ze6iEqPahjtPnHZ2ObPZd61LYtXs,1607
1164
+ pyrogram/raw/functions/langpack/get_languages.py,sha256=ARZ6zSx_dG7sIzhito5VLl7dXmg3OZFG_sIsdoVY7AQ,1385
1165
+ pyrogram/raw/functions/langpack/get_strings.py,sha256=D7-SUh6pGgEfZppW2hdJgR6TCdp4HnYypZOXQ6ThQM0,1836
1166
+ pyrogram/raw/functions/messages/__init__.py,sha256=9vXupl-9ZJpvgUFza7QRinlI8aiFnQOhaGK8msEmfjw,11126
1167
+ pyrogram/raw/functions/messages/accept_encryption.py,sha256=YyrMkuDMwIYW3D_jztKJhkMr_nBUzumaETlgqQKXk4o,1913
1168
+ pyrogram/raw/functions/messages/accept_url_auth.py,sha256=Z9KmneWCsQqH228R5NfpHZ4x70vQCB64tzM5VXqKRo0,3009
1169
+ pyrogram/raw/functions/messages/add_chat_user.py,sha256=IsLcy1ibxozPOgHLb_MqKUik8VxIf5Cs4mJmB8DF6FM,1883
1170
+ pyrogram/raw/functions/messages/check_chat_invite.py,sha256=gMhybEg6IZd_4-n6sm5WOBQn7IuPfLq8QPb0RXXpfPM,1332
1171
+ pyrogram/raw/functions/messages/check_history_import.py,sha256=v-_ihS8cCIu0HA8KDfqLIgWb-xLSxLd7RxjDkCoU1E8,1443
1172
+ pyrogram/raw/functions/messages/check_history_import_peer.py,sha256=njtzilq1_rHfQ9gq26n29lOVNYSdBhGCm_eA5pR58oc,1467
1173
+ pyrogram/raw/functions/messages/check_quick_reply_shortcut.py,sha256=2GojP74EuJ_8-pco5Xg5NP5HB1FRwbZMw8M4xOw1mA4,1360
1174
+ pyrogram/raw/functions/messages/clear_all_drafts.py,sha256=BMv9ftBFR9mMWX8dfpElizk0zD_Pa4p_FS34W_EV4L8,1146
1175
+ pyrogram/raw/functions/messages/clear_recent_reactions.py,sha256=PPPnQJnsY-ee0-HumZYVTJ4bYAkUGULmEz6poqfIurM,1170
1176
+ pyrogram/raw/functions/messages/clear_recent_stickers.py,sha256=xir2nj7-HXQ3oJPpGzF1AYSrDkzhmtjA7akZlpKoK8w,1440
1177
+ pyrogram/raw/functions/messages/create_chat.py,sha256=UaPhaDW8-Ou3llPk7OPgtIh0HmlJNIbTMQ3e7PYJMA0,2080
1178
+ pyrogram/raw/functions/messages/delete_chat.py,sha256=StgWgnHlleIyXuO7jqwXB0FIKHCJy9SLqtIEWhS0yfk,1304
1179
+ pyrogram/raw/functions/messages/delete_chat_user.py,sha256=aKfQOoLDSf-HNYzppEN4g6aos3Zw49RCDMF28rs0AX4,2006
1180
+ pyrogram/raw/functions/messages/delete_exported_chat_invite.py,sha256=jrmQ2X29XJqwJ0OZmHfi_m95H4l6kuv7pUiQYHAap28,1578
1181
+ pyrogram/raw/functions/messages/delete_fact_check.py,sha256=UYiNY1DzpqSMyjAxj1bkeehAHomwStT9hEjT5nw37Pk,1596
1182
+ pyrogram/raw/functions/messages/delete_history.py,sha256=OzjbTmc4goVnLjRMx_G9b-o3afp35egbNHuwNGPeeZk,2997
1183
+ pyrogram/raw/functions/messages/delete_messages.py,sha256=Y2X8MqY879UnrIFxkvm9rLhRp5PjZdVjTq9NoiklS50,1685
1184
+ pyrogram/raw/functions/messages/delete_phone_call_history.py,sha256=aqUFpDCBtDzvB2foBFJ26h1IF-EhnSrwkJwk_g648M8,1514
1185
+ pyrogram/raw/functions/messages/delete_quick_reply_messages.py,sha256=-sVoJbP-Ll_KVKZCpAUjtBpqDgwD7TX_JT0ZWG0wPHg,1640
1186
+ pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py,sha256=RMJl5gDzK7EgACw6XPmvfC-djBID9Sx7ilGKQPHT_tc,1393
1187
+ pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py,sha256=puNR17q7QhTcayRcqBq_07s7AZDVSGYqNtDDcc0nKTo,1707
1188
+ pyrogram/raw/functions/messages/delete_saved_history.py,sha256=yBkeYRTZP62KjrIuIEW0cmc0shbQD1Y5TiTFGrw7PI4,2465
1189
+ pyrogram/raw/functions/messages/delete_scheduled_messages.py,sha256=71ePltS0bMjWEh7Pc3bHq4AbSOQTo5trvfCuRhj7lLo,1632
1190
+ pyrogram/raw/functions/messages/discard_encryption.py,sha256=UiM9iFvsZU4sQKXp6yJbl53y4ZODRfVazw9lMXIe7gk,1704
1191
+ pyrogram/raw/functions/messages/edit_chat_about.py,sha256=QCe3lzyrekzU8kaWCckvXVXmAiN9wqGHDiTQ_w6irvg,1543
1192
+ pyrogram/raw/functions/messages/edit_chat_admin.py,sha256=5kgORv0BP2QBGEmZ9HmWLdXoTITZlLOz66ZmDAunpIg,1814
1193
+ pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py,sha256=vLwDppGfcBZp3QUc5XKarg2ToxXy7hrn_r0exIjx2oY,1794
1194
+ pyrogram/raw/functions/messages/edit_chat_photo.py,sha256=tPU3G21U7nZlf_crRQMvSG6dUP7OyM8OS6lP6MmABSw,1629
1195
+ pyrogram/raw/functions/messages/edit_chat_title.py,sha256=NO-kv5sNarg4f_aWy_pQFMybdfMUqtqvlEf1f5yo5fE,1548
1196
+ pyrogram/raw/functions/messages/edit_exported_chat_invite.py,sha256=vYyH7DcZuYe0z8I10ZfC8u9ULozs6jBKb4zT-r8HJw8,3603
1197
+ pyrogram/raw/functions/messages/edit_fact_check.py,sha256=7w6U0X_m6vReXBtZheXOYBchXt01Uzmw3SWlQB38mF4,1864
1198
+ pyrogram/raw/functions/messages/edit_inline_bot_message.py,sha256=BBU7xAtzmMH69O97YI-lCGY90mrJyKfQWUcH83wenOs,3845
1199
+ pyrogram/raw/functions/messages/edit_message.py,sha256=GVub76P6zCugVKkqB5eUT3wz_xXKGPwev2BRtyWfbl4,4982
1200
+ pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py,sha256=OC3GS7TZZJBEiWSYmpLPp5M3KT3Mvpple4Tp5-eTpY8,1610
1201
+ pyrogram/raw/functions/messages/export_chat_invite.py,sha256=p4KRgIIO9sYzyO6et1AnTj_0MvKMdvmlgzSP4pzLav4,3397
1202
+ pyrogram/raw/functions/messages/fave_sticker.py,sha256=BVx_rF-h1ItRjXpryoeAtXTUW2Hp1-ov-At2qOvFMOg,1538
1203
+ pyrogram/raw/functions/messages/forward_messages.py,sha256=uWybDl9sNwWmhMQ-QmWgMk7nZopoyyx26fYCShj_YRA,6035
1204
+ pyrogram/raw/functions/messages/get_admins_with_invites.py,sha256=kTfaHAdO5K8LgDk5Q_8cDZiQP8TCBObBDNblCk5AWCw,1453
1205
+ pyrogram/raw/functions/messages/get_all_drafts.py,sha256=9iaXYPhHzEAHglkttz1lCFd9xDkoPmhMTi0Rvf8Mgh0,1172
1206
+ pyrogram/raw/functions/messages/get_all_stickers.py,sha256=3hbTQGxIfJZCDYrzU79rcXVlRMguUVInc1AtyqkwE8w,1353
1207
+ pyrogram/raw/functions/messages/get_archived_stickers.py,sha256=ab7KkaPnS90rm-DdPVQnTI8oqu_IAp_0O9yg-S-neM8,2180
1208
+ pyrogram/raw/functions/messages/get_attach_menu_bot.py,sha256=LdAwDcd3epzK3av__eUfAGW2wq4VUVtc0B-GNcPBb0Q,1402
1209
+ pyrogram/raw/functions/messages/get_attach_menu_bots.py,sha256=v5rWUCT2nVNBCIK2RmZOZe0upIzaeZuXL5-FtsmUavs,1353
1210
+ pyrogram/raw/functions/messages/get_attached_stickers.py,sha256=30Yhk4q8br53tBX58Jpw_PZ2jZ1fb5wAIC-VLqnL4H8,1480
1211
+ pyrogram/raw/functions/messages/get_available_effects.py,sha256=HzN1f87LBD9M4uajHGwrTaGk2ZaZ7FCC7rytB1tOFbc,1380
1212
+ pyrogram/raw/functions/messages/get_available_reactions.py,sha256=xjdRjoov1Awq1u7ikQyUcBSec57E4C8pWm4gGFjFshQ,1392
1213
+ pyrogram/raw/functions/messages/get_bot_app.py,sha256=X-A0qXVTvm8Lt63J1QuAuTQIyz64B9vXWOhFuHvBk24,1572
1214
+ pyrogram/raw/functions/messages/get_bot_callback_answer.py,sha256=Vovl3p99Uk0A-aHbDrG4XAqJq_DZySlHUcs3jJ7UgBI,2778
1215
+ pyrogram/raw/functions/messages/get_chat_invite_importers.py,sha256=KtbS2ZOgzzZJCAKjC9YO188NICcSgxdWNJcIFZbpMW0,3207
1216
+ pyrogram/raw/functions/messages/get_chats.py,sha256=aJOhmpO6DxTTZJl45hLtQ-TCyb6rwf_oij-C2xT1R00,1339
1217
+ pyrogram/raw/functions/messages/get_common_chats.py,sha256=-3pcGCxham_rw_6fP3TzNn2aiQdwLnL6ALotTxsSjb4,1836
1218
+ pyrogram/raw/functions/messages/get_custom_emoji_documents.py,sha256=98n-5EW3TE3UNr08qsGrHM2kSXxcgsU9QqMiijjXUiQ,1476
1219
+ pyrogram/raw/functions/messages/get_default_history_ttl.py,sha256=WweC9GBfnEd6UOZPXW7hA91uachjLyP7Jl0sYLLf7ug,1224
1220
+ pyrogram/raw/functions/messages/get_default_tag_reactions.py,sha256=Sc1bYLbOb1uHg1-l4p9F5sIbzMWNOPZhSjFGkhEnJ4g,1381
1221
+ pyrogram/raw/functions/messages/get_dh_config.py,sha256=0hOx0cfkJN6mFggol4VWWvanWkxKVqiYoTdqgo857YY,1631
1222
+ pyrogram/raw/functions/messages/get_dialog_filters.py,sha256=TARx7r-BoTca2k-KSjHXZ9O5M3sV8_0eFblEwadQwtw,1218
1223
+ pyrogram/raw/functions/messages/get_dialog_unread_marks.py,sha256=N2TbQXBfCfnmeqO8JPoZBxEEjoqQgLl-BYqeRPrvWIw,1218
1224
+ pyrogram/raw/functions/messages/get_dialogs.py,sha256=SCwfDs-Oqy8umMW9RotzNTpKD89RHJDem4_1tZOBecE,3107
1225
+ pyrogram/raw/functions/messages/get_discussion_message.py,sha256=Z_KRoKKhIPuiYPj0lW3-xo_H8FTldQlBm06joYma4Ok,1654
1226
+ pyrogram/raw/functions/messages/get_document_by_hash.py,sha256=O8Y7JE2ehUWdPdzVAs6pnmaOLbVvLeOhquJZq_g-wOs,1783
1227
+ pyrogram/raw/functions/messages/get_emoji_groups.py,sha256=MjSne4IFRFcFugTML4kGAfqEWdp9KigX_dYVTvSbaa4,1350
1228
+ pyrogram/raw/functions/messages/get_emoji_keywords.py,sha256=xATgWJPEy9alDy6G_jTu96i1-lV-aSHKWhS-aLdsTIM,1407
1229
+ pyrogram/raw/functions/messages/get_emoji_keywords_difference.py,sha256=yTHHEiOC2nZcYSa_mih9Jtzx2b0t_goTVSYEdVv2i-0,1710
1230
+ pyrogram/raw/functions/messages/get_emoji_keywords_languages.py,sha256=FF3dKOGk5GGd1pKpTHW1wbO67EjeflTJFyhUp7gz1PI,1480
1231
+ pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py,sha256=1UvQAJa3R9IOuDNwprPwZSepKRo_9h0Bmvv9xpHNIxk,1398
1232
+ pyrogram/raw/functions/messages/get_emoji_status_groups.py,sha256=TqclAwg_ycJtaWmGqMizILb2dbeLdCVVTlpbdUrx4zU,1374
1233
+ pyrogram/raw/functions/messages/get_emoji_sticker_groups.py,sha256=g7sC1jYfAggh9e3ecuClol45HvJvCzAznKvHhtYZsmY,1378
1234
+ pyrogram/raw/functions/messages/get_emoji_stickers.py,sha256=TZirrbCs26htM2z7LungtKh5wZjIQthoRdzjaNXth48,1361
1235
+ pyrogram/raw/functions/messages/get_emoji_url.py,sha256=sFCQCnlr1RGO5OCLwa4kYmXbU2mEHONV5mtQv9lzZkc,1357
1236
+ pyrogram/raw/functions/messages/get_exported_chat_invite.py,sha256=dqGvMszzwf0FZGvGNXALyXV-nfNLnGL3wmOz9iBt0q8,1640
1237
+ pyrogram/raw/functions/messages/get_exported_chat_invites.py,sha256=iDk5tC4KoNgXR2BvNudYzYwlyLxbAhAn6HXC_Lq6gWQ,3097
1238
+ pyrogram/raw/functions/messages/get_extended_media.py,sha256=7VrGtJjbk4cUlq9KIOonxQDUPH3gxQkGobk48tD-n8w,1604
1239
+ pyrogram/raw/functions/messages/get_fact_check.py,sha256=X8PnVyk7Q_0pVPJimBCIXpvwqFblHGfVt-CpO1Q_KRg,1636
1240
+ pyrogram/raw/functions/messages/get_faved_stickers.py,sha256=6JTmi21BREnUMW9iYIkBAJ6kEbO8bm4z5eVaurfvjQE,1363
1241
+ pyrogram/raw/functions/messages/get_featured_emoji_stickers.py,sha256=rZAl0Siu86QcrLLrqTnvRHBSvmgBvqoptqKDA8QxSgQ,1401
1242
+ pyrogram/raw/functions/messages/get_featured_stickers.py,sha256=AmRKaqlXTguh_eLzihcnl-DK09sPXixX0kfPVBzn-1c,1383
1243
+ pyrogram/raw/functions/messages/get_full_chat.py,sha256=uDwn44s_pYyiWmcDpNvS8bYLHfL_bPxfoxFK6rflvzg,1362
1244
+ pyrogram/raw/functions/messages/get_game_high_scores.py,sha256=6kF_EUotLc4pv2teyLCcK2Lqt-_b6cpUSAam4evLudE,1869
1245
+ pyrogram/raw/functions/messages/get_history.py,sha256=N39QYPipomQKMeIvKN9e4NgWKfba1mDOBdnfUuzTO7g,2934
1246
+ pyrogram/raw/functions/messages/get_inline_bot_results.py,sha256=Pb_UpN0xmmA9ORAw6YMqax6HNLs-LMa2nrIpVHEjGD4,2592
1247
+ pyrogram/raw/functions/messages/get_inline_game_high_scores.py,sha256=FL7kLJKCVxR3SUjvemyYb6zXWBMFMwmopkRYPi6Z0VI,1756
1248
+ pyrogram/raw/functions/messages/get_mask_stickers.py,sha256=74CrypFSzmvIf1k1DPUjHuTyS5HiFXn92E13d_C8Xwg,1357
1249
+ pyrogram/raw/functions/messages/get_message_edit_data.py,sha256=C_oGGjh6ZrMv1lEQcicPEngjufcXb1HKk_zkSSeuBbk,1606
1250
+ pyrogram/raw/functions/messages/get_message_reactions_list.py,sha256=z22jYg6O7URZCdG7I9kRnTa9OZTbY5nRQP1ilVsst4g,2689
1251
+ pyrogram/raw/functions/messages/get_message_read_participants.py,sha256=JdtNd_MFUDFUEomuLSG8ZhFBaNnu0vT5y-JRa0hOrpM,1672
1252
+ pyrogram/raw/functions/messages/get_messages.py,sha256=Gu157-STjlJ4QadatsH3ipt8nrgrHdqiUgzg1e5e8Fk,1407
1253
+ pyrogram/raw/functions/messages/get_messages_reactions.py,sha256=8VsOkCKCwBjOw6pg9aa5UMXb29yFJelc-NCwko8H15Y,1620
1254
+ pyrogram/raw/functions/messages/get_messages_views.py,sha256=2ATOZj3c07mbaYacTnuEEQNoIZBbmwU2rHYPepZkT1k,1862
1255
+ pyrogram/raw/functions/messages/get_my_stickers.py,sha256=-ZZABkquO2xFD2GLO_dktSoiRT0fTU4FiADldJPcQSk,1592
1256
+ pyrogram/raw/functions/messages/get_old_featured_stickers.py,sha256=w26Od6UIzXMvjAzEwhDmknxh9_JlORFF6zebEMnKbC4,1804
1257
+ pyrogram/raw/functions/messages/get_onlines.py,sha256=JR1YNfX3fXVM0X8L-IYkXbyxdBuhOL3bNU6SK6W-kkQ,1375
1258
+ pyrogram/raw/functions/messages/get_outbox_read_date.py,sha256=BamqbBkWK8j_e4V4CZMghKG5foHf0vAprQgMUqC307U,1618
1259
+ pyrogram/raw/functions/messages/get_peer_dialogs.py,sha256=JKq6_WBWETmBREPiNISzYzyX4n9DgeZJDnjzaTav-f0,1464
1260
+ pyrogram/raw/functions/messages/get_peer_settings.py,sha256=imYM7OCAg3QwuKxPkIDYJWzx-PFqcuzD9QWu11pVMas,1415
1261
+ pyrogram/raw/functions/messages/get_pinned_dialogs.py,sha256=5QQwMHKv8qxohUvgSLK2IBkPnjyc13F9DWPXMYDs0Fo,1403
1262
+ pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py,sha256=zV-EAU80BCwFqE3zDvJC56B2PdxA2U-ms9Hlsv7jf_4,1236
1263
+ pyrogram/raw/functions/messages/get_poll_results.py,sha256=aMuEYNrhFRHmQPw0wnw0zGhSzIKJPnGoAUZUojqBXyk,1592
1264
+ pyrogram/raw/functions/messages/get_poll_votes.py,sha256=Hqyvy7anGP5SGjtfIOWJqr8DOBg74UQ3ldOmR2JCG6Q,2546
1265
+ pyrogram/raw/functions/messages/get_quick_replies.py,sha256=krHbm8FRS-0oYFtYiwFr10uZRZINZEO3uqfUMy7qxvY,1359
1266
+ pyrogram/raw/functions/messages/get_quick_reply_messages.py,sha256=OHHLHjVLQSjl4zkqyr6kuizox04jYUdTXIKdjb9M_rw,2032
1267
+ pyrogram/raw/functions/messages/get_recent_locations.py,sha256=B3R1I2u18siETwtfF39o1T4Cl4zD1WHPcDZqMhv7Wac,1813
1268
+ pyrogram/raw/functions/messages/get_recent_reactions.py,sha256=oKAxBUyAdEhd2RDTln9ypX1zz8a1GE44WzwJvwWx3r0,1565
1269
+ pyrogram/raw/functions/messages/get_recent_stickers.py,sha256=73H8G12-Ho7caEwr040HkfYXkXx_EGU5V8AH15di8iA,1692
1270
+ pyrogram/raw/functions/messages/get_replies.py,sha256=65lFUNEYipvl6oq5sr7WwpuqnBpz-R_nqFx7XIcgRqs,3143
1271
+ pyrogram/raw/functions/messages/get_saved_dialogs.py,sha256=Dbkqz9aSoOd2zf8NaPwjCtYSj7F9EU1CiGJGe0R5gXo,2737
1272
+ pyrogram/raw/functions/messages/get_saved_gifs.py,sha256=o_SYtXjxbaGelMNjh8gxitBQOIj7uhg_rbCrxe5nywU,1341
1273
+ pyrogram/raw/functions/messages/get_saved_history.py,sha256=fhnQ1OZfXOK-jn2-Ug_e4dCIyDLx7Kju0Vy5R2IPcG8,2954
1274
+ pyrogram/raw/functions/messages/get_saved_reaction_tags.py,sha256=OlS4E9jxIM2O8BJUsR3zyLGpSZh3NfzvsVAgzXegiQ4,1837
1275
+ pyrogram/raw/functions/messages/get_scheduled_history.py,sha256=Eq3irzH95wCAO9UNtdhi69yyOC4sGzJbRkRL3EOW2NM,1617
1276
+ pyrogram/raw/functions/messages/get_scheduled_messages.py,sha256=g70RARVfAGvVdWeUVOhP9qgXsIwqQzZv91UsDaQccXU,1640
1277
+ pyrogram/raw/functions/messages/get_search_counters.py,sha256=hBJbVWJP-qqdO8TsyG5CawjtoRqW73JTrr3qkX-0TJk,2710
1278
+ pyrogram/raw/functions/messages/get_search_results_calendar.py,sha256=vYIXRkq_cgXIHS4JOuAF__2Vz5oufadiDQqiVfk8HVo,2794
1279
+ pyrogram/raw/functions/messages/get_search_results_positions.py,sha256=RvSEpBIeI2tMo1iRtBqujoLdnt6JJYHnfo3nJUgV2Ak,2746
1280
+ pyrogram/raw/functions/messages/get_split_ranges.py,sha256=jXqy90H7TnZyuuM3_vEVYNG7CLKbJjfaNrn4ydaQGIM,1198
1281
+ pyrogram/raw/functions/messages/get_sticker_set.py,sha256=8uwoT2jgpADCgfBgVlrocNFY0qCpycBg5BBk-G_q-SU,1672
1282
+ pyrogram/raw/functions/messages/get_stickers.py,sha256=IWlKf6fW9pjW4_fJN2QWh1YBbgnfZHezMi7XRTRiunM,1560
1283
+ pyrogram/raw/functions/messages/get_suggested_dialog_filters.py,sha256=rgvuQAZozfW_RtgPDhnpkiZb-yl3f8W8huFoNPSjKUk,1260
1284
+ pyrogram/raw/functions/messages/get_top_reactions.py,sha256=BFyjwacjDA6XqsoSFUU9fjLICzkhOKPQM3XLKjufla8,1553
1285
+ pyrogram/raw/functions/messages/get_unread_mentions.py,sha256=IkHY0htJkO8bqIgoWd8Pq3rrf-b8ZVzBVbSKAOndgAk,2970
1286
+ pyrogram/raw/functions/messages/get_unread_reactions.py,sha256=d5YpgVoyfw1YXdTTMZ4F8LSnPACS_UgHDXFbHJ6yLXY,2974
1287
+ pyrogram/raw/functions/messages/get_web_page.py,sha256=TFh2xHdVcwTjQ2mtxKQn9H2UyTO_6iQ39VZNrU5fzKw,1506
1288
+ pyrogram/raw/functions/messages/get_web_page_preview.py,sha256=nmN0dPa1wyn1Nd5CpUz6K8v1EY2_2xuwy8owSNYtE-o,1897
1289
+ pyrogram/raw/functions/messages/hide_all_chat_join_requests.py,sha256=-A7mbgqcBiC2yu_PbIgRtEdUbHfvy5yKmUEg7GJ-tXc,2083
1290
+ pyrogram/raw/functions/messages/hide_chat_join_request.py,sha256=5G32653LXJ0SVK3NzgQIXhzkHB_W3CqWG4kcqgjlBto,2001
1291
+ pyrogram/raw/functions/messages/hide_peer_settings_bar.py,sha256=b9rzpaMaMD2PaxulGqQDCCbAqieOkIsQ-rse_wfSbLM,1369
1292
+ pyrogram/raw/functions/messages/import_chat_invite.py,sha256=CG07ylZ266nYFJC9kLrhnT1DVJ1kKEdIH4ug4mSTBzk,1330
1293
+ pyrogram/raw/functions/messages/init_history_import.py,sha256=HKU7jcw6-5p_bupGe9n13_YX17_5JWjMqT1mdRratKY,1929
1294
+ pyrogram/raw/functions/messages/install_sticker_set.py,sha256=U079wmd7yZvqk-DzRCWFODWHeXRReAiuI6TYCweZ61k,1744
1295
+ pyrogram/raw/functions/messages/mark_dialog_unread.py,sha256=0Rdi6tfExqhggz0Sh1x1b22W5lf4Gcb1PvE3QjMm9Dc,1684
1296
+ pyrogram/raw/functions/messages/migrate_chat.py,sha256=rbobDV3qcxdr9YZ6rvIVHRUemqdsZdRB3IUXT6Wsb7I,1342
1297
+ pyrogram/raw/functions/messages/prolong_web_view.py,sha256=T6GZKovCEXxc6YMovNAoZntGFAfVh3ZWm6lGIEdjcKg,3021
1298
+ pyrogram/raw/functions/messages/rate_transcribed_audio.py,sha256=NCi0z8bDtqyOGosMAJwYm0epZPw-6qgyOzB7t2ldg9c,2069
1299
+ pyrogram/raw/functions/messages/read_discussion.py,sha256=YIKQCYu2oHh-rq01SpLygG888K9vVJaigZfa2JynCro,1812
1300
+ pyrogram/raw/functions/messages/read_encrypted_history.py,sha256=OlmrQJe9eVvuaRbOqns5gsfuTfxufMqPfesQRsZrLSA,1636
1301
+ pyrogram/raw/functions/messages/read_featured_stickers.py,sha256=wgmevQMwOL6Pj4LIHfhfyyuVG-5RuSJvD38VZGln_SQ,1339
1302
+ pyrogram/raw/functions/messages/read_history.py,sha256=DerkBYlaopnhMb4SoAhz7EeN2UNpNQISo0dgmdjNDvE,1614
1303
+ pyrogram/raw/functions/messages/read_mentions.py,sha256=u6aOa1hIOLn0lgAFDgxaYobWEYYFMimdrMuv37r0ic8,1865
1304
+ pyrogram/raw/functions/messages/read_message_contents.py,sha256=SX7fClp0Sr8Qz3z7Wai8iAtkC-4SDu84grBWH_gIrJE,1402
1305
+ pyrogram/raw/functions/messages/read_reactions.py,sha256=-bLMh2OJyP7QtNwyAE4PdEAO9tqavG8VFxqcNXiCL7Y,1869
1306
+ pyrogram/raw/functions/messages/received_messages.py,sha256=gaDAJMvDoFSmCIRiqbbz3heorbT64h7vRn0xmvu_KQw,1384
1307
+ pyrogram/raw/functions/messages/received_queue.py,sha256=Xi7mDValm4kssiQnz9NhYsrN8l4_7vx2iolSNpns7Uo,1331
1308
+ pyrogram/raw/functions/messages/reorder_pinned_dialogs.py,sha256=li5HsH5gUxLvK9DM1_fupgQjShFM0Zzos0Gz2tqFjjw,1958
1309
+ pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py,sha256=QrZhKgaQvTvoa3WKQEmLL4K6EXCLmB0rWg88cSmvY58,1742
1310
+ pyrogram/raw/functions/messages/reorder_quick_replies.py,sha256=qUhyT6uvjdjyyWSiAWImLXry9GDslgDnbaCIUCi8oWw,1359
1311
+ pyrogram/raw/functions/messages/reorder_sticker_sets.py,sha256=NjJqzN7Y6L-pCTUHPZM1vVQ_h3NHreUfKayJ8crsaf4,1910
1312
+ pyrogram/raw/functions/messages/report.py,sha256=lCxKZmuleGyyqENWC_QeQMywAH1DaTSn2rCKAi-pEpQ,2026
1313
+ pyrogram/raw/functions/messages/report_encrypted_spam.py,sha256=rdYtP1f4HGZ3mVe5WCGrvfhAQHe_H2FHSnRaa45xoNo,1405
1314
+ pyrogram/raw/functions/messages/report_reaction.py,sha256=M7dCK-PTA6x7TgKkiQ3j59S92k_r3fUBMAE5SW67A38,1853
1315
+ pyrogram/raw/functions/messages/report_spam.py,sha256=qdFQvHn7zhwzsRj68dwHDmaIgZFMhKC0N9uYjDceS-Q,1333
1316
+ pyrogram/raw/functions/messages/request_app_web_view.py,sha256=YNAJUtoeOLG-_CJVdpLvnpLnT5sSo0Eyx3NDtzx-JAA,3421
1317
+ pyrogram/raw/functions/messages/request_encryption.py,sha256=Vi2TkYT9SPMlSHov05ChL8doSO3uRUwTCdeq_QvlgPY,1851
1318
+ pyrogram/raw/functions/messages/request_simple_web_view.py,sha256=h5nppwK3ag0Qty1ea35NdjHp9gT9V9gRqM72cjCF_bs,3891
1319
+ pyrogram/raw/functions/messages/request_url_auth.py,sha256=gRCMs6R1xAxsVFnKc86D8Y48l_0khC9hxxBEyK9g0hY,2692
1320
+ pyrogram/raw/functions/messages/request_web_view.py,sha256=jEcuw4IClzTusP1Ehf_fVYR4_pwea4Q591kVA3H4khs,4889
1321
+ pyrogram/raw/functions/messages/save_default_send_as.py,sha256=NEJbUyxHyKFwAOTFi88rwg1ZOHCf9F69p0AD5-D_zwM,1638
1322
+ pyrogram/raw/functions/messages/save_draft.py,sha256=es-rBqhqZL3LjLsz1PoHmKx3nRBzRlgvNDtc4sqta88,3924
1323
+ pyrogram/raw/functions/messages/save_gif.py,sha256=1HvEKIKdryum6BRwJbvk1u2CcytF6Zxmor5xUd9yLsA,1522
1324
+ pyrogram/raw/functions/messages/save_recent_sticker.py,sha256=AMKKpy1-yXURvLkcu2tu2SpE2raMnka_4ovx13jQNQI,1883
1325
+ pyrogram/raw/functions/messages/search.py,sha256=_WMbnwPbJJitfNdI0RIqZqR8EfyLa2VocP02VQi1mRA,5489
1326
+ pyrogram/raw/functions/messages/search_custom_emoji.py,sha256=xfvtW6Yxjur_3f6oMYQoktq-CpFPrWDnCzeZLgcLpt0,1568
1327
+ pyrogram/raw/functions/messages/search_emoji_sticker_sets.py,sha256=PR2CZLUU07vrez9bHePYAANmyjjs5mCeYCg_AqoaDdI,1950
1328
+ pyrogram/raw/functions/messages/search_global.py,sha256=lgnoBlsY5aKwxHs-A2iOnyA_-3MRaV53M01KAuV4hag,3836
1329
+ pyrogram/raw/functions/messages/search_sent_media.py,sha256=1Gk3RSSryRnrw60dzkbQ7UzZlFpsqH78eTAF03rNfZc,1807
1330
+ pyrogram/raw/functions/messages/search_sticker_sets.py,sha256=8D5MMsYwxcwfOAmiidal3g37Jpet5anCjQeLehn5-LU,1930
1331
+ pyrogram/raw/functions/messages/send_bot_requested_peer.py,sha256=uHDdXrsNqZyNx1tQCYUYoVCqatzcfqDJ1ilZUWCLcbw,2223
1332
+ pyrogram/raw/functions/messages/send_encrypted.py,sha256=cSHzkMJP7jfydDp8lWhO9Wd4E1mts_gDD4gctddg51Q,2191
1333
+ pyrogram/raw/functions/messages/send_encrypted_file.py,sha256=QBHU1TuHq_09lONuS_u7F8tsxWqC3xGjgo3W79zdPIo,2493
1334
+ pyrogram/raw/functions/messages/send_encrypted_service.py,sha256=P7zeGfFUB-uCgJ-j4nk3FFNwyjqxgnDunWd3ts5wayY,1916
1335
+ pyrogram/raw/functions/messages/send_inline_bot_result.py,sha256=vbmH9jLYX6yEIp8WxrcX8jT8bZTpeGa9cAcozHv1doM,5205
1336
+ pyrogram/raw/functions/messages/send_media.py,sha256=H2-5ME8AbeucxF-dk36v5Q-bnwBHhILCrmVSByXIdRY,7352
1337
+ pyrogram/raw/functions/messages/send_message.py,sha256=f9KNju61AoF-OScZ-A4pw_BtcT71GJxMhfKlzE_AY3o,7391
1338
+ pyrogram/raw/functions/messages/send_multi_media.py,sha256=Ch4Fyec8YOkSdvr-bECn3SDrtZlHsuMNe9JL6Wx7F1A,6037
1339
+ pyrogram/raw/functions/messages/send_quick_reply_messages.py,sha256=FrJ_jpsdBV8eWORxlETEnpvZihV2i4urcFHnkXlg9G8,2161
1340
+ pyrogram/raw/functions/messages/send_reaction.py,sha256=PJSS9AmafYpRYDhyumn8E9ft1rX2r8lNzk9CcFogrS8,2642
1341
+ pyrogram/raw/functions/messages/send_scheduled_messages.py,sha256=QhNWU3TImpaVEfWQl_fcvpvU17ps3GmrD7lXKwvdOY4,1624
1342
+ pyrogram/raw/functions/messages/send_screenshot_notification.py,sha256=5Qs_iHlbsJ4a2DGCHDC513L7fSQUyQGy5w2S2riyJXw,1968
1343
+ pyrogram/raw/functions/messages/send_vote.py,sha256=VS3Caf-L03_zxw4exzZvJ73lci81GTwJw14jcsEVgYc,1825
1344
+ pyrogram/raw/functions/messages/send_web_view_data.py,sha256=wB15NDSinoKukUiuHNo3bXgRJtI6iAzD6B7b2MJYJYk,2058
1345
+ pyrogram/raw/functions/messages/send_web_view_result_message.py,sha256=ed1VFapq4uqOp9d9enc0CiIAM0BtSMZhK2jnb64EY54,1766
1346
+ pyrogram/raw/functions/messages/set_bot_callback_answer.py,sha256=Ub1kcCIqJJ93ptPaGcyj7gSfG7ANHLAuicPM8fAxULM,2600
1347
+ pyrogram/raw/functions/messages/set_bot_precheckout_results.py,sha256=wRDZZVR_0s80kYGF8piNHtUsukduN68iL5KInBF4C50,2033
1348
+ pyrogram/raw/functions/messages/set_bot_shipping_results.py,sha256=cfLsur_sgD6yKPDoS3EhhIwStKoNjfnSSelF2MgQPko,2329
1349
+ pyrogram/raw/functions/messages/set_chat_available_reactions.py,sha256=bToVO8VUn9VGrY46N78kvNH1zg5kLxfqxKLyHhrrCQo,2339
1350
+ pyrogram/raw/functions/messages/set_chat_theme.py,sha256=eWHkppfCU6zgFRN1ZbUW0lvQfh7PGgyIjOD1ZtigzwY,1600
1351
+ pyrogram/raw/functions/messages/set_chat_wall_paper.py,sha256=E8WJbJKMK4r8OHYChN5RU1glSFTyFy2jyprA8vZ1DIM,3250
1352
+ pyrogram/raw/functions/messages/set_default_history_ttl.py,sha256=DPnAQfpnm5-ADZ7RJZ5kGh251fSXeYOpFCjtVi7zFZQ,1332
1353
+ pyrogram/raw/functions/messages/set_default_reaction.py,sha256=_VQ4JMWT5AMryqyvq3oQ34wswJz_OoUDqRz0ovlWjhE,1397
1354
+ pyrogram/raw/functions/messages/set_encrypted_typing.py,sha256=TDyfNzS8H-Z8YP4McXlqDssfy5wdmHylHBa1S8M3k1k,1604
1355
+ pyrogram/raw/functions/messages/set_game_score.py,sha256=5CrQt7AxSCg4ixJslhvyd98zI2Y_9KLhm05PtKXpMqE,2631
1356
+ pyrogram/raw/functions/messages/set_history_ttl.py,sha256=uVWr_L2aqtupSjzT0-JB2OW6uAJ-bd_9kl2xwIibz3U,1588
1357
+ pyrogram/raw/functions/messages/set_inline_bot_results.py,sha256=gymCjiNyccarF_NJ-lydI3EdPD1IyZCCxE4c08pBpi0,3967
1358
+ pyrogram/raw/functions/messages/set_inline_game_score.py,sha256=jNS0r7Ar6ga-ob0BP-22Wzx1_9RJCdpfX9sZmeIZsxI,2486
1359
+ pyrogram/raw/functions/messages/set_typing.py,sha256=qSkLJzLbTR-8Bn3RcR9_RpSo6PrSFAwCohRpeq4kg9I,2085
1360
+ pyrogram/raw/functions/messages/start_bot.py,sha256=r7Decx3ngwcdAor_pOkpGqoOmWHu5r_ITv3_bTUmrR0,2091
1361
+ pyrogram/raw/functions/messages/start_history_import.py,sha256=Z3lTDG5-lgPLECHxGHFv2bhCH7CpyeRf44JjPC0zF6I,1604
1362
+ pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py,sha256=B64QvS43Jgh1kiX5h9yf2pXcVUCzjo1fRWdNjr9riJE,1946
1363
+ pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py,sha256=Uc5Q4-R7KsHnO5UlKyFCx9B0NRwKYgiD8-iCKEvNaOg,1343
1364
+ pyrogram/raw/functions/messages/toggle_dialog_pin.py,sha256=FViNKip3dXcvVWR5eMpBLPs-je-lX-shC0l4rolOp7s,1680
1365
+ pyrogram/raw/functions/messages/toggle_no_forwards.py,sha256=yGF_QQH9EfRXcXJQjngtf0YJKzbuFaXI0szgTpfFmo4,1603
1366
+ pyrogram/raw/functions/messages/toggle_peer_translations.py,sha256=hibFQiiLlAZbQYFQfwb9pt8wrg7TICw4koMtGxOmibA,1702
1367
+ pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py,sha256=A7ilxpAOtLquh-5JCUp1I-JQHoogyjI9kP0JLpIU6tY,1700
1368
+ pyrogram/raw/functions/messages/toggle_sticker_sets.py,sha256=ipCF9v209Pt0dual--4kPybZT8XdoFy2rQpG1VwxRnc,2352
1369
+ pyrogram/raw/functions/messages/transcribe_audio.py,sha256=sF9PlWbw17DYfuWmQaQLHeux8CPVyt9cP49-N_is2Dc,1632
1370
+ pyrogram/raw/functions/messages/translate_text.py,sha256=4uDK9s3Ixf8sqM8q-ZODiOMk2GYliL0aGk-4c6XBn_w,2632
1371
+ pyrogram/raw/functions/messages/uninstall_sticker_set.py,sha256=MJKT4HxJkBqFZK1LPZFaVohBbvCvirNiH1d3J4yN3Tk,1447
1372
+ pyrogram/raw/functions/messages/unpin_all_messages.py,sha256=TD1gJ4hSR12xTdE-4N2_9zU9TfQQbYKSjRxj5Ir4SN4,1881
1373
+ pyrogram/raw/functions/messages/update_dialog_filter.py,sha256=aLj-DsAYI7TIr0vwKd-KRnMAelIFJ6Nf9O6OXezpfvo,1770
1374
+ pyrogram/raw/functions/messages/update_dialog_filters_order.py,sha256=b5UyFH0vRbd3DTS9ywJ2kwklNCxvrrtMwKuWnvCQYX0,1379
1375
+ pyrogram/raw/functions/messages/update_pinned_message.py,sha256=N57v1WO8XMhdi9gIdwvfklwO8s-ZDJ25SiJPb96ixM8,2422
1376
+ pyrogram/raw/functions/messages/update_saved_reaction_tag.py,sha256=a-LsZQhc5vsbcjetiBdTBuaa2njqaFVLuVFf0y3O8wo,1812
1377
+ pyrogram/raw/functions/messages/upload_encrypted_file.py,sha256=yq4YoTR2X5hp-w8IV4R13xor-I9ANvSotM_ksLBdV_w,1737
1378
+ pyrogram/raw/functions/messages/upload_imported_media.py,sha256=Vt0Iq5mxanCeXETPcCBxqu8LrqsbYat531nKxH9ZW2Q,2149
1379
+ pyrogram/raw/functions/messages/upload_media.py,sha256=MptnI2ffzXCtuZYeK1_FXqCv8ZCQFOZaRTH5_LMkIA0,2230
1380
+ pyrogram/raw/functions/payments/__init__.py,sha256=7kh3CbRKrBANPTvVc_qJEr2ezuaCNn5N0v-8a3uJyDE,1603
1381
+ pyrogram/raw/functions/payments/apply_gift_code.py,sha256=4wacZXCDscESCYwRQvrI3KFVxnkiZ6j1bnOktRmb96E,1318
1382
+ pyrogram/raw/functions/payments/assign_app_store_transaction.py,sha256=HtCv2PTdBzLt3B8XF0UcesN9wWjGEOEBlvDsFK6Z-_Y,1731
1383
+ pyrogram/raw/functions/payments/assign_play_market_transaction.py,sha256=rkwpMAjm0_F8EMVE3UTA6KU5ghsvT9bGx2zXvdWbC10,1795
1384
+ pyrogram/raw/functions/payments/can_purchase_premium.py,sha256=xrGwTxp6Z2tvgapWjQTzSWlKOJDThpMgCvp8BbaLHXg,1452
1385
+ pyrogram/raw/functions/payments/check_gift_code.py,sha256=d20_XJiYuzkQldWbi6rkRf12nO-JCn7_2GxW4bkDXu8,1352
1386
+ pyrogram/raw/functions/payments/clear_saved_info.py,sha256=Q4ouHMvfix0gQL9g_CxEHUqB2gjbQjtzlvpt_2T-jDI,1687
1387
+ pyrogram/raw/functions/payments/export_invoice.py,sha256=d3OKBOQbBfH4RSrfKiPowZuhqDlm0bqsA0EZRCK78IY,1496
1388
+ pyrogram/raw/functions/payments/get_bank_card_data.py,sha256=wvHoiK8Ae3cBXsbvPw1eGEDafsD9yWYDNxg24xX8jhQ,1372
1389
+ pyrogram/raw/functions/payments/get_giveaway_info.py,sha256=MSruGAClxJ9zCyCEqFP0eHViX2aHeedY2vQL2vAfIV0,1624
1390
+ pyrogram/raw/functions/payments/get_payment_form.py,sha256=SDgpXfr3vEvQHWGXGwk4h2EfSJ5CzrWHosqH2z4gglE,1980
1391
+ pyrogram/raw/functions/payments/get_payment_receipt.py,sha256=faUd-AC0P4GJ1M6SPcJ4ZFLTRWTM1maQJCJq__983dk,1636
1392
+ pyrogram/raw/functions/payments/get_premium_gift_code_options.py,sha256=CZBlRrXYHkzsRoX-AvV0BnL28hzYwbzZbDuEPF6mmRA,1727
1393
+ pyrogram/raw/functions/payments/get_saved_info.py,sha256=RRs7Go_LaTeszUvxawjQrb8yXzmPG-VNcaBC7yevwaM,1194
1394
+ pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py,sha256=4-Aw1RIRu80EVxN5-VEzNoVo7Qnwgm8ZY1ReMekwN7w,1493
1395
+ pyrogram/raw/functions/payments/get_stars_revenue_stats.py,sha256=Pt463povRbfa8UwGq26mN6dNtRo3VE6D0TIMAXsVXKo,1730
1396
+ pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py,sha256=IbtJESYiyL4YKNOIbwqLYfbmZUewXXY-iJ0-qlJMCKI,2030
1397
+ pyrogram/raw/functions/payments/get_stars_status.py,sha256=_99pdUhFoIZZRrHvfNQ2i8d5Z5ZPXsIjdg-v8Ctowks,1409
1398
+ pyrogram/raw/functions/payments/get_stars_topup_options.py,sha256=dMlJXNanBl1Cvg0ie0VCcbnx60hO5powSDKCLG5739s,1230
1399
+ pyrogram/raw/functions/payments/get_stars_transactions.py,sha256=WczDm8Gm2NjwC8QWruPUGmDthE7o8MVZ69awdZInxbQ,2713
1400
+ pyrogram/raw/functions/payments/get_stars_transactions_by_id.py,sha256=jZSmYbwmModrqz03_OuImo2ETmObC7_M8R7zxtHDImM,1751
1401
+ pyrogram/raw/functions/payments/launch_prepaid_giveaway.py,sha256=J8WED2wqrPWhOwEVZ6ZAd6jtPefcNKqj1zVsR_2pH_E,2005
1402
+ pyrogram/raw/functions/payments/refund_stars_charge.py,sha256=CyzT82zX2ebDNNT_UhLxrccT5hA9djCpSJ4m1HV2KpA,1656
1403
+ pyrogram/raw/functions/payments/send_payment_form.py,sha256=ehM7iF2h4hF7MG4qN1eCP8D9om9rRHPJDh02rvhBhcM,3488
1404
+ pyrogram/raw/functions/payments/send_stars_form.py,sha256=ZS9i0_Vk5773SMwQz5_LtpuzAcYbT_KcI4058WvuvJ8,1721
1405
+ pyrogram/raw/functions/payments/validate_requested_info.py,sha256=blkQBcuEKx9ArJpIYYzX4zN5zBIu_h6uhtmeaB8u41U,2077
1406
+ pyrogram/raw/functions/phone/__init__.py,sha256=nEWH8-UbjJhiv9qBUslZ9hRtWK_qI-9GwsgGAI_eo3I,1886
1407
+ pyrogram/raw/functions/phone/accept_call.py,sha256=OtTJ6QDvQsF4elKwoWLYb2aOcUjqwFW_XNShb1GAMB0,1899
1408
+ pyrogram/raw/functions/phone/check_group_call.py,sha256=yLzOvZHQv3ULD-XcL0l4PiJluLiLlWiyBTU6NZSvNUQ,1642
1409
+ pyrogram/raw/functions/phone/confirm_call.py,sha256=dQgn__-tp-UejVDHeDep0IFkGgBTG93faZX8CQ0GZMY,2196
1410
+ pyrogram/raw/functions/phone/create_group_call.py,sha256=jFEsBzM3tMBVeQSL27P3peXfJmBgdFyt6SVhAWdEH_A,2766
1411
+ pyrogram/raw/functions/phone/discard_call.py,sha256=ODfYlOCjMcpTZyBf6XXMHr5gH5ArtHi_pcxZO7EuP0w,2504
1412
+ pyrogram/raw/functions/phone/discard_group_call.py,sha256=ITiFu0OonxbECbhoxeGj5mghc4wZeHDYIgKH7alD3Yo,1408
1413
+ pyrogram/raw/functions/phone/edit_group_call_participant.py,sha256=wzjVjcNJVUjR2rdgmU_dS0MxAcrLOY1b1cwSwYUfZu4,4289
1414
+ pyrogram/raw/functions/phone/edit_group_call_title.py,sha256=Tc4s9MdK1avbZ1shA7kashyY_F1szlyD7TM5hMBVt28,1614
1415
+ pyrogram/raw/functions/phone/export_group_call_invite.py,sha256=PovhowgOvjpILkrveSwqIXTo_iFJNSR_Uwqg3rzO9Hg,1856
1416
+ pyrogram/raw/functions/phone/get_call_config.py,sha256=_IqfAxulr9fF9eyCJsEU52WD3rwdplEgr0eRdns51As,1175
1417
+ pyrogram/raw/functions/phone/get_group_call.py,sha256=S-ADzOwKxyCSWgEocKDAXgLYwcoWM7mZ8NDfuhs1l7c,1606
1418
+ pyrogram/raw/functions/phone/get_group_call_join_as.py,sha256=ELOTnCtHfFgn6E7lqHe803nDAhIduBCyOD5CxUrtx8I,1416
1419
+ pyrogram/raw/functions/phone/get_group_call_stream_channels.py,sha256=aGzx-ia2WoKWOmSNto-YR9JguiIWA4ie1DS2Rp_JE1k,1492
1420
+ pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py,sha256=9gCNE6HRom53dtAmNohglCvIlXr9lVqTDePi4db3QxE,1669
1421
+ pyrogram/raw/functions/phone/get_group_participants.py,sha256=-hjuTH5C6rbA-qSqmwHgS2fjxruEEwJ1JlgfLht5j7A,2384
1422
+ pyrogram/raw/functions/phone/invite_to_group_call.py,sha256=xvPlhJml9ukMuTitvtY3YSiejvFm_Dy-V5ptm8lyi6I,1693
1423
+ pyrogram/raw/functions/phone/join_group_call.py,sha256=ZmtOGsDhkMM34BLCKy8EgiOkDM7JRiI0Fh6L0qJ_oRk,2972
1424
+ pyrogram/raw/functions/phone/join_group_call_presentation.py,sha256=PBm9V4Vt1rDJQYyoSM-fAxLywP4MoGN0_6LsDRj43Mw,1708
1425
+ pyrogram/raw/functions/phone/leave_group_call.py,sha256=_b0jEykVbexIu5AVNWPA70Of_c31cDv8KEoal7uLBvI,1609
1426
+ pyrogram/raw/functions/phone/leave_group_call_presentation.py,sha256=jn6YQVWXekjyH1DnJwEKq0979rJV0uEzdEtu7cUlEZY,1448
1427
+ pyrogram/raw/functions/phone/received_call.py,sha256=xb3EMoX2gKKTfZdwCS_M050aq3FNUzCQ4EBmPqQXjXo,1358
1428
+ pyrogram/raw/functions/phone/request_call.py,sha256=S6LJPmMV0eaCX2D49NZdr0Cx13D8F0l1yI3-7qfw2Yk,2485
1429
+ pyrogram/raw/functions/phone/save_call_debug.py,sha256=-Q8uu1DaTNpZ2yq5A2b_dE4yok0JIPJ1KNdcPLj_gZo,1617
1430
+ pyrogram/raw/functions/phone/save_call_log.py,sha256=khBDIOANqWurz6lBcXSEBApn6q_7DD6XvwD24WMNsig,1604
1431
+ pyrogram/raw/functions/phone/save_default_group_call_join_as.py,sha256=P7EgADNW7ZUicf7r9FNqeULdnsqOf5CIukmdli7-dFc,1671
1432
+ pyrogram/raw/functions/phone/send_signaling_data.py,sha256=D17OcUz0uKHQac1Y83xRwE_8wy81KUNd3jGTXo5mhaM,1568
1433
+ pyrogram/raw/functions/phone/set_call_rating.py,sha256=NVoEoP9B7TDUNLvtkV3p6nYnWcrkQ9PMVF7YApoFsro,2205
1434
+ pyrogram/raw/functions/phone/start_scheduled_group_call.py,sha256=ab-94ctA-uuwLOxoaFjrkRwpHQ-C7fCOoBrrESBMBk0,1436
1435
+ pyrogram/raw/functions/phone/toggle_group_call_record.py,sha256=gFdu1pnU0iIADVOXTYzEm-uyADJxgehIYwyyYsKkZHE,2774
1436
+ pyrogram/raw/functions/phone/toggle_group_call_settings.py,sha256=Jeb_VrCmAaam97eaYiW_GKJiBERpMOmG2MujsQ3hue8,2243
1437
+ pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py,sha256=_-HcwmxDPfWhJNrDu9qD0tN2v6qA8_i3XfGnKaDhwBA,1711
1438
+ pyrogram/raw/functions/photos/__init__.py,sha256=PVgKeqG0yWLV5S65fEWBfO9thq92BA-osvucDxBec3o,498
1439
+ pyrogram/raw/functions/photos/delete_photos.py,sha256=idFqJA6DiNfQSYxsoxW0EIy3KoJ4AZCpxPNdnsGKj1Q,1365
1440
+ pyrogram/raw/functions/photos/get_user_photos.py,sha256=S6nplFDsKAR4xGh6-rdWWNYIcWPwmPIq3jJXeun5STU,2037
1441
+ pyrogram/raw/functions/photos/update_profile_photo.py,sha256=cRai3-7gMOFB-d_LIw1WKKCLYex8um-K3NmdPQIM3-I,2104
1442
+ pyrogram/raw/functions/photos/upload_contact_profile_photo.py,sha256=YKfNQ3H1DvCrsi5viaHePkyk_6tDezbDQbe5I6mIcJ4,3856
1443
+ pyrogram/raw/functions/photos/upload_profile_photo.py,sha256=2IsfMiaCdxKHe3G7GXsyWbgq3aqawrxgneUqsSSPeP8,3710
1444
+ pyrogram/raw/functions/premium/__init__.py,sha256=xCVfb9UJ8xCiS1XgD6lZLrue7vYwDkg1oTnx1Fhc1ro,449
1445
+ pyrogram/raw/functions/premium/apply_boost.py,sha256=rlLzRshjKfk52erB4QC3QFDRi32qUdQcNsyuUEW1I-c,1820
1446
+ pyrogram/raw/functions/premium/get_boosts_list.py,sha256=YWlRUUYhk4-FocNVCQ-dpwASG3w5s4c-7z2ao68baDE,2101
1447
+ pyrogram/raw/functions/premium/get_boosts_status.py,sha256=sNiF3tAwRzHI0Pqr0d2ljns9zarM6628wDLv0Vu_vDA,1410
1448
+ pyrogram/raw/functions/premium/get_my_boosts.py,sha256=o3smFldGsMOPQ_kr_PgNUNixkeKzUDuYv7wzJekNKYs,1183
1449
+ pyrogram/raw/functions/premium/get_user_boosts.py,sha256=dA8HMVAAbO4TI4FhqxCM90tnPCfObRTnYhkJne01J0I,1677
1450
+ pyrogram/raw/functions/smsjobs/__init__.py,sha256=GvH-oRC7dEGyp5KStmYW5uqC2ND4GbHPZVpDdDzeTWw,486
1451
+ pyrogram/raw/functions/smsjobs/finish_job.py,sha256=fS3MELeO9R0OUnY2NUb9w4n7_Bd6MGB8fZYYvbs-eFs,1684
1452
+ pyrogram/raw/functions/smsjobs/get_sms_job.py,sha256=hcmWII8RrMKSJ9dkA2DsiS3389cfE65lSqC-uvKllxI,1317
1453
+ pyrogram/raw/functions/smsjobs/get_status.py,sha256=I4ZrqnkAr60bCZt3zrVRJCe6m8bdEkP1gEoUvM1Aupg,1173
1454
+ pyrogram/raw/functions/smsjobs/is_eligible_to_join.py,sha256=vsxek5flBZUS4LlSI0xpPdRxm46OOnp3zkd66lXj7yA,1221
1455
+ pyrogram/raw/functions/smsjobs/join.py,sha256=pIZYCa671LcegLf3umo5cwJtamfJPb0kzrPCGAWSYcc,1105
1456
+ pyrogram/raw/functions/smsjobs/leave.py,sha256=qZLQoAbQDXUL1dhd1N2hte-pHMM7VyXH8rEj-If0UqA,1109
1457
+ pyrogram/raw/functions/smsjobs/update_settings.py,sha256=wPpr8jJOd4vi8KOuAJuey26tkcNeowOGWyFECOpbZE8,1516
1458
+ pyrogram/raw/functions/stats/__init__.py,sha256=Ixaq70Sw5PoOeBzOlUPrqqntwOVrvpup0u8c_soqH4s,835
1459
+ pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py,sha256=UmC51k54CC8W1KbAYzb0hJUllrosi4GUydTfb2OFdAM,1784
1460
+ pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py,sha256=YFP9ZTbC0foFtTTS6kVzYROzAyFZ_LtC9CrYNlKOuZM,1946
1461
+ pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py,sha256=2jw1h-_v_dLzMktiRd9a88WYcIFN0ksYz6dsqS8bgnk,1881
1462
+ pyrogram/raw/functions/stats/get_broadcast_stats.py,sha256=d16bE7fR4hPJLY-Hg8-ULlZCXTi0UQrkvDI-T4NZx30,1742
1463
+ pyrogram/raw/functions/stats/get_megagroup_stats.py,sha256=lKUDhiYDzZqUyrTS1FKPFCCfgs6xEcQtDEjNvedDe8Y,1742
1464
+ pyrogram/raw/functions/stats/get_message_public_forwards.py,sha256=UKhFNSScAlzZcyFPiY8rz7PKWDzpDdeihxInkVKpVRo,2101
1465
+ pyrogram/raw/functions/stats/get_message_stats.py,sha256=OOUT56bYH1xskSSRkT5JfWIVGUlsYj3aIegaE5TLusI,1939
1466
+ pyrogram/raw/functions/stats/get_story_public_forwards.py,sha256=uWxzoVHdknqBEyYFJ2mDJciSvH-5gum6pxNMcbP4CVI,2018
1467
+ pyrogram/raw/functions/stats/get_story_stats.py,sha256=W_IU5LkxBCiiaxlmZ2ZrSaGONfaKgkHmei8aDKb8ZQo,1852
1468
+ pyrogram/raw/functions/stats/load_async_graph.py,sha256=9Cq3Q6snfNaDWic4_5qvt5Tne6eC3LkvLBu8NnN4CTg,1694
1469
+ pyrogram/raw/functions/stickers/__init__.py,sha256=p7bLi7AZf09H8NsmT9P-bx7NX5iFZVXr83QtEWQsrpw,787
1470
+ pyrogram/raw/functions/stickers/add_sticker_to_set.py,sha256=4OolYS84Cz8DLV4IpjHHnAK9Bt1mLJYNTtFaGSK2zpY,1806
1471
+ pyrogram/raw/functions/stickers/change_sticker.py,sha256=enXtqo8-GGGbpTnhQmh3vyIhXnra1ikJYMGAasEZxWk,2716
1472
+ pyrogram/raw/functions/stickers/change_sticker_position.py,sha256=5z3Vojj-z_X6wwWDhEBMq2kxLUW9NeDbgNJwDiMH2uo,1705
1473
+ pyrogram/raw/functions/stickers/check_short_name.py,sha256=XCK-U5_CSQn3s5WEEd1TJOh9GJMZfTkNkY9lJ90djM4,1342
1474
+ pyrogram/raw/functions/stickers/create_sticker_set.py,sha256=oWhGG7Iu3kL4kL_yDTsXglg9O2XtDTfBjDpjufU6bzY,3894
1475
+ pyrogram/raw/functions/stickers/delete_sticker_set.py,sha256=Q0jEgvhCnnq2wbJypDNqcKSuCu5lKECEf7P2RZxMivQ,1435
1476
+ pyrogram/raw/functions/stickers/remove_sticker_from_set.py,sha256=OfnIsaqcraenT-6UPAzLHKNhVn_4x284-Wb2m_fzPxI,1474
1477
+ pyrogram/raw/functions/stickers/rename_sticker_set.py,sha256=wRW2doYts5b4B8cgC7xHslnILqBb3He0TBNVpNTTmqY,1691
1478
+ pyrogram/raw/functions/stickers/replace_sticker.py,sha256=8_WtPo8dAG8TG5Qr5Sqo0xanZAeW-ezbIHyGKmwGny4,1803
1479
+ pyrogram/raw/functions/stickers/set_sticker_set_thumb.py,sha256=rN-eDm0wEmc3HOsqN8ZhJRCLGG9iws_X4y-BlKKm1Nc,2467
1480
+ pyrogram/raw/functions/stickers/suggest_short_name.py,sha256=catXR5dKdBzgldELQCCdyk7piM-dSeRnRzdr910PzeM,1379
1481
+ pyrogram/raw/functions/stories/__init__.py,sha256=U679-toT0ObUMKgAH34guQ_qbh0KbyrpyyhALSIAuIY,1455
1482
+ pyrogram/raw/functions/stories/activate_stealth_mode.py,sha256=e1fyRR-AEPF8psb_fJp6E9VHne0SumGQ6fJ2OISYirk,1695
1483
+ pyrogram/raw/functions/stories/can_send_story.py,sha256=yC3G5uK2MqDA3S1dKqrqksfRGaT93Vs5ktuP1LHSOMM,1340
1484
+ pyrogram/raw/functions/stories/delete_stories.py,sha256=L2ZOxnf0U0xu5VE-dn3MvAUWfu4qA0b9vaOGP_rzbWY,1575
1485
+ pyrogram/raw/functions/stories/edit_story.py,sha256=J1v1HbZvdah2iV0hDt80IrqbTFs-hLxq8bF7TZcavOk,3901
1486
+ pyrogram/raw/functions/stories/export_story_link.py,sha256=FMhMzLa8u4q-XBu7bW80Owk6Q2qwUII2iVU0ipofYdE,1579
1487
+ pyrogram/raw/functions/stories/get_all_read_peer_stories.py,sha256=K-0f8wmEZ9TVAa8NFrnw_ZMoGXlBZbxCGUQpdjUTYJg,1207
1488
+ pyrogram/raw/functions/stories/get_all_stories.py,sha256=vFMFfJluGB4ZlllaR6tcUpoWkiozawfHQkt01RyyWEU,2047
1489
+ pyrogram/raw/functions/stories/get_chats_to_send.py,sha256=3CD9h2nYH9AB2KAos8BJsDfaE68-lZGB08U02YeyRm8,1193
1490
+ pyrogram/raw/functions/stories/get_peer_max_i_ds.py,sha256=-MmaA_o9Y2-YSZuzxejtUDHj2wFMR_uo00aFCQ-AFr0,1366
1491
+ pyrogram/raw/functions/stories/get_peer_stories.py,sha256=pU2Z4GtWwXA2aCegPAscwYtwp-dEx9m_irRe-7SRnUY,1406
1492
+ pyrogram/raw/functions/stories/get_pinned_stories.py,sha256=CWbZ3g2WLRGeDFQZzK8eW_knSxZfexa3RVN9BWVIWxc,1842
1493
+ pyrogram/raw/functions/stories/get_stories_archive.py,sha256=W-VM5hi0PN4xv1qH96TMpExO5SN9k_8kA5vIL_JfYR4,1846
1494
+ pyrogram/raw/functions/stories/get_stories_by_id.py,sha256=FV97XTfi3YSL_jRm3aiREDcBAGLETPKmDkjWpWCRgRg,1611
1495
+ pyrogram/raw/functions/stories/get_stories_views.py,sha256=rykZFK7CdgaBOgTcJY0LGU7X9oaocWAPIBHnB0SwUkg,1621
1496
+ pyrogram/raw/functions/stories/get_story_reactions_list.py,sha256=y5BKdsvcS5G2T9v5pJYrrJfBjnq93l2rKffF0GM9xy0,3004
1497
+ pyrogram/raw/functions/stories/get_story_views_list.py,sha256=BX8A-fh29NVIkPEk972FHkfgJHWKItsIYZf9Nl3IWIY,3349
1498
+ pyrogram/raw/functions/stories/increment_story_views.py,sha256=HnaMzo0DBYdHhJo0WGrRMWbwqyjbGr7wh1AAFF07Avg,1581
1499
+ pyrogram/raw/functions/stories/read_stories.py,sha256=0nfXdr35-iah9UKA8jiLXuI2o22PlRSHTBxBPIZqcjY,1563
1500
+ pyrogram/raw/functions/stories/report.py,sha256=fwQLXiJKh6EM03lwEkB9SLZAVEio2dplVDacbwwPVhU,2025
1501
+ pyrogram/raw/functions/stories/search_posts.py,sha256=NiZMdIs6LJvviXcupJa-NbKGX16K8l5jXtDV5diKH3I,2377
1502
+ pyrogram/raw/functions/stories/send_reaction.py,sha256=oA9cv3vg-Aeo8tAxiJNtNc7seHeEMatfVjmzyCr-3kU,2249
1503
+ pyrogram/raw/functions/stories/send_story.py,sha256=AEaLQpHQudR41m3mEVxZsXRDwLfl4q4pw0BmJ7cBN-M,5811
1504
+ pyrogram/raw/functions/stories/toggle_all_stories_hidden.py,sha256=o-hPmjKPjCRliZ55aAuXfS09-wcTHhix-FXxt9V-adw,1333
1505
+ pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py,sha256=nPvpLtV8Tn8Fyktygp2G7WbygOVI8WfJmt5Cz9TUo4E,1587
1506
+ pyrogram/raw/functions/stories/toggle_pinned.py,sha256=PqP-gCUOl1pPs_ukZg_sv3JiwL8N_vat3inHEFs2Rrk,1774
1507
+ pyrogram/raw/functions/stories/toggle_pinned_to_top.py,sha256=0TWz2pL1vsFL628nTMg7RqZXlX3yMYLvGfJ7Go0TIQ8,1571
1508
+ pyrogram/raw/functions/updates/__init__.py,sha256=4uixo2esSZnATyqFwKZ23l2TozrBedT757_5v145YMc,372
1509
+ pyrogram/raw/functions/updates/get_channel_difference.py,sha256=CVL5KQj3ZStmibgQkNLCOm9cm8Zj6xJpzuUiIibj8tQ,2471
1510
+ pyrogram/raw/functions/updates/get_difference.py,sha256=P7sgZdcPY_L65gOc7yl8UrxvmH-C86rMTKdZuMklBWA,3016
1511
+ pyrogram/raw/functions/updates/get_state.py,sha256=uXKlheD_zvu_o9ziL6oRjV0SGeu0QOhTt16iSdcMlRM,1167
1512
+ pyrogram/raw/functions/upload/__init__.py,sha256=7noCaloQh1t8nHumj2-p8wjcSCykWV6B8FOlnu8CARw,574
1513
+ pyrogram/raw/functions/upload/get_cdn_file.py,sha256=Hc8OjNce4EsyEY3vWAjhM3p_TidgXeV8Zd8qsaRhTJ0,1785
1514
+ pyrogram/raw/functions/upload/get_cdn_file_hashes.py,sha256=a3YLBq16OYnpF147fxvgJw34yjUWnXODZTjFoYULl2Y,1605
1515
+ pyrogram/raw/functions/upload/get_file.py,sha256=fHgk_4qw6HytkpMi_ZHhTPnhUzIovzvHr7NKe5Splks,2474
1516
+ pyrogram/raw/functions/upload/get_file_hashes.py,sha256=L5LReF9skCjYxqXgWiCmlYiTGLFm2dhy4MLed-bvaFA,1667
1517
+ pyrogram/raw/functions/upload/get_web_file.py,sha256=OBPSSsc4pQxWXtb-_U_xLaWJBoojmlw5DRiFaXAhh50,1868
1518
+ pyrogram/raw/functions/upload/reupload_cdn_file.py,sha256=SVAlQCo69SLmYP_VNdYeTXBfezjtyMyVbJ1TSx0qtkg,1660
1519
+ pyrogram/raw/functions/upload/save_big_file_part.py,sha256=GsJ22A-sMu5TRKgA4rdDq3UUFyw37RidEiITkQbXp7s,2056
1520
+ pyrogram/raw/functions/upload/save_file_part.py,sha256=1IZm45o7KOkqNyeQrOO5YUtq2hqDsefsDKAjNNRS0h4,1745
1521
+ pyrogram/raw/functions/users/__init__.py,sha256=FTL8DjQuOoOrtdlPI_jloP7s0JwF2buxjizDVOQpGNk,448
1522
+ pyrogram/raw/functions/users/get_full_user.py,sha256=4qJHzJyxREdPyhnIq-WP6htJye8nz5Xxi9MuKwI-_Zw,1364
1523
+ pyrogram/raw/functions/users/get_is_premium_required_to_contact.py,sha256=WVVmS8SoX8yyjyZiQrVWYQcCfyv_mbVFHdEaLwFjwSs,1418
1524
+ pyrogram/raw/functions/users/get_users.py,sha256=BM8HcNDQhTySU4v616OyY43Kr_3niKBy9JlJ7bF9DsM,1360
1525
+ pyrogram/raw/functions/users/set_secure_value_errors.py,sha256=TJDkwb6djKdem4_lyBkaNzNNGpTvJxYHcmbe0ErXGqc,1670
1526
+ pyrogram/raw/types/__init__.py,sha256=2AWxLh7AKnBuxYG9rwpG0cMWmyt-cLsCK4sm2EGXKac,65227
1527
+ pyrogram/raw/types/access_point_rule.py,sha256=xytCO-4BOnCBtwpjShzkq37SzpjyYznAmw1nTDnu_-s,1885
1528
+ pyrogram/raw/types/account_days_ttl.py,sha256=pnEflNvqbX6-OEy7J3J5qDRi3N-01OTDWJGcJmbBk_U,1510
1529
+ pyrogram/raw/types/attach_menu_bot.py,sha256=HU8yfX-RR4SEzvP8wGBbNiJHlMP84YUXygFH4hs55wc,4596
1530
+ pyrogram/raw/types/attach_menu_bot_icon.py,sha256=V0Mua_cKqjU_hJ2ZQ2-Rc94uGr4QO061RCbiuDmRBW8,2104
1531
+ pyrogram/raw/types/attach_menu_bot_icon_color.py,sha256=sMuZEsVktt-xucI49oGHMejDObTqLKbCZP9KpokEjXM,1543
1532
+ pyrogram/raw/types/attach_menu_bots.py,sha256=7fpjdm9xaSuE-QqKgSu4S-pctBsZrUgTxvITyPCNnC0,2067
1533
+ pyrogram/raw/types/attach_menu_bots_bot.py,sha256=1jtzA-6D-J4zveChxngkr9yJcaXWFKD-wG-tfmSyfmI,1856
1534
+ pyrogram/raw/types/attach_menu_bots_not_modified.py,sha256=rRC60Y-x8e0F6LoB3mZQJ4cFaDHJRvX3xGzfNfqA5MY,1415
1535
+ pyrogram/raw/types/attach_menu_peer_type_bot_pm.py,sha256=Jxyb_Nc4jZ_MIYvaATevERxOZR16o80fSaGHx47M1OA,1201
1536
+ pyrogram/raw/types/attach_menu_peer_type_broadcast.py,sha256=jeRG7wm0Nsk6bz2I5RTrsSyQAsGyNC1VC4jQmURiNBM,1217
1537
+ pyrogram/raw/types/attach_menu_peer_type_chat.py,sha256=9cVgGSSfP_8PMveG_GD7XCK5h5ciF2QICUkq9jq1jRM,1195
1538
+ pyrogram/raw/types/attach_menu_peer_type_pm.py,sha256=fpnbWIP9spdZoNcg6Do3RPVIk--GDyXexoTtGSPfaco,1189
1539
+ pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py,sha256=GikjiyEJGxnJ7_fLUDD2xdfAUzmF5Opg2Kj6a1IpDQ0,1217
1540
+ pyrogram/raw/types/authorization.py,sha256=TDy047qz9cvtIylR1rz_FCMEpRt8o_Y1ftEUPPAp7KA,6194
1541
+ pyrogram/raw/types/auto_download_settings.py,sha256=G_IEJpO34YvYGtt3gzPVkrIr4yBGIylZS64CspwCbZM,5035
1542
+ pyrogram/raw/types/auto_save_exception.py,sha256=KqyIFZUhv7zmZvaP0Pb1oPW6HaC43_yI7jGUOfB2LmE,1673
1543
+ pyrogram/raw/types/auto_save_settings.py,sha256=652TW0yztt8nn5kt5Lco0xdA5vf446s88Ho3i7O_lKI,2143
1544
+ pyrogram/raw/types/available_effect.py,sha256=gVnCIbvdnnb8P4utUIH5gZieQL0uxZGcSKAQFdICiDw,3195
1545
+ pyrogram/raw/types/available_reaction.py,sha256=_iSlD-hQz_ncDcZh54L2mdB4l6emke34cEFsNK3ncGk,4890
1546
+ pyrogram/raw/types/bad_msg_notification.py,sha256=eTL7NWDoTcBDOb-ZDuyzlLX8C47dzqHbdUo7NlApWTw,1899
1547
+ pyrogram/raw/types/bad_server_salt.py,sha256=lg6DMMKPmSvAzsAFoWVfvV6-dxZuCEYJyLDxHfV70so,2172
1548
+ pyrogram/raw/types/bank_card_open_url.py,sha256=KB852HlIe4d8dB5NN06U7va-3l7G-WKAkbCGOt3gw94,1488
1549
+ pyrogram/raw/types/base_theme_arctic.py,sha256=lLvkN7rtRIjZuBrL5LObrv182udABUFfDdx6rZmDZx0,1160
1550
+ pyrogram/raw/types/base_theme_classic.py,sha256=Obvt7NmjIgXRWf_RdqgZs3G7PxbAuTFgmhyLenDk9oE,1164
1551
+ pyrogram/raw/types/base_theme_day.py,sha256=TUgQrZ15EgvcOMCCI45HNCNFGIVPjiz05BVVdWWGnQw,1148
1552
+ pyrogram/raw/types/base_theme_night.py,sha256=nEnMlYNUCsWpY7qsT2Smx3rNfykyFh-jGpaW1XeNRQ8,1156
1553
+ pyrogram/raw/types/base_theme_tinted.py,sha256=9JwN7378u8iK-JFBmyS87ldRs5qYCgfXH38azbt7CH4,1160
1554
+ pyrogram/raw/types/bind_auth_key_inner.py,sha256=engfSMnamF9XP1FGQaXEBCNQY7_xhB7FGu2CnxOkjhQ,2469
1555
+ pyrogram/raw/types/birthday.py,sha256=HA3qKODfxRYdsDc6KxlkShwqV_Akrca7qvokjyd17WA,1856
1556
+ pyrogram/raw/types/boost.py,sha256=Ozjyc2UaoJJak9TkwzT9PJK3TsVdhj0SD5HE34nNaek,4206
1557
+ pyrogram/raw/types/bot_app.py,sha256=61o8y1YuEnD0yIK-iLCXD7MjEeASPRii4Clr7UFePjU,3125
1558
+ pyrogram/raw/types/bot_app_not_modified.py,sha256=BET4nPwAUI2Ei1rJw1N_EVon29fc3RlmDIANjCyw9VA,1165
1559
+ pyrogram/raw/types/bot_business_connection.py,sha256=Sbs8Bp2zbz8Tn2Tl6L_tpelDD23Yb9b5A_tL2_mLw14,2637
1560
+ pyrogram/raw/types/bot_command.py,sha256=pF05RMhclzHe5o8WHmgXHpZqCBUNuJrB53mAOYALtnc,1765
1561
+ pyrogram/raw/types/bot_command_scope_chat_admins.py,sha256=mfF6Mteriqw_hwjbrBohMOtqYPqGbTfwa5nFDJ6t5gk,1206
1562
+ pyrogram/raw/types/bot_command_scope_chats.py,sha256=VoV0vbYIBoT4sHFIMZDRtWtHGaWEWH5x2zqQ8aLh4XI,1186
1563
+ pyrogram/raw/types/bot_command_scope_default.py,sha256=aIlfFVlMNo48eFD5F9inv50K5Nr3PBdh-8am4fuMvHM,1194
1564
+ pyrogram/raw/types/bot_command_scope_peer.py,sha256=2FnoawMaL9OdCKZ2zN_InL-TUBBnIIOZel639glkKRQ,1385
1565
+ pyrogram/raw/types/bot_command_scope_peer_admins.py,sha256=h-NZu3slQd-Nery2Py57PtUsciB8x5D62kpPji1MraE,1409
1566
+ pyrogram/raw/types/bot_command_scope_peer_user.py,sha256=tu5Om6qrPt2FGsAgtHuFw2zGXEme6KVgveTcLugsqFc,1676
1567
+ pyrogram/raw/types/bot_command_scope_users.py,sha256=wNml-705xe5jLkI9-6cEb53pnRyJKbOv2XLw9EbIBo4,1186
1568
+ pyrogram/raw/types/bot_info.py,sha256=sa3n3-t0uV9qWTuk2DC1_H2Dw3TSeJoqCyh3Tu5qZH8,3995
1569
+ pyrogram/raw/types/bot_inline_media_result.py,sha256=bPyWCKuZEYujtJ9P5H974AxQMW5fgeYwfm9YyjhuZqo,3509
1570
+ pyrogram/raw/types/bot_inline_message_media_auto.py,sha256=ElT-PmsDV7ohL7UksfqLz75yjO6t7eVAB1I0jUoQ7eI,2713
1571
+ pyrogram/raw/types/bot_inline_message_media_contact.py,sha256=vZp_TFjpf-zJMTDUnyadukzWoMblAEZC-Svhtt-Tccg,2652
1572
+ pyrogram/raw/types/bot_inline_message_media_geo.py,sha256=r_HWGzEfGWLI8HKChlWSDTGsbeqFo38to2R4rM41aLE,3300
1573
+ pyrogram/raw/types/bot_inline_message_media_invoice.py,sha256=Qdy2gSGoS9nhkJ34pi4e4fHThNZfAST_41DKwJPuIIo,3757
1574
+ pyrogram/raw/types/bot_inline_message_media_venue.py,sha256=lrEWLZUoLAFDHArm2g5Fv232WbQDkie0iVxXhHYedtM,3052
1575
+ pyrogram/raw/types/bot_inline_message_media_web_page.py,sha256=UFtt1XlH72YxJ6Sj_Is-9Fyb_UIJj7e8VvcFlv94puk,4117
1576
+ pyrogram/raw/types/bot_inline_message_text.py,sha256=qzFFl7YVVRWqcQuqPjhDmEF0acwMQMYAaOUZBNDw2gs,2987
1577
+ pyrogram/raw/types/bot_inline_result.py,sha256=xT3f5SwTPhb6BX6wmiC_nkkeBrCGxy544qh6tcTC9Ec,3846
1578
+ pyrogram/raw/types/bot_menu_button.py,sha256=5jNK7AHoZk4VFos_1-PgsjTFDvG7GFb9-OeISuS6o-8,1683
1579
+ pyrogram/raw/types/bot_menu_button_commands.py,sha256=j4-cI1sWvY2oICeAD218CRu53Q-ndRs1HkJOZDsY_Sk,1393
1580
+ pyrogram/raw/types/bot_menu_button_default.py,sha256=9cGHSpvLshICKjV6ZOdtCX_0bLNS4awepe64_19DFjU,1389
1581
+ pyrogram/raw/types/broadcast_revenue_balances.py,sha256=SwJe3h1Y34AQN1wAzp27KcfbfVPBco5zdlaXWLPnKDQ,2061
1582
+ pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py,sha256=ZtA-SrnHTYp2y7TctLk8_HI8jNxptKe5YYMP_j8oqA0,1877
1583
+ pyrogram/raw/types/broadcast_revenue_transaction_refund.py,sha256=ChkgUbQCNHMdCkjoI4DHbO1c-PDjjUaFp1hGLQHUCOA,1831
1584
+ pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py,sha256=_UH2o4bB15oEO1bh8WOIEHjAfumrFXgywYHGa147tCo,3358
1585
+ pyrogram/raw/types/business_away_message.py,sha256=qj_yKPauYv53kaJWP0ympnPEyw0D52tqp2bNEM2WaWs,2448
1586
+ pyrogram/raw/types/business_away_message_schedule_always.py,sha256=eyngccYSBjpK-Eojsa0b0afU4F9--GXyhqef7VFk6MQ,1250
1587
+ pyrogram/raw/types/business_away_message_schedule_custom.py,sha256=DVPw0rTY0JWf6sARusMbvp8HDmh2N1xBlp4_6L4tkBA,1675
1588
+ pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py,sha256=eBPDZrx49x-BaEuouNjavmlnt7gyp-1Cqr_JikgO0jI,1290
1589
+ pyrogram/raw/types/business_bot_recipients.py,sha256=j32SBbKEmLYaXGs-DLHb6lACw-XJGFuHqJlVcdyrSyk,3621
1590
+ pyrogram/raw/types/business_chat_link.py,sha256=BtgVHd3a7gH_5Csl2IlMu36pOkwzNUlOJS-Lp3ttR4I,2865
1591
+ pyrogram/raw/types/business_greeting_message.py,sha256=UkU3GpXRWRgMV7sXEL4ys2dFJSEC8bBsHGiVkpuKqqU,2052
1592
+ pyrogram/raw/types/business_intro.py,sha256=SS2wdkPYx767AvRADnKmJq08j2o7B4mywSCCBlvvvN0,2036
1593
+ pyrogram/raw/types/business_location.py,sha256=e1bGKhlxAJW2hDZbja3m3IIToRHVpFOWXNY4sjA8HHQ,1839
1594
+ pyrogram/raw/types/business_recipients.py,sha256=TO1AnU6iuqPudrNV6bQ8fGifqihqfaEO63rMpauMSGQ,3124
1595
+ pyrogram/raw/types/business_weekly_open.py,sha256=UXhW72cZrhDr7dtHmJxnEr3oE_RKBOuXikkxi4I38KU,1642
1596
+ pyrogram/raw/types/business_work_hours.py,sha256=SharwOemop4TBvOBxBzkncL2hp4dWpINFs-rXvwjskE,2073
1597
+ pyrogram/raw/types/cdn_config.py,sha256=Wv2vrJ1EnGZaE2fCAPm9MSJRoSJZQBhPcqjHye6lJG4,1637
1598
+ pyrogram/raw/types/cdn_public_key.py,sha256=SOuFpb85-59w3ecZSzwZwJf0caT6qQEz_snNCnnl2n0,1547
1599
+ pyrogram/raw/types/channel.py,sha256=Q8hyoygaXhgvSGIBQn1-vsWWl5P29dCkMfPwk_6kaDE,15094
1600
+ pyrogram/raw/types/channel_admin_log_event.py,sha256=EezIpAKTagIQwhsxk19240fLhf3VpEMYEW2wi9Sh75U,2068
1601
+ pyrogram/raw/types/channel_admin_log_event_action_change_about.py,sha256=h-B4byrcyRxI2nGbSg0K2HMZngCGS-6ouGkAwGxwpg0,1695
1602
+ pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py,sha256=DmkU5vPxXxCUsDruTlg7zGX02-bhcdZcu7t6ijaU2iI,1901
1603
+ pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py,sha256=E5j_4fbt-mvEW7zPpkaGthejcACaujfbREC9HTJMBEs,1857
1604
+ pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py,sha256=YCrAY85aEd00w-KYIiWUNKOErSigMqGKQJh7EOLxR84,1995
1605
+ pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py,sha256=2bFfmfrqrhHHxFUdUZ4gyXfTOnNv3jqxigx51Ql-XaA,1719
1606
+ pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py,sha256=Z23DVEEy2DO-31fwR4ppWhNhee7n5oGtm0GZWBBatD0,1723
1607
+ pyrogram/raw/types/channel_admin_log_event_action_change_location.py,sha256=sQuEiLunBjrtCB7glAqqy0-hy0GVUd5-xzn-08_FvlM,1875
1608
+ pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py,sha256=8eIzO_WeO4jL9DEaRVI9eutLhETa-gqnCIsokcEj3do,1833
1609
+ pyrogram/raw/types/channel_admin_log_event_action_change_photo.py,sha256=UDMvtdTS6_ZTyXAJ2_zw1vWseRRHxulnt2aDmL7T8zg,1785
1610
+ pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py,sha256=cGLE8zD7CQE2hzIIGtJ09YcOdacfviqh_MmFNQTV0Ok,1861
1611
+ pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py,sha256=6A70jau8GBh3L9zNld465_ELe8ahAnrqNLZb-Z2u2KM,1975
1612
+ pyrogram/raw/types/channel_admin_log_event_action_change_title.py,sha256=bRA6VgiWbOekS445gn2aU5dC-lslPph56jNcUSZktGA,1695
1613
+ pyrogram/raw/types/channel_admin_log_event_action_change_username.py,sha256=C5X_7w94rMpbdVgFInBI-JwJDoF7Jx6sjbOmtCyWgc4,1707
1614
+ pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py,sha256=WT8BCG40iKFvl7B93NftwjzSddRk-CxY814gsS1V6bg,1791
1615
+ pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py,sha256=qzuea8x6Rr9y0PiH-TgefrbOabxkPvADqwdmgv8_pfE,1833
1616
+ pyrogram/raw/types/channel_admin_log_event_action_create_topic.py,sha256=3UgAJnTFHPdJWw_My1XVWbfHbLiwdxHA6NeZi0jhirE,1481
1617
+ pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py,sha256=x_fuEsI1oA1JaIBSJcm6bMjf8FgLFQLirkxLICGwsJQ,2049
1618
+ pyrogram/raw/types/channel_admin_log_event_action_delete_message.py,sha256=kahCN6YH6u85DZ2HZXapN_3B3HVq3qbnDENnVdhZBUU,1495
1619
+ pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py,sha256=0PbKYXI769bOKUj1cPEGWVPrLYbwLS_juWE4oVEJ_Kk,1481
1620
+ pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py,sha256=i9wd--UQ0LBsgX8SbrZkAdvUFWgyqe5D9OSlvSqBRMA,1508
1621
+ pyrogram/raw/types/channel_admin_log_event_action_edit_message.py,sha256=0u34lThjp9bcWSyYrEBThqTg3MW_c9s09uYIsAuifQk,1837
1622
+ pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py,sha256=gYwRvGarbZ-7WI5jYHclY9mzEWz29PfK1--ip9KlroY,1817
1623
+ pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py,sha256=vRnSxwTZop3qYrlCIDXiqFUtSFH8E1NRxbP3je_4VjU,1558
1624
+ pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py,sha256=6OhOcvzsHAY070Btn5qXfK82gGlIIWSN1e-ku3lKzaA,1935
1625
+ pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py,sha256=glAe7-NGe1Ndd1zislIwQN9U1UM4O2E-wB45iFS-nQ8,1558
1626
+ pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py,sha256=bXLpdLFCzwjfCbuYLZ5raLg76NPxGrtrkN6gvOnCb04,1591
1627
+ pyrogram/raw/types/channel_admin_log_event_action_participant_join.py,sha256=9eX9fZE-uCPnnR5XVdD8OuCUWPWeGSKGUmfF2EORSXA,1281
1628
+ pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py,sha256=YbYZOlT6jgDbX3J_z2Izoy1KhdZQhwrTf3eIwAuevNE,1927
1629
+ pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py,sha256=gxBHqa6SUDXHWNnzP9Hwg0UMrvlBwbuAJP2MkYT4oAQ,1831
1630
+ pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py,sha256=i1-DMC3F_rwyUV7gWbuScd76howTBi4IKt8jyZM-z6I,1285
1631
+ pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py,sha256=m4npxVpAUSnA-d95gBQhbhHPxC9NaNl0rzomEdYOzDk,1591
1632
+ pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py,sha256=vCd9CJK2xKh0MQqYCYQI5ldltj8EpipcBl60lm9aTLE,2041
1633
+ pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py,sha256=nzPc3IipkMPAUAKva1Bx0UtOnDCpNf4fDGxSoQ-sQag,2033
1634
+ pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py,sha256=-bXpSjB-hvOglGWZSila63bpaKn8Q4qkjJAgkgaOuDU,1599
1635
+ pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py,sha256=qX-_wOcXXPXI4ibf9028UmJsUhhjrYuXiyYx1WH4WoY,1599
1636
+ pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py,sha256=3zQpxeJMQC10ecZZq-Xv1J6ZQqDp-3xxaagte2_5diM,2186
1637
+ pyrogram/raw/types/channel_admin_log_event_action_send_message.py,sha256=lFHl8iIeezW2m27SvQjD9V9IHbx_l2eVkXfdWgVd6ww,1487
1638
+ pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py,sha256=IqIkbVEEgqZNZR5wGV6S3_tLfhViln95u8cEMnp5-8s,1500
1639
+ pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py,sha256=XpIn9RPQXa3EIkqWkJBlk19ruNT7MZN4gbvJmSoU9Aw,1475
1640
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py,sha256=enntegZtmxV3UHXKEgcPIFiWmOyBuHetMnb0dXP-6FY,1460
1641
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py,sha256=VAjR8xot_WEmmHR-fOFIg0VFnwReUz9ZJqV8AnfQM8k,1446
1642
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py,sha256=25PytJt4F_kR3xYtxvlozLD55nwOszQDcWQKzNVi7F8,1501
1643
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py,sha256=LLna_r_GVu81JkWE1M8PFQ7Q6_9ISrMgkIS7xhHF56g,1456
1644
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py,sha256=v41HDZBO8elSsA39v0mPq9C3qxUzl8h5Ry_UN1gSdfU,1468
1645
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py,sha256=TRFqfSbtKNkIguRp4bBl1t3tEV-zpbTtf_PCyz9JxcU,1492
1646
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py,sha256=4KjUCFFMuGetuHZFY4__cv1G7-DaZjqtzK_PGbF6lIQ,1468
1647
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py,sha256=HbV_1o2mmyF8vSyiHb1NYxzojYOudKW6LN89z9-zZng,1711
1648
+ pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py,sha256=w0TRd5VjshBBiEPY-V-9slrmaRbAv1k6w12sakIovCE,1491
1649
+ pyrogram/raw/types/channel_admin_log_events_filter.py,sha256=zBj8xbtxcjOcaejtnFswn6SSEtrsOklfdjbGOmxRa4k,5829
1650
+ pyrogram/raw/types/channel_forbidden.py,sha256=gai_Rofy1KaIetuUUnG0pY0q8KPIVxVViZ-HcqPrkz8,2772
1651
+ pyrogram/raw/types/channel_full.py,sha256=MIZP2Yl3SSvyxmAP2sJ_dSU3OQRRQFgd6dkmD6qfViw,25507
1652
+ pyrogram/raw/types/channel_location.py,sha256=dRrFzMn2xmuPpkitQCk1wiNJ4XV2H6cL1hG9VRZrR34,1626
1653
+ pyrogram/raw/types/channel_location_empty.py,sha256=4SUw2_zlXapKmNUgvkSG2TvxIhM_y7f-kGXI3exYwXA,1186
1654
+ pyrogram/raw/types/channel_messages_filter.py,sha256=LKaWYd3QoTw9_nHzDPXNab2Jhrc-aOmVCOPkI_sGkWk,1880
1655
+ pyrogram/raw/types/channel_messages_filter_empty.py,sha256=LbgixHFifFmOlEVPcepyfA724kNwbc6U9A-oyF73-XM,1216
1656
+ pyrogram/raw/types/channel_participant.py,sha256=5MNZrz9mSP42q4L2WakFhiyh0KsdwxFtap4-c4apQos,1546
1657
+ pyrogram/raw/types/channel_participant_admin.py,sha256=16O0PqI44SzYX93vm0JnKIFuxRVcJRsD3BdiJZJl8wI,3514
1658
+ pyrogram/raw/types/channel_participant_banned.py,sha256=tsBCDoog9QRAgFf2OSH9l_tHmTPdR7w_FvNrveo2v84,2462
1659
+ pyrogram/raw/types/channel_participant_creator.py,sha256=BCHMbT5vVHWPbXRovPJZMKYhrT_SXes5JfzJGQVLZBY,2117
1660
+ pyrogram/raw/types/channel_participant_left.py,sha256=LQH1mPBa_Nnx7s_0RWR1GRQCzGzWBtOcskHQbN_UX7w,1380
1661
+ pyrogram/raw/types/channel_participant_self.py,sha256=L-qrS78Apa18h0_pgYyS6-fzzzCNtGJ220JY0BzAvvQ,2158
1662
+ pyrogram/raw/types/channel_participants_admins.py,sha256=3tpnilrndmLqjL5g8XmFaYsNr-DQ8hQt3h6-jqcTI4Q,1216
1663
+ pyrogram/raw/types/channel_participants_banned.py,sha256=QkPNrmDfqNDiExPjsl37SjJ-cIpMDUA80EckuJG25f4,1331
1664
+ pyrogram/raw/types/channel_participants_bots.py,sha256=TJp4_Y-iIvdlmHwUpod3s7Nc6jTvr4rd8qQfM-xnqlU,1208
1665
+ pyrogram/raw/types/channel_participants_contacts.py,sha256=mTR4G9atakSFmTNnflHpN2-KqNgnYl0xZfctZAgE1o4,1339
1666
+ pyrogram/raw/types/channel_participants_kicked.py,sha256=wg8Vnfrgqw3NCHD_zYyjzGcRpNthD9lg-T3aOZPi0ig,1331
1667
+ pyrogram/raw/types/channel_participants_mentions.py,sha256=nAPxzrQPJorIgvxNbMdC4rnV9JyQwEgcMHrNjKEPb9Q,1943
1668
+ pyrogram/raw/types/channel_participants_recent.py,sha256=i3_CYg9JgF4nJiaNlZPh4Kelk6TiUIuJrjZ2_4uXBBI,1216
1669
+ pyrogram/raw/types/channel_participants_search.py,sha256=SyZSxTR-LVnZx-RKIWTlWX0We89VKS75e8NVuSg7Fic,1329
1670
+ pyrogram/raw/types/chat.py,sha256=7dNiy-TQxMv1tSR09kRz7x13oMN8BCJ2JgsCey128Us,5845
1671
+ pyrogram/raw/types/chat_admin_rights.py,sha256=m0lC5aR0olp1rGyQQqH32RWguAYes_eOiUTi9XnJssg,5784
1672
+ pyrogram/raw/types/chat_admin_with_invites.py,sha256=uvHjmCykM6nUg5XIcrIyHHJqB0RpreQgd68iBtKAnek,1990
1673
+ pyrogram/raw/types/chat_banned_rights.py,sha256=GIdfSv1ylcMfJ0I715D-T_ehkxkDW53ODbC8KMgL2Y0,7570
1674
+ pyrogram/raw/types/chat_empty.py,sha256=3wJK_oTFkmXh6GO269wNwOy9X6OAmWUNg-O2I3W0cMw,1260
1675
+ pyrogram/raw/types/chat_forbidden.py,sha256=Dcwoir3lmq-huRX-VHG_ogsgT_skGQ2kb7oyAb0p3Qo,1474
1676
+ pyrogram/raw/types/chat_full.py,sha256=LqBliT5-_Fwjh1xA_xVJgoJT-kGwZl4fG5Bwe0wasKk,9601
1677
+ pyrogram/raw/types/chat_invite.py,sha256=TwdZ5YTJc40-N7ZCosrPZaFaf1IIqwFPzT5fS-Tntko,5329
1678
+ pyrogram/raw/types/chat_invite_already.py,sha256=aVs6Pj6hwyP1zbqhkwV_cVXnxO_XaKjrKA2c9pS7YLI,1560
1679
+ pyrogram/raw/types/chat_invite_exported.py,sha256=Q6b1Mg6uFNuIcRI3qnWSy0efjcN_G7J5Rm0mDpbCm2c,5243
1680
+ pyrogram/raw/types/chat_invite_importer.py,sha256=xVGtUYWhda-Ydqho3mp6JuHAN_A337HXRPk9Yk-mk_8,2967
1681
+ pyrogram/raw/types/chat_invite_peek.py,sha256=o_9kbROifNfj_nmHWgcm9qZ7wRTdWiZ19-0l4pXKi_g,1766
1682
+ pyrogram/raw/types/chat_invite_public_join_requests.py,sha256=tTJDzBnQB9vGaRh7BO30eg7ThGS2avRoTnK_kzMwpVk,1430
1683
+ pyrogram/raw/types/chat_onlines.py,sha256=7p9jBf1JgdG_Pg5rFtuhebIdoWcMIisjkRqUWgLVJZI,1520
1684
+ pyrogram/raw/types/chat_participant.py,sha256=PxLzxOFmdldtKLBXdzP0ZDqYtPymE0P_14i1D0q-ePI,1779
1685
+ pyrogram/raw/types/chat_participant_admin.py,sha256=9uEup4Ep7vjh2VY_eORi7C6N5GJoRHEvjrjp7-CMgpA,1799
1686
+ pyrogram/raw/types/chat_participant_creator.py,sha256=dnqpZbPtz1tlR3HuG2x3jYhuAfBbm-mTbJ_mG9B1YxY,1368
1687
+ pyrogram/raw/types/chat_participants.py,sha256=9VD0UGgoNu0U-UQv2wLOZ35evh4I0b5oYrAgs5sXKy8,1931
1688
+ pyrogram/raw/types/chat_participants_forbidden.py,sha256=G1Jo62An4_m6MwCk9MElyQR1XbGuuwUaXS0ieGw_VCA,1985
1689
+ pyrogram/raw/types/chat_photo.py,sha256=sNOraZEoM1zrMnXYriO5hIicjfBk-erZE40ML23axVM,2303
1690
+ pyrogram/raw/types/chat_photo_empty.py,sha256=RnhO6S9gv4B1Er2VKb_IEHKbnhyYYEWJZWYjEbHitYQ,1156
1691
+ pyrogram/raw/types/chat_reactions_all.py,sha256=poH9ldmdEAtBKxxPzEN2EHYwAPPxvqpTjYCTVzpPCTw,1478
1692
+ pyrogram/raw/types/chat_reactions_none.py,sha256=KbTg_SH99SDMXU6fcuGAW_L-3ZAAthNtBOTHsVkVMao,1172
1693
+ pyrogram/raw/types/chat_reactions_some.py,sha256=rymIKhEy77G-oqn_bZegzf5YoWefs5UI7iHz-eSfTO0,1438
1694
+ pyrogram/raw/types/client_dh_inner_data.py,sha256=JHIFoCJOqaXdjDla98y_MM0HFD53FDOQlag8Y04SzIU,2023
1695
+ pyrogram/raw/types/code_settings.py,sha256=kODSRIDPUwjSd6tarExg4kfAcEVjMGRnvhGoEX95rIM,4413
1696
+ pyrogram/raw/types/config.py,sha256=UANxY-CL9XxjtrP3m555zOMzS4q4-WTX6LRyfPqQBEU,18416
1697
+ pyrogram/raw/types/connected_bot.py,sha256=uTVz5iHO--2VAd1gJ-1RG2VN82zIiVU1jzVgrrw5Hp0,1998
1698
+ pyrogram/raw/types/contact.py,sha256=WU_Dk2ODy4YaaZTqk9PqW4Cb5qyxvNTSj1dcc13-s5Y,1503
1699
+ pyrogram/raw/types/contact_birthday.py,sha256=_wgtTUEZi3OItWuYRHnzk9HEyN9gZhjjtvyKJvxpTi8,1649
1700
+ pyrogram/raw/types/contact_status.py,sha256=Fauh5CbgGNY2kkYeS3nWtZl1i8OV97CUhsZG8GHpqC8,1806
1701
+ pyrogram/raw/types/data_json.py,sha256=mtk946Ln_OOmYw49XTXUDGmZAT0xhtVIQaWk0osnlQ4,1555
1702
+ pyrogram/raw/types/dc_option.py,sha256=378jSAa-iZLnB7swNiFWqrp0kawEky6ns_WmtU7ehnY,3743
1703
+ pyrogram/raw/types/default_history_ttl.py,sha256=5UarPGzAjiL3qO6SlgyHpWJDZBrk0Ecn82WZ5MRsC2Q,1551
1704
+ pyrogram/raw/types/destroy_auth_key_fail.py,sha256=3wKXUqPK5ROUm_TdU_Fi1Y23M1_KXZDRaNViTwZ4OIc,1378
1705
+ pyrogram/raw/types/destroy_auth_key_none.py,sha256=i1Zufmu88vrp2K-jGSbIfBVyWpFfdgbTnGIPM8L6P6Y,1378
1706
+ pyrogram/raw/types/destroy_auth_key_ok.py,sha256=x4ekP3pexahm5Wh-oksxkghUHMpS4vhI_CnIbnJMFLQ,1370
1707
+ pyrogram/raw/types/destroy_session_none.py,sha256=69tgDHJ5rzN0qQeZejpveNRZYLyFh7D1XSJk7tTJIkY,1579
1708
+ pyrogram/raw/types/destroy_session_ok.py,sha256=9or1jT3TgSlDiNFZ1gdFLypfRoxL8S79r6cU7fy5pb4,1571
1709
+ pyrogram/raw/types/dh_gen_fail.py,sha256=3MMlLniuiS0aXTP-kMoR5RgVXr_MpM02lsKFq5o0qfM,2087
1710
+ pyrogram/raw/types/dh_gen_ok.py,sha256=-WwGXMtWjMXPt-k1E8gpq1-JXA5nhgYbU5tbNwP5Xak,2079
1711
+ pyrogram/raw/types/dh_gen_retry.py,sha256=7toP7hswStNHOJFT2QU-0-zmCvekLjqvtEmfQo--l4g,2091
1712
+ pyrogram/raw/types/dialog.py,sha256=8y9aCFLr-Yqg-anpHDuxvsyh5zWThumR6TjECGKcdXY,6107
1713
+ pyrogram/raw/types/dialog_filter.py,sha256=Bnw8XrUcnURJi-DLeTgj1mRlBjdV_ngudcX-MeJlG78,5689
1714
+ pyrogram/raw/types/dialog_filter_chatlist.py,sha256=cZZH58NuptW2hKelKi03OF4Gu6qYAXK6XQVSCJABXcc,3331
1715
+ pyrogram/raw/types/dialog_filter_default.py,sha256=GiMXn01_a2Sz293jrTN205VVnGHNP971J898E4xmHGQ,1179
1716
+ pyrogram/raw/types/dialog_filter_suggested.py,sha256=nN5_jgj6_gVbsacUUHgilu20CArfVbnicthf3MD1iso,1899
1717
+ pyrogram/raw/types/dialog_folder.py,sha256=Sbd-ZehkW1yeW-IN6Zr8GqTaADdf0PNNwAKDHCV8St8,3715
1718
+ pyrogram/raw/types/dialog_peer.py,sha256=kp-Nwd3TMPWwpKzgxDKAzJSM_JTTT6MoaDkJHmLrY-o,1537
1719
+ pyrogram/raw/types/dialog_peer_folder.py,sha256=hQmveIAKh9sDpWGNCP74mapR79cJ41j8HqQ5IYLS3oI,1567
1720
+ pyrogram/raw/types/document.py,sha256=SmFLCfyrb3_oZNjWdM0eruJyj7i-21zmP2XGcLcGP48,4294
1721
+ pyrogram/raw/types/document_attribute_animated.py,sha256=VX3lWWKWsO1WRiqDsZpJRZnYZPy55gigB-I8qPQJZQY,1208
1722
+ pyrogram/raw/types/document_attribute_audio.py,sha256=culqIK4mQwYgqq3aU-59xjxgo9djTERK4azKD58e-T4,2813
1723
+ pyrogram/raw/types/document_attribute_custom_emoji.py,sha256=vU8QOLd5XZpzpwYfprVU_IPXtH3rmMLielPw_SOVBPU,2260
1724
+ pyrogram/raw/types/document_attribute_filename.py,sha256=PR_vKvwDkXx6bmokf7D4sBAMiEwoDegZOXKI88yvtWk,1395
1725
+ pyrogram/raw/types/document_attribute_has_stickers.py,sha256=IHuc7uhMO1A6DY28_yW499qfPG2qjvP342pV3Nb0hbY,1220
1726
+ pyrogram/raw/types/document_attribute_image_size.py,sha256=XajuUwGr1P6hTx8_0MJkxZhq-S0-lSwzL6Axx9q327U,1493
1727
+ pyrogram/raw/types/document_attribute_sticker.py,sha256=kQ0HF1pX1Bb_BU5ZExqua5ay-6Ha8Td7kUNnUa2DOns,2434
1728
+ pyrogram/raw/types/document_attribute_video.py,sha256=b_WGGLM4BWJUI7X6Or9hG4Tjt9kjsSsF2UmeqhZ72fM,3226
1729
+ pyrogram/raw/types/document_empty.py,sha256=-aqT2rGwkG_anMGB1ZMSVzmcFueXI7gksPtojhn9g40,1603
1730
+ pyrogram/raw/types/draft_message.py,sha256=XTwxK_jV5sW_djYW0CLiRv-Ii3y67XkxPyrQJE9yc4w,3890
1731
+ pyrogram/raw/types/draft_message_empty.py,sha256=_DP94WQdIHMpcYihzWMNElEeMVMN3dhs5jNQUozLhJ4,1514
1732
+ pyrogram/raw/types/email_verification_apple.py,sha256=kp4p4klK27Ef3o3iTm06CygEYaerVGrirBZl8n7-D_4,1347
1733
+ pyrogram/raw/types/email_verification_code.py,sha256=HQEMUGZMKgebiyfxzgqRjZdihyBaylTA9d4MqTD6dsE,1334
1734
+ pyrogram/raw/types/email_verification_google.py,sha256=1GZKr0FRrZXMmroMuCXuiDbR59Q6Tay19UeUBXnVTGw,1351
1735
+ pyrogram/raw/types/email_verify_purpose_login_change.py,sha256=6-_J_cbKfaLTShGHC0gAB5151bspnEoB3FhSKURRr8E,1225
1736
+ pyrogram/raw/types/email_verify_purpose_login_setup.py,sha256=glGS8DzCcBT22ZWzxn2xvGaGiiTtaqDIfANMGTzYAiY,1723
1737
+ pyrogram/raw/types/email_verify_purpose_passport.py,sha256=eld7tgRiW-qfT3s3Pvqy9hqjbtTrtshiPFeJhrN0V9k,1213
1738
+ pyrogram/raw/types/emoji_group.py,sha256=PkQIWkgOVAtutblQyFguOtbc0HFeSj2ytphrbY8PaLY,1841
1739
+ pyrogram/raw/types/emoji_group_greeting.py,sha256=0k4MIBo6slh-mKc0hB_Cqgf7ND-u_pCzNID3Gos38f8,1873
1740
+ pyrogram/raw/types/emoji_group_premium.py,sha256=htTGb3fZBHpFxMUJdFMluKp-OdVvZQ9EXYNpSO3DqLs,1593
1741
+ pyrogram/raw/types/emoji_keyword.py,sha256=vMviWNosCgQKca5rQy4_0fyAhzMseInMyZ7v7-Q848o,1594
1742
+ pyrogram/raw/types/emoji_keyword_deleted.py,sha256=akFWClEpz68-ati_ADyURxqVaww2JetEVLhno6nGp28,1622
1743
+ pyrogram/raw/types/emoji_keywords_difference.py,sha256=3kCrU3yyyv1avpdDiRFPY_I9fK0AbjcecJ-lYHDI9VI,2452
1744
+ pyrogram/raw/types/emoji_language.py,sha256=OR7Pxe0veVDjDJKq4DgEdPXb_aIf5fD44omM8657hTU,1561
1745
+ pyrogram/raw/types/emoji_list.py,sha256=vdQgRDrvPo0sHvwQ6mti70zPwd8i-R2VO_Oy8H2FAcw,1987
1746
+ pyrogram/raw/types/emoji_list_not_modified.py,sha256=J_3olrxqDVZPxt1CHtZFY0gN_ngcDsO2Xo8sXEsYVzg,1587
1747
+ pyrogram/raw/types/emoji_status.py,sha256=isrXXY_BtHJHX2XKRScGOCrf4twjmTTF96A6Zvz3ZtY,1356
1748
+ pyrogram/raw/types/emoji_status_empty.py,sha256=EymJtpe4TbBgKVVrG1OWTc5qzpN-uV-lN6LUBXsOjEg,1166
1749
+ pyrogram/raw/types/emoji_status_until.py,sha256=e7Cy6f1VA5BOl3qD_89n1H7ZM_oFTP2grNFgxjqiuIs,1576
1750
+ pyrogram/raw/types/emoji_url.py,sha256=KRj-ZUXxjenNG0QsiYQL2jmQY3PIVn3Qplt2IPut2hk,1468
1751
+ pyrogram/raw/types/encrypted_chat.py,sha256=iFvnnK578vs39RA86eUPO3LgwYHQWTJHOFet0BeLB3k,3012
1752
+ pyrogram/raw/types/encrypted_chat_discarded.py,sha256=6YGM-sqBBemQzD-j8IE6nH7Eyit6tWRSsjN7v4oh8mc,1951
1753
+ pyrogram/raw/types/encrypted_chat_empty.py,sha256=rZ59OtfdIMyE-UMx6hcC9XxZOR3aUCUnUtP8caDMrzw,1551
1754
+ pyrogram/raw/types/encrypted_chat_requested.py,sha256=8W4LeiVUL1tqNEElrd3y1MM4Z-gtH40mT5U859-vBUw,3155
1755
+ pyrogram/raw/types/encrypted_chat_waiting.py,sha256=DImJvqgETTa3yH6PaU9DJD5nzEJDzSdsDqXWFfMic-I,2521
1756
+ pyrogram/raw/types/encrypted_file.py,sha256=OLnGtfGQvfDHevwaBNnpjKnYLE6mGqfao0PoF_qPYWQ,2438
1757
+ pyrogram/raw/types/encrypted_file_empty.py,sha256=4NDnKP-59xV8TnSaLzFO_6cytVXBeQ7PIZQxElZjUwo,1388
1758
+ pyrogram/raw/types/encrypted_message.py,sha256=9KHN29XxYk14VNuAyQX-oog9WnSGulBCMMW9xW1PaLI,2237
1759
+ pyrogram/raw/types/encrypted_message_service.py,sha256=5q6WyNYq0uW4SaQZlpdokjXZquAlehUqr9IfhfWd09k,1999
1760
+ pyrogram/raw/types/exported_chatlist_invite.py,sha256=laSw-n2nmEBneU-n15iMlPuonMiws8KPuv0c4grRBQU,2057
1761
+ pyrogram/raw/types/exported_contact_token.py,sha256=m6V8w3JRJz7qDW8KIbbSuZda2ye4OFA8QNGdFKQq5xs,1753
1762
+ pyrogram/raw/types/exported_message_link.py,sha256=9WuwSLadrYBgKUNKiE3J-7LdPuHLGVFjnR4ZpfL3cck,1727
1763
+ pyrogram/raw/types/exported_story_link.py,sha256=DNPY1NM1JSkIgd0gHwuUyFKo0VfUNhARI6GAR3xzQXY,1525
1764
+ pyrogram/raw/types/fact_check.py,sha256=DI_kczAHNcAiFUmFEkC9NxFLT1-8yLxjm-eiP6v-SFI,2634
1765
+ pyrogram/raw/types/file_hash.py,sha256=NvUdP7SX9sZkfKsXUBbu1eje17FWcw5pOG6JtJd43FA,1962
1766
+ pyrogram/raw/types/folder.py,sha256=bkUisKLBQ5h7nGhn_zQD_osm8lgf466RXQxTTd8XtN4,3164
1767
+ pyrogram/raw/types/folder_peer.py,sha256=V2RCPom1uRgDdwDmiOuXxrXMCo3CVYltyAOwzlP1d64,1560
1768
+ pyrogram/raw/types/forum_topic.py,sha256=NbrF-7cH7Mfd2TN_IHhUv8VSRunb7kgfa0u2giUKY3w,6545
1769
+ pyrogram/raw/types/forum_topic_deleted.py,sha256=LHFtyMYoNrDgg0fXB02c1cps8jVo1bMHKK7QpI12sGA,1293
1770
+ pyrogram/raw/types/found_story.py,sha256=AI2peY1AfCO04qwdV5BZvrzOSZ1nkX0mb5hkGW2V0l8,1583
1771
+ pyrogram/raw/types/game.py,sha256=m_4fm0dJ2WgZHIufODyNz74UgfqyvosPqqs3EcW06I0,2921
1772
+ pyrogram/raw/types/geo_point.py,sha256=FCBGt52vHaxgz5xpke5bjjrfz5M9VCWQ6UZwS6KhlDg,2251
1773
+ pyrogram/raw/types/geo_point_address.py,sha256=TLOd6XPeOAnQEHLoEztedSYf3AmuB672-OfOuN0nVN8,2487
1774
+ pyrogram/raw/types/geo_point_empty.py,sha256=lLi6ye93269zSAGKPNLhJV1jwn5K62MFzj3AK_nlrFY,1151
1775
+ pyrogram/raw/types/global_privacy_settings.py,sha256=4zWFtRzrlHT7sTWGehmyLVSE40fwNilrcXlHtk0vnJo,3646
1776
+ pyrogram/raw/types/group_call.py,sha256=lZFBsNeTgk_yAWj-HBOH7EMD9ooZJGhsRBaQ53BK554,7471
1777
+ pyrogram/raw/types/group_call_discarded.py,sha256=gLoZJ4vPGCRrr3bTBkyGCVtzubcyCCqlGkOw1Nzb5Kg,1785
1778
+ pyrogram/raw/types/group_call_participant.py,sha256=9D0SjXFUaPthBlFp5hSRB8kc45rOtkvOOmT2HRm39kM,7381
1779
+ pyrogram/raw/types/group_call_participant_video.py,sha256=580fNrqYHEM-01juRxwlfor8CBOv8liXQ0tiEjld3TA,2591
1780
+ pyrogram/raw/types/group_call_participant_video_source_group.py,sha256=gzSVyZ9w1nz7qc-yWH928im3i2j14DwxEg2K-6pR2yM,1716
1781
+ pyrogram/raw/types/group_call_stream_channel.py,sha256=0JzIfvCMwMTKxEyY2OSGlfoTycFq2oy9HEgAirJ8ZQM,1883
1782
+ pyrogram/raw/types/high_score.py,sha256=IpNwQ4rv_3Wvp5DjTAIfVUBosZG1M59a8LbHzDdgW2s,1692
1783
+ pyrogram/raw/types/http_wait.py,sha256=nP9d8wYjsYfUM83WkH4fdIJy5GGRZUuHFa48V60laEE,1792
1784
+ pyrogram/raw/types/imported_contact.py,sha256=45hjvSiSwOU7WobCGXajBy6Qugg8MHmuTfHV6RIPM4s,1579
1785
+ pyrogram/raw/types/inline_bot_switch_pm.py,sha256=5g2QQNhrSgIMai10XjnyK04ALXTDEhsCqDVm96cNXCc,1570
1786
+ pyrogram/raw/types/inline_bot_web_view.py,sha256=JJUeCQ5nJmJ0Yg5qP2suai1llrNli7VBYFoX0oJHd2Q,1493
1787
+ pyrogram/raw/types/inline_query_peer_type_bot_pm.py,sha256=r6o9eTFNqnHSjuR8m9ZJ80wfcsiX0ez8MtysDTtRgps,1204
1788
+ pyrogram/raw/types/inline_query_peer_type_broadcast.py,sha256=HRoCpvCj5CcimIfdMB5LPyTgoC_QqxfPiFr5lPEjRYc,1222
1789
+ pyrogram/raw/types/inline_query_peer_type_chat.py,sha256=kG_YYNK_zerntQXhSeP2GJDZwsr0EbwdB18EWVcqKzc,1202
1790
+ pyrogram/raw/types/inline_query_peer_type_megagroup.py,sha256=suVaYEU5fyjiffetI_9zwOrlJ2_yXeV8sh7X058VQ6k,1222
1791
+ pyrogram/raw/types/inline_query_peer_type_pm.py,sha256=Rv4ZJnO0lH9zkOqGS4M6e8mmHKh0k706gk91Y17Uwx0,1194
1792
+ pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py,sha256=g7_zpjxdQar36TOWlD1y2DYqxvuAPACjbQ9HU9vzT_4,1222
1793
+ pyrogram/raw/types/input_app_event.py,sha256=5Lf9j5E-hWp2adNf72ut4z72BygDj_XBkQG1zAwUEZE,1946
1794
+ pyrogram/raw/types/input_bot_app_id.py,sha256=blISRgvylOja70y-4RbKXZWdINFJNMSnqbIf4Lec1bY,1540
1795
+ pyrogram/raw/types/input_bot_app_short_name.py,sha256=A0d1wIo7l24wSw8X8iKvuafw4kL0Lo1hL1WrpyhS0h8,1646
1796
+ pyrogram/raw/types/input_bot_inline_message_game.py,sha256=CIgc9apl6bCYcvDFegzJ5AcpOOxuOFEQWA6vkOCbADA,1709
1797
+ pyrogram/raw/types/input_bot_inline_message_id.py,sha256=RlK5fBy43fRQcjj88OxDxKhfS6RZ-_YXO629DR7TrMg,1792
1798
+ pyrogram/raw/types/input_bot_inline_message_id64.py,sha256=m27vfGVOlEC9srfXKCTXl8powo1U1NmHkGd-xryRXyY,2027
1799
+ pyrogram/raw/types/input_bot_inline_message_media_auto.py,sha256=-zkTjedfwftmkV49K7cYQpiBp4tijlgLLOvAV6NQzpU,2738
1800
+ pyrogram/raw/types/input_bot_inline_message_media_contact.py,sha256=KH2qdJXstZJN7KWlavXtGMEsq-2xpxw0WL6aVif8fEo,2677
1801
+ pyrogram/raw/types/input_bot_inline_message_media_geo.py,sha256=pX2gJqI3rQSHFa3i3e6pj9NdLhjoApyY-YQL6qy0M3U,3401
1802
+ pyrogram/raw/types/input_bot_inline_message_media_invoice.py,sha256=2k0DPFDGXKznnFsthDMYrQfMNBQNVAMWbD_Q0YWYsYM,3671
1803
+ pyrogram/raw/types/input_bot_inline_message_media_venue.py,sha256=6gEkNGXxZL00grdWBAy9JNfu-Eov5LnpGvN3IWcsX9Q,3151
1804
+ pyrogram/raw/types/input_bot_inline_message_media_web_page.py,sha256=NapHhdBzGxnMq-UYHAd0TzEnCtL8-b6HxAVhoqaLjtU,3920
1805
+ pyrogram/raw/types/input_bot_inline_message_text.py,sha256=qstx8K7bOjz6KcSFjBtriK0KCORfpn-fXz_Ov60kORs,3012
1806
+ pyrogram/raw/types/input_bot_inline_result.py,sha256=pipAQOEe7NHoSkiOKtV1W4Eb7Wawh3_-gwMzb1CcDhc,3931
1807
+ pyrogram/raw/types/input_bot_inline_result_document.py,sha256=y6cm0qaXhxIbhtOYRL2TiLKXfwtlrRQ_h3DFP_J22sY,3027
1808
+ pyrogram/raw/types/input_bot_inline_result_game.py,sha256=7Wu9Pycv4n3YGx3BiXSDe6spZ_R_Q9EDGllNY2MiqdI,1944
1809
+ pyrogram/raw/types/input_bot_inline_result_photo.py,sha256=wqIymCPe6BB8tp__8AkaXMZucV4lSkiL2RQauiHLAq8,2157
1810
+ pyrogram/raw/types/input_business_away_message.py,sha256=MTI6aJYCyFpN6icn0qgyRI3wwft5GlCkvz7gBkfykj8,2493
1811
+ pyrogram/raw/types/input_business_bot_recipients.py,sha256=M0dT76C4F0ufx0l8xjhEiugaMIlzIof13uUZ61i5Ldo,3722
1812
+ pyrogram/raw/types/input_business_chat_link.py,sha256=og3PHpUOjSuw5n7knx-BVA3IbPFfkZMWC-anZThU9c4,2245
1813
+ pyrogram/raw/types/input_business_greeting_message.py,sha256=pekwIo8pCpM7nydAf105MpyqkDf2rfMGRl9qqhtA4iU,2095
1814
+ pyrogram/raw/types/input_business_intro.py,sha256=dLlgRXMQiH2Lymbv-Qp4GUO61s0ZUbVtmS84qXKMEZY,2079
1815
+ pyrogram/raw/types/input_business_recipients.py,sha256=jaOto2MgVQmAsvyI1J0nR-xmiZ0Z2yApwE88CPCjxEI,3187
1816
+ pyrogram/raw/types/input_channel.py,sha256=HCQGDh8BQPJv8iC9sSDxb0fjHcGI5WTE0sSnnXVdaho,1609
1817
+ pyrogram/raw/types/input_channel_empty.py,sha256=xepo6WFLyw_hrO_wTStcfP2Hm1toG6-_5evewxp3Fqc,1171
1818
+ pyrogram/raw/types/input_channel_from_message.py,sha256=bIA2Kz-LMIgo_tha8dAWvjy1J4UkSUnLGTfsZB5QLto,1855
1819
+ pyrogram/raw/types/input_chat_photo.py,sha256=2JGuDQynP5DDsNna3t-NHF0oq48Kg3yMQH4f1aodo0M,1350
1820
+ pyrogram/raw/types/input_chat_photo_empty.py,sha256=BNXSDvWP1LNm3P_JFw1sNjg7liDEIGgOSi2_5N-LMgc,1181
1821
+ pyrogram/raw/types/input_chat_uploaded_photo.py,sha256=s1AngwLpCjq8HftCnBR6YirltWj1K9_f6vQP77byrCY,3033
1822
+ pyrogram/raw/types/input_chatlist_dialog_filter.py,sha256=sq1zuKe_eNSfkWYf7Ss4QYqW0puud3NeJ1rTtpscJ9I,1393
1823
+ pyrogram/raw/types/input_check_password_empty.py,sha256=BhyFTJSez-ZLvTHAzeMWoO8tKmKUmUXnY4jwbKbgzuA,1204
1824
+ pyrogram/raw/types/input_check_password_srp.py,sha256=ixFLuwiWfR4ueA9QoyZWlrtzB6mfYEbXfGk97oVw2Cg,1696
1825
+ pyrogram/raw/types/input_client_proxy.py,sha256=b-RVPO_A5xHVg2IuCnFu4JWwDspnwGtoNaAS3BZHZOg,1531
1826
+ pyrogram/raw/types/input_collectible_phone.py,sha256=_M1ojiXwEQ6cj5R5NOFE-X-5RYhh9zvruX6hEzd8fNM,1342
1827
+ pyrogram/raw/types/input_collectible_username.py,sha256=1J2YR-HcKLkS7hspdyh69eRG8VOMJ80rwv7p9s4by0E,1381
1828
+ pyrogram/raw/types/input_dialog_peer.py,sha256=6a3gPmopanwYLa88dTuNJZYJaEDhHHKr1AjuwhLHeUM,1369
1829
+ pyrogram/raw/types/input_dialog_peer_folder.py,sha256=hdigNLAzhnGIHMebTtHeuZJl4-98EiC9gfP0zn8jle8,1379
1830
+ pyrogram/raw/types/input_document.py,sha256=l6ECHRvh9AYpZSE5CK6nELwlOlcoeF0zuyJDqJvBqaY,1822
1831
+ pyrogram/raw/types/input_document_empty.py,sha256=P9xaCVy8kaNyRel8GCpG-OuRnDF7gTYJ7BINjQTj1tY,1176
1832
+ pyrogram/raw/types/input_document_file_location.py,sha256=pPgaOKpu6wXv9COuShu-o0UOEPh4ZiAXy1X-XoaYV-o,2117
1833
+ pyrogram/raw/types/input_encrypted_chat.py,sha256=i3GVqy3RyAX9gIZAbgbPqWNUhDRVQ0i4Hw75EH8-fvA,1609
1834
+ pyrogram/raw/types/input_encrypted_file.py,sha256=-gXh9IrVXAvgAbqAdYGcI7F11CHH2FgUqRIZVewLKto,1567
1835
+ pyrogram/raw/types/input_encrypted_file_big_uploaded.py,sha256=dr-6z4zhrf_sX8zIrVCUvP5JD3-B6zBHbKb9bOzX5tg,1844
1836
+ pyrogram/raw/types/input_encrypted_file_empty.py,sha256=K7nEHJIAPBcRSaEgYS5tYWQxsMDHkgNXUoBlCurrV2k,1201
1837
+ pyrogram/raw/types/input_encrypted_file_location.py,sha256=jD0MjW4DQhGNfIBAaag0aib4XHi7YbCow5pX6tF7ohI,1598
1838
+ pyrogram/raw/types/input_encrypted_file_uploaded.py,sha256=rGh4jXNyQJJ21XO3mmcrznpiqFhC6MlqSYkCfkGxWzo,2093
1839
+ pyrogram/raw/types/input_file.py,sha256=IVN5QweOGKrwX8Ny2jOaFhM1MC27wiyyCXOdd0hyaKs,1915
1840
+ pyrogram/raw/types/input_file_big.py,sha256=rRthYJ8V0tQUnVvLqkrxyngc8XT5gmokSQAAbmW7vPg,1666
1841
+ pyrogram/raw/types/input_file_location.py,sha256=SMTPG9eXmAleuMgMqk107KeBf6SyD7FgRgkuCxM-0L4,2087
1842
+ pyrogram/raw/types/input_folder_peer.py,sha256=B5pdSSGqyn1eXvIRYfGym4VbnX5DqyTDA0n65ih_iTU,1605
1843
+ pyrogram/raw/types/input_game_id.py,sha256=QDNnPXz-h_B-IxnXwjD0MDva_tcaswSt2oW_MVmWkSI,1528
1844
+ pyrogram/raw/types/input_game_short_name.py,sha256=BfaHn2OcyNx5Sg9oiJML7fHTWkyhtxLzcjqwnxOoHzw,1636
1845
+ pyrogram/raw/types/input_geo_point.py,sha256=twMMiAs98S5x4h17mh-UzwSTEbbM4-FRWZAPN_Zm_lc,2019
1846
+ pyrogram/raw/types/input_geo_point_empty.py,sha256=ojX-GdJib9RlvXs3kWS1EHRsdXCzy8RVOBlbTauxOr0,1176
1847
+ pyrogram/raw/types/input_group_call.py,sha256=yN9xXxUknc7uleUdRscRpdb9FsgoOSzY0Hga_T1Ahps,1547
1848
+ pyrogram/raw/types/input_group_call_stream.py,sha256=A6JdS1ORl2aGyPzS-IMQU00nmTJCVtMusDeOmFK5Fo4,2763
1849
+ pyrogram/raw/types/input_invoice_message.py,sha256=5lgu80hGBwBU0_fRyK-nFAK6KmNQv6IEVYtnek8UtqQ,1591
1850
+ pyrogram/raw/types/input_invoice_premium_gift_code.py,sha256=8EiwTsClYGLirflH0FAcPW0yVIjG5ndJnqrDPbhB0hA,1817
1851
+ pyrogram/raw/types/input_invoice_slug.py,sha256=AXjydZzQAwGQdRcFS-_oib8PV59gAHTV3QnbPVPM8l4,1309
1852
+ pyrogram/raw/types/input_invoice_stars.py,sha256=vWZa1wvskL76Y3kg0CrQg3F-rJE3Zt9lO2XtYUtnLOA,1420
1853
+ pyrogram/raw/types/input_keyboard_button_request_peer.py,sha256=k1BGhnSsuIjZqRBwZ6BKZBLOaoxfzDUq5xDRPR7G1LE,3265
1854
+ pyrogram/raw/types/input_keyboard_button_url_auth.py,sha256=zrXnrag_2SkkqThZAFbsntCup4Dr8u3OEI5LBxEtC-k,2588
1855
+ pyrogram/raw/types/input_keyboard_button_user_profile.py,sha256=Gzf8wqQW3KfH_YwRJDpqxqtJlPkv0-N1HhjT01AQ8xk,1644
1856
+ pyrogram/raw/types/input_media_area_channel_post.py,sha256=sSEyfOFuHMn-WsTGaKETTHjB0rsjjk6coZZdyDqzRVw,2008
1857
+ pyrogram/raw/types/input_media_area_venue.py,sha256=9TxfUgEOo8qIoq8svpL0izl7lotN5Sp2U6dG3o4_pEk,1950
1858
+ pyrogram/raw/types/input_media_contact.py,sha256=TIVyW6pYLYSLTupnoFxAanHyeoYzgsyWiEOynN0lDbI,2058
1859
+ pyrogram/raw/types/input_media_dice.py,sha256=lnJuRekku27WDGmr__gYn9ejbSl0TyNGYT9syan7iDI,1335
1860
+ pyrogram/raw/types/input_media_document.py,sha256=UyxGyQi1Iv6HGT1Ho7CiwXUknR6RpIR-1QqtTs_Jb3M,2462
1861
+ pyrogram/raw/types/input_media_document_external.py,sha256=pi9_D1Kug-SbGxcWArTkJ_HtpsjsaLmNIREWOkcv8mg,2072
1862
+ pyrogram/raw/types/input_media_empty.py,sha256=BrlTZPa9iMDLh2k8Yz6RawUOj_2MMtd8w4jX8l3iImg,1161
1863
+ pyrogram/raw/types/input_media_game.py,sha256=L4-qV4YyGzQ1H12t_qnwSqvNby0N4gaquvGo-khmwVA,1342
1864
+ pyrogram/raw/types/input_media_geo_live.py,sha256=JW4zQJuHcV2HCFVXLZsZuX4bzM7vKh89pB5_S1ZZlyE,3110
1865
+ pyrogram/raw/types/input_media_geo_point.py,sha256=JMotY70ou4AtzcC-yXYXp_Y4cp8_zzUP59fjoAgBVTQ,1437
1866
+ pyrogram/raw/types/input_media_invoice.py,sha256=GmAgbsFJfZ6McclSzgMCovnPFFYigYSRzREKo0q2gVE,4196
1867
+ pyrogram/raw/types/input_media_paid_media.py,sha256=9oHMf2NpEus0u1MhU69OtjwBxBsZuLSiYKWNuAYJb8s,1762
1868
+ pyrogram/raw/types/input_media_photo.py,sha256=JUYt2jV4ke-E-XjOjE7yKCfIRYFjyFzu8L_x3WN8Wp0,2084
1869
+ pyrogram/raw/types/input_media_photo_external.py,sha256=X1aqEhWEY4L1USBFDrQzqtiejbq8mSYTv2fkdJWGrUU,2060
1870
+ pyrogram/raw/types/input_media_poll.py,sha256=yy2w8xDjZElKwJr8oY6kPuJ933fwK7vM62eOQUVLLU8,2850
1871
+ pyrogram/raw/types/input_media_story.py,sha256=WdFNLGNEqi5S6aq1wozr7Pqo-sMpItBp83UY-hCS7co,1537
1872
+ pyrogram/raw/types/input_media_uploaded_document.py,sha256=zTqec2MlIBWJISVIi4pg28TMMPMlhTpoMxetFN5s0ZE,4244
1873
+ pyrogram/raw/types/input_media_uploaded_photo.py,sha256=papI_8dYi45civDrUC6BGl-QyTUHZ_FMSm-w4IHYWas,2611
1874
+ pyrogram/raw/types/input_media_venue.py,sha256=0UJK38yZS5xqTkH3FZ8IgPwH0tmd8ySmsS1J0rb9DnQ,2532
1875
+ pyrogram/raw/types/input_media_web_page.py,sha256=hVy9nhDNJtl1EzoHA8RMW-1Hrp7gudmFQVOOY39oKr8,2337
1876
+ pyrogram/raw/types/input_message_callback_query.py,sha256=m5E3jqRmJNPwITE3BgOHGwagnKYbKfsvi1Q6mWYErhU,1559
1877
+ pyrogram/raw/types/input_message_entity_mention_name.py,sha256=AizX1qwd93a8ODg4CLpi4l6xUbYAvV3DlvBCJFiliiM,1868
1878
+ pyrogram/raw/types/input_message_id.py,sha256=QSQ0T1ZGaZQcRm7fweK_bCzotiFoPFnZwiyPGlUlGBU,1285
1879
+ pyrogram/raw/types/input_message_pinned.py,sha256=npfMmoiK5d94zcPiRkY45zkiCkEA_hA-jeNniajxpyQ,1175
1880
+ pyrogram/raw/types/input_message_reply_to.py,sha256=7ZETXcpRvU8dfe4R9PgqzkxLFVdlq90ospr2iTRnZJs,1305
1881
+ pyrogram/raw/types/input_messages_filter_chat_photos.py,sha256=efZ163M3Y61N_jjomI0XTi3NwRQYl25FbnpHbVYJOf8,1221
1882
+ pyrogram/raw/types/input_messages_filter_contacts.py,sha256=bbZt4SSD8CUJfKC7gHqouMjZZfGct_WdsgWZF4MrOBo,1213
1883
+ pyrogram/raw/types/input_messages_filter_document.py,sha256=LikaI2rrTOdonRU8gcLkY1pCNQx5kN3XJahK0jVuDso,1213
1884
+ pyrogram/raw/types/input_messages_filter_empty.py,sha256=Pw4YzRGw6DD7dP1VEXzSO6vFSSW78y7RcED2LOXtBtA,1201
1885
+ pyrogram/raw/types/input_messages_filter_geo.py,sha256=y-_K1RP4KE_9nHslCYxBeNJ2uLRGtJjW5Pc7tDdT-b0,1193
1886
+ pyrogram/raw/types/input_messages_filter_gif.py,sha256=WiQrUSfFdLg9Jl8E3LrU-NMaPt-4kNCCOjljHNN8eF0,1193
1887
+ pyrogram/raw/types/input_messages_filter_music.py,sha256=nzZ3nt5Diot_o5T1LXY-SyJCbpYA5S-Laq-6vy41YW0,1201
1888
+ pyrogram/raw/types/input_messages_filter_my_mentions.py,sha256=mcUUVYpBJkIdO6qQkEn0BsBXpYZOGwufn0ZodDWSnmE,1221
1889
+ pyrogram/raw/types/input_messages_filter_phone_calls.py,sha256=30B7E0DtCxMCNjYHgBz8eYMg9cjiIjJ3B_PAa1ewAbg,1477
1890
+ pyrogram/raw/types/input_messages_filter_photo_video.py,sha256=mypLrcRM1vzUgKS4v4f9eBl-cL95yerI5jCDRj3ZUBg,1221
1891
+ pyrogram/raw/types/input_messages_filter_photos.py,sha256=Fu1zD89GtsRecCBPrmXfsZp0nZ15pPwSOychKp_Z5Cg,1205
1892
+ pyrogram/raw/types/input_messages_filter_pinned.py,sha256=BrLNyA5VEYZxiq70_lCxNGcpAgcZNawxAWhgZfFTmFM,1205
1893
+ pyrogram/raw/types/input_messages_filter_round_video.py,sha256=H4kLZX22K8-Ym748Ei4dt5IQYaEDfUnfo-6w_UBg7lA,1221
1894
+ pyrogram/raw/types/input_messages_filter_round_voice.py,sha256=7OIaz3abAkg0I1TYEgiouuUilC4qR5C4m-xSdlXs7ug,1221
1895
+ pyrogram/raw/types/input_messages_filter_url.py,sha256=i8bmBBlEBiEDhj_45yl5ZKDfo3BPpU4K_7JR0k8wyRo,1193
1896
+ pyrogram/raw/types/input_messages_filter_video.py,sha256=7HXbTyqHaEvPOI5AqIVDEecxjvWme0EMsUa33rTNrQs,1201
1897
+ pyrogram/raw/types/input_messages_filter_voice.py,sha256=fI8W6pWQfEVh5DEYwj_fk_dUGiSLDsgH3n0f68fSPUw,1201
1898
+ pyrogram/raw/types/input_notify_broadcasts.py,sha256=pKx9qkcXtqMhEsnYdrvhtA4i0l_w8VdvFHNxbGFBCtk,1190
1899
+ pyrogram/raw/types/input_notify_chats.py,sha256=lDgjiCFesxnsGJUfoXgg7A7hovwg2WWj3FSPJ65eFNk,1170
1900
+ pyrogram/raw/types/input_notify_forum_topic.py,sha256=rodAOt0868kc2I28eWzvsa-0aOsms74kB93tyM2ypPo,1638
1901
+ pyrogram/raw/types/input_notify_peer.py,sha256=ceRuixkfI2DUN6RGqQXltnfBJlW7dv4GIcZ_cghEuwI,1369
1902
+ pyrogram/raw/types/input_notify_users.py,sha256=qE5wbMQxvcnxwlXaGhQFKqIcZzyQc7g2bdHjSOWZpyY,1170
1903
+ pyrogram/raw/types/input_payment_credentials.py,sha256=FJwv0J6tJxQ9QST0iOpP8558qp4LYIi7EUYUUloI9BU,1690
1904
+ pyrogram/raw/types/input_payment_credentials_apple_pay.py,sha256=wYcHA2d-WsKSgdCEsoozGxZVozUQ5NtTbgC_qsuiHSc,1507
1905
+ pyrogram/raw/types/input_payment_credentials_google_pay.py,sha256=kCvT9wf-j4BJucPotVYv703l7FVN6eFyAERoiB9g3Q4,1522
1906
+ pyrogram/raw/types/input_payment_credentials_saved.py,sha256=qoMDFGh8Mw7uLh2TJtvr5mcFL4r0GLsou8PyI8L7LuU,1612
1907
+ pyrogram/raw/types/input_peer_channel.py,sha256=m7oRGyR1dOF3ZkmpNQdBDDnlKX4qEfcXu4MzgxG7HvQ,1622
1908
+ pyrogram/raw/types/input_peer_channel_from_message.py,sha256=pVdFSJH-fDKZ1MWpMvuMKrOpgSqhRWlpwg5bfuwDRtc,1868
1909
+ pyrogram/raw/types/input_peer_chat.py,sha256=4zFWWof2qPJH7788O1jtu8c-C84n3bd7Sd1oAuaY6K0,1326
1910
+ pyrogram/raw/types/input_peer_empty.py,sha256=pPEyNij5mjuH5dIl56_kS86h8t27IuH_TjYB1X0ZFY0,1156
1911
+ pyrogram/raw/types/input_peer_notify_settings.py,sha256=Pn24jHuwp6HKNf8CRWmXpL0dTrdYZuk3OpAaN7vWy-A,4336
1912
+ pyrogram/raw/types/input_peer_photo_file_location.py,sha256=wecc50jdljFYKzypRc5dTWKoPMbPJf29RSQ6vaFv-KY,1921
1913
+ pyrogram/raw/types/input_peer_photo_file_location_legacy.py,sha256=IEYnGRWwm1TK7CUroSyKaJWngWMbvfqvXn4wZeFk62c,2181
1914
+ pyrogram/raw/types/input_peer_self.py,sha256=5tuXqMll0ePfud0QHwERhqlBQA98IH9_acS7DNeXQzo,1152
1915
+ pyrogram/raw/types/input_peer_user.py,sha256=owVdR3D7ddyS-jTeA7NtJZ2NGHvvRxygKzDzqyQ1LFc,1583
1916
+ pyrogram/raw/types/input_peer_user_from_message.py,sha256=PHf3vy5SlHRNbnuAdfpxAoFXj6qjqVozeuK8oby_gvk,1829
1917
+ pyrogram/raw/types/input_phone_call.py,sha256=UR1Ju7w2-yFwWIZAGLidqThq5bZvXyOT45cxasZ72Qg,1547
1918
+ pyrogram/raw/types/input_phone_contact.py,sha256=AH_GO5ajUM169bv6bBjcmNu2djmBZLgRl1jU8WzcUnM,2038
1919
+ pyrogram/raw/types/input_photo.py,sha256=sw7snwPIGva2NKFnQvHn_5FIOojcKb73edB2bVEKxyM,1807
1920
+ pyrogram/raw/types/input_photo_empty.py,sha256=Z_IiNXKhPEWgFq7G2G7crJHOKMXBGnVpDDyn74X1CLk,1161
1921
+ pyrogram/raw/types/input_photo_file_location.py,sha256=iom2Yb46lFy-Q_q3jU4N2vTG0oNRuKSEmsadrVPcOjs,2105
1922
+ pyrogram/raw/types/input_photo_legacy_file_location.py,sha256=iqCWYSUAyGlLxS5LUjZC_DudA4qjfh15uc6t3hvGr8I,2564
1923
+ pyrogram/raw/types/input_privacy_key_about.py,sha256=H88Nt7HWg73U7yprMZj8F30WMdT0Q_ZXocxaMJArYJU,1186
1924
+ pyrogram/raw/types/input_privacy_key_added_by_phone.py,sha256=gtJoWgcjXbwdAWjDssBZsq5Y7LvvKLZM4z6xCqcrgIs,1214
1925
+ pyrogram/raw/types/input_privacy_key_birthday.py,sha256=2lKz0DaMuryXA_C2uvWaFieY5pj0yE0Hu5_99srdXik,1198
1926
+ pyrogram/raw/types/input_privacy_key_chat_invite.py,sha256=ZPYCkvch-vOXiPd6IYBmHDllKbBLuH3ct01FalQQYA8,1206
1927
+ pyrogram/raw/types/input_privacy_key_forwards.py,sha256=KrTw1vUWVvWrtUUqslE8EwLTfzGX8gozwfxr9iLL7zE,1198
1928
+ pyrogram/raw/types/input_privacy_key_phone_call.py,sha256=IxkmB9ZzzJQaizxPDoA_K_UC-lX9Mi-lrdwAzTHQJ2Y,1202
1929
+ pyrogram/raw/types/input_privacy_key_phone_number.py,sha256=Vk1Yqf0NS4_RBhqXLWHmpeKb5dtaKDCBNonnTBue6JQ,1208
1930
+ pyrogram/raw/types/input_privacy_key_phone_p2_p.py,sha256=LjDpxS5zW6yR2Qx3WdRKYSPP4LAS4sLvVAKSwAH1Kjs,1198
1931
+ pyrogram/raw/types/input_privacy_key_profile_photo.py,sha256=Pdp2pD7DuDHXlvIZXDxknzFF2GHnxCBybTi5v8JFh0A,1214
1932
+ pyrogram/raw/types/input_privacy_key_status_timestamp.py,sha256=uaUBwV8GHtuOlpRWwfO6MaOSBRNidDLJzQvkeh8moHg,1226
1933
+ pyrogram/raw/types/input_privacy_key_voice_messages.py,sha256=VQCRBANNLJZqRT7iV7QGx6UABIprcEETCy0docaFUEQ,1218
1934
+ pyrogram/raw/types/input_privacy_value_allow_all.py,sha256=-Z-EJ_UzkDi94NXlqh7krfZXWFpstOBldNthjF3b99Y,1207
1935
+ pyrogram/raw/types/input_privacy_value_allow_chat_participants.py,sha256=kfjfZCXlrQPfCoYUGK7wK95K2KxOBSBAb1Gy3z_-UQI,1455
1936
+ pyrogram/raw/types/input_privacy_value_allow_close_friends.py,sha256=-_zq_P0Nqh1ndhQCZpoIXaMGnnFUDrZRlwUW8Lb85tU,1243
1937
+ pyrogram/raw/types/input_privacy_value_allow_contacts.py,sha256=6QFMV6XIJ-38wH2IB2C5SEyDcLU8aL0w64GrB5iZTZY,1225
1938
+ pyrogram/raw/types/input_privacy_value_allow_premium.py,sha256=std6sWiGHVxUUA7pWjEdzLnYLsGvangMl3Od-zEy16w,1223
1939
+ pyrogram/raw/types/input_privacy_value_allow_users.py,sha256=GQgec2FFqrVmYN6TZpL9JnbSiuHWKtD2_18pWfgalxc,1449
1940
+ pyrogram/raw/types/input_privacy_value_disallow_all.py,sha256=rgxmk5gnB25HlWEO3Hxbfwz9Qiek6oFWxYUKtPdb9qE,1219
1941
+ pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py,sha256=LBRjNKV_nG8hNWEcRqeoIbcPTqVb5UoXWIGjxhsSH70,1467
1942
+ pyrogram/raw/types/input_privacy_value_disallow_contacts.py,sha256=08nQwnoLLclnZ2eniQbf8xicg8JY1z1LSEC0mFjM0iU,1237
1943
+ pyrogram/raw/types/input_privacy_value_disallow_users.py,sha256=ahR6j77C2Z2s0sty87aVI2PncDkHyZXvzzVJNGvRtv0,1461
1944
+ pyrogram/raw/types/input_quick_reply_shortcut.py,sha256=1r21aLCvo6ImyRy4RAqEwGJL-bLg9A6n9CB1iAAEv5c,1384
1945
+ pyrogram/raw/types/input_quick_reply_shortcut_id.py,sha256=rTSxclTQaqod81cWHsmUMwN0npP-wM2IeZ1H_NgMX80,1419
1946
+ pyrogram/raw/types/input_reply_to_message.py,sha256=ctS8k3MLh_2eAXdVXivwVx7Ixlaxo6FRTOnj0rnvBwY,3802
1947
+ pyrogram/raw/types/input_reply_to_story.py,sha256=4CFQKFXurwG4go-3NyWs3psJbHqmi96e5YTE-lqZmA0,1601
1948
+ pyrogram/raw/types/input_report_reason_child_abuse.py,sha256=73SKr2xCIaCUdha7wMJ0rW5RKlHKJcaJR8TTbvBMpdE,1211
1949
+ pyrogram/raw/types/input_report_reason_copyright.py,sha256=x1u665Z70GYHbYIFpYuxY25WI9H5OiEapcEQfPn_4Ow,1207
1950
+ pyrogram/raw/types/input_report_reason_fake.py,sha256=xiVOEe5_PLTFZ4mnJPuYYTGgVUAhgItuWBN4ygMzYcg,1187
1951
+ pyrogram/raw/types/input_report_reason_geo_irrelevant.py,sha256=HTSnZQilXxG17da3rfXPb_PcOlOEXOAANJM__yO7JCA,1223
1952
+ pyrogram/raw/types/input_report_reason_illegal_drugs.py,sha256=ygYqgO9BsSkm8JSbUshGS1EP4WWVTNOBzUbS6Q9y9DU,1217
1953
+ pyrogram/raw/types/input_report_reason_other.py,sha256=OSvPppr_jvblfcTYU5a7erawfHB17VKJ1d0IVXCVbmI,1191
1954
+ pyrogram/raw/types/input_report_reason_personal_details.py,sha256=VF0eAYwikWIiryhBIto_d_-Q3Q58MIE2I5cXVKmIdkc,1231
1955
+ pyrogram/raw/types/input_report_reason_pornography.py,sha256=uRGq1pREmPfbTutzD7fJkOYvbKg3iWvx8rqvCDVJv-M,1215
1956
+ pyrogram/raw/types/input_report_reason_spam.py,sha256=-2aU0-rzojOnNGNp3P7P6PTpcUfiYScXo7n8WrLJ6gc,1187
1957
+ pyrogram/raw/types/input_report_reason_violence.py,sha256=ZIZPcbGTAWxvDkxB2B13tv9cBtclwE3-NlOsJlonhmk,1203
1958
+ pyrogram/raw/types/input_secure_file.py,sha256=7B1DqUipJImGGMr-lF1zqbLKuZ2TjOB3vvXE7utql0E,1552
1959
+ pyrogram/raw/types/input_secure_file_location.py,sha256=50ftlFIXdUXn645NbsK9gQJZ0YkgKW_ppG0nZhSBStM,1586
1960
+ pyrogram/raw/types/input_secure_file_uploaded.py,sha256=LqsjoH9Rm-gkU4bG_jsLVDqyAcmn3xHwjKsNnOqgxTU,2231
1961
+ pyrogram/raw/types/input_secure_value.py,sha256=l_Oz4rJH173ISEyNoPZUFYO12r-Db6S-MDjAI1QECWY,4778
1962
+ pyrogram/raw/types/input_single_media.py,sha256=hE_zkNUEqIRoz86Mb6sXDLFSZz4F0OUd8zzNO4H-sQA,2368
1963
+ pyrogram/raw/types/input_stars_transaction.py,sha256=GhNTq4XWqFnjSEokfIusfQmqyV6tTxDF1UV_1C3gVcQ,1623
1964
+ pyrogram/raw/types/input_sticker_set_animated_emoji.py,sha256=BgOLXtt-gTOaTjMmuLsPA1XJsvCvH0CFbav0WxgcN3c,1216
1965
+ pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py,sha256=j4UT3oD0XAUe34ducmx55hXfdwk6SNk0ECWWoNMNP5Y,1256
1966
+ pyrogram/raw/types/input_sticker_set_dice.py,sha256=v8LG4Vs6ooqqKl4w7MG-R-K6TM96MsSKkW2QTXGKKKQ,1360
1967
+ pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py,sha256=2HNietNKTYWxoTk1i2WawYYlb-16m7L6nvXLdgq-17Q,1274
1968
+ pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py,sha256=OnJ4npCNxm6_fZGlwYqX8vA0dGxoyHesisnZIRBYngU,1246
1969
+ pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py,sha256=x3MOWPdo0Kf212yYtqLsGG4ahrkRPHAvfVA-xA7-4IA,1254
1970
+ pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py,sha256=slEanvgag_zNqI1Uc0UW2HxVTukfnyVFL489dHkJn_8,1252
1971
+ pyrogram/raw/types/input_sticker_set_empty.py,sha256=IkjIQ2Z7hMw7FFoL93GR8Kug26nVazs0Vm0jpxD_Sb4,1186
1972
+ pyrogram/raw/types/input_sticker_set_id.py,sha256=-OxVqBumAuLaCD-JjFQNrV_ElaYVuxJMdynLQ8n6MpU,1560
1973
+ pyrogram/raw/types/input_sticker_set_item.py,sha256=qT77l-hxEsntHxiMHeednGWFNH3ieodLm2mstJRGz8c,2555
1974
+ pyrogram/raw/types/input_sticker_set_premium_gifts.py,sha256=Jl7X1Mo1n7qScHg1sEnbPHhGUST20MWalY4eh5ZmMdA,1214
1975
+ pyrogram/raw/types/input_sticker_set_short_name.py,sha256=AOr2-5VnBsS_HsvajF15DZ76AIBxCZslChI0AOgzcCY,1398
1976
+ pyrogram/raw/types/input_sticker_set_thumb.py,sha256=4Di1EDcnz2WwuqhmMpKyrTg123r8NpM6HvvMmzz4f64,1741
1977
+ pyrogram/raw/types/input_sticker_set_thumb_legacy.py,sha256=qibh-84DtYMor1UwgLcOO_SWY_nmNaONIT4nUn3zzQ0,1957
1978
+ pyrogram/raw/types/input_stickered_media_document.py,sha256=Gn8JFZ7U4mXMw_A25JWswlnhL6D0vcYwB1XXudzLN-w,1417
1979
+ pyrogram/raw/types/input_stickered_media_photo.py,sha256=hOrZRs8OSRKttaI3mI8X9hKKjlG0kq2CLPD9wc3jO3M,1395
1980
+ pyrogram/raw/types/input_store_payment_gift_premium.py,sha256=WouD5T0LaAB_XfVRDiKO7kyTSLDAw6OCXL_J7oqxA5E,1894
1981
+ pyrogram/raw/types/input_store_payment_premium_gift_code.py,sha256=YrdJ3M25tyJ-Up1iSCZAtRzJ97bL_R2UIqajVuvQ0rI,2428
1982
+ pyrogram/raw/types/input_store_payment_premium_giveaway.py,sha256=eo9Kp3kEc0X1Q0XHewfFIlnNmiGBsWTKUeAmmwXSMqM,4752
1983
+ pyrogram/raw/types/input_store_payment_premium_subscription.py,sha256=52YQz7BFIKSe4EtYvnERihiAwiDcm0FSZvtgnC1HNwk,1791
1984
+ pyrogram/raw/types/input_store_payment_stars.py,sha256=DeVE8zJi9__dSavqsY1cqFftzVxJg2Od29qhpSKwHLQ,1850
1985
+ pyrogram/raw/types/input_takeout_file_location.py,sha256=Vm9QJnLIh_RqRo9UWxsz6yGBV_4klkqJ-qnxBuL_rsU,1204
1986
+ pyrogram/raw/types/input_theme.py,sha256=Q5ifVAZX3zZLcSqnZYSNtSu2SqLDyiBIcXtOCOIuu9M,1527
1987
+ pyrogram/raw/types/input_theme_settings.py,sha256=ntt1ynu4CWESJRF7FdDr53j-RBsxYowLKO5CjTbfWQY,4224
1988
+ pyrogram/raw/types/input_theme_slug.py,sha256=x6XIXwETUFrVgQdaIfNPZbunPakfC6evwyFM79kqt_U,1299
1989
+ pyrogram/raw/types/input_user.py,sha256=CkydqBo16HTtVl1dkd6ox6HBlpHIlOByOKrPv1Q2570,1567
1990
+ pyrogram/raw/types/input_user_empty.py,sha256=V_Qxajs-lrGCaRornB2MI2P0fDgPRe75V8zLRjGK2Kg,1156
1991
+ pyrogram/raw/types/input_user_from_message.py,sha256=BPX01cTExxGDnKACK5L2XNdXu3OoAukqmzzXSfdjm3Q,1813
1992
+ pyrogram/raw/types/input_user_self.py,sha256=wlIP2Ybx36ZFyYJp62m9zGVvI8AarNEwFD1rsfDwpwQ,1152
1993
+ pyrogram/raw/types/input_wall_paper.py,sha256=9G7gD9YDFys52klEDIcMzjFB2G1cJOxpcr8wVmgL9Cs,1547
1994
+ pyrogram/raw/types/input_wall_paper_no_file.py,sha256=NKOcgRrc3DGoPmoym0yeP94oDAlHw3l954RahXTvg4c,1314
1995
+ pyrogram/raw/types/input_wall_paper_slug.py,sha256=57u9289SRKJmTgG_m2NU9wkeQ0Fbvhic8p8DIoq-As4,1319
1996
+ pyrogram/raw/types/input_web_document.py,sha256=i3_JWCRF4X3u7zhKkmggYelVX7sNlV9OWg-7OKF826k,2087
1997
+ pyrogram/raw/types/input_web_file_audio_album_thumb_location.py,sha256=oWrFdb33qDxZrQ7GDojO-A4AZJpwbdTQCSKnVuVd_0A,2713
1998
+ pyrogram/raw/types/input_web_file_geo_point_location.py,sha256=Yaru3Rw8LmBHUWGliXrlwsZzo7-aS2MXaUvZdwk271w,2463
1999
+ pyrogram/raw/types/input_web_file_location.py,sha256=Q-CyoQXM_h70zrhLfnjuvRtNRqcGOn6Z7f-5TI0vfeY,1581
2000
+ pyrogram/raw/types/invoice.py,sha256=exd8XS5T-eKJxp7HgnHDGVIGwNaO94BexPacZerj1xQ,6041
2001
+ pyrogram/raw/types/ip_port.py,sha256=ktiTnxxjj46im9Az1AxOMW2gfr3A4OmP0C70rPczPwY,1456
2002
+ pyrogram/raw/types/ip_port_secret.py,sha256=oVqvOStHOlJxJszjpc292ppW7XDs5xdcoxWBe6wQ_Ac,1688
2003
+ pyrogram/raw/types/json_array.py,sha256=8qGy5-PWbvnMyjuW0JCxyT23NJVIkJ5pc1eQ8iiw6fM,1370
2004
+ pyrogram/raw/types/json_bool.py,sha256=dSFw4o1J7ykyjJHj-xtEtRDv5mMOZmG4kZ6r0Fq19p0,1279
2005
+ pyrogram/raw/types/json_null.py,sha256=_iSQTx6n8hfFsWOj9qXAw3P1vDRWYKSfVAtCDPWaQfc,1132
2006
+ pyrogram/raw/types/json_number.py,sha256=Hwg8YZcDYfSpl31Jo_tE4ZtAg3ohCno8mXcBouU4iio,1306
2007
+ pyrogram/raw/types/json_object.py,sha256=MQktFdpF5AYcaxo3-BmszKD24WJJloJgbdsm1P94JqQ,1398
2008
+ pyrogram/raw/types/json_object_value.py,sha256=RbPLS8rsgX9X6rCCUxCcv6YeyIQ1CqQW6Ef8BgnQN5w,1558
2009
+ pyrogram/raw/types/json_string.py,sha256=kWumQzj9qUY_ErNojG4jsCPDIeJlVfDI2KjH4Ct0uL8,1291
2010
+ pyrogram/raw/types/keyboard_button.py,sha256=18zNnuJB5unU9Nmu8O_zwMCDlY3O1SwcKAfAYDkaI3E,1303
2011
+ pyrogram/raw/types/keyboard_button_buy.py,sha256=TKrTgNI5GRJS4JIgJmgoyOTzBZXZ8OK0aQtaDeaZKT8,1315
2012
+ pyrogram/raw/types/keyboard_button_callback.py,sha256=fd-PJMt4kNHO2H_W7etj5vfj355G6NItG_zrJKHXgVw,1927
2013
+ pyrogram/raw/types/keyboard_button_game.py,sha256=o8_dUvzmopF695XU-FlYcg-GWJWosizrN8eKxr3c_QE,1319
2014
+ pyrogram/raw/types/keyboard_button_request_geo_location.py,sha256=Ns20SU2VDzY1XSm5e6ovZdHDxAN505vsEIN1H5MsVKA,1375
2015
+ pyrogram/raw/types/keyboard_button_request_peer.py,sha256=EWFvjxr35ua5RHq3W1U2Ogp0tATu0RPJB7VzcBQPQUo,2165
2016
+ pyrogram/raw/types/keyboard_button_request_phone.py,sha256=-3C08tSRpu4951T9uItjRrIrQkZwbFIQKgI0Lijvffo,1351
2017
+ pyrogram/raw/types/keyboard_button_request_poll.py,sha256=4nEwGX6pPeMBXS7HauOcXqxaYNzMPFGX-BsO9skTvGA,1731
2018
+ pyrogram/raw/types/keyboard_button_row.py,sha256=QJmEXXc8kq-uH08L8Sj7zlWEIKqs5q9pMoJh4TJeDew,1448
2019
+ pyrogram/raw/types/keyboard_button_simple_web_view.py,sha256=sMNZKQSTfBD6vfQ3zkNlqWzyioiMI8fhFImMpow8eJM,1535
2020
+ pyrogram/raw/types/keyboard_button_switch_inline.py,sha256=UXro3KIamb89Nst0wQSw-n6bd8tYBPs3eERX77eQVFI,2406
2021
+ pyrogram/raw/types/keyboard_button_url.py,sha256=wEcLNtlnVbgMgPq9hlMmtCZ5Wky3I7DGNnb5X3ORzfc,1495
2022
+ pyrogram/raw/types/keyboard_button_url_auth.py,sha256=bcP18-3fW9e8SBZ-_1qf_GwldBLRABs5C12vyMrfmu0,2179
2023
+ pyrogram/raw/types/keyboard_button_user_profile.py,sha256=ZwZzZKIDGNSwb2gdA5dNkSXsxs5rCj2Un2TJKIySPf0,1568
2024
+ pyrogram/raw/types/keyboard_button_web_view.py,sha256=nGVQRNgfM9-yMGl-dPTkq5FC0DCWKmL5Dz1d4x6BKDY,1511
2025
+ pyrogram/raw/types/labeled_price.py,sha256=mEH_4valXFRLo40L6QytXeGl5lUuIt9gs4xXxvNW4tA,1514
2026
+ pyrogram/raw/types/lang_pack_difference.py,sha256=lgzcrDCjBhZkg-BAnR_a4CTRaYGuIG1m7QZpQ-fHklI,2408
2027
+ pyrogram/raw/types/lang_pack_language.py,sha256=wQKyvkGKNcSKyQ2Ir8Msmj5yFe7IAMCrIY90jFk-lU8,4403
2028
+ pyrogram/raw/types/lang_pack_string.py,sha256=ynX4BbfxR-84eLj1AGgwmWsiz7wP3c8crj1ar8qLNqc,1695
2029
+ pyrogram/raw/types/lang_pack_string_deleted.py,sha256=XXZvjVoBzSvBTxwIRsPc2ZIr9aTQjHcXuc6y_TY6SrA,1525
2030
+ pyrogram/raw/types/lang_pack_string_pluralized.py,sha256=n0ZaX9AL5j2MGJlzAJ5dqcbaTMiR85Mmilzt8ky7ddo,3846
2031
+ pyrogram/raw/types/mask_coords.py,sha256=K0QuihO9xK-Dj5YsNH9fHJD3-KOz-b-95O2_nNBYM_8,1816
2032
+ pyrogram/raw/types/media_area_channel_post.py,sha256=CoY30EghmOlhvJ6IdL_NSJiCUwug4VTE48FxH-44OSU,1947
2033
+ pyrogram/raw/types/media_area_coordinates.py,sha256=EKdcsxp-nEAk35OqmbVhblhJRU97ScyMDMjl8XKEDjE,2517
2034
+ pyrogram/raw/types/media_area_geo_point.py,sha256=-aMkUYKcZ-XXNJQq1MGQAApP4WZjKrUz_qLTlnOcrhE,2220
2035
+ pyrogram/raw/types/media_area_suggested_reaction.py,sha256=f2Tn8FTOe1YzqeKLoh1vEC1h-M4GOT4Ecptot9YhsVA,2348
2036
+ pyrogram/raw/types/media_area_url.py,sha256=RvH7tmY4sUITUsaeoOMk_eIedl5PNhYsOtVm64viEXQ,1638
2037
+ pyrogram/raw/types/media_area_venue.py,sha256=SMnsFbK0A-5zItTZWozrEjMzVY7SSg2zu0wrwyOU0WM,2810
2038
+ pyrogram/raw/types/message.py,sha256=zaRg6itC4cyMV1dtuUvjuNec_YBy7_XYabcp5LAvnM8,15472
2039
+ pyrogram/raw/types/message_action_boost_apply.py,sha256=4M-Cf9aLcTm988WbpNBXbFeuBWzqs0aISdGP28w6aUY,1358
2040
+ pyrogram/raw/types/message_action_bot_allowed.py,sha256=eJ4gQl4el3ujqKy7CLQtZJN-xWJfutcKMmPbwRE337Y,2554
2041
+ pyrogram/raw/types/message_action_channel_create.py,sha256=5l4ZrBqzfRRVFa6GvLJRt2A9aiRXdtSLWw6_Ap1ie2w,1359
2042
+ pyrogram/raw/types/message_action_channel_migrate_from.py,sha256=lEg6yYtuPC4rVwW0PNY8Pr3845bnGZOm4EFa-L5vHic,1600
2043
+ pyrogram/raw/types/message_action_chat_add_user.py,sha256=TJSPadfWfkF9F8nszTeWDqovU5xHxdvlsqHsQ24SrDE,1396
2044
+ pyrogram/raw/types/message_action_chat_create.py,sha256=5GPi0FNx10UlpIjFJRMc_sWzPKDxlBw3oVaIPH4GMLQ,1590
2045
+ pyrogram/raw/types/message_action_chat_delete_photo.py,sha256=5miGusxPvPcAYwoWb5ZKHfz92EGqx0AqxD9rT5571mA,1216
2046
+ pyrogram/raw/types/message_action_chat_delete_user.py,sha256=uNne_d5-k1FVszzokp8rJ6-O1RKxNFni6Psmi7OerM4,1386
2047
+ pyrogram/raw/types/message_action_chat_edit_photo.py,sha256=7mbjmvhzZj82uqbq7jrj7pkUscoU1f__d-Wcl75dL6A,1404
2048
+ pyrogram/raw/types/message_action_chat_edit_title.py,sha256=TDdXnZFMBPV0qDzktvN1vzRVHeEUv7xw1AMOFbjEpqk,1359
2049
+ pyrogram/raw/types/message_action_chat_joined_by_link.py,sha256=mS7kj7RYSfBRU4E7kcS0HSWGpjQM1r2U0xPQQC_5zDw,1419
2050
+ pyrogram/raw/types/message_action_chat_joined_by_request.py,sha256=U44Ge8JAfH18I-PcOZZi2nfQIx-uKZxAhZbVvneGZ58,1232
2051
+ pyrogram/raw/types/message_action_chat_migrate_to.py,sha256=_OepJegVkk1dUzeIDBNUDwrUZnYPAlb8w6Mq0SJwCDA,1409
2052
+ pyrogram/raw/types/message_action_contact_sign_up.py,sha256=F9XKPnKgYi7GeBrq-RnfgtYHs9wRcq5wl5tDZbSPGCs,1208
2053
+ pyrogram/raw/types/message_action_custom_action.py,sha256=2pJsMrNN95qB7nyPtxdv1ql0tYjCwDYY5F2FpOP6t8c,1373
2054
+ pyrogram/raw/types/message_action_empty.py,sha256=cWp8cvavGweU_2hnCDBARVOxU4I4xdlx_hTB1PSek40,1176
2055
+ pyrogram/raw/types/message_action_game_score.py,sha256=fUZ0_FdOah1vb_GEOtQs9MrBAcVjYcextP3vNieiREo,1566
2056
+ pyrogram/raw/types/message_action_geo_proximity_reached.py,sha256=wCEeAHtg419aDhZCbYnl6Ud7yaMOfX5juNAcMSegZFo,1908
2057
+ pyrogram/raw/types/message_action_gift_code.py,sha256=iNDVBnXhHodr5zOX1ccvURgRBuS1h-bPms6v6cBZht4,4298
2058
+ pyrogram/raw/types/message_action_gift_premium.py,sha256=EqFHQRT-5TAqlCoyQjXFgOHcmn0qUUpJkKly_5niPoI,2755
2059
+ pyrogram/raw/types/message_action_giveaway_launch.py,sha256=1CXd-g_G8CyjHinZqBNFHdmtG2g7g-CY3CE2C_4nd70,1212
2060
+ pyrogram/raw/types/message_action_giveaway_results.py,sha256=WowO8sGCXqZLM5VjZsUchR69HuaNzelKYQ48ZO3suqI,1731
2061
+ pyrogram/raw/types/message_action_group_call.py,sha256=wrMsvTDFjNNMr1MKCZ2tHKSSl5l_uJznw0aQZ30XeWc,1849
2062
+ pyrogram/raw/types/message_action_group_call_scheduled.py,sha256=Nm_i2LvxozyduZBqd81zgldW06XtT1ti4H66S732h5E,1723
2063
+ pyrogram/raw/types/message_action_history_clear.py,sha256=aQlvJbK5bmVechu-_TvQA1Me_PooVKa0SCFplNyKuDk,1204
2064
+ pyrogram/raw/types/message_action_invite_to_group_call.py,sha256=1hnH8k6sQ81hGwcArqhnhvO_zxCye-j_MU6IQusY-Uo,1690
2065
+ pyrogram/raw/types/message_action_payment_refunded.py,sha256=yNxGLx4pIcw8GI8D2KshNFJ0B9fWROXzVww-AN7pqWs,2596
2066
+ pyrogram/raw/types/message_action_payment_sent.py,sha256=JHIpQeFFjB4lMm0G5moSTBlmUAKEpJkC8WbvuIyX2WI,2780
2067
+ pyrogram/raw/types/message_action_payment_sent_me.py,sha256=pislS8WVMU_-t2rGxan-jq2NR16kgwvYxHHC1m3CSVk,3802
2068
+ pyrogram/raw/types/message_action_phone_call.py,sha256=I1xKpjGpi9aAihwdUshX3_z2KhYbxboBQebmy4GGIcg,2526
2069
+ pyrogram/raw/types/message_action_pin_message.py,sha256=Ui-qkRKw_QFa4nwsC1XDxhGMI3ol3xXpTccCaY0nxQE,1196
2070
+ pyrogram/raw/types/message_action_requested_peer.py,sha256=Pw92rFgSFaPV2fYfHUuEb5ioMnP69ygjg_kS0TdDeh4,1658
2071
+ pyrogram/raw/types/message_action_requested_peer_sent_me.py,sha256=nUvIe1nnWYk6VjgDaDTqVd4YSz4uyB213pYEkyZhZXo,1718
2072
+ pyrogram/raw/types/message_action_screenshot_taken.py,sha256=PcKJLz14nll3c8QbqlUcs1b-_kIBjLQ7kVs1VDaVjvw,1216
2073
+ pyrogram/raw/types/message_action_secure_values_sent.py,sha256=r0bvXLQXhlZxE9aGQU3iUIRS1mOV1EBHFOvz-oKWvVQ,1478
2074
+ pyrogram/raw/types/message_action_secure_values_sent_me.py,sha256=MSC1S61pA8Ofwxb877rmOwzWPVjn-CGorqozTrqroB8,1860
2075
+ pyrogram/raw/types/message_action_set_chat_theme.py,sha256=TTwyP1a0X_x2P4ghltI-JOkWDUYQIddJnlb11CUgTZQ,1382
2076
+ pyrogram/raw/types/message_action_set_chat_wall_paper.py,sha256=eewr2ocTYSR9yOc2G_j9W29-rSRt39-QtglXjeKr91w,2029
2077
+ pyrogram/raw/types/message_action_set_messages_ttl.py,sha256=nc8polzbKort2FtOWUJIu2nYmwFEvCdC388cpJxdmRk,1910
2078
+ pyrogram/raw/types/message_action_suggest_profile_photo.py,sha256=IrDKYRV5OeiHjHd8S885EEO0QSymVuYgjXzx9vYsQ2A,1428
2079
+ pyrogram/raw/types/message_action_topic_create.py,sha256=jNGIWyHabZu_RvTb2ePhX5dzrgWQNwjPv28Hk5y2W0c,2086
2080
+ pyrogram/raw/types/message_action_topic_edit.py,sha256=uGbt1cOUkRaGlhpbLpOQkx3MBEJ8zn55cOFAjfC3FiE,2713
2081
+ pyrogram/raw/types/message_action_web_view_data_sent.py,sha256=m1dB3DjELJbR88QVsp2rZZHKlV-R8GOwoWF25r0y5HI,1358
2082
+ pyrogram/raw/types/message_action_web_view_data_sent_me.py,sha256=xW9eEreoF5_Vum1R7O2BpbR-lCVc5Ttz9ypozTs_TJ8,1555
2083
+ pyrogram/raw/types/message_empty.py,sha256=XNvbCB55_HunnfIYuwNr7RH-_kXPcHPl6l9_g6R6XaI,1733
2084
+ pyrogram/raw/types/message_entity_bank_card.py,sha256=yAkGbN6HxURuPWyI4wnWGlFqwiudCNyu6NjXyoOXOqA,1559
2085
+ pyrogram/raw/types/message_entity_blockquote.py,sha256=ZKswomay8XhgPy2kVW-ATB64B4HYiTtW7OiE7IktHBc,1897
2086
+ pyrogram/raw/types/message_entity_bold.py,sha256=MYLePqoThgAMLOaaNA-heX11AfoawIVh02ve_lenlAM,1543
2087
+ pyrogram/raw/types/message_entity_bot_command.py,sha256=EWTaW7AgmuwRpn_UlAuaAcGlxujwKjBmR4mlxb4Uv8A,1567
2088
+ pyrogram/raw/types/message_entity_cashtag.py,sha256=l2xK-x6A2mZCP8rO0JMbqVK7CgKNMovYNScD6iJwViY,1555
2089
+ pyrogram/raw/types/message_entity_code.py,sha256=Yz-nBP3m3IxEuUbfT6KxF9byWgR0XDqH--fVkwbQSh0,1543
2090
+ pyrogram/raw/types/message_entity_custom_emoji.py,sha256=VCELAo9VAPczNnWBGc34vloDrKv0MAxbWeQ4fpoqtTs,1828
2091
+ pyrogram/raw/types/message_entity_email.py,sha256=ZIyUFkU3N79jxjw_0JlgNbpNS3XitPMW814Qb4jyNkw,1547
2092
+ pyrogram/raw/types/message_entity_hashtag.py,sha256=ADKgWdcTfqjFI0pQpurGgGzsphGpAQGdMiBscE6DQqU,1555
2093
+ pyrogram/raw/types/message_entity_italic.py,sha256=6lDU6kS3lbQ2uv-mGotuLpaZNI6UAJHrSzPppHIaH1A,1551
2094
+ pyrogram/raw/types/message_entity_mention.py,sha256=5ajSikjffzXzL-8YARkgAvxm4rEJ6lYT-j5rok4--EM,1555
2095
+ pyrogram/raw/types/message_entity_mention_name.py,sha256=N0MP94jiPU_blnxxWDJ4KWWaXsD2bmATImYBOym6ZM8,1792
2096
+ pyrogram/raw/types/message_entity_phone.py,sha256=LU2feBN34bYWlg1kfKDWiIF_awIBJ5tpdleIuqjBtCo,1547
2097
+ pyrogram/raw/types/message_entity_pre.py,sha256=9fboQzsZl03zOXyQXsIyLXTCHWd47_v5GhC051R4Fos,1764
2098
+ pyrogram/raw/types/message_entity_spoiler.py,sha256=HyirnljWBeuVK-CwnngXgAyKAoKfy7qlpVqEM3J--9o,1555
2099
+ pyrogram/raw/types/message_entity_strike.py,sha256=jYMgHS9Do7gdGlBHmMdXIqRgJn6AcfBSHZWSAZvLCWk,1551
2100
+ pyrogram/raw/types/message_entity_text_url.py,sha256=dfSJWheUZpdPuNSIoHkuHrdgUDjjrLX2fPB5BRLeR6Y,1735
2101
+ pyrogram/raw/types/message_entity_underline.py,sha256=TPtsUnQlcfwry_GT4sHPeeiFYuWFWtpTKyK6FfotbL0,1563
2102
+ pyrogram/raw/types/message_entity_unknown.py,sha256=bVCVscd7eLVtIIpck-PBNPzFNCKU-iYIxAJz5OWEPl0,1555
2103
+ pyrogram/raw/types/message_entity_url.py,sha256=dbINONZ3Ih4GxnZyi7XivYXfDFNnFbXHCO-A50sZqBI,1539
2104
+ pyrogram/raw/types/message_extended_media.py,sha256=8n6llHIgfeKw09Eu6CG3b7VDImUUEiK1ZoJhsHFv1OU,1415
2105
+ pyrogram/raw/types/message_extended_media_preview.py,sha256=swfvo8fTNhNr29Scn6NhlZ-I1W11byPDQfnxkwvZUNw,2710
2106
+ pyrogram/raw/types/message_fwd_header.py,sha256=ErnpujdO18ZdOMk499cdP08LpsGysHIXJka5bgDsMFg,6330
2107
+ pyrogram/raw/types/message_media_contact.py,sha256=sZpLybr1y5X5QBXnHd40K_JHTgAXdKTpxE0Asm6Pnv0,2574
2108
+ pyrogram/raw/types/message_media_dice.py,sha256=NY_XXMNEhG0oCOzX3m8nDd0mV2qbY4pJyqJWjtrDqZw,1830
2109
+ pyrogram/raw/types/message_media_document.py,sha256=jw2ZqTBr-BhyGuMxijFKTkMBGPg-kbqBiW6_nAlzksM,4117
2110
+ pyrogram/raw/types/message_media_empty.py,sha256=_xGbx4Pa8qnMGck8gsITube2vkYC-KNHde2jV04VV4s,1456
2111
+ pyrogram/raw/types/message_media_game.py,sha256=7fHKLD1Q38xDmyZm1ANuk0dJXlQ53Zo98JUaSnjA1dI,1635
2112
+ pyrogram/raw/types/message_media_geo.py,sha256=2ehDzUgSk-sJAvP8zy9neKTNdRqnGQxYQuj6SeWg9T8,1638
2113
+ pyrogram/raw/types/message_media_geo_live.py,sha256=r7GrdywQ6ujxzGXZAMCcPN8IwPiGGSVTFkheDz04Iu8,2906
2114
+ pyrogram/raw/types/message_media_giveaway.py,sha256=GMj7NTArc9QHRFl4AQhCoORnir2AcYB5YFKjTtt-cOc,4150
2115
+ pyrogram/raw/types/message_media_giveaway_results.py,sha256=ff6wMmSx-M2NQPSq3Td75jmqE93f8c1uDSAjL_FZp3w,4980
2116
+ pyrogram/raw/types/message_media_invoice.py,sha256=-XXjndlF6YKeDPYNIjyeIVbkK5qL7G_9VN6LhuV2xow,4767
2117
+ pyrogram/raw/types/message_media_paid_media.py,sha256=ZcmN8Pd55IpJ0IEhP32fW7UiqhcLPQHkjo9ihtcxz2U,2097
2118
+ pyrogram/raw/types/message_media_photo.py,sha256=TOCW7Sm46hoosUQtSkFDNuE0mDCt43nhgDSFrbxxYgo,2541
2119
+ pyrogram/raw/types/message_media_poll.py,sha256=urV6oSKuEmVBzQMYfB3wsVphAH3_v4r3Oqa-rceFT10,1920
2120
+ pyrogram/raw/types/message_media_story.py,sha256=21y5SPvk5ZIalAyjOYiruOZBCEvAcSz1IMQ2r-8qtsc,2574
2121
+ pyrogram/raw/types/message_media_unsupported.py,sha256=3lFExVz2TzEnKIsWMq3_Y1evPA6-1N70CmiaTCZKBKQ,1480
2122
+ pyrogram/raw/types/message_media_venue.py,sha256=E7P4z0PcrbE-J45dJrohE19ql6hmXnIlU7TOyk2ho9k,2753
2123
+ pyrogram/raw/types/message_media_web_page.py,sha256=7gDw8R_2AaXYUE7WGmAvR7VqMcuojbecBDWHCfeUYwI,2943
2124
+ pyrogram/raw/types/message_peer_reaction.py,sha256=5RX9dhcQLAmtVSC63fRm4j0ILhtmdBrshdMh9SzmVMQ,2625
2125
+ pyrogram/raw/types/message_peer_vote.py,sha256=04NXFTBXlWSii9jdSuPJp9m2g3cKXGSMPZEQzt2NoI4,1748
2126
+ pyrogram/raw/types/message_peer_vote_input_option.py,sha256=H_bMBn1z2f2UyZM6QOh_QkO5feyZ9lEHXdhgP9pFhbU,1584
2127
+ pyrogram/raw/types/message_peer_vote_multiple.py,sha256=VeOfqGfoOmq3292FKg5001vj9zPPHQEmYEjPfvCsqAo,1829
2128
+ pyrogram/raw/types/message_range.py,sha256=cY4s2pfmqZoW8AkZ6gQ9Yl9zqiJS28GHO9GhlwhDQ6w,1727
2129
+ pyrogram/raw/types/message_reactions.py,sha256=YOLiga1TJVUyhgmJwt0SNV4wtSVSnU2qwHljBPRfBTo,2977
2130
+ pyrogram/raw/types/message_replies.py,sha256=iRg9YxvZvQhRrEKDvl1cTXNE-51UAuFUT_ZGnOMR-8U,3632
2131
+ pyrogram/raw/types/message_reply_header.py,sha256=hf_uTiefgMbgIYMrJGoQvHhxE-lvm79XBF-uUaEWlWs,5925
2132
+ pyrogram/raw/types/message_reply_story_header.py,sha256=EFdsJgoaMB7kKpCfQU3oSIte8GVouuyBv3cvmABTR60,1609
2133
+ pyrogram/raw/types/message_service.py,sha256=xsWvJ350baMY97AyksJ4KWn6j7Hg0h9BNP6lC-5h8to,4963
2134
+ pyrogram/raw/types/message_views.py,sha256=a7-pG61-ckGRr9k75M1qisD-HTkdoywZc1OlFMpuIg0,2350
2135
+ pyrogram/raw/types/missing_invitee.py,sha256=GDQSuJ0P95MLimZScCUkXrsp1H6shfXcfkQ0H7qWUvg,2229
2136
+ pyrogram/raw/types/msg_detailed_info.py,sha256=jdZRO0htH_nHnj-SA1a6iehot5q8Mn1xHY1O5tb3A18,2015
2137
+ pyrogram/raw/types/msg_new_detailed_info.py,sha256=P9BFX2r3Ulwe9Q51H4863bSSgNqdo46uKEGeSlql1TU,1815
2138
+ pyrogram/raw/types/msg_resend_ans_req.py,sha256=h1_8Go-NtH5kjVv9FnNPXZvJspNCthuhGNGs9RCZC_w,1377
2139
+ pyrogram/raw/types/msg_resend_req.py,sha256=wty9xsgaq6ENxyEasGaStyql9B3XyrMPF1x1HIqvz7k,1365
2140
+ pyrogram/raw/types/msgs_ack.py,sha256=S1Bjo7s4KVIusT-XsdLN7N4QaXadgN61zdoLLtKr-MM,1340
2141
+ pyrogram/raw/types/msgs_all_info.py,sha256=oRv3DSahx4bJ2V7PRMyYHCWmAUxiO-9umdsZm59Xymo,1549
2142
+ pyrogram/raw/types/msgs_state_info.py,sha256=tYAcVvkIaNLKieml4waYGa4XZuR87dzDqZzehDPUOO4,1546
2143
+ pyrogram/raw/types/msgs_state_req.py,sha256=GrM2iBknx06Qih5Qd92VkNqyZFcBFqvIy34H6uxFsR8,1365
2144
+ pyrogram/raw/types/my_boost.py,sha256=RfgW0znD8SUZw6-gP73kiqP538L2ze52F8Qpn-auvII,2617
2145
+ pyrogram/raw/types/nearest_dc.py,sha256=60bctPpcMcLhY43z1Q9DUICx9UWpl37hlYogb-EHXOo,1969
2146
+ pyrogram/raw/types/new_session_created.py,sha256=vVgzyWG6i7HkHxEZY7EE9NbAhVjJrXGA-8JukdbpCs4,1884
2147
+ pyrogram/raw/types/notification_sound_default.py,sha256=JtnNDMaBTc3stYeLDLDg-zq2kpcYKlp62FjzS1KFlgk,1204
2148
+ pyrogram/raw/types/notification_sound_local.py,sha256=70Avep11rLox1jQnq_S7lQADwvBOYYixLqGFP78DWow,1536
2149
+ pyrogram/raw/types/notification_sound_none.py,sha256=qAzsUznFFmhlxcZvLCG66ZgM7fabcIHKEUKqC15cvpo,1192
2150
+ pyrogram/raw/types/notification_sound_ringtone.py,sha256=s2KcbO1vun_zkLpFY1yW8dibjcfdWpDOZVuf2Cd-KhQ,1337
2151
+ pyrogram/raw/types/notify_broadcasts.py,sha256=reMdW7IOdy2eL5VqQgPb-srp56fkbACjowyxYIXV2gA,1165
2152
+ pyrogram/raw/types/notify_chats.py,sha256=RGaYS-F1QsXLBZhYCM3ScZRB8KDUL5CHIX_hnyV2mkQ,1145
2153
+ pyrogram/raw/types/notify_forum_topic.py,sha256=vl9Zjkt3O_Aen9YvqzJQRPZOSxb1A6sPX4sDekB29gI,1593
2154
+ pyrogram/raw/types/notify_peer.py,sha256=FSepdeAjeJdfBtWS3Ww5-5PM8Jn2_RGMTS5iwo0_lg4,1324
2155
+ pyrogram/raw/types/notify_users.py,sha256=hby3ahvVTIma4b6iT_xs5iOPXuqIH5NRPjxRSzm0Gj8,1145
2156
+ pyrogram/raw/types/outbox_read_date.py,sha256=XMnJSMEyXcYASpe9qgANIEu0CNB6WhjbNSyKvuqBQHQ,1515
2157
+ pyrogram/raw/types/page.py,sha256=L7j2_1GHqGtnZn36DmuGPD7C2b8L2zPBpKIL3Q-TL30,3215
2158
+ pyrogram/raw/types/page_block_anchor.py,sha256=5rMfSlu78yc3S2kY82rZGNFQTKlKU2TEz0W0yJgNMJw,1302
2159
+ pyrogram/raw/types/page_block_audio.py,sha256=nAyArAtf3wsk-FRYrMouI6pXswbWuDOMfDv0lxemBqE,1624
2160
+ pyrogram/raw/types/page_block_author_date.py,sha256=RpxyWPT9YBjH0LPg1etw56RKqYIkM7Ek-Pm_pSD7ccc,1674
2161
+ pyrogram/raw/types/page_block_blockquote.py,sha256=-LnAW9wQTvJinFJ4Ksw68DNOoe92wDpdu1mgPlwf8cU,1648
2162
+ pyrogram/raw/types/page_block_channel.py,sha256=fbeicU9mSO3dpMil4lQXXqIjL9PP9_L2oGDrZAABn8c,1374
2163
+ pyrogram/raw/types/page_block_collage.py,sha256=QNCisLCtB5UHppCzilAsO0ogxzAgcGCyRSNhljJv1UQ,1683
2164
+ pyrogram/raw/types/page_block_cover.py,sha256=iX3dkfilSm5qdw97OxtRLIf7KDCV6O0cEWbL-rpWTFw,1368
2165
+ pyrogram/raw/types/page_block_details.py,sha256=TROusUI-oGLAiegk52OJrT15PN7ML3L9g4MKjS2ph7c,1947
2166
+ pyrogram/raw/types/page_block_divider.py,sha256=CyMW1P_tM0BuPjpdvu2PY44FPPbTf2otM40SX5yRo6k,1164
2167
+ pyrogram/raw/types/page_block_embed.py,sha256=8tUpXeYsnSi7SbZl5CSLIp9DkzrkElrwQupWoqdy1tA,3840
2168
+ pyrogram/raw/types/page_block_embed_post.py,sha256=Zrgy6cc8tUpXGcCOFj0tdx1GbcN3ZHJcg9j46lnpltI,2819
2169
+ pyrogram/raw/types/page_block_footer.py,sha256=dv8puYzH5PBtUMHUD6MCFMHkRwHAbdvOhZp-WRRbCDc,1359
2170
+ pyrogram/raw/types/page_block_header.py,sha256=GE3JqA-rSedck-Ny4CCqYTOEFLaOP1rJ7wU1WR1vtiw,1359
2171
+ pyrogram/raw/types/page_block_kicker.py,sha256=dKGZfITq7qgwVQVU_BBT5dyWp1k0AqNwH9qQSum51z4,1359
2172
+ pyrogram/raw/types/page_block_list.py,sha256=XmCqKmBi8V9Cc7l3jNleN9Yf0PHrfC01eXGA-zZpwP4,1398
2173
+ pyrogram/raw/types/page_block_map.py,sha256=fRaJRcBVeybWDCQBV_ZYjnjfbZdXdFdOKVD7jwgTQY4,2142
2174
+ pyrogram/raw/types/page_block_ordered_list.py,sha256=ZekIkESnjBkPUyT90kiTEMx7HYY0pgPA77Of6pi-F0M,1454
2175
+ pyrogram/raw/types/page_block_paragraph.py,sha256=pfK87-qKZzOfH1yFsjA1l0SVxjOMNvN4BqLaTo56RpU,1371
2176
+ pyrogram/raw/types/page_block_photo.py,sha256=dGfboyIMVax9uKc086SMCQXZkPSujLaB4XZs0u1Wkw4,2415
2177
+ pyrogram/raw/types/page_block_preformatted.py,sha256=lxka2vt1W0ToHrv1n1kPvJHRolGnVGWac8P5dS--Q6Q,1608
2178
+ pyrogram/raw/types/page_block_pullquote.py,sha256=gzazKKdQOMvL5ml_LKaitNO6DCvu83xK8eUKEWSZ2aw,1644
2179
+ pyrogram/raw/types/page_block_related_articles.py,sha256=WIevu8T9f13en3z04De3ryjsWtyKy4w9ZNso-Hg-V7c,1748
2180
+ pyrogram/raw/types/page_block_slideshow.py,sha256=RAbEIFLCau8-O8lmOPSSjTKepSCzloEOpAtQaFDTjEg,1689
2181
+ pyrogram/raw/types/page_block_subheader.py,sha256=27AaD6xDnEcM3TA-WIt3JkK_MlQskrPjhu6KCN9ijA4,1371
2182
+ pyrogram/raw/types/page_block_subtitle.py,sha256=5Mv684z8Ev2HLl89QmyNUylA1O131XdTIDs9_GP6rws,1367
2183
+ pyrogram/raw/types/page_block_table.py,sha256=8meLs6427G-SjYp3Gb_2_uDW3l79SMJRgii9eDcuawY,2236
2184
+ pyrogram/raw/types/page_block_title.py,sha256=zAryaiFQ1csgDyuH7e1MmWM-Adko3nu7fLi_Bc1h_9k,1355
2185
+ pyrogram/raw/types/page_block_unsupported.py,sha256=qm4U9ylNZ_t8Rz3cmVD0w7Nu6J-icE3ybNr65H2SrWc,1180
2186
+ pyrogram/raw/types/page_block_video.py,sha256=larc_sHtCeTfIO2GY1JRtRu_5USzFTIlFiw65u92DCA,2185
2187
+ pyrogram/raw/types/page_caption.py,sha256=1O8leiLpxnkrAg0pxSFMZjKOYQ97VL6ay6ivdnldPRk,1609
2188
+ pyrogram/raw/types/page_list_item_blocks.py,sha256=Kqf1tXZ0nRlFWChvKmQbhFeDbZMwQUYaGAMbLjP_urk,1418
2189
+ pyrogram/raw/types/page_list_item_text.py,sha256=PGZ7SBmaLj8F5VKpYwDLrwI3-BBaTXR0IKrihSd4RbA,1366
2190
+ pyrogram/raw/types/page_list_ordered_item_blocks.py,sha256=Zf-LmpXuF7jVI1Ti7QnnEg0LLQPSvA0bqbdJhEC3FLU,1633
2191
+ pyrogram/raw/types/page_list_ordered_item_text.py,sha256=uohfPIlIfe9Vydx-tKa32z4Ht-eMEvfOVBeiyqkJsrI,1581
2192
+ pyrogram/raw/types/page_related_article.py,sha256=HK7bzqAtzPA4fVjBmiwxZxIJ35lb0SBSqA4mRz5u8PU,3593
2193
+ pyrogram/raw/types/page_table_cell.py,sha256=5XxIMK4KwJgAhhweUoOrVSyQP8AkU_tZayV4K67cDfo,3824
2194
+ pyrogram/raw/types/page_table_row.py,sha256=1S3ICqVkWG3r7TQmTajEnMYjj7Hl488fGTlNKqvKF2A,1401
2195
+ pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py,sha256=sy3N9lxI_Z_FSCg1GfyfcmTfmN5qaGAv_0v5WwKbcJk,2044
2196
+ pyrogram/raw/types/password_kdf_algo_unknown.py,sha256=Y3Lmw93je2uPXc-YkaMrxSCquuIQF1r7-ED0xgjMPsw,1194
2197
+ pyrogram/raw/types/payment_charge.py,sha256=zr05UYq90DpZfwGt--3qkGvQM-2kbPsrT7QtHRcx9UI,1595
2198
+ pyrogram/raw/types/payment_form_method.py,sha256=BcIV9RaFJzZcFX3hfy_QI6wJl9l62Xyzus2lb4ywJHA,1507
2199
+ pyrogram/raw/types/payment_requested_info.py,sha256=U9Ddo11rfNhjRQIgS2hAxjTB-ZXWCrmOKG-LKNT5xCo,2783
2200
+ pyrogram/raw/types/payment_saved_credentials_card.py,sha256=VQvwf1N3hCGWszVPIXk9z_I4_CITVtdlwgqKxXoAqu8,1544
2201
+ pyrogram/raw/types/peer_blocked.py,sha256=_ctxGs8pdqO07scDVnxNMyrDu-jOuUVddpjjsw-qzt4,1547
2202
+ pyrogram/raw/types/peer_channel.py,sha256=R1gIqWFQkflVbpf06dhph-4N4Sz62Lq5GnoKRzhl3LQ,1561
2203
+ pyrogram/raw/types/peer_chat.py,sha256=-xjifEPDIsmgA6xAwh1aUXKbwBlpslSXCPyUuL5zuVo,1522
2204
+ pyrogram/raw/types/peer_color.py,sha256=fLXbWMzXAIzam9SiEKnRUk-jstCJtEAHBFq3CZz7ZNQ,2003
2205
+ pyrogram/raw/types/peer_located.py,sha256=j_73PioMnpn_OLUJ5vROyVfSNnob1bpjiX5KhVSSopQ,1774
2206
+ pyrogram/raw/types/peer_notify_settings.py,sha256=PwCPk0GjJpw2b56qR-WvMLrb4LSxmMzNlpuzzlA1_FE,6879
2207
+ pyrogram/raw/types/peer_self_located.py,sha256=QZXKeS0TKL2ikPtadSZyyIBDxm6t4ggYFfoX2YoU-Mk,1333
2208
+ pyrogram/raw/types/peer_settings.py,sha256=XRXEjVr-hjJfRQXYGT9bSLL-ZjRR0yACQkozKRTRID0,7377
2209
+ pyrogram/raw/types/peer_stories.py,sha256=ARNIr5SI7WIDg0iU9i3KdTVZCFLS_pgABKJQt1FSn8M,2095
2210
+ pyrogram/raw/types/peer_user.py,sha256=XG-_O_8Gf8MhpDtWoUIYMRnf2VqR0f7sK0bvwmE24Sg,1522
2211
+ pyrogram/raw/types/phone_call.py,sha256=jDzOWs_KW_Yv_Gy7bybqNsLQrDiZUJaEfudDiPFoQfM,4807
2212
+ pyrogram/raw/types/phone_call_accepted.py,sha256=1IIY4cu7IQT2g5OyFQUQp84L0WOB9VOQPl3Zk_msnzg,3052
2213
+ pyrogram/raw/types/phone_call_discard_reason_busy.py,sha256=-dLkil3bD0WvxiKWI5b_TjrW78Jc8HQ86kVACDvp7iQ,1217
2214
+ pyrogram/raw/types/phone_call_discard_reason_disconnect.py,sha256=BxzHA1CFVuAuqe2JIDcR7gJmkpXs3Y6g-_mNKemiAZU,1241
2215
+ pyrogram/raw/types/phone_call_discard_reason_hangup.py,sha256=AY2c50JtmcfRCNzvcC0ceKOwesbwrgfYDz3nPKNy_rY,1225
2216
+ pyrogram/raw/types/phone_call_discard_reason_missed.py,sha256=-m-U_5K5_jTY_zG5YDV4lfZKyLKh2KhF50_o7MIL6Xs,1225
2217
+ pyrogram/raw/types/phone_call_discarded.py,sha256=X_s74ZoeyPKpgo9FYqVYQM_E8IWuVW2JjAg-Js6_Bpo,3058
2218
+ pyrogram/raw/types/phone_call_empty.py,sha256=tVF4ZMnrweeQqP_28WNCHX3tQBR21y96LdzpVt2TtSM,1285
2219
+ pyrogram/raw/types/phone_call_protocol.py,sha256=gc5Hx0A2yTxN9oQXtJycdAfwX8wgFZXpzHccRRsYBpc,2571
2220
+ pyrogram/raw/types/phone_call_requested.py,sha256=77cO8mAEvL216ECj0n7eLu3NNt_FrILK4tGtjDMe_qs,3101
2221
+ pyrogram/raw/types/phone_call_waiting.py,sha256=KMc-0d5pPeIn3kSw-vAmoi2Wrk0XnzVr77DdY2izWKM,3300
2222
+ pyrogram/raw/types/phone_connection.py,sha256=8o1V2D4WASWnvmt66Bz_WBYKmRgq1p5R5yYmOH3bZ-Q,2348
2223
+ pyrogram/raw/types/phone_connection_webrtc.py,sha256=Fax0O42Tqu2FBmzQB7jqrxGKcI8iT9oJcZURDMRr0H8,2845
2224
+ pyrogram/raw/types/photo.py,sha256=XKf9sosJYQ_YwjRBfdadTM3gx-ZcblYyCvpmNcgVgMA,3309
2225
+ pyrogram/raw/types/photo_cached_size.py,sha256=mdWlZQeV-E_0cdDvJaqIvbjW7cck5QsDWCnS4JJ975w,1827
2226
+ pyrogram/raw/types/photo_empty.py,sha256=el_467cd0Z1SHsjRvB4c3Xi1hmREMwlPBDAZEzXYAVo,1265
2227
+ pyrogram/raw/types/photo_path_size.py,sha256=wrN1fGpf6CB8pn2IruboqD24lyDB_EW7-Wj7z4Hu_eU,1493
2228
+ pyrogram/raw/types/photo_size.py,sha256=4hI-RLzWOVnu13QUtfAO6DJpI4b8EKcQGmwEgYPJzjc,1797
2229
+ pyrogram/raw/types/photo_size_empty.py,sha256=5YN3g58a2zvKcwrz1kC5Cvtq4mLRpykjpYtI7Mh0aHw,1296
2230
+ pyrogram/raw/types/photo_size_progressive.py,sha256=KMorTlhFAGn0dJ9m1vIWR9VYKKr337Y2iE1QKXoFjX4,1890
2231
+ pyrogram/raw/types/photo_stripped_size.py,sha256=YlKJbJQTtHB96wgiRLLTaOuzBTC9TAGUTjFGnfFdNT0,1509
2232
+ pyrogram/raw/types/poll.py,sha256=1BZfzTBr7mDwGX3IzumwECkkDl3mW5gomP4-pwmMleo,3904
2233
+ pyrogram/raw/types/poll_answer.py,sha256=LbST2IzAml1ADEPkk_kQuvw_TtuVLXmySzqZowyjH2o,1580
2234
+ pyrogram/raw/types/poll_answer_voters.py,sha256=wwWdVe22R9vn-p2Wb1sh1NTmsifgLFA2K9VI1EnEFfI,2111
2235
+ pyrogram/raw/types/poll_results.py,sha256=B-giJRstMYdOKdXXTYA_tsrrbMOqzunq6l4P0-8i6DA,3757
2236
+ pyrogram/raw/types/pong.py,sha256=bDizJTDbKtlH_RRARuDdkTxgg0AlWodWZaZgQzhC91U,1718
2237
+ pyrogram/raw/types/popular_contact.py,sha256=JlHoQUIxU5SFGfIqPmJSyrXBWoedvXK9aLUUGgzrbVE,1589
2238
+ pyrogram/raw/types/post_address.py,sha256=zaeJTxVmxF3tYFBDoNzKK2ahmrR1X8s_GoMkBQ37hAg,2503
2239
+ pyrogram/raw/types/post_interaction_counters_message.py,sha256=wz5u9Gy4GzgXK2D_POqkUj8d8HbMJHp0FqOEUe-j_Bc,2059
2240
+ pyrogram/raw/types/post_interaction_counters_story.py,sha256=7i4BznjJFjeDjodvpuXvCV6JvEI0eZ7iLaZ-Dr2iV1c,2069
2241
+ pyrogram/raw/types/pq_inner_data.py,sha256=-rutby2BSk23TKGdPSAFRfoxVT6pyWLG9InBRiA7k2E,2326
2242
+ pyrogram/raw/types/pq_inner_data_dc.py,sha256=B_tYIMr3pvAQar-jgpEJtM6EKfvsisKU4-PnhmbhZzI,2507
2243
+ pyrogram/raw/types/pq_inner_data_temp.py,sha256=zjmuVChRTe-zubqLDvlNT-HckTZx2tPC4aVnE_whtck,2587
2244
+ pyrogram/raw/types/pq_inner_data_temp_dc.py,sha256=pdkQngV0e_tCZdgsORXED9pEhTXE0y_bEK7llX1c7zg,2768
2245
+ pyrogram/raw/types/premium_gift_code_option.py,sha256=5S67nWhlhM4ZSS6O4J6QGd8MrvizFhAzPmRcvF8W2_Q,3155
2246
+ pyrogram/raw/types/premium_gift_option.py,sha256=sJl6uF9WuTjg28Ik2R_xfC4K6OEQhwQ6GXLZ0bvF29g,2478
2247
+ pyrogram/raw/types/premium_subscription_option.py,sha256=gC0dkd3xdSLt8xZ5tLUvS8prJuP6lSQm4HHvMaihXSg,3589
2248
+ pyrogram/raw/types/prepaid_giveaway.py,sha256=Y9fCEVxQUo8tUJ1rXUiRYHP0hnK6EClmmN61V3luz5s,1922
2249
+ pyrogram/raw/types/privacy_key_about.py,sha256=C2i_5EhDCSivvOLiZR-0xhFzbWAMMSxrFia40Mdy-K0,1161
2250
+ pyrogram/raw/types/privacy_key_added_by_phone.py,sha256=TyIp49ShXbgBgi0iowDP1BdUMbpTxXipXN7VJekL_Cg,1189
2251
+ pyrogram/raw/types/privacy_key_birthday.py,sha256=w78Ae-M1iNMYoHdlExr-Wh3yAFZBDcI6SBkHpHsRjc8,1173
2252
+ pyrogram/raw/types/privacy_key_chat_invite.py,sha256=yNPCOhGRoe5oAT1NgaOEv5aw_wZCe4lmAccYOINDLAI,1181
2253
+ pyrogram/raw/types/privacy_key_forwards.py,sha256=y_0Z06prD6V8evYvqKqR175wadDAP7fxW8EjVOWoW7U,1173
2254
+ pyrogram/raw/types/privacy_key_phone_call.py,sha256=YG68ZSveOO-KYDcSZtbZ4Wa0Z1t-d6EYkKtDZFsn6M0,1177
2255
+ pyrogram/raw/types/privacy_key_phone_number.py,sha256=5xBesOcf1RCZPbZi6VV9IJTp560-w_AdRWaR6HfQVO8,1185
2256
+ pyrogram/raw/types/privacy_key_phone_p2_p.py,sha256=-tGsTaq7mMKnQu5RqDkzIdH1ufKNVRe-8Kyn4wvc8GI,1173
2257
+ pyrogram/raw/types/privacy_key_profile_photo.py,sha256=QHtA1-vSWVokQ0oWPAg_J1Ofl_ZyhQ4XNJbyYVyC7MA,1189
2258
+ pyrogram/raw/types/privacy_key_status_timestamp.py,sha256=XpwZfuEVi-Cgj6-BmQsf-2-tKv7CJG9LELQ03u8sAyc,1201
2259
+ pyrogram/raw/types/privacy_key_voice_messages.py,sha256=z89S9Y77XaFmtTQ34KIdQ5L-oSHH1qg4kqklcc2I2S4,1191
2260
+ pyrogram/raw/types/privacy_value_allow_all.py,sha256=aqwaKb5QpDibEShY0ECL_gyLCEBByPa6kt0-1RfkwsI,1182
2261
+ pyrogram/raw/types/privacy_value_allow_chat_participants.py,sha256=EDbyPXL8vARBm2BHukK6e-lPcvlADQWBNQQM7n1Q1Ik,1430
2262
+ pyrogram/raw/types/privacy_value_allow_close_friends.py,sha256=o95eKlPDoGVIP1AacCR1FH9teSlVQo1fVZkTcDaE8WY,1218
2263
+ pyrogram/raw/types/privacy_value_allow_contacts.py,sha256=h2rjx94oEUtGp6BLXsjvGnLXBY_AJsvu4nau1XpLeF8,1202
2264
+ pyrogram/raw/types/privacy_value_allow_premium.py,sha256=Wbaimq6c-VcmWR_pOOSH2JEtabxEsWkl5FZNauqJ808,1198
2265
+ pyrogram/raw/types/privacy_value_allow_users.py,sha256=8zPubO2oYlcqzjmWDESu1YIly9AQfZk3CakEbvA9kpQ,1386
2266
+ pyrogram/raw/types/privacy_value_disallow_all.py,sha256=f1OyZiizduPlGaB1QtzV0BBiEnGwHroKKVJpYWRGsKs,1194
2267
+ pyrogram/raw/types/privacy_value_disallow_chat_participants.py,sha256=Xlrp_uRBeIsxIcG54cbDdmGOW8PQ2ADjlUC0GaHIDQk,1442
2268
+ pyrogram/raw/types/privacy_value_disallow_contacts.py,sha256=82yAObdH0_R4kNMlhtlzoolOl6kJCZh1FkSSABvOBqA,1214
2269
+ pyrogram/raw/types/privacy_value_disallow_users.py,sha256=KzAUwYX4B6R8-5mzr_51MV_UAgZi1rmDB5Hgr29aDsE,1398
2270
+ pyrogram/raw/types/public_forward_message.py,sha256=4twqMQd4Tf-qxHlN_L10IjbWG3-qtwv4D9-ijj4pk1Q,1404
2271
+ pyrogram/raw/types/public_forward_story.py,sha256=zLoxDJUrMkfQTdOTAZ8KuaJkPNqFQ0LwUWfgagfgVTo,1618
2272
+ pyrogram/raw/types/quick_reply.py,sha256=3jmRMHcpDaflsIb3yrAf7FrFA4uoA8HyhbdDkOGne-E,2025
2273
+ pyrogram/raw/types/reaction_count.py,sha256=aAWQUh0yreq7XMIAFzjYLPbusGWlxn8ALmYt7VMsPhY,2069
2274
+ pyrogram/raw/types/reaction_custom_emoji.py,sha256=hnX0GPi_9EVERZdC9j4qlW3G5gtBFYRHRkUsKD0dTfg,1385
2275
+ pyrogram/raw/types/reaction_emoji.py,sha256=plhBOUC1JrQR5ZfumN4Z_no1hT5LkKV5QxpJAJMW0DY,1329
2276
+ pyrogram/raw/types/reaction_empty.py,sha256=3Y8dXhZc10H1DP8iIF6vfaJEvGw6GPtKk9IV-toyoug,1151
2277
+ pyrogram/raw/types/reaction_notifications_from_all.py,sha256=HQ3Fa4V-9eMecqMaYGFpUA6S2LuijaAE4ykwb319Ets,1228
2278
+ pyrogram/raw/types/reaction_notifications_from_contacts.py,sha256=uE_GYr-Lb2L7da-1aUBTck5_5Njj9fE1EG8n41jhblc,1248
2279
+ pyrogram/raw/types/reactions_notify_settings.py,sha256=JBnUbsvKEXqGimseNei5tKsti07E1sHJypTTwjqwbAk,3302
2280
+ pyrogram/raw/types/read_participant_date.py,sha256=zk5O_LjvMdlYnGMnXB3jeatoc1QyTsgN5YbiSUGeLeQ,1770
2281
+ pyrogram/raw/types/received_notify_message.py,sha256=i3auWCdQak8kLGVQON3ygN_xp5ZFhomNcbd9MwciNsY,1731
2282
+ pyrogram/raw/types/recent_me_url_chat.py,sha256=wxP-4Z40ynJZ_1vw1Crp4AXr58E13jue0Q0VOILmT6M,1516
2283
+ pyrogram/raw/types/recent_me_url_chat_invite.py,sha256=UpXs4DMrzyK9mVY4R_iWSx0rme60rJADEVsDF-7JhBM,1636
2284
+ pyrogram/raw/types/recent_me_url_sticker_set.py,sha256=W-Npf24fabYCJG0tSGKCMt9YnmK66UaWO5XIVIvhCoY,1592
2285
+ pyrogram/raw/types/recent_me_url_unknown.py,sha256=OJcvAXxcY_tEJOmvTtCJ3jglBSoXlYwuK2150UeXc8M,1307
2286
+ pyrogram/raw/types/recent_me_url_user.py,sha256=Y0jPjHHl6OG3vwt0C21apMoC_-OvXdD6EncAsRGuOeY,1516
2287
+ pyrogram/raw/types/reply_inline_markup.py,sha256=WnL4FBVGkgZAue09n20HGDGJQnZumaC6aF7DRa0RYtU,1427
2288
+ pyrogram/raw/types/reply_keyboard_force_reply.py,sha256=Zs6Ucz2aZe9NhjBbKvEfoxr59aaRnrmvchgQ4zk2K5M,2191
2289
+ pyrogram/raw/types/reply_keyboard_hide.py,sha256=9-gnu9sPaxh6SA-vlU5JZoRs5NpLps_Pk1XAobYMwas,1453
2290
+ pyrogram/raw/types/reply_keyboard_markup.py,sha256=dFfi3Id99Jk5J9yLgbl0Wx0eeTdccl7EIEg0vVNEo6I,3031
2291
+ pyrogram/raw/types/request_peer_type_broadcast.py,sha256=pkqHXadvWq4_UeZtiZn-2q-fNKPsf13atMEJ3fjA0gE,3023
2292
+ pyrogram/raw/types/request_peer_type_chat.py,sha256=4FCoSVfa6dLg6kjhPYWWQSVpfFdjBv5w10qICjvjNQk,3692
2293
+ pyrogram/raw/types/request_peer_type_user.py,sha256=GiZreakXX_y8VxKuQHn0-xT5683N_9QOkX96rje6Q2M,1880
2294
+ pyrogram/raw/types/requested_peer_channel.py,sha256=0k2QAjZ-s0BgQlDAnpGhNgKTNWLpWF9CV-9ra7NqUNY,2569
2295
+ pyrogram/raw/types/requested_peer_chat.py,sha256=qLKd1E2_bvwJV28XaSfVOnePflm17KNjL8l1qN7uELQ,2143
2296
+ pyrogram/raw/types/requested_peer_user.py,sha256=sMx09wNKV2cyxF_mYBpRi5NpEVa8ZSYE44DDEEEUAfQ,2983
2297
+ pyrogram/raw/types/res_pq.py,sha256=_30ct4zqdTseeebWczUfIe8pG4fMhvIMSUG8LrUWMiw,2405
2298
+ pyrogram/raw/types/restriction_reason.py,sha256=I1WA9n9xb5_v5NJy1uRoJg_niLruBrUdwjbiRE88yp0,1750
2299
+ pyrogram/raw/types/rpc_answer_dropped.py,sha256=i906oqMbUJSpef7ztj4Ir4NhIdwbq8FfUErEZFU_Unc,1939
2300
+ pyrogram/raw/types/rpc_answer_dropped_running.py,sha256=X70BiSJhIjlfnX0M6P_eIjpyAlJjM-rxYAKs0CyNDUs,1393
2301
+ pyrogram/raw/types/rpc_answer_unknown.py,sha256=7hOsMCoCBNINvUI7_mIMshXbtsSitm27G0pnuH8dSDU,1365
2302
+ pyrogram/raw/types/rpc_error.py,sha256=fgKGljFwgWL1kA0ZN4P7Pwid8mJXNRY4R7q6R5f93uo,1599
2303
+ pyrogram/raw/types/rpc_result.py,sha256=4yOvpqjqPKC4Ofh-14dwA6Lg7Jt4k3Qi_NOyklwXdIA,1584
2304
+ pyrogram/raw/types/saved_dialog.py,sha256=7BECqPjrY1d-7zBzC8hz1prB4hDXLyz2s-QQHZ4e3bk,1886
2305
+ pyrogram/raw/types/saved_phone_contact.py,sha256=KWu5cfjXj6GW4Xm13dWH2qaAyGU4pCCRBnEKsM0ZI9o,2191
2306
+ pyrogram/raw/types/saved_reaction_tag.py,sha256=Mu_oM0sCID-Yq7ZcgfcDBlXV5HQQlCZ-oqoLCoWU1SU,2005
2307
+ pyrogram/raw/types/search_result_position.py,sha256=JrExzpNs7U-vW3R2JBqZKn-y0ouLoLtdXq0tc8dGfSk,1754
2308
+ pyrogram/raw/types/search_results_calendar_period.py,sha256=8Cjxk-HSv_b5liGMOogtJzrX5gil0wkIUO9770yXPPA,2060
2309
+ pyrogram/raw/types/secure_credentials_encrypted.py,sha256=iSp_ASjoNMBhkQsYlUBwfe0CWWqTuCKXLGpSXJDTnMk,1762
2310
+ pyrogram/raw/types/secure_data.py,sha256=COWvcfZ2apQKZT9zY1rzAjrdO2lNYTBfBzYS0hZNQ9g,1727
2311
+ pyrogram/raw/types/secure_file.py,sha256=bQb8MTvMKbYKT0iI3VBeKGodxAktGSLe0dM-FLvBo-8,2555
2312
+ pyrogram/raw/types/secure_file_empty.py,sha256=_IaxdDdEie46Le9u81J9zDF4G-m96mK99_Q07UkzeLY,1161
2313
+ pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py,sha256=5GKi3fbPzzya1ADhSit7Ii2Nml9nn69dWJsqcywtQt8,1443
2314
+ pyrogram/raw/types/secure_password_kdf_algo_sha512.py,sha256=lJyAeq4FtdaGjyGq-fKzOES4KOY8QRpqd--Bh9hMi1U,1363
2315
+ pyrogram/raw/types/secure_password_kdf_algo_unknown.py,sha256=uvxsjcx4z3hXUmg-kFvIFVeYLpnAa8-JbHtaBpGpTWU,1220
2316
+ pyrogram/raw/types/secure_plain_email.py,sha256=PPCxR5q8L8D41qr5K8OxMt8LgudU--qsIhT3b8rP37k,1321
2317
+ pyrogram/raw/types/secure_plain_phone.py,sha256=27jgD1e7lrcPA4VDbRprKRrZAr93DVUGYzPiquGf3Ho,1321
2318
+ pyrogram/raw/types/secure_required_type.py,sha256=d6OX17zRlQ_53hldovw2LMaPzAkOitlL5utcBzTR0k4,2488
2319
+ pyrogram/raw/types/secure_required_type_one_of.py,sha256=-B_20scPZvm7N9JosJzYGLSoVkAq5OW-9x5mLG8lkzs,1469
2320
+ pyrogram/raw/types/secure_secret_settings.py,sha256=SY8iu4HX89lAXCls5W3JPmYCXd3V-tO5Qf4D7Yv0TwI,2078
2321
+ pyrogram/raw/types/secure_value.py,sha256=CFAZDkMayV7aqSn_G8o_iGKx_LIAonDQ-P2TfLCvNfs,5125
2322
+ pyrogram/raw/types/secure_value_error.py,sha256=BoqoqQz52mAlHLb3wLc8J4kGDQtfEzoMY0swocX3HOA,1777
2323
+ pyrogram/raw/types/secure_value_error_data.py,sha256=DyohAWFaIbNCcGktBlG6B6gKWnZbcq6YG1UBwbfl0eM,2036
2324
+ pyrogram/raw/types/secure_value_error_file.py,sha256=hPbnCrd2vFmvkaInBYlOjummmTrruOw7ebVARLOu-tA,1838
2325
+ pyrogram/raw/types/secure_value_error_files.py,sha256=cHtuNwc8PRjgBlbD5S1R0zCDP4zpZPE5MiwMB9DNyRo,1882
2326
+ pyrogram/raw/types/secure_value_error_front_side.py,sha256=myOFfmsPVodYi2MP4V8XALgP1_79Ok0gUlfWHL-cMqY,1854
2327
+ pyrogram/raw/types/secure_value_error_reverse_side.py,sha256=eb89tmST1ujVBhh0nXkpcD_2-uFIfDVtipvkccBvl3c,1866
2328
+ pyrogram/raw/types/secure_value_error_selfie.py,sha256=8TAnv3duduiL5r7enuYAzO3K4gQ2qvUUu-R7WPmTbvA,1846
2329
+ pyrogram/raw/types/secure_value_error_translation_file.py,sha256=0N-08uFVT_YPaWqUTqrav7Scz42WCCy0ZQ_LTivszm0,1882
2330
+ pyrogram/raw/types/secure_value_error_translation_files.py,sha256=XFuS9S47dlmBYiFLXM8gZc6b6_y0A2y_0emTPdf9pmY,1926
2331
+ pyrogram/raw/types/secure_value_hash.py,sha256=sETXrTC8-USNlkYGA2036S79lm5y62FMylWW5n9FUWw,1583
2332
+ pyrogram/raw/types/secure_value_type_address.py,sha256=iT9ivJa7ZfHIJMlYLJDVh4TzC7ZSCO6C2jXBZJoaHf4,1194
2333
+ pyrogram/raw/types/secure_value_type_bank_statement.py,sha256=erO5LtKTXcZiZAejX2geBRFysAkpgM94zEOPATslvpE,1218
2334
+ pyrogram/raw/types/secure_value_type_driver_license.py,sha256=ECBllmFvsvUWM8LgGQGVcK5rbnvSZx0XRnymAQO5rfA,1216
2335
+ pyrogram/raw/types/secure_value_type_email.py,sha256=YhAvGx0geLdSIUQkCMrpW558nCiuJ0wqz6cKneIXy5s,1186
2336
+ pyrogram/raw/types/secure_value_type_identity_card.py,sha256=6y4BOSL6ADo0iItabGNOkpjkA7JWT56ziIVfEDviyyU,1214
2337
+ pyrogram/raw/types/secure_value_type_internal_passport.py,sha256=5pyNSe6jYAT5hBd1X3_dWFyTPoXlvZVD1Q6WaQYlnVA,1230
2338
+ pyrogram/raw/types/secure_value_type_passport.py,sha256=SF1jVVClv6Rr06xhp0VuijZPANB6DZKnWVHxHIYqBts,1198
2339
+ pyrogram/raw/types/secure_value_type_passport_registration.py,sha256=nI5NQj5K72VRPMmL7X4MQ5uJFGkoAkke6-O4I-mJfc0,1246
2340
+ pyrogram/raw/types/secure_value_type_personal_details.py,sha256=BAxAMLcuTeB7JPfmzfY-OXvJ5izjLNaRG9AtTlnYqi8,1226
2341
+ pyrogram/raw/types/secure_value_type_phone.py,sha256=ZTUjyxFacT7RTqcjTzkfw3JLaA8Rqf5MkDQL6yHGEWs,1186
2342
+ pyrogram/raw/types/secure_value_type_rental_agreement.py,sha256=qBlrzw1OK3BKNoZd21MP2ruxlIMZMgX3n0excQBsbOU,1226
2343
+ pyrogram/raw/types/secure_value_type_temporary_registration.py,sha256=AtUWNciqzPjX62hRs_foMQ6yFwLFu1Dy-p0E2l4VDqc,1250
2344
+ pyrogram/raw/types/secure_value_type_utility_bill.py,sha256=GqlH7pek_tNoU8n6UXwdLL4FJ5nKYEturez4qGHr_5Q,1210
2345
+ pyrogram/raw/types/send_as_peer.py,sha256=X9-wmmu0AdbW7_dofTx6c412Yq1CoWNsLoeALPatmt8,1717
2346
+ pyrogram/raw/types/send_message_cancel_action.py,sha256=ST4Qf52mTOjLppAIbwOg9Zuu6cUG9522u8N6YOSiGHw,1200
2347
+ pyrogram/raw/types/send_message_choose_contact_action.py,sha256=O0iHH12loj3d-Vu_s_9i-sqxeCzSGDm1E1Us3_x-ygk,1228
2348
+ pyrogram/raw/types/send_message_choose_sticker_action.py,sha256=vzIsibb4USbyOKSDmd9n-mLBOqsCRwUsMR4FAT_ZAV0,1228
2349
+ pyrogram/raw/types/send_message_emoji_interaction.py,sha256=L-MLph6c6BsV4CljpQa07irNfhBRO8LjdxzFP1VpzMw,1912
2350
+ pyrogram/raw/types/send_message_emoji_interaction_seen.py,sha256=3LAIS-azzRDTMQ6vpcMMpADufqZOP7ONEjRKtoHENwU,1410
2351
+ pyrogram/raw/types/send_message_game_play_action.py,sha256=1w7N-dl1JPFk7xW5-y-OYGDJbAVb7D1h6xHHEdk-sZo,1208
2352
+ pyrogram/raw/types/send_message_geo_location_action.py,sha256=eoHdNDXCg66GdJTxRtZ5pCdDsgNxJv6pJbW5kI1e18Q,1220
2353
+ pyrogram/raw/types/send_message_history_import_action.py,sha256=8v4j1KQ_PfMvCwfmTc5HGywnyHqGrIXcUIIMWtpcAy0,1408
2354
+ pyrogram/raw/types/send_message_record_audio_action.py,sha256=yXpUt_sNJpxwcB16TyjedzTOlRUoA9avIuJVJZW_I9Q,1220
2355
+ pyrogram/raw/types/send_message_record_round_action.py,sha256=hlIphRsdd6Mdn64Ta0mIWKc8JRg8qTqzYmNH_vb95Is,1220
2356
+ pyrogram/raw/types/send_message_record_video_action.py,sha256=KzQ7IN0Kx3BF7F-L7ssY70GJmiYVKCBdhEChgQ32noQ,1220
2357
+ pyrogram/raw/types/send_message_typing_action.py,sha256=Y9ZWiJagZP-fJIdNOJTnVxpa4Zxf69582jHU5C6xx2o,1200
2358
+ pyrogram/raw/types/send_message_upload_audio_action.py,sha256=6rr0mLO2DFTJh7gEhvdO4f4zt75fHc4X09zO-c9AgaM,1400
2359
+ pyrogram/raw/types/send_message_upload_document_action.py,sha256=wQ2Ic0NDb8MGKqyI-7W_I452X5B_7vzEqQoOq_rkLO4,1412
2360
+ pyrogram/raw/types/send_message_upload_photo_action.py,sha256=6EMp01zb8z0dSy2pdhyTHvGpnFiximsWLoDg9hpX_yI,1400
2361
+ pyrogram/raw/types/send_message_upload_round_action.py,sha256=oZfptRIsr4o0fnRGnh9BpYTDg3ar3MRmAT_gq5-ii0U,1400
2362
+ pyrogram/raw/types/send_message_upload_video_action.py,sha256=HEIOoT1B8ReKTerFXlSLwqYhNby1L7BZWLnL4fBmmeo,1400
2363
+ pyrogram/raw/types/server_dh_inner_data.py,sha256=6wmOcOFozThyA2hEnhcB8fSFAbGf4mshkYMdx01OFi4,2437
2364
+ pyrogram/raw/types/server_dh_params_fail.py,sha256=8Fp_4hKTF7SmD09IxooM2zYYFXcjQKt1gDHuoBvFNC0,2099
2365
+ pyrogram/raw/types/server_dh_params_ok.py,sha256=wAYjlk5GJZ8_fJ0DwZ6M4Q_SBg-1u1VpUpZ5uiIYlXM,2098
2366
+ pyrogram/raw/types/shipping_option.py,sha256=TDIsAKohAylz28ztzidjihbsO6qg3poYPuCdy6SADFM,1785
2367
+ pyrogram/raw/types/sms_job.py,sha256=wAO8cf7GBQtELf7GMMNn-3bpNRTGN9zWa8-OMFicIB4,1932
2368
+ pyrogram/raw/types/speaking_in_group_call_action.py,sha256=KfuuIATxZl0pr5bgx265oVqUTvPwQhLNuKTILMAsm8k,1208
2369
+ pyrogram/raw/types/sponsored_message.py,sha256=ol5VHtc0H0cDuY_tsAvt9e6K0B3bS6octd04imj-EJo,5041
2370
+ pyrogram/raw/types/sponsored_message_report_option.py,sha256=BZg8UBVHauk_2pXkq4MEswq58M6XA1FDIvxbd_OTtOA,1581
2371
+ pyrogram/raw/types/stars_revenue_status.py,sha256=ZYQ4kGg679QH_v1Zwc8zhGgVbyq75ElGg_3ZG4EdbXI,2941
2372
+ pyrogram/raw/types/stars_topup_option.py,sha256=CWd2cEAr4UCGcCayxAyrRAph_YWosWL_rX__Y2FdeBU,2738
2373
+ pyrogram/raw/types/stars_transaction.py,sha256=EA08S1-h7d8-_tt3-dkHt7JYaZr1ZWfAnKnQqPxzNdA,6279
2374
+ pyrogram/raw/types/stars_transaction_peer.py,sha256=iTho7vb74l3mw5kukj_S-YgOqk-nuaHoPcxJFbolpng,1374
2375
+ pyrogram/raw/types/stars_transaction_peer_ads.py,sha256=ZwbxoTnadMlNwNeSSlYYBOHisAxB440PE1I2stYpvBA,1203
2376
+ pyrogram/raw/types/stars_transaction_peer_app_store.py,sha256=vguYcev1TDeaACPvEoI1AwM3T-Oaj_z6xgJTDMR8L-A,1223
2377
+ pyrogram/raw/types/stars_transaction_peer_fragment.py,sha256=W-QAPMUYZR7RYF6sH_eOid5SkHGjJjc9_IkVM7t9tPs,1223
2378
+ pyrogram/raw/types/stars_transaction_peer_play_market.py,sha256=zw1NsjsJiNKEiHN1gi6NipUl9GkrLvzqswZcFka5CXE,1231
2379
+ pyrogram/raw/types/stars_transaction_peer_premium_bot.py,sha256=_D8uii_vWR-H2nXJ8L9o3YVX62JnUmXsjGH8cmc2di0,1231
2380
+ pyrogram/raw/types/stars_transaction_peer_unsupported.py,sha256=d3fyD1yOODjtGshCUsp2QoEIA330ziqqefRIrmCSMnk,1235
2381
+ pyrogram/raw/types/stats_abs_value_and_prev.py,sha256=hArlV2P_QvSuM4jwD3JoD_zLZNv3WpG5DaVmqn-itIo,1615
2382
+ pyrogram/raw/types/stats_date_range_days.py,sha256=yCnamETEueF8wUpQ9YXYXRq0F8Qy0ptTm9JpBCWVZWM,1588
2383
+ pyrogram/raw/types/stats_graph.py,sha256=iSQPJNiU1EDyBlwtXCA976bcsHeTencw8ZacHV-gUH0,1998
2384
+ pyrogram/raw/types/stats_graph_async.py,sha256=CivaMBtDVUdtagCcTpGzlK_GxQDSauBnc46CdVVrsvE,1516
2385
+ pyrogram/raw/types/stats_graph_error.py,sha256=O9PaU24gkVE-r3kqRc4YTvoTRzVEgtJiR9WEYu9fxY4,1516
2386
+ pyrogram/raw/types/stats_group_top_admin.py,sha256=cNiVKtzpaEjzERW8DHbfNLb4NWst0rlhX8ZbFB_Afe4,1991
2387
+ pyrogram/raw/types/stats_group_top_inviter.py,sha256=voPTQtGBZZFvmEhJHOG6v46n5n0_1l4ud_szeo_xXFs,1619
2388
+ pyrogram/raw/types/stats_group_top_poster.py,sha256=v6gpXJNTxAZte4JzAOiHCO60pTo34karpcWT9Ay3NB4,1823
2389
+ pyrogram/raw/types/stats_percent_value.py,sha256=PphgDztzt6_uUns01rTIv_bxbSSvBH7VdaFC26nfWXE,1546
2390
+ pyrogram/raw/types/stats_url.py,sha256=jf2MTq5jYw3y0JM0D_hFZjtuiUXIdBMNfm2IUCZY_MA,1264
2391
+ pyrogram/raw/types/sticker_keyword.py,sha256=jQktGaJd9AcmANma_sWh9ImsSWzca5vUiymIKfFP1eo,1627
2392
+ pyrogram/raw/types/sticker_pack.py,sha256=lBQHrSh7iKTcRpw1JxLbbOwKk9v5D6bGwWacOgTloy4,1603
2393
+ pyrogram/raw/types/sticker_set.py,sha256=AIjVIFnEEAYKxeRo1KKVbqn3QXaOB6Ub2Mfxyz7N7rU,6669
2394
+ pyrogram/raw/types/sticker_set_covered.py,sha256=7VmjEZAW5bfce96tRQS9mfsdwBtGSbdbfx5siSuammk,1841
2395
+ pyrogram/raw/types/sticker_set_full_covered.py,sha256=6Ekwd3VkBMToyNJ26TwV03khGEuBuOoa9SurQUoqaCQ,2532
2396
+ pyrogram/raw/types/sticker_set_multi_covered.py,sha256=AD4zJOrW7MALnMxYHnOv2TO_4WxWTzBsYdW7Tzdye6E,1892
2397
+ pyrogram/raw/types/sticker_set_no_covered.py,sha256=4XEGakDJYP2aNTmuE8shMl5f9LSugEfMN2AEKbjKogw,1594
2398
+ pyrogram/raw/types/stories_stealth_mode.py,sha256=n1gECzkxuFvIimAROJW1A9xsWPrdVWgQdTbY3Z6CHF4,2177
2399
+ pyrogram/raw/types/story_fwd_header.py,sha256=uWFdCW70PlOIU5QPD1U-6o0QtSrGqW0EF3-gfVf5ww8,2660
2400
+ pyrogram/raw/types/story_item.py,sha256=FUaCws-a3xaV5Zbug-zr6WoX3OQP9zmvS62J92Qd9Fw,8150
2401
+ pyrogram/raw/types/story_item_deleted.py,sha256=4ba7TqarWpqwiynYBNWPF9JNKCLEULo1bOagus1fGo8,1290
2402
+ pyrogram/raw/types/story_item_skipped.py,sha256=EdkiIl62BKFi0Io9VvBqEMtTxgAVHF8e8uDLJ7jSDHY,2101
2403
+ pyrogram/raw/types/story_reaction.py,sha256=J0XLbugveJ3jc1P2pJnTsQZA8HEG_xv_cK45LLrnfkE,1839
2404
+ pyrogram/raw/types/story_reaction_public_forward.py,sha256=5lHEzJ1ZOttsF8yt9zQqqiR4ZTg67NqNagvFrCh2o6s,1430
2405
+ pyrogram/raw/types/story_reaction_public_repost.py,sha256=e3Jo5t5YdvDeZm9Ju0aL_uopg1r3f_20ZkkfwC0xyG4,1673
2406
+ pyrogram/raw/types/story_view.py,sha256=m9HhsiPIHWD3Ren73svSqa-Y8T-6CbPkuUPXLNKgh8o,2667
2407
+ pyrogram/raw/types/story_view_public_forward.py,sha256=TaMg5luXl4_LalZeI833OTz2p9yY0wkzdfB9oMrGcuo,2133
2408
+ pyrogram/raw/types/story_view_public_repost.py,sha256=4W1seX7f7ZMmxdD6aI5SYOf-eSaYykcYW9NIz9zqCvU,2376
2409
+ pyrogram/raw/types/story_views.py,sha256=EgD2gBxQ5curAB-2ou_r_AehqmnirKfMipKIDvRdKG8,3602
2410
+ pyrogram/raw/types/text_anchor.py,sha256=Hd0Rft7y0q6Tnm3sNyQbE_Fds37I9BismI07x05mSWc,1527
2411
+ pyrogram/raw/types/text_bold.py,sha256=s1NbRs1s0ucNDZDyYNt3NOkQ50UOTrhGwWBd6Nj_koo,1330
2412
+ pyrogram/raw/types/text_concat.py,sha256=MPfI96bg4mucuqj5IQzs0uKrluKMEptneadi-0EU6Gc,1369
2413
+ pyrogram/raw/types/text_email.py,sha256=S-TYqW-Ca6T1HPzQaRkwXtygu3MAnQDJfx2toYL826Y,1532
2414
+ pyrogram/raw/types/text_empty.py,sha256=kaZVOgGXNWyKfBXXtc-Z0-au3Ascu4bqMDEx7zTfD8w,1135
2415
+ pyrogram/raw/types/text_fixed.py,sha256=F8VCpQARLvMxzZZ8JmbrxQ1F4ofJBaHc2fRUIAhe-ro,1334
2416
+ pyrogram/raw/types/text_image.py,sha256=CCM1QF_mRU_wZDpVohf43Z1-1bEUV7wKJD92BWVTYvk,1671
2417
+ pyrogram/raw/types/text_italic.py,sha256=jK71TdCzy0wGMmrhlrx1tsHv66nzFnxsz_ApytGfEv0,1338
2418
+ pyrogram/raw/types/text_marked.py,sha256=qEU37SteGRBoMwNXGp-SupOH17e7sWLHnd-QSzK5nKg,1336
2419
+ pyrogram/raw/types/text_phone.py,sha256=w-5lS_pTP7-sCdXKxiBHMDiOt4kWwF-7EpqNckKLGys,1532
2420
+ pyrogram/raw/types/text_plain.py,sha256=wNptIn_FA3Dk7b6mRYMkyRl_jhOoKFn72FIR1zMX6GE,1277
2421
+ pyrogram/raw/types/text_strike.py,sha256=jpnPN6yGmBI5KsJ479Ux6taJ1c12Bdc4om5mMAc_JeQ,1338
2422
+ pyrogram/raw/types/text_subscript.py,sha256=KcLdCq_l7gmfbUc2_8fkSbEqFRQsLS1CJeDsFT7Ek1k,1350
2423
+ pyrogram/raw/types/text_superscript.py,sha256=mjVKU6kMMDg_U6mQiZflNNoAxeyYUIP50kC8BfyY_Lc,1358
2424
+ pyrogram/raw/types/text_underline.py,sha256=Ri8pZm5zos3_GWQRa4c8C1QkcxTOXTCiV8yPBXBc8J8,1350
2425
+ pyrogram/raw/types/text_url.py,sha256=wH7aNwhe7FCEQRRyq2ttuKbU6S6PwpBnFMF3kBvvvO4,1754
2426
+ pyrogram/raw/types/text_with_entities.py,sha256=gcXashtuWxeeivnPLNKn6ali94yLTIO6LEwRN1gXMXU,1637
2427
+ pyrogram/raw/types/theme.py,sha256=GpR7RSCEXzRqmrP0eocwZSY9RmTW3J8nF2NPt1MSbfo,4775
2428
+ pyrogram/raw/types/theme_settings.py,sha256=YWF9BUz2e_XWw-q1hdbOTOnlFx442GKWCf-ewR6bD1k,3590
2429
+ pyrogram/raw/types/timezone.py,sha256=ewZ2HhO_SnigTzvMNYWPuCMZNYMP64athdLdFy_Tq1U,1689
2430
+ pyrogram/raw/types/top_peer.py,sha256=YLfwaYyY8gklCiDIHnIW3Bz4iTW_Tcqza-uJnmOf17c,1531
2431
+ pyrogram/raw/types/top_peer_category_bots_inline.py,sha256=CqOWn_vndHIQjUUWagSA3xTC6-2bkST1JtDeJw8LMCg,1206
2432
+ pyrogram/raw/types/top_peer_category_bots_pm.py,sha256=JirNZuXYfUFFV6mQdGZH4iDCeX16lEeK2KeNMgY-d5o,1190
2433
+ pyrogram/raw/types/top_peer_category_channels.py,sha256=hJEkbYWraKLCJrFkqJiNbnT1rEqhGj2N01Lis0rG1ao,1198
2434
+ pyrogram/raw/types/top_peer_category_correspondents.py,sha256=pBqzG7yDrD9Z4d-5qhN--hrfSB_mLBFhC1NonmQj7VA,1220
2435
+ pyrogram/raw/types/top_peer_category_forward_chats.py,sha256=ZpRRIrqu5KiyzvWjLXCXXugAEQV3vZ4BPOvRt8mPLU0,1214
2436
+ pyrogram/raw/types/top_peer_category_forward_users.py,sha256=BINnJzYKjvSJko52yiGBmyqmwwQWBF5oOgxNnBzJhsQ,1214
2437
+ pyrogram/raw/types/top_peer_category_groups.py,sha256=ZO-ms6v3ZHkQlQfbgbC4kFRzrFc_N3utZ9oWLIdo0MU,1190
2438
+ pyrogram/raw/types/top_peer_category_peers.py,sha256=F-lk3wAufmSIZ7HgT5qlOjOwxYbzrqoD4JwQG-V-_xE,1927
2439
+ pyrogram/raw/types/top_peer_category_phone_calls.py,sha256=HXCGCU7-4yyZWLK8iqvFsBdl0YVSEF50blqTJqwBVmA,1206
2440
+ pyrogram/raw/types/update_attach_menu_bots.py,sha256=MhZQDgDQpoIrL1RNaczfuIQlFcdNaYPNxjD19X9sB3o,1177
2441
+ pyrogram/raw/types/update_auto_save_settings.py,sha256=fj28L4TBFepazEIlSBht5AbjA2fYgcSEey4A7D-oIe4,1185
2442
+ pyrogram/raw/types/update_bot_business_connect.py,sha256=l_roJ1DQEYWzXTJQ3aoQYIAv4Syng6e1LXm4pI3PMDE,1680
2443
+ pyrogram/raw/types/update_bot_callback_query.py,sha256=MO41IwJjLp7nJ7at8_yBWXw1lCBxqpj0n0pjyQxsRQI,3156
2444
+ pyrogram/raw/types/update_bot_chat_boost.py,sha256=mN0KBB0THozg_HzFcu5k2mv1h4z9Ph0PkZUm_SLaH4M,1777
2445
+ pyrogram/raw/types/update_bot_chat_invite_requester.py,sha256=i3N0NTAgX2oNAhG2ol_ULALuI7vYqjN3mcYBjXIXVC4,2488
2446
+ pyrogram/raw/types/update_bot_commands.py,sha256=u0EpTCeX738v7cD_OzIV9Slpl2BDCSwK8ocxMdBV-7M,1872
2447
+ pyrogram/raw/types/update_bot_delete_business_message.py,sha256=ClrouEOA-YfzzylCHyCIvruSVTI05cU6t8QO-kNkyeI,2119
2448
+ pyrogram/raw/types/update_bot_edit_business_message.py,sha256=_CSLFJmNtr1OufuzfGJLXxXU30OpfmukhT5Qwl9OVIM,2453
2449
+ pyrogram/raw/types/update_bot_inline_query.py,sha256=Z9km_ax_MPeFMghCd9pXEZ4BdfbZPR3VtI4rcjD0ZC8,2917
2450
+ pyrogram/raw/types/update_bot_inline_send.py,sha256=tDwBMqrxlhUSKyTF82ycsZFrOgFv5DrpWidaVTCVnWA,2630
2451
+ pyrogram/raw/types/update_bot_menu_button.py,sha256=1Bsi749gbooAW99Zs2d1iqL4923EUdtAMP6ecjmp9Ds,1622
2452
+ pyrogram/raw/types/update_bot_message_reaction.py,sha256=Hyaoyg_xeiEd6GgCsserA4L2MbHG64e1egR5Ak75pSk,2895
2453
+ pyrogram/raw/types/update_bot_message_reactions.py,sha256=mZ4-D7Peu7bghy3Pg6rnNbKIecILY4vSKWIRLRn85bI,2293
2454
+ pyrogram/raw/types/update_bot_new_business_message.py,sha256=A5apZ410jhO7XxQ1YC97CPvyE3Ie3RZd6rMugWMV6FA,2451
2455
+ pyrogram/raw/types/update_bot_precheckout_query.py,sha256=T92AXGrKLwAP1mNEmSWF3MY3DABy0RYyt-lMeS3jyPE,3298
2456
+ pyrogram/raw/types/update_bot_shipping_query.py,sha256=jjWJordh4kvZvSEh4ccZvTq3CTaI2uYc9XHo7es325U,2172
2457
+ pyrogram/raw/types/update_bot_stopped.py,sha256=G1gWMeQwN2IqKpBzHeYj8Q0n5nR5azCJZWaz-bLhiFM,1920
2458
+ pyrogram/raw/types/update_bot_webhook_json.py,sha256=18tGRvm-sjYpYCGGzjxF8BkSm78KwP9N4UKlEHR6IKo,1376
2459
+ pyrogram/raw/types/update_bot_webhook_json_query.py,sha256=93j2FeVti4ZyuLvtzFjDh-sJpJ33GVCZtmfLdOwAJ-s,1844
2460
+ pyrogram/raw/types/update_broadcast_revenue_transactions.py,sha256=vyOFrUxCAJODAzmJ7gq9zcRB6NJ3yoc4_SKrKT6bv94,1762
2461
+ pyrogram/raw/types/update_business_bot_callback_query.py,sha256=XzrfI9p9UpyAFFsAfRqdYyemTfs8QHG7Gg4qYegv1Tg,3351
2462
+ pyrogram/raw/types/update_channel.py,sha256=zI2YaP-V8S-kDf1f-k03gKBtmPQXOeMoNsfXj20azJ0,1350
2463
+ pyrogram/raw/types/update_channel_available_messages.py,sha256=J6_uiBmM1O3xfBG1lz_YV531Dupk6tlIsL8Ke3qQWx0,1717
2464
+ pyrogram/raw/types/update_channel_message_forwards.py,sha256=Tg15kDn0ladqVz9lzjf_K0Zu39WgjjrSBCoXsEOBddE,1810
2465
+ pyrogram/raw/types/update_channel_message_views.py,sha256=Z3cU7TvIgFjhoP057qqxfGiSRCJigYr6iddqFVGPj0E,1771
2466
+ pyrogram/raw/types/update_channel_participant.py,sha256=eRn90AiNQkJv8YPv_NZXau_yXxGzyBhKm8KV6IiYxbg,4167
2467
+ pyrogram/raw/types/update_channel_pinned_topic.py,sha256=VytBC1g3TRfNNuyXSFDGR-t5FXUmnEE71RL8ckISfLQ,1924
2468
+ pyrogram/raw/types/update_channel_pinned_topics.py,sha256=jw_yklsQnc7IFPfsYo3fcWB5V60R8-Q1uShVJVW-vqo,1834
2469
+ pyrogram/raw/types/update_channel_read_messages_contents.py,sha256=SvSXpdgOmDyyH_viACl1-7vyWpRqmQQ3nnvOadReBGU,2153
2470
+ pyrogram/raw/types/update_channel_too_long.py,sha256=6uEIQu5Ndz2zJsYXZY46_AtMAOO0XT1O6T0vzwE69o4,1757
2471
+ pyrogram/raw/types/update_channel_user_typing.py,sha256=N7a8TlfwB6m_Q7fe_QioN8KQrN49hbhOfQdhg0rGFXk,2403
2472
+ pyrogram/raw/types/update_channel_view_forum_as_messages.py,sha256=YClJpzlj53e9TwLOblkYvNLYk3Qpy0q2M8-xOrSB-R4,1636
2473
+ pyrogram/raw/types/update_channel_web_page.py,sha256=1ZGAzmnkpau2bB4c6H8hf-DmhXf-JLF5PaNQeefjvPc,2065
2474
+ pyrogram/raw/types/update_chat.py,sha256=bF7Y9U5nXfkwDey6LsE558e656eMGf3c1FDx5PrP69E,1311
2475
+ pyrogram/raw/types/update_chat_default_banned_rights.py,sha256=A85QfhRg9BffVMGcjV53wkzhAkgYsJt1HPy1N5PA8eQ,2045
2476
+ pyrogram/raw/types/update_chat_participant.py,sha256=gIOTac-pNxuEJexRf5XvuEpiCgSxXsjD4JOsk3xy2b0,3792
2477
+ pyrogram/raw/types/update_chat_participant_add.py,sha256=x9TEZxrrIJQYvOYh7DbnNRsNEL5rSqUMHmMGP-kLbzw,2245
2478
+ pyrogram/raw/types/update_chat_participant_admin.py,sha256=mERo7Xr86TXPKwrlNo1elXPQN0tR6_Z4INblnFtWvh8,2035
2479
+ pyrogram/raw/types/update_chat_participant_delete.py,sha256=WE6ycvkOALienCYQWXR1LKszBNQFodoWyEt4XhbVJ7o,1818
2480
+ pyrogram/raw/types/update_chat_participants.py,sha256=Vna4YVsOehKect787ngSDgvg9Q-fFf9d8f73VNM4b4k,1486
2481
+ pyrogram/raw/types/update_chat_user_typing.py,sha256=SjDV4VmOazK_EgisahzhwJ8pBZ4ei1XYMzm_V8aZZl8,1908
2482
+ pyrogram/raw/types/update_config.py,sha256=fC7tJqN_Akv8pABuC0-9ZTAQtHz9gMHrUWW-m1y4f14,1145
2483
+ pyrogram/raw/types/update_contacts_reset.py,sha256=tBKyy4dR5dNWvPtDMRBWCT1LX-0H7a88lSHn0Ghjqjg,1173
2484
+ pyrogram/raw/types/update_dc_options.py,sha256=mqjnUuzhVse_yth_HCbkLCUWQEcufotwMtmLXQjCnKY,1432
2485
+ pyrogram/raw/types/update_delete_channel_messages.py,sha256=sPPKVoKFjhT5PdlUm25VMXu4cEyN3u7A3nXDaMvO2DI,2091
2486
+ pyrogram/raw/types/update_delete_messages.py,sha256=BbIqr3iwq9xmPAOU_2HvEf548kV7VW5UVjC22orm2EY,1815
2487
+ pyrogram/raw/types/update_delete_quick_reply.py,sha256=mAnA5z57WQ1hQ_o01U0T1np8sncLioYj9Ugw53rxxfs,1392
2488
+ pyrogram/raw/types/update_delete_quick_reply_messages.py,sha256=GhAmyEBFECWuYWhoPq-fEA8ks4KflaQzU22ML4zUIHA,1691
2489
+ pyrogram/raw/types/update_delete_scheduled_messages.py,sha256=f5NcebdgOKxhqNkDaSYTiK-bOpCXyx7zlbvhsjzE0CA,1663
2490
+ pyrogram/raw/types/update_dialog_filter.py,sha256=l8SNjHSbPsZ8YfOCtlPKBhYfn2kqcmY7s__wLq_06Ak,1777
2491
+ pyrogram/raw/types/update_dialog_filter_order.py,sha256=3m-Nxfg3-p92ECmHODhyh0Wn_PfUwe-1YawKQgNXmR0,1382
2492
+ pyrogram/raw/types/update_dialog_filters.py,sha256=NfKCzokVvd4Kfs2tFpB6YyKdQKzV93gRVBxv695Diz8,1173
2493
+ pyrogram/raw/types/update_dialog_pinned.py,sha256=Yl1qyEpSsI8ZZjeo5l6b9iyR5B8y2O5mErIa0R16Kcs,2079
2494
+ pyrogram/raw/types/update_dialog_unread_mark.py,sha256=T6I6Cf8RaF1C8HwI8gIG8qnbB7NRvpp0DsC-Rtf9rBs,1695
2495
+ pyrogram/raw/types/update_draft_message.py,sha256=ohndk4818r2wys8U9S1engpmYsk0PArNW4NaJfsX-5k,2079
2496
+ pyrogram/raw/types/update_edit_channel_message.py,sha256=M2qs0nnzhbAtTT2hIfdlAJ2CWS_KpSxNARdJt3d1anw,1833
2497
+ pyrogram/raw/types/update_edit_message.py,sha256=kQ4_IsHY-wlmhHt6oiZnhGrayu4UtuIkh6-Jz4HLw9s,1805
2498
+ pyrogram/raw/types/update_encrypted_chat_typing.py,sha256=PDt12KhPfmiv7-780TCk3pEKKm0GjLD6o92l8p9cJqs,1368
2499
+ pyrogram/raw/types/update_encrypted_messages_read.py,sha256=fk4reaXiQsgGkJASLYgXZ-xEQ8rtiKT2iFhZ2XcFmeo,1794
2500
+ pyrogram/raw/types/update_encryption.py,sha256=eY9G_HBQTZwCEIY8qw33AxO4iYcrb1_Ory-oloLAcKI,1571
2501
+ pyrogram/raw/types/update_faved_stickers.py,sha256=OcrN8mQas1lJeiTfDCB-kjKyallS28IrvanZIaiCFoI,1173
2502
+ pyrogram/raw/types/update_folder_peers.py,sha256=mFsUvA_YtlebmkO6lc7tMKp-XSJq623d5S6ikEmpUXU,1884
2503
+ pyrogram/raw/types/update_geo_live_viewed.py,sha256=W6cSIi96PzGyAODTgrykrJZ2fqRrK6flc9j9BYUZofI,1565
2504
+ pyrogram/raw/types/update_group_call.py,sha256=sKSPSBEaiqzC8DVrJTtkXzwdbNBXFISeqPrXPvK-wIk,1581
2505
+ pyrogram/raw/types/update_group_call_connection.py,sha256=jAw0jDikNdlPYj4mETPui1Fd0MbFY7JKBBuc3f43oKA,1769
2506
+ pyrogram/raw/types/update_group_call_participants.py,sha256=yRHL-XiVAwMxQolQRPRh8uiOZQLZV-D-t0DUA5cDLcg,2034
2507
+ pyrogram/raw/types/update_inline_bot_callback_query.py,sha256=dl3rdUkfaqcSKSGV9Odd_x-k0bqztto5q_9nJgttYVA,3065
2508
+ pyrogram/raw/types/update_lang_pack.py,sha256=b8U7MbysaajYsjSbz_qopIm9bh9OuNXWilV3NFFc3uc,1446
2509
+ pyrogram/raw/types/update_lang_pack_too_long.py,sha256=AYrwF1JarUufbpBSGTvnrR_Y0RC-C5T576uVeUUyUss,1368
2510
+ pyrogram/raw/types/update_login_token.py,sha256=YGHFeJmKa20zn0i7ot02K9S6lE-L1jtTvFn_CvmhwWs,1161
2511
+ pyrogram/raw/types/update_message_extended_media.py,sha256=IWafFVU-XMLSoTVbqnXm8oabnzNE0zTSrI-P649eGT8,1999
2512
+ pyrogram/raw/types/update_message_id.py,sha256=osVpmTIK_wrZcMicb29EQeDj2xpIzq54VnpH_hGP-dk,1522
2513
+ pyrogram/raw/types/update_message_poll.py,sha256=_uTb4a5zQcH8vLvVldYHIzSDxqEAdinx6jDZ4TAXSvg,2052
2514
+ pyrogram/raw/types/update_message_poll_vote.py,sha256=9Pd_6QNqZibLG9sXEJf1ZlfzehvWCAc4iww4V6gAHdA,2024
2515
+ pyrogram/raw/types/update_message_reactions.py,sha256=TRaKWaYFoH-jCf2PHlA5T_iVJWqrPVD7-oSGBAr-mw8,2356
2516
+ pyrogram/raw/types/update_move_sticker_set_to_top.py,sha256=cF1k9I6A6Q18GZSC-h8hn6ISTYqQMaayJ5F3xCtmQvM,1950
2517
+ pyrogram/raw/types/update_new_authorization.py,sha256=vr8pb8lzQ9DmxnVwdZgGh65Fg4ulSrt8cyaMMXQuL4E,2777
2518
+ pyrogram/raw/types/update_new_channel_message.py,sha256=Mi_2EYGT4tIAGxR3sbRF888jjPKR9SMVVuLKKqsS0vI,1829
2519
+ pyrogram/raw/types/update_new_encrypted_message.py,sha256=vuhfKg0JGgIYwhqAWyQseugzOKJhTTtwVoFOKo6_JvQ,1637
2520
+ pyrogram/raw/types/update_new_message.py,sha256=fKJZV_B_Lwy0kfyXSEzF-WmdQaxbmXc9TsoPDI6bOtI,1801
2521
+ pyrogram/raw/types/update_new_quick_reply.py,sha256=atB8HmvsebS4GRzmYC0nw6QWpxdhx3GaVT_pmUlPufM,1443
2522
+ pyrogram/raw/types/update_new_scheduled_message.py,sha256=F2vGOh-wLuS5VZGTVL_YWwSAxs3Ag6yV2T0seJSCCxo,1419
2523
+ pyrogram/raw/types/update_new_sticker_set.py,sha256=ThlvtvFlhCTQKEiuZoYwwQYFu4Z9ZmO2fioAvAC-ut4,1470
2524
+ pyrogram/raw/types/update_new_story_reaction.py,sha256=lOtrd4T4VTc-_7DwRDvd21NQip4Xd77W44LJyO8zXGM,1877
2525
+ pyrogram/raw/types/update_notify_settings.py,sha256=eERs9Pw4Sgme7LJ1pHcfN3jZncHcYJsk2yT6J0HNRdE,1769
2526
+ pyrogram/raw/types/update_peer_blocked.py,sha256=-NXrHYU6MDitso1RdknnjyGANmsQ7_CJaSaFpWMLLsw,2098
2527
+ pyrogram/raw/types/update_peer_history_ttl.py,sha256=9bNuIuQNrKsQ8L2p2XOQK7ijIebvtFKVoP-PmXi0-mA,1816
2528
+ pyrogram/raw/types/update_peer_located.py,sha256=fCZsDI4GbhQA45jyTP-p6rfxXCUjqxlTpQE9k3kAcvs,1407
2529
+ pyrogram/raw/types/update_peer_settings.py,sha256=dJyTREU43m1cc201dZk0FGvLGQUap1sGxm-JQC6Jv_k,1650
2530
+ pyrogram/raw/types/update_peer_wallpaper.py,sha256=14uvw4oYmcCfc7hS9CReR8b2emEqoSBQHPNToFhI_a0,2243
2531
+ pyrogram/raw/types/update_pending_join_requests.py,sha256=UP36cWk2ZfEVpxDfgMJS0HxuMTOLo3CX3QIrKfgahJQ,2030
2532
+ pyrogram/raw/types/update_phone_call.py,sha256=_Ltvidyp5KrbpJnPCGA3_UAyH3vX1iTo9hDmKcMf17c,1414
2533
+ pyrogram/raw/types/update_phone_call_signaling_data.py,sha256=QKPEZ8DWXHdI-SrkPAZZ19aaJ2PzSVtfAlmgyuDb3sY,1627
2534
+ pyrogram/raw/types/update_pinned_channel_messages.py,sha256=esET4UKkZ9dEom6FsV16blXgm4-y953IMcTOHwe6Yx8,2394
2535
+ pyrogram/raw/types/update_pinned_dialogs.py,sha256=gwm4pmjIilWZJQImWSa5rKctTOBqDIFdwsLQ05jUMNQ,2007
2536
+ pyrogram/raw/types/update_pinned_messages.py,sha256=HQuWiGcqPbK4NN0xy5Eg_168Wi-ZkT3dMw0Kj8q0Jbw,2348
2537
+ pyrogram/raw/types/update_pinned_saved_dialogs.py,sha256=bENFjDrsBC3fCNen4XbckRcvHiWMZJ1mOgTkPVQKu9Y,1627
2538
+ pyrogram/raw/types/update_privacy.py,sha256=2xuTT3qCHs1TUx41L6gmk-RHrrIlf5Ga6jTdRVVYDpc,1636
2539
+ pyrogram/raw/types/update_pts_changed.py,sha256=RmjqhbFL4-SEao11xA275FCWkSJXlDiDLV1Afg5yGRw,1161
2540
+ pyrogram/raw/types/update_quick_replies.py,sha256=tsLp5SjZlpes-RegSNcEuSqpJCnoKGW2IKnbEHnWxKw,1479
2541
+ pyrogram/raw/types/update_quick_reply_message.py,sha256=ACtJwzUL_jkPQvG4a_byjidtnnQvmfUs3fNHED07Ydg,1411
2542
+ pyrogram/raw/types/update_read_channel_discussion_inbox.py,sha256=avYdivCkuHzxeD-dRo0EEKquSS6cX1x-yuGqu2-bZKo,2861
2543
+ pyrogram/raw/types/update_read_channel_discussion_outbox.py,sha256=1HitgPV6Ou-7jghSjGc3ND1pGD8JoI9l5Hee_7uv73A,1929
2544
+ pyrogram/raw/types/update_read_channel_inbox.py,sha256=abLYsGpYFU_x4Fs_Tc1Sk-f6fJKtW-SboMnabXHIrww,2539
2545
+ pyrogram/raw/types/update_read_channel_outbox.py,sha256=qMAUtXQe7hhJm4t7fRFtnVS8yGOgUSQ5ctd6gjPe-QQ,1599
2546
+ pyrogram/raw/types/update_read_featured_emoji_stickers.py,sha256=o4k0geqPhCitExX33bIBcc-HaYJLfAJ6AWYOdjMqjig,1221
2547
+ pyrogram/raw/types/update_read_featured_stickers.py,sha256=geySRmgZducgUSIisEMk3F8BEkLWHiGxYmJOri1_z8g,1201
2548
+ pyrogram/raw/types/update_read_history_inbox.py,sha256=k0d-HWNyf6NqKF1VCChkk4vUp7o1-lJUeGnSx95FcfE,2757
2549
+ pyrogram/raw/types/update_read_history_outbox.py,sha256=bd1XP57gVNDB0McjHgIlYxC6ML55M10WXmQgcl_f5Ug,1999
2550
+ pyrogram/raw/types/update_read_messages_contents.py,sha256=RJS7HfHkfU9RdhXAZMyM0i2VPZAjy2ISJtBBXJfZlxM,2229
2551
+ pyrogram/raw/types/update_read_stories.py,sha256=xM6RAb2LsmLuEn05wrvt7NWKePSMAfqPUKyKx3Xobdw,1557
2552
+ pyrogram/raw/types/update_recent_emoji_statuses.py,sha256=IGYG8Cmrxd9doVFuTjmFbhevwRU4AjjkcySVg0drxa4,1197
2553
+ pyrogram/raw/types/update_recent_reactions.py,sha256=9TndiKTuprXZFt0PYg8vi6n2YvxapQTEuRu5_sQiX4s,1181
2554
+ pyrogram/raw/types/update_recent_stickers.py,sha256=yanVAbqC0SNkwpmqSeeCrw_UC3tPepGtI59nhg2HL6c,1177
2555
+ pyrogram/raw/types/update_saved_dialog_pinned.py,sha256=y6iY85Wdrf_Oad1ilnQ6g609bvCSAob2yiXGExnwppQ,1699
2556
+ pyrogram/raw/types/update_saved_gifs.py,sha256=w_J5xgdX65EPaSEsIp_i4s2jePGyBPZYPd29sagIpos,1157
2557
+ pyrogram/raw/types/update_saved_reaction_tags.py,sha256=YQ3n5KWocZhu8b8t0FH6jVLdtqN4rMSRgg1ZoJQk6oc,1189
2558
+ pyrogram/raw/types/update_saved_ringtones.py,sha256=JanJYf3y9ElrmphU-WDck46k2slbfxMxyzBa7ebD3CY,1177
2559
+ pyrogram/raw/types/update_sent_story_reaction.py,sha256=zx_pehyw94QwoJRporAY0tR529xRO0qFhpxy4pOwnZg,1881
2560
+ pyrogram/raw/types/update_service_notification.py,sha256=oG9_7owWkvkylwJ-2qK8AforsEcud0vIEg9u1JJn4wk,3167
2561
+ pyrogram/raw/types/update_short.py,sha256=XKuvYx9FRmRN2QLCK_YNcdblrZFfa5ddtfamPeIWQVw,5639
2562
+ pyrogram/raw/types/update_short_chat_message.py,sha256=gbhN6GyzJ2UpATtVz5PQSpDUHFK1nWaCOwQYxizX40o,10080
2563
+ pyrogram/raw/types/update_short_message.py,sha256=kg8CdbCyc6h_bl5ULtKLHI5lL7FXLrYtl4kHeLFwDGc,9843
2564
+ pyrogram/raw/types/update_short_sent_message.py,sha256=3NMhsHtfLGNk2L_Iy7A8h66foiwQbZjKMDP5rj38Se4,7615
2565
+ pyrogram/raw/types/update_sms_job.py,sha256=gf_qn1TIkr8Df6qr1zlIe9RIclhxZK1KXa3bSoLG-F0,1305
2566
+ pyrogram/raw/types/update_stars_balance.py,sha256=eIKatHjeBbdXMUVgfWTdY2p_1MECKIb8xu3xlb1Q2i0,1341
2567
+ pyrogram/raw/types/update_stars_revenue_status.py,sha256=9dfmz4NW44rWfULkTHV4hcSnsjRHLwrTFAwfBxbLFLo,1680
2568
+ pyrogram/raw/types/update_sticker_sets.py,sha256=sVmcWzUKvRehCVZEv6McVetBQCHd5SinZaHrqdeukKo,1670
2569
+ pyrogram/raw/types/update_sticker_sets_order.py,sha256=Nz3yZYB4eqXNbat-l9u2kbqEvE06l0zk2A3UUBIxUfM,1931
2570
+ pyrogram/raw/types/update_stories_stealth_mode.py,sha256=7wo9bR_sMW2ZRFlIGCReTDv_iuuw2SeRp8C7YmH9WiQ,1504
2571
+ pyrogram/raw/types/update_story.py,sha256=Hj6Dpy8JV0M75TB4zfjaVHCwW_K6Mt827oXK0CpEwE8,1583
2572
+ pyrogram/raw/types/update_story_id.py,sha256=K-qqDTHUUoP1qsHumsBOVY3DEPKkROaCwTzC88e4L6o,1514
2573
+ pyrogram/raw/types/update_theme.py,sha256=fqF4c_Q8oAmRnOd4rypMnvPkbubOPy1c4D7vfB0S5Y0,1337
2574
+ pyrogram/raw/types/update_transcribed_audio.py,sha256=nyiIgJJLaGicfXwhrrqqvUm1lnEvT_zQLjRBxHFaBTU,2376
2575
+ pyrogram/raw/types/update_user.py,sha256=vL-7YsYtLLy0k7TwWwTTefWBylWqXE6A-WevpN5MAgg,1311
2576
+ pyrogram/raw/types/update_user_emoji_status.py,sha256=hPZJYh9K3C8LoqMA0-S1TaG-RT8-OmuKfTm3Liv4Yhw,1685
2577
+ pyrogram/raw/types/update_user_name.py,sha256=PILHKB8dxp6xgLLzwfNYnI3OFLh8vYwMax67Ew-YaTg,2117
2578
+ pyrogram/raw/types/update_user_phone.py,sha256=MtDXClt5CceB_Y1Cm0EwWIDKrIRJvuC-FOpqFUs0y6I,1527
2579
+ pyrogram/raw/types/update_user_status.py,sha256=Kx5Vk7tYahAI52IgzKgpXwB5SsYppvVqqcVllNMH9bo,1607
2580
+ pyrogram/raw/types/update_user_typing.py,sha256=EzkTZSfa61RqHBtiVB2YaAK5z83BQ9Fqy2_i86iedgw,1635
2581
+ pyrogram/raw/types/update_web_page.py,sha256=bGA78JHFmCQ7FY4qWm5z3o656d8rArt-sbeQly_zIqg,1789
2582
+ pyrogram/raw/types/update_web_view_result_sent.py,sha256=q8TrCpd2wik-JXjPuwE35nQzx6gnOO1KQ3Qxxvw1Pys,1372
2583
+ pyrogram/raw/types/updates_combined.py,sha256=gEddJ-wC8EZ-F9JnlQUA9jBaeFHJLACTF60tsDqeAlc,6626
2584
+ pyrogram/raw/types/updates_t.py,sha256=zm6rwnQ2cNbMvpxQbIAYScmAbQk08a9LgpX1wx7QHC0,6358
2585
+ pyrogram/raw/types/updates_too_long.py,sha256=cWQe9KM4VcitMHbQfE1lLfQZBaDpr0s-vnCzt4dnJuQ,5251
2586
+ pyrogram/raw/types/url_auth_result_accepted.py,sha256=5jVgyNNWNP9G4l0UjyYmV2aY3eumw57hHNB0m-9qXE0,1564
2587
+ pyrogram/raw/types/url_auth_result_default.py,sha256=gzrWPwdDWBK6ARiu-kNqHP5lUUgBVEGqlBrxakOSxg8,1427
2588
+ pyrogram/raw/types/url_auth_result_request.py,sha256=HZgyXjEQfpKslpj5hPK9ooaXBQYOvzZiHQnvGRPql8E,2237
2589
+ pyrogram/raw/types/user.py,sha256=MyuLO_8EDFSP7Q8Pwp6QSXaTyNl0LhZ7aFYWyIqirf0,16288
2590
+ pyrogram/raw/types/user_empty.py,sha256=U_MVrJuyys-JzTlQ0W3Dh1epLGCMojjy1HJ1w331SoQ,1600
2591
+ pyrogram/raw/types/user_full.py,sha256=QSHNYZfbz7yYExQW7QUR69_cpTSfGg_9klVjTwficKM,19520
2592
+ pyrogram/raw/types/user_profile_photo.py,sha256=Rg1g6Zg1vTIrRPldVkDtl5Ub-uEPATfXTkafh6CNl2M,2614
2593
+ pyrogram/raw/types/user_profile_photo_empty.py,sha256=zQ_e1KamD1pZ9vQp4sZpZDpqrqv2AiWvZvzE_dJZkeU,1191
2594
+ pyrogram/raw/types/user_status_empty.py,sha256=ibop2efwzOaLM93JQ0WS5bJu8A7UNla2ByxqBbvHwtU,1159
2595
+ pyrogram/raw/types/user_status_last_month.py,sha256=fjnN7o6HJb9FKOrQPFcP1hCPzfY7Cp4J1TyLgwcoT-g,1424
2596
+ pyrogram/raw/types/user_status_last_week.py,sha256=RijJbYkc_aqqRQf6CS1OjuF2eDT54kTo5tZF6928YdY,1420
2597
+ pyrogram/raw/types/user_status_offline.py,sha256=MVmHqPTqSP4gOJyQh_xVcNve8q-hXT0YH5Kp-v435NQ,1363
2598
+ pyrogram/raw/types/user_status_online.py,sha256=i-mndpEPaeP3Z6e5bUPmazxeDrW1jrlZvbS2wNZMDYg,1336
2599
+ pyrogram/raw/types/user_status_recently.py,sha256=o3FDtsW9ClfScVS9UF-v7kOaC3HUt7FrKaVRO2tX6Pk,1420
2600
+ pyrogram/raw/types/username.py,sha256=S6Y-5H62N-7bKByi5p4jywuM-AKgfuU3EP7EKAH9eQQ,1888
2601
+ pyrogram/raw/types/video_size.py,sha256=XxByefqKw3_BuBv-_vnsmcmFCUtqabGOfKRsPVrqHVk,2310
2602
+ pyrogram/raw/types/video_size_emoji_markup.py,sha256=c5mIwzGZEHsGM0E9joAq2LB8Y-1LZDFZaVoGrE1Fw5k,1711
2603
+ pyrogram/raw/types/video_size_sticker_markup.py,sha256=HVFJRfXL7XteToOd5096Ce9YBVqXCpYJDMRgqbFU0C8,2063
2604
+ pyrogram/raw/types/wall_paper.py,sha256=tlSEqKUrftbp4P-0lEIvNztWsXXIF7oktdlTmzCg2tY,3838
2605
+ pyrogram/raw/types/wall_paper_no_file.py,sha256=ZwzaRVMEb3OuQs9N10iWic_B2xPrzrLPQGJYcLYGXI0,2600
2606
+ pyrogram/raw/types/wall_paper_settings.py,sha256=ZOf4kwWB5RXlWE86UfF3TRtpMDfv8py0v-PeBp-Z7-M,4976
2607
+ pyrogram/raw/types/web_authorization.py,sha256=YaDuI29G2nGO2gPgTmXhjgI-jnYLIERfZs8OtaPPOkg,3073
2608
+ pyrogram/raw/types/web_document.py,sha256=az0BDQrvAjf1p8pwmsGlPdAdjl4fR9rwI8uMIXbAb5U,2319
2609
+ pyrogram/raw/types/web_document_no_proxy.py,sha256=MSUNIqLBYGfEt7cVPUIHoLJSbf-refM1TRIAF9VH6Ho,2090
2610
+ pyrogram/raw/types/web_page.py,sha256=K4Kvcgzot07pYlT_vqLW5u-xGuMD0TN0DOYJvx0t-mc,8018
2611
+ pyrogram/raw/types/web_page_attribute_sticker_set.py,sha256=08-_bQa2zdQitDwJTSEON7OO9lIePU2U6q-t0RNwpu0,2065
2612
+ pyrogram/raw/types/web_page_attribute_story.py,sha256=0PLKVRa0iZJrja3F_AHiRKf77RXqiqnc4MY5qwPYUVQ,2006
2613
+ pyrogram/raw/types/web_page_attribute_theme.py,sha256=kUBtR22M8LOdzjsQBPRC_Vi8Rrv5TMJA9deL_CnQXNE,2124
2614
+ pyrogram/raw/types/web_page_empty.py,sha256=y31A5liW3ZiDKdlahtmTNESGuOhebyQCDlf5__FbTKQ,1652
2615
+ pyrogram/raw/types/web_page_not_modified.py,sha256=5RQCCd3J8zFvbWDQ6ZTJBSVFbhOvqN0-81kfeuFQeDI,1656
2616
+ pyrogram/raw/types/web_page_pending.py,sha256=o2F968aQSbgvYmsWy0g18gMaUSRovLg0RaAeEVS7tFA,1851
2617
+ pyrogram/raw/types/web_view_message_sent.py,sha256=wGjqLZHsxfSpjyYV6nzhJ9qES9dAHiLVTH4DAsw5Ez0,1875
2618
+ pyrogram/raw/types/web_view_result_url.py,sha256=HJgDx08VBNdpvnWiw0Iqpu4DhLBPInCXNPfavRL8oT0,2303
2619
+ pyrogram/raw/types/account/__init__.py,sha256=UThLzaRtwIBunRhCirqeeAQznpO-giIlBiRffgC0Qhw,1758
2620
+ pyrogram/raw/types/account/authorization_form.py,sha256=423iht7iSoVnQ3qNIP78AC1JpdKZXUdDtYMaPReCEzw,3174
2621
+ pyrogram/raw/types/account/authorizations.py,sha256=UKLxc51642bmHGhz6l2noYlm_CImQ08JmguJycGNd3o,2070
2622
+ pyrogram/raw/types/account/auto_download_settings.py,sha256=h4Psh8T6ZMBn7dPMhsA_m8_Tmwfrxoq4mb533mx41YI,2266
2623
+ pyrogram/raw/types/account/auto_save_settings.py,sha256=SGATJQa1SQkVX4QdE2clhlhAkg9G6CDDnu0MbjfKDyE,3380
2624
+ pyrogram/raw/types/account/business_chat_links.py,sha256=Iij_JTFPwmsaOPYjj_yDtqNKdMZfNsy_42cJYRdB4fI,2188
2625
+ pyrogram/raw/types/account/connected_bots.py,sha256=xPh14dU0SRhkDTiYJy1qMyFktsqN0a9MZD88Ufk4jAU,1968
2626
+ pyrogram/raw/types/account/content_settings.py,sha256=Gg3N2SlGL3ZzQaWMjuyoE_S80YsZDKHJ6Tlzg7ie3j4,2131
2627
+ pyrogram/raw/types/account/email_verified.py,sha256=fKZIfec1hJUqjJeRXbxnD80u-KLKSQUfIo2N75eCgBA,1526
2628
+ pyrogram/raw/types/account/email_verified_login.py,sha256=BBYswYQR_bI84X4hqpejTcuk7BjaU7YD52vfjM8N_QM,1857
2629
+ pyrogram/raw/types/account/emoji_statuses.py,sha256=dLjE_vuIeoV_rtAnC218sJFjIJFlVCcsG568FlB0XSE,1945
2630
+ pyrogram/raw/types/account/emoji_statuses_not_modified.py,sha256=zH1D2Vvi-5oT-BcjCKF0xcNrRxW94AfE8rkO6C7j9c0,1526
2631
+ pyrogram/raw/types/account/password.py,sha256=KTnA4fj_mSyqT2LHq_ymN64saEUwW4LMDdie3IP8gY0,6471
2632
+ pyrogram/raw/types/account/password_input_settings.py,sha256=_2OEXjPpQ3bGNoTKbfx-mowr1AYmDg3arDSWoh3Vlx8,3477
2633
+ pyrogram/raw/types/account/password_settings.py,sha256=h1btdqfd_ibwrJobwJD4jb-4WjYoS6Pes15IwsCDyYI,2318
2634
+ pyrogram/raw/types/account/privacy_rules.py,sha256=g6Sl-Ei9DDERt6FQWburpjfSxrar5bG9sRpSHg1HRJI,2165
2635
+ pyrogram/raw/types/account/reset_password_failed_wait.py,sha256=IIxp6qLYpWOy2xcJ_b9d0hwYboppUcKfRSJlH9kEI4g,1621
2636
+ pyrogram/raw/types/account/reset_password_ok.py,sha256=77_6cUpTWwfv3VMTrlDFTA30YlLLwHZiHentHsFToEI,1391
2637
+ pyrogram/raw/types/account/reset_password_requested_wait.py,sha256=adgLASj5PJ0aUjk2ddYietmZqG_qc7unUuhT86lKcWU,1633
2638
+ pyrogram/raw/types/account/resolved_business_chat_links.py,sha256=se82hn_-mgcKPIyxcPGpqpc3bdd15oQX731LXtDOsQg,2894
2639
+ pyrogram/raw/types/account/saved_ringtone.py,sha256=ZVQ9UpAC7j2VJBUZrtoXOakScTx5ewm4-_aDj5L17yw,1376
2640
+ pyrogram/raw/types/account/saved_ringtone_converted.py,sha256=KktQ9qAgC2SGQR4g4Rdo8O8L2ekaZmLbcvpRjaGHP30,1647
2641
+ pyrogram/raw/types/account/saved_ringtones.py,sha256=dYMKtIboT709HzQtrgfbcfLHVsHYOpnJOVCft9y_vpA,1846
2642
+ pyrogram/raw/types/account/saved_ringtones_not_modified.py,sha256=-8659Qwr3BamoJUZEMVpBtzkZn4NiGIAztMEhFhXccA,1430
2643
+ pyrogram/raw/types/account/sent_email_code.py,sha256=z_BQbyiRTKxmsKCSFvDsj4qTvpPRcKo7ha5glqjxRZM,1815
2644
+ pyrogram/raw/types/account/takeout.py,sha256=UTQhi4Ay9xdO-T381p20r3XHd0O0_irDxipIrUbi3Zo,1481
2645
+ pyrogram/raw/types/account/themes.py,sha256=WoVuKbenq18vKrbToo1Zon6oJTWefQquZarAA-dobgY,1794
2646
+ pyrogram/raw/types/account/themes_not_modified.py,sha256=aibV6u29_Tbxy3qu2eQ8kEhFbW0AC3MAvH2Ze9jV1QU,1417
2647
+ pyrogram/raw/types/account/tmp_password.py,sha256=SlIhv7Fsi5U9SSMOcG97_RpPH6G0Xn8Y3jkmLjXEQCk,1837
2648
+ pyrogram/raw/types/account/wall_papers.py,sha256=hWBp4Ab3Sd5mXldYoy8eUhk2gu-MuzK9NQxuByEi5gY,1835
2649
+ pyrogram/raw/types/account/wall_papers_not_modified.py,sha256=5x2zSbpvA4bIthrRonZumjZ91AKf_UKHL4fAhezEuIg,1406
2650
+ pyrogram/raw/types/account/web_authorizations.py,sha256=idAXCF4TpeEQWH8jYqSDV3TmHLoXEe2DBswCAe_tx3E,2008
2651
+ pyrogram/raw/types/auth/__init__.py,sha256=YT-ewgfPq63fgXg8VDsf2xXxP8QlHDJLiCWDyixh7fA,1618
2652
+ pyrogram/raw/types/auth/authorization.py,sha256=86OTBouyDYBhdiV6KCexU-vd8lLXtQuTW3duDyxtJaI,3674
2653
+ pyrogram/raw/types/auth/authorization_sign_up_required.py,sha256=m8nKuVLQGcCVGE99zSnTqBd-g3qJ283Ej9rHrok9w74,2201
2654
+ pyrogram/raw/types/auth/code_type_call.py,sha256=PNxYNzFWxBgXS91ou94O13msnis1U4G1b2wULHdpoQQ,1157
2655
+ pyrogram/raw/types/auth/code_type_flash_call.py,sha256=R2N35Wfz8rERSFwjTm02i7x0uJNVbsIa1IvkA23prRc,1177
2656
+ pyrogram/raw/types/auth/code_type_fragment_sms.py,sha256=nyqk4kj0byGW6LkhPbECJcqVQno-OzI5kbYeId5SqeI,1183
2657
+ pyrogram/raw/types/auth/code_type_missed_call.py,sha256=d-0C8DRCzQVUqXmXADT9LmPZMDFjMeW6y2Vv-AOc3Xg,1181
2658
+ pyrogram/raw/types/auth/code_type_sms.py,sha256=vRoHG_vc3a9qZCwsNAIFVeazmUrXQye0veiUNZ8aE0o,1153
2659
+ pyrogram/raw/types/auth/exported_authorization.py,sha256=Ei1BOcZ-9jPkYOePUdoIUUpTQ0S_l9VqZzwmfZmvo68,1742
2660
+ pyrogram/raw/types/auth/logged_out.py,sha256=gHS10x_63dkrIbGJrezwNyYoZSRURIwXjIAeaCO5ll4,1826
2661
+ pyrogram/raw/types/auth/login_token.py,sha256=Vy2zGhU_ur5iJk-J_tMU_IRBwsQbn7ZWLl81IFZxSRw,1761
2662
+ pyrogram/raw/types/auth/login_token_migrate_to.py,sha256=tzJlS3qC-1T03dFRv8ymBB8XI0rOFjuW3ta_IV8S-i0,1777
2663
+ pyrogram/raw/types/auth/login_token_success.py,sha256=Jwvk2BpueY_SZkmQoXgnLRZRaNcFId9kR8VGF5Xw04k,1739
2664
+ pyrogram/raw/types/auth/password_recovery.py,sha256=erapSSz73R5cvn-_D-TUEPBFfKpDyOZhhmRuQYY1qcs,1616
2665
+ pyrogram/raw/types/auth/sent_code.py,sha256=DZEu4epgp5_BNk-g62EUGCB3uwaOZHh6Jys-IUhMzrc,2941
2666
+ pyrogram/raw/types/auth/sent_code_success.py,sha256=w9DlYNjZWkaDx7QZWo2EFAj4X0HwlPfc7HXQsjy_xic,1869
2667
+ pyrogram/raw/types/auth/sent_code_type_app.py,sha256=ZJSKpOVfCo9DQpFJFRSO1TB-lVz301qFYqHR7tHLim4,1335
2668
+ pyrogram/raw/types/auth/sent_code_type_call.py,sha256=zYShC_AXN1zOvj15njxJXp0nbZXfexamFO0oYk5j4yI,1339
2669
+ pyrogram/raw/types/auth/sent_code_type_email_code.py,sha256=qNRlsSoOgZLVJXWakG3j8O4WQC194JJ6y5v_JB5PjwY,3493
2670
+ pyrogram/raw/types/auth/sent_code_type_firebase_sms.py,sha256=euErVAVe-A092bJEJuWKYkTDdz1Md5L2NJsTFbcH6YE,3671
2671
+ pyrogram/raw/types/auth/sent_code_type_flash_call.py,sha256=dfvHeyU8xtIqBp9jDQAV16tmHNxLsP95dD8K7r7AF-E,1366
2672
+ pyrogram/raw/types/auth/sent_code_type_fragment_sms.py,sha256=XU1-pc_pDFYaadp-HzNzm1es48t5SIpaBbnekO-qioU,1547
2673
+ pyrogram/raw/types/auth/sent_code_type_missed_call.py,sha256=Ua5Y7YjBQ7P2CW6VyJSor1VIKawRol7ANatDsBIDuVo,1570
2674
+ pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py,sha256=GxjW-qOeoTuhzIXFdHH00Tk4GOx3WVKxz32BK9LtMQ0,2008
2675
+ pyrogram/raw/types/auth/sent_code_type_sms.py,sha256=Hw6QUc3-TIA02Q2ufkc6ZFgIZz6bSYQVYBB3I1X7xn8,1335
2676
+ pyrogram/raw/types/auth/sent_code_type_sms_phrase.py,sha256=gXmm8L2oHPI2xvk9AfTTw6SLtC462Lim4VmMDHyvgqc,1593
2677
+ pyrogram/raw/types/auth/sent_code_type_sms_word.py,sha256=OlzrZOX3uaT-KGUfmzydGiVy7-a1PJy8l_fX2Xh7nsw,1585
2678
+ pyrogram/raw/types/bots/__init__.py,sha256=qoMJoG6pAMIyoBUxqWGdawnI0oPpXHR0siHFkWxUCqY,271
2679
+ pyrogram/raw/types/bots/bot_info.py,sha256=oKH-7V375fBZONMp55f7zJdgIC8yz3IZibdRZaNY81E,1927
2680
+ pyrogram/raw/types/channels/__init__.py,sha256=WZYNPhzWtCoia6jhA53ycZZ8o1ksIwLDbJcoO6fhknc,796
2681
+ pyrogram/raw/types/channels/admin_log_results.py,sha256=GLklePVL3u_Z-uXaZ82I6kc2Bzzr_VZQqMLh5HxrX5w,2197
2682
+ pyrogram/raw/types/channels/channel_participant.py,sha256=IG4IN9j0ka4UPRxQAi1wtyiuKkSe3--H5rkrb6qigTU,2230
2683
+ pyrogram/raw/types/channels/channel_participants.py,sha256=jZ8KDcZ2SKhp4GqbrY4i_k79rLan23NnQkKJ9dxLyiw,2467
2684
+ pyrogram/raw/types/channels/channel_participants_not_modified.py,sha256=IEtCSJjVFxPceQEaLCVRENpdCix5sRdeVZxmXl-KtYI,1456
2685
+ pyrogram/raw/types/channels/send_as_peers.py,sha256=IgW79A_f6yudlXmnXIqT_46EhlnrG2LDNRmoPGqdY_o,2126
2686
+ pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py,sha256=9FgVPqJpOp4Qnk5m2-yYoN9x2TZT-xWG8lWfvlMTtps,1500
2687
+ pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py,sha256=oWsLReIhjl0ZmGYlgWBqZKixkDksqiY47qnw-1seFSE,2038
2688
+ pyrogram/raw/types/channels/sponsored_message_report_result_reported.py,sha256=1-V5RouhesRJE0KVaNhFwitSyRddIe7FaAP4896KNRM,1496
2689
+ pyrogram/raw/types/chatlists/__init__.py,sha256=QQz8Tp9xw26xIj-DdEHjg8NzM43rdGxkVfqH1Q2GcrU,497
2690
+ pyrogram/raw/types/chatlists/chatlist_invite.py,sha256=gJDB6u22l2MK5l961rLizjCiBUfFtCG7195yh7-qeas,2760
2691
+ pyrogram/raw/types/chatlists/chatlist_invite_already.py,sha256=jdrmouLEKpPv2L9aB_sPTVDwQyop_1Mad4DanhjWZ9I,2799
2692
+ pyrogram/raw/types/chatlists/chatlist_updates.py,sha256=ZiqznSy9AiMEvuAqfj6kcRoocvuR6Z-ierXnM9_UUwA,2206
2693
+ pyrogram/raw/types/chatlists/exported_chatlist_invite.py,sha256=10Oo_J_zpNRB3aC_SgRXbnxPLPdCkW7Q6z9gZjsUxBA,1988
2694
+ pyrogram/raw/types/chatlists/exported_invites.py,sha256=6GhSaivchYkZ1VmSQ9Oa_BE0500kHcESjp1-lhZ8rX0,2224
2695
+ pyrogram/raw/types/contacts/__init__.py,sha256=_p1sPV_kLURObRY2EQYBtcf8_wZfrYAovOX-2OuWEXs,694
2696
+ pyrogram/raw/types/contacts/blocked.py,sha256=Kvc1a443ZT0sYYpTIZFXhOo3B1wt8aW9aEyxZTJf0qo,2127
2697
+ pyrogram/raw/types/contacts/blocked_slice.py,sha256=rzmcPoFhb6H6Caz00RMzpRd4wHCZNP6mJd-6N5C_qX8,2349
2698
+ pyrogram/raw/types/contacts/contact_birthdays.py,sha256=jdxkrD_vMPDesIjegY2EPmC7a4B2TimUnSdsheaedPY,1940
2699
+ pyrogram/raw/types/contacts/contacts.py,sha256=PpZjZuAbgDfTmhifWKMk8GTitsTGkOwW_wuY0Q-74Z8,2121
2700
+ pyrogram/raw/types/contacts/contacts_not_modified.py,sha256=4cEvVy_mcfPTA0RjQnTJLyojlDKlwhJu2dbkLlXwygY,1397
2701
+ pyrogram/raw/types/contacts/found.py,sha256=Hp8YtUu0XRWvt4GciZRaVaBo8hd7il99jtwg6W7BD8c,2393
2702
+ pyrogram/raw/types/contacts/imported_contacts.py,sha256=37mwFqonF8vMrc8JnNWM_3mH6aHA3bq8av9UoSFMcOw,2657
2703
+ pyrogram/raw/types/contacts/resolved_peer.py,sha256=HmX5QMMvEJ5h06PELfrwdQJtC9V8TWTqHsp6MlFKIcA,2117
2704
+ pyrogram/raw/types/contacts/top_peers.py,sha256=3SUxtbFCzb41wnRX0yVbkx_0nBVa0y1VwJXoxZdBan0,2198
2705
+ pyrogram/raw/types/contacts/top_peers_disabled.py,sha256=WTxskg_E1XC5tnRUjCD-AO_niyUPGJ2jZyk6OmyIwLA,1385
2706
+ pyrogram/raw/types/contacts/top_peers_not_modified.py,sha256=VoERcx08oZklfqqV-oO3TygWxOZbr4nxh19qsdtNm-I,1397
2707
+ pyrogram/raw/types/fragment/__init__.py,sha256=FbfYryetW3yubN3w-7QmEqgNeiZmWQEKt4qWB4phHEY,287
2708
+ pyrogram/raw/types/fragment/collectible_info.py,sha256=MU1LzJaA2buSbbZjdkCRpCOi5Uy64qkQloScxwnyKMI,2800
2709
+ pyrogram/raw/types/help/__init__.py,sha256=FQorb_UK29qsTT5MNZrTNz07UngDHmFEFkJMidbwGug,1724
2710
+ pyrogram/raw/types/help/app_config.py,sha256=OnyD8xVx74-HpJkH31cYpl_uGlCngdLaOAojTazcDmY,1759
2711
+ pyrogram/raw/types/help/app_config_not_modified.py,sha256=96_RxFYISYsVF61o2J1i6hsBerjxzpBpIpsiH43oOWM,1391
2712
+ pyrogram/raw/types/help/app_update.py,sha256=6mq-iJLQGJOltR0U2wuif6wBj4lSw0pRGVrFH88cTN4,3766
2713
+ pyrogram/raw/types/help/config_simple.py,sha256=_IPpbob2X0qYXqsUmWayL6v43nxPjxwehemWFbBIIes,1828
2714
+ pyrogram/raw/types/help/countries_list.py,sha256=yUfQzn0yJTqTWJ4v1E8X8zEL8y7w1ydu_01Rguos1fs,1844
2715
+ pyrogram/raw/types/help/countries_list_not_modified.py,sha256=zuS4bRCkCMylLnrEdZO2VYTYe6Dm2N5L382OqieNcZo,1415
2716
+ pyrogram/raw/types/help/country.py,sha256=cF9icNovgrCGr7xV8GkuvLXspzPxLqzH-fc7Mr_5cZI,2566
2717
+ pyrogram/raw/types/help/country_code.py,sha256=D7UHEDeZHxs0Y2Zri2Qy3kMKtWnA0uYn-FfAsiK2o7Q,2259
2718
+ pyrogram/raw/types/help/deep_link_info.py,sha256=fEt5jupwUoDHK8Xtba7BKhdaiFzr4K5r2SPC6A2qKbc,2354
2719
+ pyrogram/raw/types/help/deep_link_info_empty.py,sha256=iAmY5ombkYjdYYHdhzo5ezCY7vy20n5anF_pKuGAiKc,1385
2720
+ pyrogram/raw/types/help/invite_text.py,sha256=cbGQPH09_QFf14HEz1zFygVI-0fr1xjMIsYx1NrUyx4,1522
2721
+ pyrogram/raw/types/help/no_app_update.py,sha256=B8jLJmDpqzClx0RayeXradnj_EKYofZZn1AICvUnDr8,1355
2722
+ pyrogram/raw/types/help/passport_config.py,sha256=WTjpFxSRTqdT2LErKCJiEL-CItfrY1oM1unwTYZhaw8,1866
2723
+ pyrogram/raw/types/help/passport_config_not_modified.py,sha256=4rkr-nznVuNdWtmuv6x9keYXmNehADTdNiRBOIRABtA,1421
2724
+ pyrogram/raw/types/help/peer_color_option.py,sha256=X7hmVUj8nVlfz9hnY2nMtLHZC2UiYeTlxMVSwWs7Llk,3582
2725
+ pyrogram/raw/types/help/peer_color_profile_set.py,sha256=FZR_VpwLfXXrDskUv5c7Nl7HLYCjUI33Q1SGhtA6nLg,2042
2726
+ pyrogram/raw/types/help/peer_color_set.py,sha256=Gl_a7TSQpxMxugQ5_NW8ew25R97XIRGb9IX2tDUhVxs,1363
2727
+ pyrogram/raw/types/help/peer_colors.py,sha256=y3gjIFawYepoyTHku0st56cHYgsKiSvBg7T3VOCMpHg,1866
2728
+ pyrogram/raw/types/help/peer_colors_not_modified.py,sha256=QiMb7z8r5cn3uzC4BNYFCz00ae8HB6o3RkypX7p4fa4,1436
2729
+ pyrogram/raw/types/help/premium_promo.py,sha256=FvgcYdSbuu8grtV04mAXgFfM-1UR6rz3QUQgeIIlhyU,3249
2730
+ pyrogram/raw/types/help/promo_data.py,sha256=_glH-f7QA2H5mesyZ38tik4RmvnRUWkYt6LpViBn_hs,3371
2731
+ pyrogram/raw/types/help/promo_data_empty.py,sha256=rCclOoLnhgNfzGCB3oKUfkHYFTGURnzsajLg75Du1Fo,1538
2732
+ pyrogram/raw/types/help/recent_me_urls.py,sha256=5sdCk5sQkXEGz98eRSKpZbRuJYf4ReU7o3HAY4-XcG8,2118
2733
+ pyrogram/raw/types/help/support.py,sha256=DBy1UCfNWCLr9W7vX2TNFdnouTv9mROfiOCVXFMIqdo,1779
2734
+ pyrogram/raw/types/help/support_name.py,sha256=7Ns6u7UyTAFg3xuU8MP9IIsq2t35jBKhusfuD7h2sD0,1501
2735
+ pyrogram/raw/types/help/terms_of_service.py,sha256=SugEcIwXrX9VvZlh_C8QXu9Tm5rYRmZT6yskVEZeoNo,2625
2736
+ pyrogram/raw/types/help/terms_of_service_update.py,sha256=Daq4B1dJJ1fAWiGijln9GSepSKhwk_chBFEHfc2kho4,1982
2737
+ pyrogram/raw/types/help/terms_of_service_update_empty.py,sha256=Ukvq7qs8MaoVEq93yqQIgjChtEY2u3IiXCWfoGdoOWY,1604
2738
+ pyrogram/raw/types/help/timezones_list.py,sha256=z42UKEN_whTXtSO4WBimkQX62V5YrKAfEvCwN_Pykwg,1828
2739
+ pyrogram/raw/types/help/timezones_list_not_modified.py,sha256=_HVluzSNOCDR4Zp40PErPNKL7NpJHr6YUjBZppB-pvs,1415
2740
+ pyrogram/raw/types/help/user_info.py,sha256=ub01yb1DrOei-P8IoDEkJSx682qMPFThXInw1e33PHU,2261
2741
+ pyrogram/raw/types/help/user_info_empty.py,sha256=gt2Y6P-jCzxiuszmngIBLucR9Q-W43BP3XLAWHA89uw,1392
2742
+ pyrogram/raw/types/messages/__init__.py,sha256=YU0Cb6tttcDKQ7O5JMEVGco1MV9S6Go5XDhgVkPFdSw,4352
2743
+ pyrogram/raw/types/messages/affected_found_messages.py,sha256=-ZVt_r2bP56BPjdaiMg6fOCKPtzD9WpqDGxi4ylp-34,2276
2744
+ pyrogram/raw/types/messages/affected_history.py,sha256=iJtEWfHC9rYo7x2tccHor4jqAdgzp1Yvg1gIZW0p94o,2204
2745
+ pyrogram/raw/types/messages/affected_messages.py,sha256=6HTp00OamHJsAQZa2j7HEz_YZZFmLv1qa0ohOGWpd74,1878
2746
+ pyrogram/raw/types/messages/all_stickers.py,sha256=hnLIzgrBYp5boxVMkasL1mnRD7mhGLGSK1Nb_GWfiAM,1870
2747
+ pyrogram/raw/types/messages/all_stickers_not_modified.py,sha256=SQT6cbWJpfFO-qrs0JEqC9cEIpaL0oSU2JZY-1tZPro,1491
2748
+ pyrogram/raw/types/messages/archived_stickers.py,sha256=ldZcQHQxrF_ckbXfiawDXa31NJvy70dUMy_3uySEg5Q,1858
2749
+ pyrogram/raw/types/messages/available_effects.py,sha256=dZu5d5YtAUQOiwEmyvFw0_qvpTwMvK1yDk2NBokEPSw,2181
2750
+ pyrogram/raw/types/messages/available_effects_not_modified.py,sha256=PRsx4XaxRFxEsaJUhO5fuDscWGMMpq8RntmhGKiEBwY,1445
2751
+ pyrogram/raw/types/messages/available_reactions.py,sha256=Iv1_Blz8Z2Loa3lXLSXegj_KoochOKT9zZrwhTdVsoQ,1906
2752
+ pyrogram/raw/types/messages/available_reactions_not_modified.py,sha256=4yp6U7WqdC7WIydbL8CYql0NNx9_wC9DDFA8h5BwHUE,1457
2753
+ pyrogram/raw/types/messages/bot_app.py,sha256=YFILA8Mkckxm9EKfXTLHYaylRlbnR2jrHhmvUpK7hcg,2540
2754
+ pyrogram/raw/types/messages/bot_callback_answer.py,sha256=fCuH9rXqH_6jS8k7eKiKoWL3rZosw4WZ1ojQz6N7T6I,3159
2755
+ pyrogram/raw/types/messages/bot_results.py,sha256=cwGSWnO7iBs62mvSZa4EGvDfRxzXB0YMDXpaJLl65DU,4146
2756
+ pyrogram/raw/types/messages/channel_messages.py,sha256=l7RibfSLmF0XdZIcWpb4DTlNRLFRFjBSOC3dHTiBJhE,4134
2757
+ pyrogram/raw/types/messages/chat_admins_with_invites.py,sha256=YHclyxqoVuPrNw3OPcREQZCCnouBJ728LG6c_D_XbFg,1975
2758
+ pyrogram/raw/types/messages/chat_full.py,sha256=6o0HcwKlbcRfZ5gySztfZVEGv9GG6z0R5fetEKfHuwo,2156
2759
+ pyrogram/raw/types/messages/chat_invite_importers.py,sha256=e6urL2svf-6k7AhOGEWjVFsqCi4xk-6hf2Ic5y1GS_w,2186
2760
+ pyrogram/raw/types/messages/chats.py,sha256=fbi0nOUGev2_QUtlDpOxXWGblcCEZp3BQ2Ig6tDgQi4,1828
2761
+ pyrogram/raw/types/messages/chats_slice.py,sha256=IaVjoq51FvLzerkDGrnTVP_Rx4ocv_Qj0NwDRU3QHT8,2048
2762
+ pyrogram/raw/types/messages/checked_history_import_peer.py,sha256=4FeZztwvDiQ-UFV0pDjWFf7-up4nspgRGoQqFFeVk9Q,1658
2763
+ pyrogram/raw/types/messages/dh_config.py,sha256=nFZwivzv_CLzkoEs34wwcaKqTu1T6_pmwgIJgpJgnkg,2059
2764
+ pyrogram/raw/types/messages/dh_config_not_modified.py,sha256=hKlzqN-Thwh9aFkj3gQ39avhhdGP9AIe90i8rNZ_y0k,1558
2765
+ pyrogram/raw/types/messages/dialog_filters.py,sha256=TH2G3aOAnuKQzj9gVXFxAeoyi1nxjEXXVYKrfn9pn_8,2004
2766
+ pyrogram/raw/types/messages/dialogs.py,sha256=HJCMjw8P1dpUni0T7hcy2I1MVGS7YrRIOQz-XD2nL14,2409
2767
+ pyrogram/raw/types/messages/dialogs_not_modified.py,sha256=8oObQPJlZu6UVrq42iIiofrF4CrtX469lIFCxz1qZSs,1544
2768
+ pyrogram/raw/types/messages/dialogs_slice.py,sha256=3ggw6Hsr72_C4scl-7j-EnBn70Pn5-ukZyYbXzbkNOw,2629
2769
+ pyrogram/raw/types/messages/discussion_message.py,sha256=ETCGiygxFUksm90Z9eol-9v6oiawqTf94vQu6ZSJ-6M,3844
2770
+ pyrogram/raw/types/messages/emoji_groups.py,sha256=uhjcqvMaKSkyzv-BGyGqwsVvBt8BQg-b_9in47MgH1A,1943
2771
+ pyrogram/raw/types/messages/emoji_groups_not_modified.py,sha256=6_mrRXoKqn-hBaidzW_mKocQOdW0rpGVsSEkJgdcxak,1549
2772
+ pyrogram/raw/types/messages/exported_chat_invite.py,sha256=UnEc_WVDu45_YnTl6Jkx5Ms3OTO-I_3MpBTMakia8OY,1976
2773
+ pyrogram/raw/types/messages/exported_chat_invite_replaced.py,sha256=CLDkyfWBxtO0Bz5s5GGyc6WivLqj3Rk3jmXWjsJ90YE,2348
2774
+ pyrogram/raw/types/messages/exported_chat_invites.py,sha256=oqjdteYAs6PSO0zY7RxbQDvMjM92aFQTZmRKKf3QpE0,2168
2775
+ pyrogram/raw/types/messages/faved_stickers.py,sha256=3fcl_B49B14LHx8TtQI8WeS5Mt2ZT40E4uiRgV-nkjY,2123
2776
+ pyrogram/raw/types/messages/faved_stickers_not_modified.py,sha256=N99fTmjHXghoOA_iqsuqDRMZ_A2MyEgz6iZ31GHj5fM,1427
2777
+ pyrogram/raw/types/messages/featured_stickers.py,sha256=yWo-s4IY6ArHFDFx4A2fmoTg1Erfz1xdGnYqd2H7tAM,2707
2778
+ pyrogram/raw/types/messages/featured_stickers_not_modified.py,sha256=vK7QU-AKZS9OZnr4p5RYH2Ga7mHnYzNKBWKWoDiHFE0,1689
2779
+ pyrogram/raw/types/messages/forum_topics.py,sha256=ezHFQf1YoZfAbO1dgaNpuVrOJ6mPRcTomDBINsw3lHw,3292
2780
+ pyrogram/raw/types/messages/found_sticker_sets.py,sha256=Jvvp2QvOQV10BirdtCoAhg8HNkN8Q0JDyJeygDK7Fk4,1895
2781
+ pyrogram/raw/types/messages/found_sticker_sets_not_modified.py,sha256=sL3eIfttvcmTqsGE6A_ZnO7YGJ6rT39sKuOktKjsMNQ,1486
2782
+ pyrogram/raw/types/messages/high_scores.py,sha256=DZ17cctPujVRzvAxntuq0k8Pe8btgype8fQXompPrLI,1919
2783
+ pyrogram/raw/types/messages/history_import.py,sha256=iV-dts8FWk1FEf7r5avyDh503NVxrL18J85Q8ycZNk0,1513
2784
+ pyrogram/raw/types/messages/history_import_parsed.py,sha256=h9VRcWv5x__WmRtGboEIeW3pkKWeuG1fkdCrMWXS04M,2238
2785
+ pyrogram/raw/types/messages/inactive_chats.py,sha256=Z2Yh2RNf-JtmaM26TSP6KOBFKsplJwGJJDBBNUcNvIk,2101
2786
+ pyrogram/raw/types/messages/invited_users.py,sha256=HvqiMVmvKq6GZcOaPmXJCrOIErRbk35S4rhehQMZZYA,2065
2787
+ pyrogram/raw/types/messages/message_edit_data.py,sha256=b79Q_JO1x1SXa9gqhP5PRM75A2zpJbx3deidfv8YIRQ,1660
2788
+ pyrogram/raw/types/messages/message_reactions_list.py,sha256=szYNY7THbXL6vXOoDGTF4vm-hQxpT1wL7EGTgS7wcYM,2922
2789
+ pyrogram/raw/types/messages/message_views.py,sha256=ldeVksmyfr21kbH_c4heBT9mkOUQGzLsuKDZl2-BfM0,2146
2790
+ pyrogram/raw/types/messages/messages.py,sha256=i_bQGuK2oW1C8UkPndk1TiCl-lA6gXGop9IpNpEICPs,2641
2791
+ pyrogram/raw/types/messages/messages_not_modified.py,sha256=lY3VKo0GyfDoy-MIPizHyqVrcMdqkztA2mCoAAvB_8Y,2063
2792
+ pyrogram/raw/types/messages/messages_slice.py,sha256=DR_wZjxRpV7hZgKQSWES2xKwGZWHzRHwJsafwEA7AIA,4050
2793
+ pyrogram/raw/types/messages/my_stickers.py,sha256=j5_plwR_ZxViyB8BohKghoBP2y9bezFv5DEvTjLp4I0,1822
2794
+ pyrogram/raw/types/messages/peer_dialogs.py,sha256=-2IMV9PpWra7-GV9m9vi3B0MxAHahbBBTwjMozzjxcE,2747
2795
+ pyrogram/raw/types/messages/peer_settings.py,sha256=Yj6C2x5P6EWxTH84qYlbY8BjdQz-n5lilbh_yNCq9qM,2150
2796
+ pyrogram/raw/types/messages/quick_replies.py,sha256=NsK4UpgItkTab1ntbuRm6iltb1kIjldiQGvtik-fr5U,2509
2797
+ pyrogram/raw/types/messages/quick_replies_not_modified.py,sha256=XRh_22Q4MxIokrxcrOrU9FpveWw3AlbIhLrEwqwTt0k,1421
2798
+ pyrogram/raw/types/messages/reactions.py,sha256=gEb5Sev_5TWy6uXRpv-AhiRoHnk3TJA_r4TtR1Wk464,1907
2799
+ pyrogram/raw/types/messages/reactions_not_modified.py,sha256=1Dz7zq2w7_s1riltrvDoOVDjuqzZKXNDGG7RYruFmUo,1491
2800
+ pyrogram/raw/types/messages/recent_stickers.py,sha256=to2xdcR8g6974Naf0ZhaUycUpIAx8Sosq-_8kuabG8s,2369
2801
+ pyrogram/raw/types/messages/recent_stickers_not_modified.py,sha256=ANnFiCadIjUJFJKo9-455dXIxRwXaiJs0cA1vd9FhKI,1431
2802
+ pyrogram/raw/types/messages/saved_dialogs.py,sha256=CkFcXEzWSjYF24AyK5rj2eTSDUPqOadr9s2fOoe4_P8,2503
2803
+ pyrogram/raw/types/messages/saved_dialogs_not_modified.py,sha256=hGouetX14N8ORWFC_G-FZ4UXKOMswKWkXRvQE_alvv8,1618
2804
+ pyrogram/raw/types/messages/saved_dialogs_slice.py,sha256=xYQNIrvaJ52IcdKm8jCveAOiJ-ahvvuZRSDm2y8_izo,2723
2805
+ pyrogram/raw/types/messages/saved_gifs.py,sha256=B0RsTSNVtrwDW0cUjcDvZGz375JBMX8tCj5vZZ8vJsY,1774
2806
+ pyrogram/raw/types/messages/saved_gifs_not_modified.py,sha256=NP0WmsiuIIWmNRiegA73hdQTklsYW0ZSBJKs_KUKP_Q,1403
2807
+ pyrogram/raw/types/messages/saved_reaction_tags.py,sha256=9GaJtZBHD54F9vp1YXoIvLLVwlGFj1chdXXI6PdGtVA,1854
2808
+ pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py,sha256=jLLMSke7jTvPsM7xiOBSv7-vFYJnL5YTjiDlfI9fVX4,1451
2809
+ pyrogram/raw/types/messages/search_counter.py,sha256=9LXZ4bUUpGPwDDMWpTlZiQrrHVqr_3sg0lRsYIHscy8,2137
2810
+ pyrogram/raw/types/messages/search_results_calendar.py,sha256=DoBidxYVbyGnI3YQf7Z9m4E-mBgSAqVvxtRYhHMjMBU,4038
2811
+ pyrogram/raw/types/messages/search_results_positions.py,sha256=K8Ha94817_4p7KrHfXAGyrmJzJZtQ59MelMW5jTfxxo,1955
2812
+ pyrogram/raw/types/messages/sent_encrypted_file.py,sha256=w8U_WU-SRXg70Tndf3NFryBeGeAqVwE1g-U1RXIaD2Y,1895
2813
+ pyrogram/raw/types/messages/sent_encrypted_message.py,sha256=llyqNBvHD_2a3ibCdHN3MXQdZcToylyq8V2p12DyG04,1641
2814
+ pyrogram/raw/types/messages/sponsored_messages.py,sha256=bwkR2KqqkDaxZNeQqkEZ930mW5O36tIotP5Ah6hhMfo,2707
2815
+ pyrogram/raw/types/messages/sponsored_messages_empty.py,sha256=X5bCvUD2B7xQ29wNrdr9XK5GRmZkWeLdJb3eNcktb5g,1427
2816
+ pyrogram/raw/types/messages/sticker_set.py,sha256=SNgiI8SGVtHQF7YcjjWluBeJ47fvsfzmPwBKjiQK8qc,2803
2817
+ pyrogram/raw/types/messages/sticker_set_install_result_archive.py,sha256=WoQ1ZY7Xa22Gxr-fXfG4GnUH0EIM3m-YKXmPTP4S14I,1719
2818
+ pyrogram/raw/types/messages/sticker_set_install_result_success.py,sha256=95ws7e59btqtSOvi6OKbDuaCPWMgf_pnV3eNZj5zcxo,1462
2819
+ pyrogram/raw/types/messages/sticker_set_not_modified.py,sha256=hw6k1U7chmKMS_KiF5fkdMdSxlIVnX443JT0CL0nYBs,1719
2820
+ pyrogram/raw/types/messages/stickers.py,sha256=L35I9DAzL1qxrB4Mi5htjETGSCLkOiJPK3Q1YvyHylk,1804
2821
+ pyrogram/raw/types/messages/stickers_not_modified.py,sha256=kVuRVpqcz120GBtxLolf-n2ndnAsX4QOOyY5nSBWk8I,1397
2822
+ pyrogram/raw/types/messages/transcribed_audio.py,sha256=Du7Krao38e5z4ydnQkQOV9tBUIddaJfeUOJE9Ziy1WE,3206
2823
+ pyrogram/raw/types/messages/translate_result.py,sha256=4lWvmwpOj4GYsINNreW866JXoGJObNhsqhySRKTEAQQ,1660
2824
+ pyrogram/raw/types/messages/votes_list.py,sha256=IdPE06enp5Sc8Kcp4sb2nN8Rp0oamhZXXbKMPa-wG4E,2804
2825
+ pyrogram/raw/types/messages/web_page.py,sha256=Wfd-qT-uQJCXv8YqNbebRHXUmERlGYCGrdoaHXqg6Gs,2091
2826
+ pyrogram/raw/types/payments/__init__.py,sha256=9wK5cn_FnDuynQK-_xW8ZTIZmKJVWih7_JZO-qcUa3A,1086
2827
+ pyrogram/raw/types/payments/bank_card_data.py,sha256=slll2vy3hzsLWOzZ0Q-tTANTvvflCVTZZvU37mYjm9s,1869
2828
+ pyrogram/raw/types/payments/checked_gift_code.py,sha256=LD_vyAAoQvriXHclXKWB_N-FvsvKDHAIlTxRvU0jABU,4263
2829
+ pyrogram/raw/types/payments/exported_invoice.py,sha256=XZe8mlWveEgNTiifr6gbAX3osQExuPPDATjDCwlY2AU,1523
2830
+ pyrogram/raw/types/payments/giveaway_info.py,sha256=aivBG6u4Zyz0DNsYFZ9yTqujhlqSdtNJwb0gUa4OUsU,3895
2831
+ pyrogram/raw/types/payments/giveaway_info_results.py,sha256=91kipLp4DcA9pDBXY_w1YdULfiw8IKJtT-ppttVbXyA,3447
2832
+ pyrogram/raw/types/payments/payment_form.py,sha256=fUINhml7V6v2SBusuntay-uVcS-jo46NDHUQ86IqbZc,7075
2833
+ pyrogram/raw/types/payments/payment_form_stars.py,sha256=B9cRIwVUnIQ8ay-Hbsl72WTV1JLZ7QjmwzaZRFf0i8k,3224
2834
+ pyrogram/raw/types/payments/payment_receipt.py,sha256=uSkIdIC40SfNXnxAS7VOv8xI_Jji-QwvP5n6JWj2C6A,5574
2835
+ pyrogram/raw/types/payments/payment_receipt_stars.py,sha256=FOx_SOXtfMLrIurf8Xr3Hzh8iTWqTcs71P9qE1SSw6k,3982
2836
+ pyrogram/raw/types/payments/payment_result.py,sha256=9EOX8n5JSoLjSLojT4KMsokjdITheWvrq5goRZhZrz4,1640
2837
+ pyrogram/raw/types/payments/payment_verification_needed.py,sha256=5QCS1PBQGTzAeaDoP9o8ybtUpSfKqP7sdJdagPLQSlU,1599
2838
+ pyrogram/raw/types/payments/saved_info.py,sha256=2cq47QUGsqT8D0aF44lDtBX-9JVDdVZeQQal2ab8G4Y,2263
2839
+ pyrogram/raw/types/payments/stars_revenue_ads_account_url.py,sha256=S71_j0lM5xEb4EEjqK7utb2FGv-R87UecL8rJbUiyqs,1588
2840
+ pyrogram/raw/types/payments/stars_revenue_stats.py,sha256=QXzmhm8A62YO_IVTw-opjg3kJ495G1Ex1AjrEexU3kw,2239
2841
+ pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py,sha256=Gy_KSoZxlNXusJVuYLgp_oaZ5iQS5QHih1ctJgDZCyw,1588
2842
+ pyrogram/raw/types/payments/stars_status.py,sha256=mPhZY1EbrlAtbZiKK52okOF1PQ0y4BGYsiDK_hQhjc4,2948
2843
+ pyrogram/raw/types/payments/validated_requested_info.py,sha256=z5f36hIs3gZ-GDnjltMPJhkyDdT5SzGe3qD5qrdzgVo,2325
2844
+ pyrogram/raw/types/phone/__init__.py,sha256=Of419_6aMENr1mZsToNfdomh50gedUteqm1kPFjUzN0,589
2845
+ pyrogram/raw/types/phone/exported_group_call_invite.py,sha256=edRrxK7FNEEjBR1eUvcJ6cHSZMGxrh7OU_i-eyITtEY,1571
2846
+ pyrogram/raw/types/phone/group_call.py,sha256=Qgacsg7kXKhsdfn-zkw9q5gEGMA8sQ6ipwkmIGTj37c,2832
2847
+ pyrogram/raw/types/phone/group_call_stream_channels.py,sha256=bDhK3jg6pXIKMGBroxRa8InBSmfOVMHbJs8-6DXiKbA,1747
2848
+ pyrogram/raw/types/phone/group_call_stream_rtmp_url.py,sha256=LtiQv63QXWA1XwXZ7xdPC64oKCr4vpzO744uNQ40KM4,1741
2849
+ pyrogram/raw/types/phone/group_participants.py,sha256=QtZ3mIb-oUSIa7opnhSMT6uCaODxARokm_Cptqj-_pk,2931
2850
+ pyrogram/raw/types/phone/join_as_peers.py,sha256=zJe0lWmbYuIh2E3QJuOGCGWhsen2vqPkP7BKOFolqrI,2102
2851
+ pyrogram/raw/types/phone/phone_call.py,sha256=hT_7sGO7cS5JYQKj7C1-Gqg699zSbP6MW3Zt7_bYTyo,1927
2852
+ pyrogram/raw/types/photos/__init__.py,sha256=xF6Dx5G1kUNTeiKpnAsDoq-gRrrI4MAk3gPiRJpOdTk,331
2853
+ pyrogram/raw/types/photos/photo.py,sha256=1KoYEjpPYfrCnfGhxVQFWRXHgzJzCUP9xwU_TxrJqqY,1880
2854
+ pyrogram/raw/types/photos/photos.py,sha256=DQjIU91H567CAwhNHCEFdhDtuxEDfHKysae7jG--dA8,1827
2855
+ pyrogram/raw/types/photos/photos_slice.py,sha256=nsOssa3UWXDO_q95nq3ktGsFoi4UO1bW4jRHRds-eNU,2047
2856
+ pyrogram/raw/types/premium/__init__.py,sha256=TMz_e8iy4liAHwV1SVPtG-j3YxcsqCubN99OrRy5QZo,349
2857
+ pyrogram/raw/types/premium/boosts_list.py,sha256=t9LgjiwdldfZMBgeS3UhFw501GRnJ-6RxNatTt2Dlfo,2550
2858
+ pyrogram/raw/types/premium/boosts_status.py,sha256=UkQsZAhrKXZJVKCcSNJDRj5UR8KTbw5ScudzHdXEvPE,5181
2859
+ pyrogram/raw/types/premium/my_boosts.py,sha256=lDdEJoZHFhLbGU2iva69GatF7EE1xvUti4s9iKrT6cA,2166
2860
+ pyrogram/raw/types/smsjobs/__init__.py,sha256=gnA-okbC7rDRI30snifNjcyG2GV7WpDw_1OxgiYrgdY,313
2861
+ pyrogram/raw/types/smsjobs/eligible_to_join.py,sha256=hApnOxaRspnD9ZBh378Vv86u1NG3CS_x-wVRNqx02d4,1874
2862
+ pyrogram/raw/types/smsjobs/status.py,sha256=TUD5DrjGDoqcMQPIXaAzfVE4R5_v760-LxxA4-OeijA,3695
2863
+ pyrogram/raw/types/stats/__init__.py,sha256=VlpfIcXnPWyeiBrPBCiK59RhdSZciNaVplM8I9S4Pvg,657
2864
+ pyrogram/raw/types/stats/broadcast_revenue_stats.py,sha256=ztO_xLHSONO7d6jbFFcFnk8bnAliNHqeIOwj5hjeSpU,2649
2865
+ pyrogram/raw/types/stats/broadcast_revenue_transactions.py,sha256=UD1vURZm28laZTzwIf2B81xzB3cbVYXWk3WP4Sud-TU,2033
2866
+ pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py,sha256=HpHsUdnE6ajtqrF0AkW7vPwoR9XIic2IUyBJvf1siRs,1603
2867
+ pyrogram/raw/types/stats/broadcast_stats.py,sha256=NkncrLhi7JXiznGESBA3swW-wxGACcc1fI7IOXNpEKc,10107
2868
+ pyrogram/raw/types/stats/megagroup_stats.py,sha256=wHdFw9PWxgJ6gSBr_inWsI7b6Nr8KmCyJocHM0DeViM,7167
2869
+ pyrogram/raw/types/stats/message_stats.py,sha256=wfuY2zS7jMKu9eSZf5RsQ3XC07F50WV4XZ9shj--y3E,2090
2870
+ pyrogram/raw/types/stats/public_forwards.py,sha256=ehpN3qOuptrjI2KSwTa7-BPt5-T1sFbuyksFY-w13LY,2893
2871
+ pyrogram/raw/types/stats/story_stats.py,sha256=1IKPVae7nRI3q7iapJDwL8WHHaYqjhn67Ma0HbuTjwI,2078
2872
+ pyrogram/raw/types/stickers/__init__.py,sha256=m97KHCZp0H6EwNRzs9UNgOoGfqMyqW1pkIdtWf3gGsc,294
2873
+ pyrogram/raw/types/stickers/suggested_short_name.py,sha256=1qUNPB8BI7MuTqYTrVE8YTtVLLcL_F2gc1CMu0NT_mQ,1604
2874
+ pyrogram/raw/types/storage/__init__.py,sha256=S061mHvUxaMtPvaro3Dz-6M6uBKn3cctUpJLNwBIlzo,561
2875
+ pyrogram/raw/types/storage/file_gif.py,sha256=7T8eJWZ9WrjdrLOhTjWL5Rjn5hSp8LKqfPYoko_38KQ,1143
2876
+ pyrogram/raw/types/storage/file_jpeg.py,sha256=b99cKU--gvrV1NzYez_yobrWbWcA_vj7fM7clF470_I,1143
2877
+ pyrogram/raw/types/storage/file_mov.py,sha256=crA2zHNn4Mic1UdvasgHdxiSinBbEu2zPWKAkJ5X9S0,1143
2878
+ pyrogram/raw/types/storage/file_mp3.py,sha256=sRcJXNb0FluGY2F_IToEeoDjn3ntBNP4LQ2oFV7N3fc,1143
2879
+ pyrogram/raw/types/storage/file_mp4.py,sha256=GM_KheljgK5ICSYoD3f9XdlWlV78ipRFeCU1IL9yOEo,1143
2880
+ pyrogram/raw/types/storage/file_partial.py,sha256=_FAUric2Rkd_nMaTEI8opFV_UX2EK6sJOF-ldOFgOoY,1159
2881
+ pyrogram/raw/types/storage/file_pdf.py,sha256=uacfXt-xlCE2vrbEcFp8y90AYHAqgZPMBtIhxt18hZk,1143
2882
+ pyrogram/raw/types/storage/file_png.py,sha256=6caFG-hf8WSm0u3LvCjJZWdgABmkcR2fRCdRLLY_wgQ,1141
2883
+ pyrogram/raw/types/storage/file_unknown.py,sha256=Bzz9nYGUhTcdhScS8cdF-Z-6QLIV5ZgEnFTB_FzO3Q0,1159
2884
+ pyrogram/raw/types/storage/file_webp.py,sha256=dMxUrpjAnZkB8Z_pvNEmRilmz8nHWIf_r-Y1_KYADfA,1147
2885
+ pyrogram/raw/types/stories/__init__.py,sha256=wkDmhMqflSucfiBwATGoJ9IfFQqbppCkp20jpy0tXV4,578
2886
+ pyrogram/raw/types/stories/all_stories.py,sha256=fUvdiav12E8Mte8fA1HAcLMttTFf3VFAWvINWTXPGYc,3266
2887
+ pyrogram/raw/types/stories/all_stories_not_modified.py,sha256=5nEjVqqQ5awWUIhILKlWwwJIR3XIeNUIad_uQSo3Bq8,1969
2888
+ pyrogram/raw/types/stories/found_stories.py,sha256=yQWrUolg9xOHbmOMXu0Mo8gXGD4bK_bi1GCCA4q8jh8,2813
2889
+ pyrogram/raw/types/stories/peer_stories.py,sha256=qLcYBiDZBZpojMwAMDo1aP5eLRKygDxMkM-5gdME4DE,2128
2890
+ pyrogram/raw/types/stories/stories.py,sha256=v7nzH52-l1UaAZ8Wktqito6IWgEwnYO-ISi3r7YVzJQ,2922
2891
+ pyrogram/raw/types/stories/story_reactions_list.py,sha256=4ip9twbHCNqkbS3e7kfmCqyJG5753xxDdkw2Mzz7foc,2883
2892
+ pyrogram/raw/types/stories/story_views.py,sha256=hnJrlGy0iiA5fJLaX_ExD85KnP29KQiqyLfeoq4gYjU,1863
2893
+ pyrogram/raw/types/stories/story_views_list.py,sha256=miyNopLD9EpkgB_SaxEHIAjwjDm1i4zoOAwUo1ILgko,3632
2894
+ pyrogram/raw/types/updates/__init__.py,sha256=cVXynCGI05B4Ys-8wjvFpiX7oSTr7KquIfeLCTG9cq0,621
2895
+ pyrogram/raw/types/updates/channel_difference.py,sha256=s0O31Tbo6Y0_PewKswd8zpTlVeXpn3p09tFoCc53BBU,3410
2896
+ pyrogram/raw/types/updates/channel_difference_empty.py,sha256=ikwu03A7uXU1XYsB_ff2Uw2dSthQPAWsGOXTvWqKsag,2231
2897
+ pyrogram/raw/types/updates/channel_difference_too_long.py,sha256=NwMFDajt14HJsp9llg8AxUi1DKe918O2QDnE45Kfbq4,3135
2898
+ pyrogram/raw/types/updates/difference.py,sha256=pGKdaYequj4q-rMaTc5sDoUWURSskjUTb2ETfAOj4sk,3247
2899
+ pyrogram/raw/types/updates/difference_empty.py,sha256=3gXckQ0W4xzspSOB_dVy1nKN0GUMPqcL6SEL-r3k4gk,1708
2900
+ pyrogram/raw/types/updates/difference_slice.py,sha256=XIWcLzeIdiKDWBR1pfGkFotv4U4-9pvVU3tKn1isdqc,3388
2901
+ pyrogram/raw/types/updates/difference_too_long.py,sha256=V450xvi1Cnq_0OMgp7LPh6SigtuPDd9MUS4aljIaaAg,1525
2902
+ pyrogram/raw/types/updates/state.py,sha256=sVkWoqDiJJdm8zTL7P5d8MMlZFq4QkOnZ5JsrhpIJq0,2285
2903
+ pyrogram/raw/types/upload/__init__.py,sha256=6IwCwBmOrW4-KMvksYoDQ2Ivw9X-nk3xyPbpyEb5YgI,431
2904
+ pyrogram/raw/types/upload/cdn_file.py,sha256=s27e2fXululmHunrKUZwNws90Zvr9pgvTqV73kPI53Y,1493
2905
+ pyrogram/raw/types/upload/cdn_file_reupload_needed.py,sha256=ZweVP4ADVPWbxCDFTKHEUyuEbNUdO2fdL0Dr4HYFh3Y,1621
2906
+ pyrogram/raw/types/upload/file.py,sha256=Rv5llYOhoSTLOM7JHKM5XjPm9Bo8EqOOm7ggw0K_Q6s,1951
2907
+ pyrogram/raw/types/upload/file_cdn_redirect.py,sha256=y4icFz1QvHchzJ-fYepLaFOzzqJ_Lju3KKhKBp-uTw8,2646
2908
+ pyrogram/raw/types/upload/web_file.py,sha256=t26UTQb5MN_8LtnHWY2pwHmffBZGpiVlDgEwHEXmuCE,2441
2909
+ pyrogram/raw/types/users/__init__.py,sha256=Hhw2iuFmcwt1Po5Xrp6J0CLnao-sbQiu903ZRqwOFE4,273
2910
+ pyrogram/raw/types/users/user_full.py,sha256=a3dzed2jKtVUd7d2CLigR6f7XATfaiOdt9u0Qi0tbMc,2110
2911
+ pyrogram/session/__init__.py,sha256=ONdfACLg6o09wUzebfCNmCTz1tHnKSMPrmTWxCs20WE,52
2912
+ pyrogram/session/auth.py,sha256=KZ6uo8to3ESONXP3TApUgyS6nJ8vaVU5VfmTSqQYWds,9875
2913
+ pyrogram/session/session.py,sha256=LnQYGxOuANYcvjXAGYwkrKXEUMtvVBJnQBIvoawaoi8,13004
2914
+ pyrogram/session/internals/__init__.py,sha256=Ph7CN1mQBWaKLuyTWbZ3kzZvzq_5xUa1o1QGbl7Oj7c,98
2915
+ pyrogram/session/internals/data_center.py,sha256=oVUkxwaQ66iEreQogiZlcfTKsUvKVzUo2XWKcfOCgFs,1670
2916
+ pyrogram/session/internals/msg_factory.py,sha256=9XniuwsTle1AaOZOSeci7pD7dWjowaBibfJpid20HdQ,555
2917
+ pyrogram/session/internals/msg_id.py,sha256=Mi27wh6xdNAG2BcuFaR1Ka7rU6zqhpOmHecWqv117Lg,337
2918
+ pyrogram/session/internals/seq_no.py,sha256=R2Cj5uLqLsBM2TMyzUstoLXJyf27J9wJ1-f84nO8bQc,342
2919
+ pyrogram/storage/__init__.py,sha256=S6I8I2Zfp8BKRKD3oLYLeZ6Tf8QSu_5kOZAXCSMAxwA,165
2920
+ pyrogram/storage/dummy_client.py,sha256=Kw0x1wJxyr4xuPOTrrRVFCeJPyCWGDHLQsTbn-QLlDU,1337
2921
+ pyrogram/storage/file_storage.py,sha256=ASWyFSRTJsngPNgol-zyvzukDELboiTj92Zb8IBIn0Y,1445
2922
+ pyrogram/storage/memory_storage.py,sha256=86bUobq9-ZsMYYhfKMSWIBV0q-5iidC24oT0Lgpp9j0,1906
2923
+ pyrogram/storage/mongo_storage.py,sha256=jzdjjjRXWNCBfqwchryPC_J4KMw__B6I2ykBX_HSYg4,6776
2924
+ pyrogram/storage/sqlite_storage.py,sha256=hZCPxZ2WZrRjUV7muzsFdIpZatiP9DLCtnAHdHYHGI0,7817
2925
+ pyrogram/storage/storage.py,sha256=7ROOzb_r5ivxzWMxaXXyWZf9t-63bAJAnjtWSNcNXmg,2244
2926
+ pyrogram/types/__init__.py,sha256=OyrDmI3DXHgX8G7obsh36Y3y87JIj86CWAbd_TFp9mQ,290
2927
+ pyrogram/types/list.py,sha256=xIuwex3QQKM25eMNFvpnxsZceYVImh2K5O8zkLo-2r4,237
2928
+ pyrogram/types/object.py,sha256=pI5r12Lmi2P50MMpZuvyf5dsISrC2X5DRCgdVu-5UPI,2584
2929
+ pyrogram/types/update.py,sha256=y_17eLxkiSu2Vlg7XV0x8ukiR8njAxgseQ0y7wtxtog,211
2930
+ pyrogram/types/authorization/__init__.py,sha256=9-KI8Z1rGZ-aqds1Z8MfB8iydGO0HGOGOj4g6Q0NqO8,129
2931
+ pyrogram/types/authorization/sent_code.py,sha256=Te9zqat6uDXkaw9qygKD8ht5WGtEK3KHBq3uM8ywR78,810
2932
+ pyrogram/types/authorization/terms_of_service.py,sha256=qkoC8efohJkx3ML93SGbBvMkyHPM5VsWWmrN0XCFK9w,751
2933
+ pyrogram/types/bots_and_keyboards/__init__.py,sha256=2tbTc7qCHlh6QHcPq3Tm8wcz2NyVe13e1IN3Sovwpho,2190
2934
+ pyrogram/types/bots_and_keyboards/bot_command.py,sha256=vXpasJC1I_LETtXMLUCslPexFiMVWRUnfFyid0dCaQ4,589
2935
+ pyrogram/types/bots_and_keyboards/bot_command_scope.py,sha256=uO2dVy_KFhnSJ4NelkDNeAW7CZbIXpdPKfnafPb1Ivc,309
2936
+ pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py,sha256=GJCJoSX3Tx_Cf0G61u-KycfUUOJ5OQ123lNk9xbgXS8,365
2937
+ pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py,sha256=fibaPbLPwdGa0UCAYbN9vjadqL85ReGMdt6XI3HGXjc,344
2938
+ pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py,sha256=VXydPjh3e2cjVVhVKp7mMnbpbrZDi0VKg2BONhjlgNM,348
2939
+ pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py,sha256=BRtTzR9XvceEpLk5EXqvJjQX15tTyqsAY3XU6eQvVxQ,473
2940
+ pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py,sha256=ssZny2krZOyS5SEcu89lGrEyjY93m_B0lrj5euXLCOs,508
2941
+ pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py,sha256=FpPfwkWiKoUWIMjTWIyTxoJBguXBOLzd9tBCeM_Kt1s,608
2942
+ pyrogram/types/bots_and_keyboards/bot_command_scope_default.py,sha256=8qNgnEyvidP6SQ4QhHAwfrpT4phNG_DxzWUOCK77mpo,332
2943
+ pyrogram/types/bots_and_keyboards/bot_info.py,sha256=unVUyloug-jMU8MtDElR1tv2UAIPh9NlIlQzAO37V6Q,548
2944
+ pyrogram/types/bots_and_keyboards/callback_query.py,sha256=yH_wXW0lDUwSABKL7qntORuWhx9LIwG4AlbUnYn0gVk,5052
2945
+ pyrogram/types/bots_and_keyboards/force_reply.py,sha256=JE5rf2kHeWnswhsIL9atFaExDDIOphBIYDyIaqnsWM4,683
2946
+ pyrogram/types/bots_and_keyboards/inline_keyboard_button.py,sha256=2GmP8vn7tCjREPKHNm-sNG6RFvRNaubev0x6Pn8uCY4,4607
2947
+ pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py,sha256=crvFqc0uKsWYanF2xHQ2FYUFBeufUP-xXkJA3sGpKuQ,1001
2948
+ pyrogram/types/bots_and_keyboards/keyboard_button.py,sha256=wXA_lWzlU9Dlg5L4MthRixVkWhXuz29yfzav-GfyJxg,4690
2949
+ pyrogram/types/bots_and_keyboards/login_url.py,sha256=EDbhN5-L1lqHybbv91F7_0myEsFc9KjvovLTn-KmNz0,1012
2950
+ pyrogram/types/bots_and_keyboards/menu_button.py,sha256=Znvr1O4YHS5-TQghHBgY7HHJTKRgpGDX5IQU44_hlkM,302
2951
+ pyrogram/types/bots_and_keyboards/menu_button_commands.py,sha256=v-AGa6_rUnJ2yab4ClJkTd4fLMbyE10FoNrpjJFcNSo,319
2952
+ pyrogram/types/bots_and_keyboards/menu_button_default.py,sha256=0EqWblTJ8qETVQ39yLc-YW3PWlDtQm7CMekkqMO2Q6E,315
2953
+ pyrogram/types/bots_and_keyboards/menu_button_web_app.py,sha256=uu85xE-iyAZNHuteI2Fay66kSMlfBcz4huqj2Acdcjo,504
2954
+ pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py,sha256=GLqr8U3kmVPkOfug8ZaDTBulRATos6DnW2bDLWNtR1E,1883
2955
+ pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py,sha256=hEEG-BsMOzSkW71tKNrjNKPupubVC_G_nBqo_-4t43M,504
2956
+ pyrogram/types/bots_and_keyboards/request_peer_type_channel.py,sha256=waPpT4AVH2QrO6lR5LDfJLdds4Tjoj7IkDDk35MD6V8,316
2957
+ pyrogram/types/bots_and_keyboards/request_peer_type_chat.py,sha256=Fqs8b3BvUGvgsX12nopNXUU0JZNXODxZqYdaqJWtG9s,467
2958
+ pyrogram/types/bots_and_keyboards/request_peer_type_user.py,sha256=Gb2QhVzIRRowSR97kvcSIQGNgBABBu95wwtQ_Jzmu2I,298
2959
+ pyrogram/types/bots_and_keyboards/sent_web_app_message.py,sha256=hOItHIwFtBdkdYzJSUfQxSJhlgcI9rilrqVsXIPeeb8,413
2960
+ pyrogram/types/bots_and_keyboards/web_app_info.py,sha256=tagMisnqMuajkjuwLdU93CDuo9ao6WcXzBbVyCq0Nrk,167
2961
+ pyrogram/types/inline_mode/__init__.py,sha256=I0L-OYj9XVFLd9_Dz3lZ2gkPTxDXpoLsYdGCHghgv2s,1992
2962
+ pyrogram/types/inline_mode/chosen_inline_result.py,sha256=xLO3Vs9ib3ND98oNvQUh9K4GvSfQgb0sZsgOK-jZPFs,1781
2963
+ pyrogram/types/inline_mode/inline_query.py,sha256=zVad_7fEUy7PK5DEC0fN3ZbqFd2KGVB0p-fJ64GFeEg,2702
2964
+ pyrogram/types/inline_mode/inline_query_result.py,sha256=tIIWWnXxXcyWWPgjWTFBFZE-X6v8D0Zysje0IC1UUKU,595
2965
+ pyrogram/types/inline_mode/inline_query_result_animation.py,sha256=tws_2OAzmpm-yUDuH9oNDr9rhVGwftZyLEBVlZheBbY,2950
2966
+ pyrogram/types/inline_mode/inline_query_result_article.py,sha256=mEeGm-00_Mz5G9qtMfdHUi7JsCGMjM4-Nq-F9M59qI8,1563
2967
+ pyrogram/types/inline_mode/inline_query_result_audio.py,sha256=jSYM5ql_0hnO3z5wlsR9RFEdmhAwhObg81nyrfd-wYs,2514
2968
+ pyrogram/types/inline_mode/inline_query_result_cached_animation.py,sha256=LTSUsRk7l8BA-1lglCzVF3r_gaJVZTV0GMf-GqG7Ybg,2045
2969
+ pyrogram/types/inline_mode/inline_query_result_cached_audio.py,sha256=imi-MlZ4t0fTZ24yqAwKvFMruzx1G5Ue6lx2g3XSFiA,1943
2970
+ pyrogram/types/inline_mode/inline_query_result_cached_document.py,sha256=8iNJHixd9koIzxIhrjtgWQiUm7SMla0t7txqEfpmgKg,2148
2971
+ pyrogram/types/inline_mode/inline_query_result_cached_photo.py,sha256=1lZiWWmHwIbHR1O3U2onoBRMUeYhP3T6qU87sQY92lI,2060
2972
+ pyrogram/types/inline_mode/inline_query_result_cached_sticker.py,sha256=GRMW2Uuf_X3sfjoiijEyP4OxJVnYvLcFh5a9CKIrg8Q,1445
2973
+ pyrogram/types/inline_mode/inline_query_result_cached_video.py,sha256=10YsEeorYx-kg6Jm_Jg5amQI_J7x0RQR7VXHofakzaU,2134
2974
+ pyrogram/types/inline_mode/inline_query_result_cached_voice.py,sha256=BaTksulOCGHfelHoGNrk9_LfFsrEjwh7dMTjDcMICP8,2027
2975
+ pyrogram/types/inline_mode/inline_query_result_contact.py,sha256=jTDsqYGYeJQxwtVdCB42bQXlJqF8GA0jrkCqoBd5fD0,2013
2976
+ pyrogram/types/inline_mode/inline_query_result_document.py,sha256=oYISrTFOJpP956_hGTKIbMagrYzVsYBYkqRQUgh1eOw,2612
2977
+ pyrogram/types/inline_mode/inline_query_result_location.py,sha256=wqOfJR_lRi25dkO6WlA_wPkNRhOa8D_p10gIpX0qPXU,2004
2978
+ pyrogram/types/inline_mode/inline_query_result_photo.py,sha256=kqn7T00i-WebbphZ3hSXlE4We9IcV6GRst5aZVZA8-0,2691
2979
+ pyrogram/types/inline_mode/inline_query_result_venue.py,sha256=GkqXGQ5IbqHZARjERzj1VMpVC0fZhw4rAFn8NfCa3lg,2389
2980
+ pyrogram/types/inline_mode/inline_query_result_video.py,sha256=nseeFO5OiTY9qvo-YkatO9BN4tb3ZrdoD22jqmefp3o,2631
2981
+ pyrogram/types/inline_mode/inline_query_result_voice.py,sha256=1MpJ4__MYeeX6jLKUbev6XBHEZV8OtOJIvbGNLpWMyE,2010
2982
+ pyrogram/types/input_media/__init__.py,sha256=S6OdTQEmKU2pFfwviJrAD2zE47RqykbW_XUFylEVxgo,684
2983
+ pyrogram/types/input_media/input_media.py,sha256=PhomN8GKeN15F9UgxxyuBIGeGUaT7QWTXbQeYWTrMvU,505
2984
+ pyrogram/types/input_media/input_media_animation.py,sha256=kp_0Ko5CcGz1S9Dhh7ETSqrII-wEtaVq8uEypSkY6Rs,774
2985
+ pyrogram/types/input_media/input_media_area.py,sha256=U4cLmitlUaKkQ-P4vfv6rXy5QqArBNtS8hKvofaYvlQ,244
2986
+ pyrogram/types/input_media/input_media_area_channel_post.py,sha256=8o8dhfHq35zROC85PQNkiAl08QoN03NW05h-e6lK4gk,732
2987
+ pyrogram/types/input_media/input_media_audio.py,sha256=5F5eXyD0ONoG1lDOqE3kVpQaLisUjBykwgGSOXalw0Q,708
2988
+ pyrogram/types/input_media/input_media_document.py,sha256=AX65kLmFHlsd3f-dlD7IgpccyaAf_6d3bhr0tcuOo3I,535
2989
+ pyrogram/types/input_media/input_media_photo.py,sha256=VCTAeH9ZyQ2tZeqJcDB9Qp1GoE3C_xsfCT5dBxPUpCc,551
2990
+ pyrogram/types/input_media/input_media_video.py,sha256=1nBRo28NwBL49MsQcSleeaHGqwXeikCkMN0bho0igt0,865
2991
+ pyrogram/types/input_media/input_phone_contact.py,sha256=lGgfY3eAywOVZY6pxZhgbQxYRA63fGO34xg9WE8rg8M,553
2992
+ pyrogram/types/input_message_content/__init__.py,sha256=r2IAeNRnOQfVRgayGl4qr_IiqTGNjiyaDK_8DbYhjDs,274
2993
+ pyrogram/types/input_message_content/input_message_content.py,sha256=rwKqFi1ioRZ757TFDsr-0ElZxUH4DbFzt45jfaL1R4E,236
2994
+ pyrogram/types/input_message_content/input_reply_to_message.py,sha256=TpDpm-Jhq6N_99gzb80q8nV2FyUmEy-UsrmMfwtzmuc,1557
2995
+ pyrogram/types/input_message_content/input_text_message_content.py,sha256=-Tvd_CL9cbBhAGaODdCdOpdgk6IMUiOlBK55Qmd3CIc,1122
2996
+ pyrogram/types/messages_and_media/__init__.py,sha256=q67qAkj2UaOquzbW0v4RpD_51dm5SSsHyfR0f08Yl6Q,1685
2997
+ pyrogram/types/messages_and_media/animation.py,sha256=6N16CsNS4oTw2XkeGG3znzGjnxiul7H_JclQn5ue97Q,3801
2998
+ pyrogram/types/messages_and_media/audio.py,sha256=CBbs-qnbUZ1bEmFp1enNCVkR180fcQeac1YCLt2Uzws,2047
2999
+ pyrogram/types/messages_and_media/available_effect.py,sha256=cEgLuhm0ptLrCOH3e31lmONganGDlp9ZBwh8xm0ATDc,1463
3000
+ pyrogram/types/messages_and_media/contact.py,sha256=_4b3GUwTcaSjpulYrSi8NzZnD5q2eT8BLXNyr3HNIxw,931
3001
+ pyrogram/types/messages_and_media/document.py,sha256=LhXeHUvrLPLcb2fSZw9F-e0nlnT2C1q5mT_aixtNXGk,1681
3002
+ pyrogram/types/messages_and_media/media_area.py,sha256=L0zHD7UGVcpwY1-IQKl2GzFrLyARUh22K-yXaRpcaZo,527
3003
+ pyrogram/types/messages_and_media/media_area_channel_post.py,sha256=ob_Wd7PWjONfuNjBXGv619U1JGkYAXTkpTs4Vfam_88,1134
3004
+ pyrogram/types/messages_and_media/media_area_coordinates.py,sha256=udpyxIMkM_jwoFz_3dK815HO05iDY7HbNTTsofLPBVE,1109
3005
+ pyrogram/types/messages_and_media/message.py,sha256=6fgokX2WorG_IUcmrHbHTjXIPIcBVzzNij2Jtf2skrQ,84044
3006
+ pyrogram/types/messages_and_media/message_entity.py,sha256=_tvriQMSEKkuAPQuucw2ItDAcXb0D-xSve45TFP0e4w,2536
3007
+ pyrogram/types/messages_and_media/message_reaction_count_updated.py,sha256=wTy5I7r41PmMdV7eKuUwFwJugW4XWnqS-hYgScjHJvM,1511
3008
+ pyrogram/types/messages_and_media/message_reaction_updated.py,sha256=jAdfRxbg2RpEM5Y-58Bxaot6F9q8JDe0TfdHrB746Gs,2322
3009
+ pyrogram/types/messages_and_media/message_reactions.py,sha256=py8aGMEz8HVa_-5zwLGtQFk-5pIKmYOaDtJT9VuIin4,834
3010
+ pyrogram/types/messages_and_media/photo.py,sha256=HqL2bagHzGnKgW5yjN5l9x-6fEndtZpYBoDihFVrEdk,2669
3011
+ pyrogram/types/messages_and_media/reaction.py,sha256=atHIavadde60AEys_ymfMyasHeo13_uqlQ_3y4qgx5o,1394
3012
+ pyrogram/types/messages_and_media/reaction_count.py,sha256=bxiONJwauZ3ok946UHoFZ5td4nCXa-Dls_sRrpYU9V4,736
3013
+ pyrogram/types/messages_and_media/reaction_type.py,sha256=h3UZS9TJQxQFe_Jnx4rZfl_2qVjbvU9-koipyYLCcO4,1329
3014
+ pyrogram/types/messages_and_media/sticker.py,sha256=5rjCoEx4lRALa973E3Sb8bm2TuMYdxc_FKMS2sbEusE,5020
3015
+ pyrogram/types/messages_and_media/stickerset.py,sha256=7A6xmhoTBTGRhakEmjliBuNstH6ciwPIDC2tJ6OrqkU,1122
3016
+ pyrogram/types/messages_and_media/story.py,sha256=CFMsMqMOv69OTJBJgxOCK1SvXoh_N_MS5WmZtJ-TaKI,24818
3017
+ pyrogram/types/messages_and_media/stripped_thumbnail.py,sha256=VUbQSvZ9vbpjhZL5dDMpja2newNbyW5NE1pcip24tpA,505
3018
+ pyrogram/types/messages_and_media/thumbnail.py,sha256=ljyl_TYM1EpK6PutWg2Foi9pXn5ANhO-xzhZ1hOjFgI,2375
3019
+ pyrogram/types/messages_and_media/video.py,sha256=0ob5GdjcleiYi6JWI4bg9lK_6yUjYtgq8Czex6WXYMU,2313
3020
+ pyrogram/types/messages_and_media/video_note.py,sha256=Hp0uAy14mybs6zAr3n-HReLETFNFAELCLghsxwFTDV4,1868
3021
+ pyrogram/types/messages_and_media/voice.py,sha256=Q29gO3AjfOWBVAW3uOlY48yvA198Da2Kcy2qoxpOHtE,1591
3022
+ pyrogram/types/messages_and_media/web_app_data.py,sha256=mxOu1qChO88VXkmjzULr-PSu_DPfwbq0Luk09gZrsEU,458
3023
+ pyrogram/types/messages_and_media/web_page.py,sha256=x4f7E4Dd-4MxCHFt_edmuvWp5TqQss4k7nQGmIyyQzo,3504
3024
+ pyrogram/types/messages_and_media/web_page_empty.py,sha256=p6198SZsivJZouuzaKBrUpZgv7JrGUlTqBZfe6c_cpk,427
3025
+ pyrogram/types/messages_and_media/web_page_preview.py,sha256=zLBZYvNJuEp3MypUtOPBoTLU0PAqj9tiICMx1O4I8dc,1311
3026
+ pyrogram/types/user_and_chats/__init__.py,sha256=7V-Iu0u4r9z-L0f0-RBgA04A3YCsxhUn_tyKQGCcQA0,2342
3027
+ pyrogram/types/user_and_chats/birthday.py,sha256=G3mfs5HBYRS3iNsMPzJ6KJSNHaCbuMY6vC_t1WN_EUA,659
3028
+ pyrogram/types/user_and_chats/chat.py,sha256=V59-aiK7XfExUOzOoQIxLxmq9iwGuSeEQpw-ZFh2Uhw,19242
3029
+ pyrogram/types/user_and_chats/chat_admin_with_invite_links.py,sha256=i_6f-XkS0GGRYoo0iQu1QZiVl9NH9GIIJMjy53U7ZsA,955
3030
+ pyrogram/types/user_and_chats/chat_color.py,sha256=MoxCn2vjw8ZblY__clvQ2_d0fnRJi1kCjJZe03hr0o0,1077
3031
+ pyrogram/types/user_and_chats/chat_event.py,sha256=nXlPialUCl20UClRxIy1Tb_dJ97O0YVwek2-mDso6BU,15484
3032
+ pyrogram/types/user_and_chats/chat_event_filter.py,sha256=SbvlaE-vZ5OqOxLTD3fU6AUhjS9KiHkqitBz8eCerzg,2727
3033
+ pyrogram/types/user_and_chats/chat_invite_link.py,sha256=bfp8gdQ3tMkAXqSQOIcHl1HxwHvIBGLyOYzHuTdOKp0,2218
3034
+ pyrogram/types/user_and_chats/chat_join_request.py,sha256=ZUdiOA5GjoLYmpBjoz-kXzfRhHg7ch2z7XdFiXbic5M,1677
3035
+ pyrogram/types/user_and_chats/chat_joined_by_request.py,sha256=qVo8OCNiFzSATuUw6CFYg8igaJB52jehomyM4kI6u68,116
3036
+ pyrogram/types/user_and_chats/chat_joiner.py,sha256=7-ujvxX0iwkxIzWFK3CVSrrGdJ4q-YlzHp0OSyAa_kk,1198
3037
+ pyrogram/types/user_and_chats/chat_member.py,sha256=PqKCJdo9kc73wKK4OF2l-9R4IN6qD3hYt4Z1Rqd2UJo,6394
3038
+ pyrogram/types/user_and_chats/chat_member_updated.py,sha256=wSXCAS6HeGGv-PznNnXOI-Yd2Znoky6SQz9o5b9pPxg,3619
3039
+ pyrogram/types/user_and_chats/chat_permissions.py,sha256=DaBb848zagipjaRUEmuaztu4Q7-JTMn76o0pE05T11U,6457
3040
+ pyrogram/types/user_and_chats/chat_photo.py,sha256=8wFobYAFYgvpmhpLLIQriruqPMujB6wxl9IL-qKHV4k,2738
3041
+ pyrogram/types/user_and_chats/chat_preview.py,sha256=EP7UtvCcLyKrM4_WgO8W5pzrvZizDg1hb0de6dekx-Y,1126
3042
+ pyrogram/types/user_and_chats/chat_privileges.py,sha256=fdtSQ-APPuRzq7eSDd2_adAXt_8jiIKT7VmcNRxcnMM,2618
3043
+ pyrogram/types/user_and_chats/chat_reactions.py,sha256=a8Wo8RPe17zdm521bplikkZGY9WtkSorxVE_dcE8-zA,1347
3044
+ pyrogram/types/user_and_chats/dialog.py,sha256=CB0FH66zBpPqdvmzPJeEqQu5JR7HayIymkl3leLGIxs,1207
3045
+ pyrogram/types/user_and_chats/emoji_status.py,sha256=aD23aYTWTPxUp9WuXSYxZCnBAtOMb07cBG14jI5u6ZY,1391
3046
+ pyrogram/types/user_and_chats/forum_topic.py,sha256=yTyQqq41IRfaDYHDFDzgjmdvqVYdufvyFc-KBJFy1kY,2638
3047
+ pyrogram/types/user_and_chats/forum_topic_closed.py,sha256=MTek5RlqNAMIPjT5bg17cYchcGxl_ReVz_15d4cnfxM,113
3048
+ pyrogram/types/user_and_chats/forum_topic_created.py,sha256=FEJWWKOxX6v7-3wzMTvM9tEp3aSppcFOYhXMQzRuupE,756
3049
+ pyrogram/types/user_and_chats/forum_topic_edited.py,sha256=xOgp0RLarR5mUBHREOnE9j7SQjIereshj320MC6Ykqk,675
3050
+ pyrogram/types/user_and_chats/forum_topic_reopened.py,sha256=RWJ_tx1DV1Jnkm8xhQzhJsIcu_e2z1l6Si3m-8zegcI,115
3051
+ pyrogram/types/user_and_chats/general_forum_topic_hidden.py,sha256=hFfz4SK0AZLXy8czxbhmuM3JXqgua37ZVj9iIGfACAk,115
3052
+ pyrogram/types/user_and_chats/general_forum_topic_unhidden.py,sha256=ianyp77MFXjwBDerjKD0WueZetWKldiGjj6QRKyK5Kk,117
3053
+ pyrogram/types/user_and_chats/invite_link_importer.py,sha256=2UQhO35G2rUbooL1IpBDo7JNjBlH-74pom8fmLO8WlE,807
3054
+ pyrogram/types/user_and_chats/peer_channel.py,sha256=Zuipcf2ScqBcM3ovFCQUbYO4-G7cbTcLk1Mf1Y1t7fQ,396
3055
+ pyrogram/types/user_and_chats/peer_user.py,sha256=4Uee-9sf9qxscThPsPHNRK5FPAUCwM3r8GjwEAyhVKM,369
3056
+ pyrogram/types/user_and_chats/restriction.py,sha256=RNbE5aJMs-I7yFzUc_CCPFZy9yNpqSsk2iJ_Z4fTl0o,517
3057
+ pyrogram/types/user_and_chats/user.py,sha256=V3HxROJuKyNwcCmsx1nEWf0eP16sOokaIdXC2mJOe-Y,8065
3058
+ pyrogram/types/user_and_chats/username.py,sha256=qT0hqjd6JjVIX5IAaBI9NAERwcsVirp_IXDB0oL4z8U,602
3059
+ pyrogram/types/user_and_chats/video_chat_ended.py,sha256=8FVPnCeTm--FgfmB1SMagrK84A7GyaLSoSr9-oJwvEo,365
3060
+ pyrogram/types/user_and_chats/video_chat_members_invited.py,sha256=07Ps4fuR9IToeIwaL8DLLT7fS1LFUlbCQAQa_o09Ydw,582
3061
+ pyrogram/types/user_and_chats/video_chat_scheduled.py,sha256=wV5NRTPtoddOEVOkG4aWUou3-pMn5Vn6p2Ixi0LmOGE,471
3062
+ pyrogram/types/user_and_chats/video_chat_started.py,sha256=nvChK_YSwxsHGY7tFVZOUh80zmhF7u3gD_9Z9yIrkxQ,113
3063
+ electrogram-1.184.0.dist-info/METADATA,sha256=GSAq9XsrrqoLCfwz1FwFNlPf5s2mzbhEm2t_etOH0uE,1038
3064
+ electrogram-1.184.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
3065
+ electrogram-1.184.0.dist-info/licenses/LICENSE,sha256=9gXtSe9XJqDHLgPHmmw2s-hOvJ1g54gM8vmRRKUzGi0,1076
3066
+ electrogram-1.184.0.dist-info/RECORD,,