PyroMt 2.0.106__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 (2563) hide show
  1. pyrogram/__init__.py +42 -0
  2. pyrogram/client.py +1048 -0
  3. pyrogram/connection/__init__.py +19 -0
  4. pyrogram/connection/connection.py +72 -0
  5. pyrogram/connection/transport/__init__.py +19 -0
  6. pyrogram/connection/transport/tcp/__init__.py +24 -0
  7. pyrogram/connection/transport/tcp/tcp.py +123 -0
  8. pyrogram/connection/transport/tcp/tcp_abridged.py +57 -0
  9. pyrogram/connection/transport/tcp/tcp_abridged_o.py +86 -0
  10. pyrogram/connection/transport/tcp/tcp_full.py +64 -0
  11. pyrogram/connection/transport/tcp/tcp_intermediate.py +45 -0
  12. pyrogram/connection/transport/tcp/tcp_intermediate_o.py +79 -0
  13. pyrogram/crypto/__init__.py +17 -0
  14. pyrogram/crypto/aes.py +130 -0
  15. pyrogram/crypto/mtproto.py +100 -0
  16. pyrogram/crypto/prime.py +82 -0
  17. pyrogram/crypto/rsa.py +259 -0
  18. pyrogram/dispatcher.py +259 -0
  19. pyrogram/emoji.py +4019 -0
  20. pyrogram/enums/__init__.py +49 -0
  21. pyrogram/enums/auto_name.py +27 -0
  22. pyrogram/enums/chat_action.py +72 -0
  23. pyrogram/enums/chat_event_action.py +127 -0
  24. pyrogram/enums/chat_member_status.py +43 -0
  25. pyrogram/enums/chat_members_filter.py +42 -0
  26. pyrogram/enums/chat_type.py +40 -0
  27. pyrogram/enums/message_entity_type.py +84 -0
  28. pyrogram/enums/message_media_type.py +70 -0
  29. pyrogram/enums/message_service_type.py +73 -0
  30. pyrogram/enums/messages_filter.py +75 -0
  31. pyrogram/enums/next_code_type.py +39 -0
  32. pyrogram/enums/parse_mode.py +37 -0
  33. pyrogram/enums/poll_type.py +31 -0
  34. pyrogram/enums/sent_code_type.py +45 -0
  35. pyrogram/enums/user_status.py +43 -0
  36. pyrogram/errors/__init__.py +65 -0
  37. pyrogram/errors/exceptions/__init__.py +26 -0
  38. pyrogram/errors/exceptions/all.py +509 -0
  39. pyrogram/errors/exceptions/bad_request_400.py +2541 -0
  40. pyrogram/errors/exceptions/flood_420.py +63 -0
  41. pyrogram/errors/exceptions/forbidden_403.py +217 -0
  42. pyrogram/errors/exceptions/internal_server_error_500.py +336 -0
  43. pyrogram/errors/exceptions/not_acceptable_406.py +112 -0
  44. pyrogram/errors/exceptions/see_other_303.py +63 -0
  45. pyrogram/errors/exceptions/service_unavailable_503.py +42 -0
  46. pyrogram/errors/exceptions/unauthorized_401.py +91 -0
  47. pyrogram/errors/rpc_error.py +103 -0
  48. pyrogram/file_id.py +481 -0
  49. pyrogram/filters.py +929 -0
  50. pyrogram/handlers/__init__.py +30 -0
  51. pyrogram/handlers/callback_query_handler.py +49 -0
  52. pyrogram/handlers/chat_join_request_handler.py +49 -0
  53. pyrogram/handlers/chat_member_updated_handler.py +49 -0
  54. pyrogram/handlers/chosen_inline_result_handler.py +50 -0
  55. pyrogram/handlers/deleted_messages_handler.py +61 -0
  56. pyrogram/handlers/disconnect_handler.py +43 -0
  57. pyrogram/handlers/edited_message_handler.py +49 -0
  58. pyrogram/handlers/handler.py +43 -0
  59. pyrogram/handlers/inline_query_handler.py +49 -0
  60. pyrogram/handlers/message_handler.py +49 -0
  61. pyrogram/handlers/poll_handler.py +50 -0
  62. pyrogram/handlers/raw_update_handler.py +67 -0
  63. pyrogram/handlers/user_status_handler.py +47 -0
  64. pyrogram/methods/__init__.py +45 -0
  65. pyrogram/methods/advanced/__init__.py +29 -0
  66. pyrogram/methods/advanced/invoke.py +89 -0
  67. pyrogram/methods/advanced/resolve_peer.py +125 -0
  68. pyrogram/methods/advanced/save_file.py +226 -0
  69. pyrogram/methods/auth/__init__.py +53 -0
  70. pyrogram/methods/auth/accept_terms_of_service.py +44 -0
  71. pyrogram/methods/auth/check_password.py +60 -0
  72. pyrogram/methods/auth/connect.py +51 -0
  73. pyrogram/methods/auth/disconnect.py +40 -0
  74. pyrogram/methods/auth/get_password_hint.py +38 -0
  75. pyrogram/methods/auth/initialize.py +52 -0
  76. pyrogram/methods/auth/log_out.py +51 -0
  77. pyrogram/methods/auth/recover_password.py +57 -0
  78. pyrogram/methods/auth/resend_code.py +64 -0
  79. pyrogram/methods/auth/send_code.py +79 -0
  80. pyrogram/methods/auth/send_recovery_code.py +43 -0
  81. pyrogram/methods/auth/sign_in.py +80 -0
  82. pyrogram/methods/auth/sign_in_bot.py +79 -0
  83. pyrogram/methods/auth/sign_up.py +73 -0
  84. pyrogram/methods/auth/terminate.py +61 -0
  85. pyrogram/methods/bots/__init__.py +55 -0
  86. pyrogram/methods/bots/answer_callback_query.py +81 -0
  87. pyrogram/methods/bots/answer_inline_query.py +112 -0
  88. pyrogram/methods/bots/answer_web_app_query.py +53 -0
  89. pyrogram/methods/bots/delete_bot_commands.py +62 -0
  90. pyrogram/methods/bots/get_bot_commands.py +67 -0
  91. pyrogram/methods/bots/get_bot_default_privileges.py +59 -0
  92. pyrogram/methods/bots/get_chat_menu_button.py +66 -0
  93. pyrogram/methods/bots/get_game_high_scores.py +72 -0
  94. pyrogram/methods/bots/get_inline_bot_results.py +92 -0
  95. pyrogram/methods/bots/request_callback_answer.py +77 -0
  96. pyrogram/methods/bots/send_game.py +100 -0
  97. pyrogram/methods/bots/send_inline_bot_result.py +75 -0
  98. pyrogram/methods/bots/set_bot_commands.py +73 -0
  99. pyrogram/methods/bots/set_bot_default_privileges.py +81 -0
  100. pyrogram/methods/bots/set_chat_menu_button.py +56 -0
  101. pyrogram/methods/bots/set_game_score.py +100 -0
  102. pyrogram/methods/chats/__init__.py +101 -0
  103. pyrogram/methods/chats/add_chat_members.py +90 -0
  104. pyrogram/methods/chats/archive_chats.py +71 -0
  105. pyrogram/methods/chats/ban_chat_member.py +111 -0
  106. pyrogram/methods/chats/create_channel.py +56 -0
  107. pyrogram/methods/chats/create_group.py +67 -0
  108. pyrogram/methods/chats/create_supergroup.py +60 -0
  109. pyrogram/methods/chats/delete_channel.py +52 -0
  110. pyrogram/methods/chats/delete_chat_photo.py +70 -0
  111. pyrogram/methods/chats/delete_supergroup.py +52 -0
  112. pyrogram/methods/chats/delete_user_history.py +55 -0
  113. pyrogram/methods/chats/get_chat.py +87 -0
  114. pyrogram/methods/chats/get_chat_event_log.py +109 -0
  115. pyrogram/methods/chats/get_chat_member.py +92 -0
  116. pyrogram/methods/chats/get_chat_members.py +158 -0
  117. pyrogram/methods/chats/get_chat_members_count.py +69 -0
  118. pyrogram/methods/chats/get_chat_online_count.py +51 -0
  119. pyrogram/methods/chats/get_dialogs.py +104 -0
  120. pyrogram/methods/chats/get_dialogs_count.py +63 -0
  121. pyrogram/methods/chats/get_nearby_chats.py +78 -0
  122. pyrogram/methods/chats/get_send_as_chats.py +65 -0
  123. pyrogram/methods/chats/join_chat.py +74 -0
  124. pyrogram/methods/chats/leave_chat.py +77 -0
  125. pyrogram/methods/chats/mark_chat_unread.py +47 -0
  126. pyrogram/methods/chats/pin_chat_message.py +81 -0
  127. pyrogram/methods/chats/promote_chat_member.py +101 -0
  128. pyrogram/methods/chats/restrict_chat_member.py +99 -0
  129. pyrogram/methods/chats/set_administrator_title.py +85 -0
  130. pyrogram/methods/chats/set_chat_description.py +66 -0
  131. pyrogram/methods/chats/set_chat_permissions.py +87 -0
  132. pyrogram/methods/chats/set_chat_photo.py +121 -0
  133. pyrogram/methods/chats/set_chat_protected_content.py +53 -0
  134. pyrogram/methods/chats/set_chat_title.py +78 -0
  135. pyrogram/methods/chats/set_chat_username.py +68 -0
  136. pyrogram/methods/chats/set_send_as_chat.py +57 -0
  137. pyrogram/methods/chats/set_slow_mode.py +63 -0
  138. pyrogram/methods/chats/unarchive_chats.py +71 -0
  139. pyrogram/methods/chats/unban_chat_member.py +64 -0
  140. pyrogram/methods/chats/unpin_all_chat_messages.py +55 -0
  141. pyrogram/methods/chats/unpin_chat_message.py +61 -0
  142. pyrogram/methods/contacts/__init__.py +33 -0
  143. pyrogram/methods/contacts/add_contact.py +78 -0
  144. pyrogram/methods/contacts/delete_contacts.py +66 -0
  145. pyrogram/methods/contacts/get_contacts.py +47 -0
  146. pyrogram/methods/contacts/get_contacts_count.py +41 -0
  147. pyrogram/methods/contacts/import_contacts.py +58 -0
  148. pyrogram/methods/decorators/__init__.py +47 -0
  149. pyrogram/methods/decorators/on_callback_query.py +61 -0
  150. pyrogram/methods/decorators/on_chat_join_request.py +60 -0
  151. pyrogram/methods/decorators/on_chat_member_updated.py +60 -0
  152. pyrogram/methods/decorators/on_chosen_inline_result.py +61 -0
  153. pyrogram/methods/decorators/on_deleted_messages.py +61 -0
  154. pyrogram/methods/decorators/on_disconnect.py +43 -0
  155. pyrogram/methods/decorators/on_edited_message.py +61 -0
  156. pyrogram/methods/decorators/on_inline_query.py +61 -0
  157. pyrogram/methods/decorators/on_message.py +61 -0
  158. pyrogram/methods/decorators/on_poll.py +61 -0
  159. pyrogram/methods/decorators/on_raw_update.py +55 -0
  160. pyrogram/methods/decorators/on_user_status.py +59 -0
  161. pyrogram/methods/invite_links/__init__.py +58 -0
  162. pyrogram/methods/invite_links/approve_all_chat_join_requests.py +55 -0
  163. pyrogram/methods/invite_links/approve_chat_join_request.py +57 -0
  164. pyrogram/methods/invite_links/create_chat_invite_link.py +87 -0
  165. pyrogram/methods/invite_links/decline_all_chat_join_requests.py +55 -0
  166. pyrogram/methods/invite_links/decline_chat_join_request.py +57 -0
  167. pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
  168. pyrogram/methods/invite_links/delete_chat_invite_link.py +52 -0
  169. pyrogram/methods/invite_links/edit_chat_invite_link.py +92 -0
  170. pyrogram/methods/invite_links/export_chat_invite_link.py +65 -0
  171. pyrogram/methods/invite_links/get_chat_admin_invite_links.py +100 -0
  172. pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
  173. pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +56 -0
  174. pyrogram/methods/invite_links/get_chat_invite_link.py +56 -0
  175. pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +87 -0
  176. pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +56 -0
  177. pyrogram/methods/invite_links/get_chat_join_requests.py +88 -0
  178. pyrogram/methods/invite_links/revoke_chat_invite_link.py +68 -0
  179. pyrogram/methods/messages/__init__.py +119 -0
  180. pyrogram/methods/messages/copy_media_group.py +140 -0
  181. pyrogram/methods/messages/copy_message.py +121 -0
  182. pyrogram/methods/messages/delete_messages.py +84 -0
  183. pyrogram/methods/messages/download_media.py +187 -0
  184. pyrogram/methods/messages/edit_inline_caption.py +65 -0
  185. pyrogram/methods/messages/edit_inline_media.py +244 -0
  186. pyrogram/methods/messages/edit_inline_reply_markup.py +69 -0
  187. pyrogram/methods/messages/edit_inline_text.py +88 -0
  188. pyrogram/methods/messages/edit_message_caption.py +76 -0
  189. pyrogram/methods/messages/edit_message_media.py +287 -0
  190. pyrogram/methods/messages/edit_message_reply_markup.py +77 -0
  191. pyrogram/methods/messages/edit_message_text.py +98 -0
  192. pyrogram/methods/messages/forward_messages.py +110 -0
  193. pyrogram/methods/messages/get_chat_history.py +121 -0
  194. pyrogram/methods/messages/get_chat_history_count.py +72 -0
  195. pyrogram/methods/messages/get_custom_emoji_stickers.py +55 -0
  196. pyrogram/methods/messages/get_discussion_message.py +65 -0
  197. pyrogram/methods/messages/get_discussion_replies.py +86 -0
  198. pyrogram/methods/messages/get_discussion_replies_count.py +62 -0
  199. pyrogram/methods/messages/get_media_group.py +73 -0
  200. pyrogram/methods/messages/get_messages.py +119 -0
  201. pyrogram/methods/messages/inline_session.py +64 -0
  202. pyrogram/methods/messages/read_chat_history.py +73 -0
  203. pyrogram/methods/messages/retract_vote.py +61 -0
  204. pyrogram/methods/messages/search_global.py +117 -0
  205. pyrogram/methods/messages/search_global_count.py +62 -0
  206. pyrogram/methods/messages/search_messages.py +151 -0
  207. pyrogram/methods/messages/search_messages_count.py +84 -0
  208. pyrogram/methods/messages/send_animation.py +271 -0
  209. pyrogram/methods/messages/send_audio.py +242 -0
  210. pyrogram/methods/messages/send_cached_media.py +124 -0
  211. pyrogram/methods/messages/send_chat_action.py +80 -0
  212. pyrogram/methods/messages/send_contact.py +121 -0
  213. pyrogram/methods/messages/send_dice.py +116 -0
  214. pyrogram/methods/messages/send_document.py +220 -0
  215. pyrogram/methods/messages/send_location.py +113 -0
  216. pyrogram/methods/messages/send_media_group.py +417 -0
  217. pyrogram/methods/messages/send_message.py +180 -0
  218. pyrogram/methods/messages/send_photo.py +204 -0
  219. pyrogram/methods/messages/send_poll.py +181 -0
  220. pyrogram/methods/messages/send_reaction.py +73 -0
  221. pyrogram/methods/messages/send_sticker.py +179 -0
  222. pyrogram/methods/messages/send_venue.py +137 -0
  223. pyrogram/methods/messages/send_video.py +261 -0
  224. pyrogram/methods/messages/send_video_note.py +203 -0
  225. pyrogram/methods/messages/send_voice.py +204 -0
  226. pyrogram/methods/messages/stop_poll.py +77 -0
  227. pyrogram/methods/messages/stream_media.py +106 -0
  228. pyrogram/methods/messages/vote_poll.py +69 -0
  229. pyrogram/methods/password/__init__.py +29 -0
  230. pyrogram/methods/password/change_cloud_password.py +82 -0
  231. pyrogram/methods/password/enable_cloud_password.py +88 -0
  232. pyrogram/methods/password/remove_cloud_password.py +64 -0
  233. pyrogram/methods/users/__init__.py +49 -0
  234. pyrogram/methods/users/block_user.py +54 -0
  235. pyrogram/methods/users/delete_profile_photos.py +63 -0
  236. pyrogram/methods/users/get_chat_photos.py +135 -0
  237. pyrogram/methods/users/get_chat_photos_count.py +74 -0
  238. pyrogram/methods/users/get_common_chats.py +67 -0
  239. pyrogram/methods/users/get_default_emoji_statuses.py +47 -0
  240. pyrogram/methods/users/get_me.py +49 -0
  241. pyrogram/methods/users/get_users.py +71 -0
  242. pyrogram/methods/users/set_emoji_status.py +58 -0
  243. pyrogram/methods/users/set_profile_photo.py +75 -0
  244. pyrogram/methods/users/set_username.py +57 -0
  245. pyrogram/methods/users/unblock_user.py +54 -0
  246. pyrogram/methods/users/update_profile.py +72 -0
  247. pyrogram/methods/utilities/__init__.py +39 -0
  248. pyrogram/methods/utilities/add_handler.py +67 -0
  249. pyrogram/methods/utilities/compose.py +78 -0
  250. pyrogram/methods/utilities/export_session_string.py +40 -0
  251. pyrogram/methods/utilities/idle.py +87 -0
  252. pyrogram/methods/utilities/remove_handler.py +63 -0
  253. pyrogram/methods/utilities/restart.py +72 -0
  254. pyrogram/methods/utilities/run.py +86 -0
  255. pyrogram/methods/utilities/start.py +76 -0
  256. pyrogram/methods/utilities/stop.py +69 -0
  257. pyrogram/methods/utilities/stop_transmission.py +43 -0
  258. pyrogram/mime_types.py +1881 -0
  259. pyrogram/parser/__init__.py +19 -0
  260. pyrogram/parser/html.py +243 -0
  261. pyrogram/parser/markdown.py +173 -0
  262. pyrogram/parser/parser.py +61 -0
  263. pyrogram/parser/utils.py +41 -0
  264. pyrogram/py.typed +0 -0
  265. pyrogram/raw/__init__.py +26 -0
  266. pyrogram/raw/all.py +1706 -0
  267. pyrogram/raw/base/__init__.py +310 -0
  268. pyrogram/raw/base/access_point_rule.py +53 -0
  269. pyrogram/raw/base/account/__init__.py +44 -0
  270. pyrogram/raw/base/account/authorization_form.py +63 -0
  271. pyrogram/raw/base/account/authorizations.py +63 -0
  272. pyrogram/raw/base/account/auto_download_settings.py +63 -0
  273. pyrogram/raw/base/account/auto_save_settings.py +63 -0
  274. pyrogram/raw/base/account/content_settings.py +63 -0
  275. pyrogram/raw/base/account/email_verified.py +64 -0
  276. pyrogram/raw/base/account/emoji_statuses.py +65 -0
  277. pyrogram/raw/base/account/password.py +63 -0
  278. pyrogram/raw/base/account/password_input_settings.py +53 -0
  279. pyrogram/raw/base/account/password_settings.py +63 -0
  280. pyrogram/raw/base/account/privacy_rules.py +64 -0
  281. pyrogram/raw/base/account/reset_password_result.py +65 -0
  282. pyrogram/raw/base/account/saved_ringtone.py +64 -0
  283. pyrogram/raw/base/account/saved_ringtones.py +64 -0
  284. pyrogram/raw/base/account/sent_email_code.py +63 -0
  285. pyrogram/raw/base/account/takeout.py +63 -0
  286. pyrogram/raw/base/account/themes.py +65 -0
  287. pyrogram/raw/base/account/tmp_password.py +63 -0
  288. pyrogram/raw/base/account/wall_papers.py +64 -0
  289. pyrogram/raw/base/account/web_authorizations.py +63 -0
  290. pyrogram/raw/base/account_days_ttl.py +63 -0
  291. pyrogram/raw/base/app_web_view_result.py +63 -0
  292. pyrogram/raw/base/attach_menu_bot.py +53 -0
  293. pyrogram/raw/base/attach_menu_bot_icon.py +53 -0
  294. pyrogram/raw/base/attach_menu_bot_icon_color.py +53 -0
  295. pyrogram/raw/base/attach_menu_bots.py +64 -0
  296. pyrogram/raw/base/attach_menu_bots_bot.py +63 -0
  297. pyrogram/raw/base/attach_menu_peer_type.py +57 -0
  298. pyrogram/raw/base/auth/__init__.py +32 -0
  299. pyrogram/raw/base/auth/authorization.py +70 -0
  300. pyrogram/raw/base/auth/code_type.py +57 -0
  301. pyrogram/raw/base/auth/exported_authorization.py +63 -0
  302. pyrogram/raw/base/auth/logged_out.py +63 -0
  303. pyrogram/raw/base/auth/login_token.py +66 -0
  304. pyrogram/raw/base/auth/password_recovery.py +63 -0
  305. pyrogram/raw/base/auth/sent_code.py +69 -0
  306. pyrogram/raw/base/auth/sent_code_type.py +61 -0
  307. pyrogram/raw/base/authorization.py +63 -0
  308. pyrogram/raw/base/auto_download_settings.py +53 -0
  309. pyrogram/raw/base/auto_save_exception.py +53 -0
  310. pyrogram/raw/base/auto_save_settings.py +53 -0
  311. pyrogram/raw/base/available_reaction.py +53 -0
  312. pyrogram/raw/base/bad_msg_notification.py +54 -0
  313. pyrogram/raw/base/bank_card_open_url.py +53 -0
  314. pyrogram/raw/base/base_theme.py +57 -0
  315. pyrogram/raw/base/bind_auth_key_inner.py +53 -0
  316. pyrogram/raw/base/bot_app.py +54 -0
  317. pyrogram/raw/base/bot_command.py +63 -0
  318. pyrogram/raw/base/bot_command_scope.py +59 -0
  319. pyrogram/raw/base/bot_info.py +53 -0
  320. pyrogram/raw/base/bot_inline_message.py +58 -0
  321. pyrogram/raw/base/bot_inline_result.py +54 -0
  322. pyrogram/raw/base/bot_menu_button.py +65 -0
  323. pyrogram/raw/base/bots/__init__.py +25 -0
  324. pyrogram/raw/base/bots/bot_info.py +63 -0
  325. pyrogram/raw/base/cdn_config.py +63 -0
  326. pyrogram/raw/base/cdn_public_key.py +53 -0
  327. pyrogram/raw/base/channel_admin_log_event.py +53 -0
  328. pyrogram/raw/base/channel_admin_log_event_action.py +95 -0
  329. pyrogram/raw/base/channel_admin_log_events_filter.py +53 -0
  330. pyrogram/raw/base/channel_location.py +54 -0
  331. pyrogram/raw/base/channel_messages_filter.py +54 -0
  332. pyrogram/raw/base/channel_participant.py +58 -0
  333. pyrogram/raw/base/channel_participants_filter.py +60 -0
  334. pyrogram/raw/base/channels/__init__.py +28 -0
  335. pyrogram/raw/base/channels/admin_log_results.py +63 -0
  336. pyrogram/raw/base/channels/channel_participant.py +63 -0
  337. pyrogram/raw/base/channels/channel_participants.py +64 -0
  338. pyrogram/raw/base/channels/send_as_peers.py +63 -0
  339. pyrogram/raw/base/chat.py +57 -0
  340. pyrogram/raw/base/chat_admin_rights.py +53 -0
  341. pyrogram/raw/base/chat_admin_with_invites.py +53 -0
  342. pyrogram/raw/base/chat_banned_rights.py +53 -0
  343. pyrogram/raw/base/chat_full.py +54 -0
  344. pyrogram/raw/base/chat_invite.py +65 -0
  345. pyrogram/raw/base/chat_invite_importer.py +53 -0
  346. pyrogram/raw/base/chat_onlines.py +63 -0
  347. pyrogram/raw/base/chat_participant.py +55 -0
  348. pyrogram/raw/base/chat_participants.py +54 -0
  349. pyrogram/raw/base/chat_photo.py +54 -0
  350. pyrogram/raw/base/chat_reactions.py +55 -0
  351. pyrogram/raw/base/chatlists/__init__.py +28 -0
  352. pyrogram/raw/base/chatlists/chatlist_invite.py +64 -0
  353. pyrogram/raw/base/chatlists/chatlist_updates.py +63 -0
  354. pyrogram/raw/base/chatlists/exported_chatlist_invite.py +63 -0
  355. pyrogram/raw/base/chatlists/exported_invites.py +63 -0
  356. pyrogram/raw/base/client_dh_inner_data.py +53 -0
  357. pyrogram/raw/base/code_settings.py +53 -0
  358. pyrogram/raw/base/config.py +63 -0
  359. pyrogram/raw/base/contact.py +53 -0
  360. pyrogram/raw/base/contact_status.py +63 -0
  361. pyrogram/raw/base/contacts/__init__.py +30 -0
  362. pyrogram/raw/base/contacts/blocked.py +64 -0
  363. pyrogram/raw/base/contacts/contacts.py +64 -0
  364. pyrogram/raw/base/contacts/found.py +63 -0
  365. pyrogram/raw/base/contacts/imported_contacts.py +63 -0
  366. pyrogram/raw/base/contacts/resolved_peer.py +64 -0
  367. pyrogram/raw/base/contacts/top_peers.py +65 -0
  368. pyrogram/raw/base/data_json.py +64 -0
  369. pyrogram/raw/base/dc_option.py +53 -0
  370. pyrogram/raw/base/default_history_ttl.py +63 -0
  371. pyrogram/raw/base/destroy_auth_key_res.py +65 -0
  372. pyrogram/raw/base/destroy_session_res.py +64 -0
  373. pyrogram/raw/base/dialog.py +54 -0
  374. pyrogram/raw/base/dialog_filter.py +65 -0
  375. pyrogram/raw/base/dialog_filter_suggested.py +63 -0
  376. pyrogram/raw/base/dialog_peer.py +64 -0
  377. pyrogram/raw/base/document.py +67 -0
  378. pyrogram/raw/base/document_attribute.py +60 -0
  379. pyrogram/raw/base/draft_message.py +54 -0
  380. pyrogram/raw/base/email_verification.py +55 -0
  381. pyrogram/raw/base/email_verify_purpose.py +55 -0
  382. pyrogram/raw/base/emoji_group.py +53 -0
  383. pyrogram/raw/base/emoji_keyword.py +54 -0
  384. pyrogram/raw/base/emoji_keywords_difference.py +64 -0
  385. pyrogram/raw/base/emoji_language.py +63 -0
  386. pyrogram/raw/base/emoji_list.py +66 -0
  387. pyrogram/raw/base/emoji_status.py +55 -0
  388. pyrogram/raw/base/emoji_url.py +63 -0
  389. pyrogram/raw/base/encrypted_chat.py +68 -0
  390. pyrogram/raw/base/encrypted_file.py +64 -0
  391. pyrogram/raw/base/encrypted_message.py +54 -0
  392. pyrogram/raw/base/exported_chat_invite.py +64 -0
  393. pyrogram/raw/base/exported_chatlist_invite.py +63 -0
  394. pyrogram/raw/base/exported_contact_token.py +63 -0
  395. pyrogram/raw/base/exported_message_link.py +63 -0
  396. pyrogram/raw/base/file_hash.py +65 -0
  397. pyrogram/raw/base/folder.py +53 -0
  398. pyrogram/raw/base/folder_peer.py +53 -0
  399. pyrogram/raw/base/forum_topic.py +54 -0
  400. pyrogram/raw/base/game.py +53 -0
  401. pyrogram/raw/base/geo_point.py +54 -0
  402. pyrogram/raw/base/global_privacy_settings.py +64 -0
  403. pyrogram/raw/base/group_call.py +54 -0
  404. pyrogram/raw/base/group_call_participant.py +53 -0
  405. pyrogram/raw/base/group_call_participant_video.py +53 -0
  406. pyrogram/raw/base/group_call_participant_video_source_group.py +53 -0
  407. pyrogram/raw/base/group_call_stream_channel.py +53 -0
  408. pyrogram/raw/base/help/__init__.py +41 -0
  409. pyrogram/raw/base/help/app_config.py +64 -0
  410. pyrogram/raw/base/help/app_update.py +64 -0
  411. pyrogram/raw/base/help/config_simple.py +53 -0
  412. pyrogram/raw/base/help/countries_list.py +64 -0
  413. pyrogram/raw/base/help/country.py +53 -0
  414. pyrogram/raw/base/help/country_code.py +53 -0
  415. pyrogram/raw/base/help/deep_link_info.py +64 -0
  416. pyrogram/raw/base/help/invite_text.py +63 -0
  417. pyrogram/raw/base/help/passport_config.py +64 -0
  418. pyrogram/raw/base/help/premium_promo.py +63 -0
  419. pyrogram/raw/base/help/promo_data.py +64 -0
  420. pyrogram/raw/base/help/recent_me_urls.py +63 -0
  421. pyrogram/raw/base/help/support.py +63 -0
  422. pyrogram/raw/base/help/support_name.py +63 -0
  423. pyrogram/raw/base/help/terms_of_service.py +53 -0
  424. pyrogram/raw/base/help/terms_of_service_update.py +64 -0
  425. pyrogram/raw/base/help/user_info.py +65 -0
  426. pyrogram/raw/base/high_score.py +53 -0
  427. pyrogram/raw/base/http_wait.py +53 -0
  428. pyrogram/raw/base/imported_contact.py +53 -0
  429. pyrogram/raw/base/inline_bot_switch_pm.py +53 -0
  430. pyrogram/raw/base/inline_bot_web_view.py +53 -0
  431. pyrogram/raw/base/inline_query_peer_type.py +58 -0
  432. pyrogram/raw/base/input_app_event.py +53 -0
  433. pyrogram/raw/base/input_bot_app.py +54 -0
  434. pyrogram/raw/base/input_bot_inline_message.py +59 -0
  435. pyrogram/raw/base/input_bot_inline_message_id.py +54 -0
  436. pyrogram/raw/base/input_bot_inline_result.py +56 -0
  437. pyrogram/raw/base/input_channel.py +55 -0
  438. pyrogram/raw/base/input_chat_photo.py +55 -0
  439. pyrogram/raw/base/input_chatlist.py +53 -0
  440. pyrogram/raw/base/input_check_password_srp.py +54 -0
  441. pyrogram/raw/base/input_client_proxy.py +53 -0
  442. pyrogram/raw/base/input_contact.py +53 -0
  443. pyrogram/raw/base/input_dialog_peer.py +54 -0
  444. pyrogram/raw/base/input_document.py +54 -0
  445. pyrogram/raw/base/input_encrypted_chat.py +53 -0
  446. pyrogram/raw/base/input_encrypted_file.py +56 -0
  447. pyrogram/raw/base/input_file.py +54 -0
  448. pyrogram/raw/base/input_file_location.py +62 -0
  449. pyrogram/raw/base/input_folder_peer.py +53 -0
  450. pyrogram/raw/base/input_game.py +54 -0
  451. pyrogram/raw/base/input_geo_point.py +54 -0
  452. pyrogram/raw/base/input_group_call.py +53 -0
  453. pyrogram/raw/base/input_invoice.py +54 -0
  454. pyrogram/raw/base/input_media.py +67 -0
  455. pyrogram/raw/base/input_message.py +56 -0
  456. pyrogram/raw/base/input_notify_peer.py +57 -0
  457. pyrogram/raw/base/input_payment_credentials.py +56 -0
  458. pyrogram/raw/base/input_peer.py +59 -0
  459. pyrogram/raw/base/input_peer_notify_settings.py +53 -0
  460. pyrogram/raw/base/input_phone_call.py +53 -0
  461. pyrogram/raw/base/input_photo.py +54 -0
  462. pyrogram/raw/base/input_privacy_key.py +61 -0
  463. pyrogram/raw/base/input_privacy_rule.py +60 -0
  464. pyrogram/raw/base/input_secure_file.py +54 -0
  465. pyrogram/raw/base/input_secure_value.py +53 -0
  466. pyrogram/raw/base/input_single_media.py +53 -0
  467. pyrogram/raw/base/input_sticker_set.py +62 -0
  468. pyrogram/raw/base/input_sticker_set_item.py +53 -0
  469. pyrogram/raw/base/input_stickered_media.py +54 -0
  470. pyrogram/raw/base/input_store_payment_purpose.py +54 -0
  471. pyrogram/raw/base/input_theme.py +54 -0
  472. pyrogram/raw/base/input_theme_settings.py +53 -0
  473. pyrogram/raw/base/input_user.py +56 -0
  474. pyrogram/raw/base/input_wall_paper.py +55 -0
  475. pyrogram/raw/base/input_web_document.py +53 -0
  476. pyrogram/raw/base/input_web_file_location.py +55 -0
  477. pyrogram/raw/base/invoice.py +53 -0
  478. pyrogram/raw/base/ip_port.py +54 -0
  479. pyrogram/raw/base/json_object_value.py +53 -0
  480. pyrogram/raw/base/json_value.py +58 -0
  481. pyrogram/raw/base/keyboard_button.py +68 -0
  482. pyrogram/raw/base/keyboard_button_row.py +53 -0
  483. pyrogram/raw/base/labeled_price.py +53 -0
  484. pyrogram/raw/base/lang_pack_difference.py +64 -0
  485. pyrogram/raw/base/lang_pack_language.py +64 -0
  486. pyrogram/raw/base/lang_pack_string.py +65 -0
  487. pyrogram/raw/base/mask_coords.py +53 -0
  488. pyrogram/raw/base/message.py +55 -0
  489. pyrogram/raw/base/message_action.py +91 -0
  490. pyrogram/raw/base/message_entity.py +73 -0
  491. pyrogram/raw/base/message_extended_media.py +54 -0
  492. pyrogram/raw/base/message_fwd_header.py +53 -0
  493. pyrogram/raw/base/message_interaction_counters.py +53 -0
  494. pyrogram/raw/base/message_media.py +77 -0
  495. pyrogram/raw/base/message_peer_reaction.py +53 -0
  496. pyrogram/raw/base/message_range.py +63 -0
  497. pyrogram/raw/base/message_reactions.py +53 -0
  498. pyrogram/raw/base/message_replies.py +53 -0
  499. pyrogram/raw/base/message_reply_header.py +53 -0
  500. pyrogram/raw/base/message_user_vote.py +55 -0
  501. pyrogram/raw/base/message_views.py +53 -0
  502. pyrogram/raw/base/messages/__init__.py +72 -0
  503. pyrogram/raw/base/messages/affected_found_messages.py +63 -0
  504. pyrogram/raw/base/messages/affected_history.py +68 -0
  505. pyrogram/raw/base/messages/affected_messages.py +66 -0
  506. pyrogram/raw/base/messages/all_stickers.py +66 -0
  507. pyrogram/raw/base/messages/archived_stickers.py +63 -0
  508. pyrogram/raw/base/messages/available_reactions.py +64 -0
  509. pyrogram/raw/base/messages/bot_app.py +63 -0
  510. pyrogram/raw/base/messages/bot_callback_answer.py +63 -0
  511. pyrogram/raw/base/messages/bot_results.py +63 -0
  512. pyrogram/raw/base/messages/chat_admins_with_invites.py +63 -0
  513. pyrogram/raw/base/messages/chat_full.py +64 -0
  514. pyrogram/raw/base/messages/chat_invite_importers.py +63 -0
  515. pyrogram/raw/base/messages/chats.py +70 -0
  516. pyrogram/raw/base/messages/checked_history_import_peer.py +63 -0
  517. pyrogram/raw/base/messages/dh_config.py +64 -0
  518. pyrogram/raw/base/messages/dialogs.py +65 -0
  519. pyrogram/raw/base/messages/discussion_message.py +63 -0
  520. pyrogram/raw/base/messages/emoji_groups.py +66 -0
  521. pyrogram/raw/base/messages/exported_chat_invite.py +65 -0
  522. pyrogram/raw/base/messages/exported_chat_invites.py +63 -0
  523. pyrogram/raw/base/messages/faved_stickers.py +64 -0
  524. pyrogram/raw/base/messages/featured_stickers.py +66 -0
  525. pyrogram/raw/base/messages/forum_topics.py +64 -0
  526. pyrogram/raw/base/messages/found_sticker_sets.py +64 -0
  527. pyrogram/raw/base/messages/high_scores.py +64 -0
  528. pyrogram/raw/base/messages/history_import.py +63 -0
  529. pyrogram/raw/base/messages/history_import_parsed.py +63 -0
  530. pyrogram/raw/base/messages/inactive_chats.py +63 -0
  531. pyrogram/raw/base/messages/message_edit_data.py +63 -0
  532. pyrogram/raw/base/messages/message_reactions_list.py +63 -0
  533. pyrogram/raw/base/messages/message_views.py +63 -0
  534. pyrogram/raw/base/messages/messages.py +78 -0
  535. pyrogram/raw/base/messages/peer_dialogs.py +64 -0
  536. pyrogram/raw/base/messages/peer_settings.py +63 -0
  537. pyrogram/raw/base/messages/reactions.py +65 -0
  538. pyrogram/raw/base/messages/recent_stickers.py +64 -0
  539. pyrogram/raw/base/messages/saved_gifs.py +64 -0
  540. pyrogram/raw/base/messages/search_counter.py +63 -0
  541. pyrogram/raw/base/messages/search_results_calendar.py +63 -0
  542. pyrogram/raw/base/messages/search_results_positions.py +63 -0
  543. pyrogram/raw/base/messages/sent_encrypted_message.py +66 -0
  544. pyrogram/raw/base/messages/sponsored_messages.py +64 -0
  545. pyrogram/raw/base/messages/sticker_set.py +71 -0
  546. pyrogram/raw/base/messages/sticker_set_install_result.py +64 -0
  547. pyrogram/raw/base/messages/stickers.py +64 -0
  548. pyrogram/raw/base/messages/transcribed_audio.py +63 -0
  549. pyrogram/raw/base/messages/translated_text.py +63 -0
  550. pyrogram/raw/base/messages/votes_list.py +63 -0
  551. pyrogram/raw/base/messages_filter.py +69 -0
  552. pyrogram/raw/base/msg_detailed_info.py +54 -0
  553. pyrogram/raw/base/msg_resend_req.py +54 -0
  554. pyrogram/raw/base/msgs_ack.py +53 -0
  555. pyrogram/raw/base/msgs_all_info.py +53 -0
  556. pyrogram/raw/base/msgs_state_info.py +53 -0
  557. pyrogram/raw/base/msgs_state_req.py +53 -0
  558. pyrogram/raw/base/nearest_dc.py +63 -0
  559. pyrogram/raw/base/new_session.py +53 -0
  560. pyrogram/raw/base/notification_sound.py +56 -0
  561. pyrogram/raw/base/notify_peer.py +57 -0
  562. pyrogram/raw/base/page.py +53 -0
  563. pyrogram/raw/base/page_block.py +81 -0
  564. pyrogram/raw/base/page_caption.py +53 -0
  565. pyrogram/raw/base/page_list_item.py +54 -0
  566. pyrogram/raw/base/page_list_ordered_item.py +54 -0
  567. pyrogram/raw/base/page_related_article.py +53 -0
  568. pyrogram/raw/base/page_table_cell.py +53 -0
  569. pyrogram/raw/base/page_table_row.py +53 -0
  570. pyrogram/raw/base/password_kdf_algo.py +54 -0
  571. pyrogram/raw/base/payment_charge.py +53 -0
  572. pyrogram/raw/base/payment_form_method.py +53 -0
  573. pyrogram/raw/base/payment_requested_info.py +53 -0
  574. pyrogram/raw/base/payment_saved_credentials.py +53 -0
  575. pyrogram/raw/base/payments/__init__.py +31 -0
  576. pyrogram/raw/base/payments/bank_card_data.py +63 -0
  577. pyrogram/raw/base/payments/exported_invoice.py +63 -0
  578. pyrogram/raw/base/payments/payment_form.py +63 -0
  579. pyrogram/raw/base/payments/payment_receipt.py +63 -0
  580. pyrogram/raw/base/payments/payment_result.py +64 -0
  581. pyrogram/raw/base/payments/saved_info.py +63 -0
  582. pyrogram/raw/base/payments/validated_requested_info.py +63 -0
  583. pyrogram/raw/base/peer.py +65 -0
  584. pyrogram/raw/base/peer_blocked.py +53 -0
  585. pyrogram/raw/base/peer_located.py +54 -0
  586. pyrogram/raw/base/peer_notify_settings.py +63 -0
  587. pyrogram/raw/base/peer_settings.py +53 -0
  588. pyrogram/raw/base/phone/__init__.py +31 -0
  589. pyrogram/raw/base/phone/exported_group_call_invite.py +63 -0
  590. pyrogram/raw/base/phone/group_call.py +63 -0
  591. pyrogram/raw/base/phone/group_call_stream_channels.py +63 -0
  592. pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +63 -0
  593. pyrogram/raw/base/phone/group_participants.py +63 -0
  594. pyrogram/raw/base/phone/join_as_peers.py +63 -0
  595. pyrogram/raw/base/phone/phone_call.py +65 -0
  596. pyrogram/raw/base/phone_call.py +58 -0
  597. pyrogram/raw/base/phone_call_discard_reason.py +56 -0
  598. pyrogram/raw/base/phone_call_protocol.py +53 -0
  599. pyrogram/raw/base/phone_connection.py +54 -0
  600. pyrogram/raw/base/photo.py +54 -0
  601. pyrogram/raw/base/photo_size.py +58 -0
  602. pyrogram/raw/base/photos/__init__.py +26 -0
  603. pyrogram/raw/base/photos/photo.py +65 -0
  604. pyrogram/raw/base/photos/photos.py +64 -0
  605. pyrogram/raw/base/poll.py +53 -0
  606. pyrogram/raw/base/poll_answer.py +53 -0
  607. pyrogram/raw/base/poll_answer_voters.py +53 -0
  608. pyrogram/raw/base/poll_results.py +53 -0
  609. pyrogram/raw/base/pong.py +64 -0
  610. pyrogram/raw/base/popular_contact.py +53 -0
  611. pyrogram/raw/base/post_address.py +53 -0
  612. pyrogram/raw/base/pq_inner_data.py +56 -0
  613. pyrogram/raw/base/premium_gift_option.py +53 -0
  614. pyrogram/raw/base/premium_subscription_option.py +53 -0
  615. pyrogram/raw/base/privacy_key.py +61 -0
  616. pyrogram/raw/base/privacy_rule.py +60 -0
  617. pyrogram/raw/base/reaction.py +55 -0
  618. pyrogram/raw/base/reaction_count.py +53 -0
  619. pyrogram/raw/base/read_participant_date.py +63 -0
  620. pyrogram/raw/base/received_notify_message.py +63 -0
  621. pyrogram/raw/base/recent_me_url.py +57 -0
  622. pyrogram/raw/base/reply_markup.py +56 -0
  623. pyrogram/raw/base/report_reason.py +62 -0
  624. pyrogram/raw/base/request_peer_type.py +55 -0
  625. pyrogram/raw/base/res_pq.py +64 -0
  626. pyrogram/raw/base/restriction_reason.py +53 -0
  627. pyrogram/raw/base/rich_text.py +68 -0
  628. pyrogram/raw/base/rpc_drop_answer.py +65 -0
  629. pyrogram/raw/base/rpc_error.py +53 -0
  630. pyrogram/raw/base/rpc_result.py +53 -0
  631. pyrogram/raw/base/saved_contact.py +63 -0
  632. pyrogram/raw/base/search_results_calendar_period.py +53 -0
  633. pyrogram/raw/base/search_results_position.py +53 -0
  634. pyrogram/raw/base/secure_credentials_encrypted.py +53 -0
  635. pyrogram/raw/base/secure_data.py +53 -0
  636. pyrogram/raw/base/secure_file.py +54 -0
  637. pyrogram/raw/base/secure_password_kdf_algo.py +55 -0
  638. pyrogram/raw/base/secure_plain_data.py +54 -0
  639. pyrogram/raw/base/secure_required_type.py +54 -0
  640. pyrogram/raw/base/secure_secret_settings.py +53 -0
  641. pyrogram/raw/base/secure_value.py +65 -0
  642. pyrogram/raw/base/secure_value_error.py +61 -0
  643. pyrogram/raw/base/secure_value_hash.py +53 -0
  644. pyrogram/raw/base/secure_value_type.py +65 -0
  645. pyrogram/raw/base/send_as_peer.py +53 -0
  646. pyrogram/raw/base/send_message_action.py +70 -0
  647. pyrogram/raw/base/server_dh_inner_data.py +53 -0
  648. pyrogram/raw/base/server_dh_params.py +64 -0
  649. pyrogram/raw/base/set_client_dh_params_answer.py +65 -0
  650. pyrogram/raw/base/shipping_option.py +53 -0
  651. pyrogram/raw/base/simple_web_view_result.py +63 -0
  652. pyrogram/raw/base/sponsored_message.py +53 -0
  653. pyrogram/raw/base/stats/__init__.py +27 -0
  654. pyrogram/raw/base/stats/broadcast_stats.py +63 -0
  655. pyrogram/raw/base/stats/megagroup_stats.py +63 -0
  656. pyrogram/raw/base/stats/message_stats.py +63 -0
  657. pyrogram/raw/base/stats_abs_value_and_prev.py +53 -0
  658. pyrogram/raw/base/stats_date_range_days.py +53 -0
  659. pyrogram/raw/base/stats_graph.py +65 -0
  660. pyrogram/raw/base/stats_group_top_admin.py +53 -0
  661. pyrogram/raw/base/stats_group_top_inviter.py +53 -0
  662. pyrogram/raw/base/stats_group_top_poster.py +53 -0
  663. pyrogram/raw/base/stats_percent_value.py +53 -0
  664. pyrogram/raw/base/stats_url.py +53 -0
  665. pyrogram/raw/base/sticker_keyword.py +53 -0
  666. pyrogram/raw/base/sticker_pack.py +53 -0
  667. pyrogram/raw/base/sticker_set.py +53 -0
  668. pyrogram/raw/base/sticker_set_covered.py +66 -0
  669. pyrogram/raw/base/stickers/__init__.py +25 -0
  670. pyrogram/raw/base/stickers/suggested_short_name.py +63 -0
  671. pyrogram/raw/base/storage/__init__.py +25 -0
  672. pyrogram/raw/base/storage/file_type.py +62 -0
  673. pyrogram/raw/base/text_with_entities.py +53 -0
  674. pyrogram/raw/base/theme.py +65 -0
  675. pyrogram/raw/base/theme_settings.py +53 -0
  676. pyrogram/raw/base/top_peer.py +53 -0
  677. pyrogram/raw/base/top_peer_category.py +60 -0
  678. pyrogram/raw/base/top_peer_category_peers.py +53 -0
  679. pyrogram/raw/base/update.py +163 -0
  680. pyrogram/raw/base/updates/__init__.py +27 -0
  681. pyrogram/raw/base/updates/channel_difference.py +65 -0
  682. pyrogram/raw/base/updates/difference.py +66 -0
  683. pyrogram/raw/base/updates/state.py +63 -0
  684. pyrogram/raw/base/updates_t.py +155 -0
  685. pyrogram/raw/base/upload/__init__.py +27 -0
  686. pyrogram/raw/base/upload/cdn_file.py +64 -0
  687. pyrogram/raw/base/upload/file.py +64 -0
  688. pyrogram/raw/base/upload/web_file.py +63 -0
  689. pyrogram/raw/base/url_auth_result.py +66 -0
  690. pyrogram/raw/base/user.py +68 -0
  691. pyrogram/raw/base/user_full.py +53 -0
  692. pyrogram/raw/base/user_profile_photo.py +54 -0
  693. pyrogram/raw/base/user_status.py +58 -0
  694. pyrogram/raw/base/username.py +53 -0
  695. pyrogram/raw/base/users/__init__.py +25 -0
  696. pyrogram/raw/base/users/user_full.py +63 -0
  697. pyrogram/raw/base/video_size.py +55 -0
  698. pyrogram/raw/base/wall_paper.py +66 -0
  699. pyrogram/raw/base/wall_paper_settings.py +53 -0
  700. pyrogram/raw/base/web_authorization.py +53 -0
  701. pyrogram/raw/base/web_document.py +54 -0
  702. pyrogram/raw/base/web_page.py +66 -0
  703. pyrogram/raw/base/web_page_attribute.py +53 -0
  704. pyrogram/raw/base/web_view_message_sent.py +63 -0
  705. pyrogram/raw/base/web_view_result.py +63 -0
  706. pyrogram/raw/core/__init__.py +31 -0
  707. pyrogram/raw/core/future_salt.py +53 -0
  708. pyrogram/raw/core/future_salts.py +63 -0
  709. pyrogram/raw/core/gzip_packed.py +62 -0
  710. pyrogram/raw/core/list.py +26 -0
  711. pyrogram/raw/core/message.py +56 -0
  712. pyrogram/raw/core/msg_container.py +53 -0
  713. pyrogram/raw/core/primitives/__init__.py +24 -0
  714. pyrogram/raw/core/primitives/bool.py +48 -0
  715. pyrogram/raw/core/primitives/bytes.py +55 -0
  716. pyrogram/raw/core/primitives/double.py +32 -0
  717. pyrogram/raw/core/primitives/int.py +45 -0
  718. pyrogram/raw/core/primitives/string.py +31 -0
  719. pyrogram/raw/core/primitives/vector.py +59 -0
  720. pyrogram/raw/core/tl_object.py +82 -0
  721. pyrogram/raw/functions/__init__.py +42 -0
  722. pyrogram/raw/functions/account/__init__.py +111 -0
  723. pyrogram/raw/functions/account/accept_authorization.py +104 -0
  724. pyrogram/raw/functions/account/cancel_password_email.py +67 -0
  725. pyrogram/raw/functions/account/change_authorization_settings.py +92 -0
  726. pyrogram/raw/functions/account/change_phone.py +88 -0
  727. pyrogram/raw/functions/account/check_username.py +72 -0
  728. pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +67 -0
  729. pyrogram/raw/functions/account/confirm_password_email.py +72 -0
  730. pyrogram/raw/functions/account/confirm_phone.py +80 -0
  731. pyrogram/raw/functions/account/create_theme.py +102 -0
  732. pyrogram/raw/functions/account/decline_password_reset.py +67 -0
  733. pyrogram/raw/functions/account/delete_account.py +84 -0
  734. pyrogram/raw/functions/account/delete_auto_save_exceptions.py +67 -0
  735. pyrogram/raw/functions/account/delete_secure_value.py +72 -0
  736. pyrogram/raw/functions/account/finish_takeout_session.py +72 -0
  737. pyrogram/raw/functions/account/get_account_ttl.py +67 -0
  738. pyrogram/raw/functions/account/get_all_secure_values.py +67 -0
  739. pyrogram/raw/functions/account/get_authorization_form.py +88 -0
  740. pyrogram/raw/functions/account/get_authorizations.py +67 -0
  741. pyrogram/raw/functions/account/get_auto_download_settings.py +67 -0
  742. pyrogram/raw/functions/account/get_auto_save_settings.py +67 -0
  743. pyrogram/raw/functions/account/get_chat_themes.py +72 -0
  744. pyrogram/raw/functions/account/get_contact_sign_up_notification.py +67 -0
  745. pyrogram/raw/functions/account/get_content_settings.py +67 -0
  746. pyrogram/raw/functions/account/get_default_emoji_statuses.py +72 -0
  747. pyrogram/raw/functions/account/get_default_group_photo_emojis.py +72 -0
  748. pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +72 -0
  749. pyrogram/raw/functions/account/get_global_privacy_settings.py +67 -0
  750. pyrogram/raw/functions/account/get_multi_wall_papers.py +72 -0
  751. pyrogram/raw/functions/account/get_notify_exceptions.py +82 -0
  752. pyrogram/raw/functions/account/get_notify_settings.py +72 -0
  753. pyrogram/raw/functions/account/get_password.py +67 -0
  754. pyrogram/raw/functions/account/get_password_settings.py +72 -0
  755. pyrogram/raw/functions/account/get_privacy.py +72 -0
  756. pyrogram/raw/functions/account/get_recent_emoji_statuses.py +72 -0
  757. pyrogram/raw/functions/account/get_saved_ringtones.py +72 -0
  758. pyrogram/raw/functions/account/get_secure_value.py +72 -0
  759. pyrogram/raw/functions/account/get_theme.py +80 -0
  760. pyrogram/raw/functions/account/get_themes.py +80 -0
  761. pyrogram/raw/functions/account/get_tmp_password.py +80 -0
  762. pyrogram/raw/functions/account/get_wall_paper.py +72 -0
  763. pyrogram/raw/functions/account/get_wall_papers.py +72 -0
  764. pyrogram/raw/functions/account/get_web_authorizations.py +67 -0
  765. pyrogram/raw/functions/account/init_takeout_session.py +111 -0
  766. pyrogram/raw/functions/account/install_theme.py +101 -0
  767. pyrogram/raw/functions/account/install_wall_paper.py +80 -0
  768. pyrogram/raw/functions/account/register_device.py +112 -0
  769. pyrogram/raw/functions/account/reorder_usernames.py +72 -0
  770. pyrogram/raw/functions/account/report_peer.py +88 -0
  771. pyrogram/raw/functions/account/report_profile_photo.py +96 -0
  772. pyrogram/raw/functions/account/resend_password_email.py +67 -0
  773. pyrogram/raw/functions/account/reset_authorization.py +72 -0
  774. pyrogram/raw/functions/account/reset_notify_settings.py +67 -0
  775. pyrogram/raw/functions/account/reset_password.py +67 -0
  776. pyrogram/raw/functions/account/reset_wall_papers.py +67 -0
  777. pyrogram/raw/functions/account/reset_web_authorization.py +72 -0
  778. pyrogram/raw/functions/account/reset_web_authorizations.py +67 -0
  779. pyrogram/raw/functions/account/save_auto_download_settings.py +86 -0
  780. pyrogram/raw/functions/account/save_auto_save_settings.py +102 -0
  781. pyrogram/raw/functions/account/save_ringtone.py +80 -0
  782. pyrogram/raw/functions/account/save_secure_value.py +80 -0
  783. pyrogram/raw/functions/account/save_theme.py +80 -0
  784. pyrogram/raw/functions/account/save_wall_paper.py +88 -0
  785. pyrogram/raw/functions/account/send_change_phone_code.py +80 -0
  786. pyrogram/raw/functions/account/send_confirm_phone_code.py +80 -0
  787. pyrogram/raw/functions/account/send_verify_email_code.py +80 -0
  788. pyrogram/raw/functions/account/send_verify_phone_code.py +80 -0
  789. pyrogram/raw/functions/account/set_account_ttl.py +72 -0
  790. pyrogram/raw/functions/account/set_authorization_ttl.py +72 -0
  791. pyrogram/raw/functions/account/set_contact_sign_up_notification.py +72 -0
  792. pyrogram/raw/functions/account/set_content_settings.py +72 -0
  793. pyrogram/raw/functions/account/set_global_privacy_settings.py +72 -0
  794. pyrogram/raw/functions/account/set_privacy.py +80 -0
  795. pyrogram/raw/functions/account/toggle_username.py +80 -0
  796. pyrogram/raw/functions/account/unregister_device.py +88 -0
  797. pyrogram/raw/functions/account/update_device_locked.py +72 -0
  798. pyrogram/raw/functions/account/update_emoji_status.py +72 -0
  799. pyrogram/raw/functions/account/update_notify_settings.py +80 -0
  800. pyrogram/raw/functions/account/update_password_settings.py +80 -0
  801. pyrogram/raw/functions/account/update_profile.py +93 -0
  802. pyrogram/raw/functions/account/update_status.py +72 -0
  803. pyrogram/raw/functions/account/update_theme.py +120 -0
  804. pyrogram/raw/functions/account/update_username.py +72 -0
  805. pyrogram/raw/functions/account/upload_ringtone.py +88 -0
  806. pyrogram/raw/functions/account/upload_theme.py +100 -0
  807. pyrogram/raw/functions/account/upload_wall_paper.py +96 -0
  808. pyrogram/raw/functions/account/verify_email.py +80 -0
  809. pyrogram/raw/functions/account/verify_phone.py +88 -0
  810. pyrogram/raw/functions/auth/__init__.py +46 -0
  811. pyrogram/raw/functions/auth/accept_login_token.py +72 -0
  812. pyrogram/raw/functions/auth/bind_temp_auth_key.py +96 -0
  813. pyrogram/raw/functions/auth/cancel_code.py +80 -0
  814. pyrogram/raw/functions/auth/check_password.py +72 -0
  815. pyrogram/raw/functions/auth/check_recovery_password.py +72 -0
  816. pyrogram/raw/functions/auth/drop_temp_auth_keys.py +72 -0
  817. pyrogram/raw/functions/auth/export_authorization.py +72 -0
  818. pyrogram/raw/functions/auth/export_login_token.py +88 -0
  819. pyrogram/raw/functions/auth/import_authorization.py +80 -0
  820. pyrogram/raw/functions/auth/import_bot_authorization.py +96 -0
  821. pyrogram/raw/functions/auth/import_login_token.py +72 -0
  822. pyrogram/raw/functions/auth/import_web_token_authorization.py +88 -0
  823. pyrogram/raw/functions/auth/log_out.py +67 -0
  824. pyrogram/raw/functions/auth/recover_password.py +84 -0
  825. pyrogram/raw/functions/auth/request_firebase_sms.py +100 -0
  826. pyrogram/raw/functions/auth/request_password_recovery.py +67 -0
  827. pyrogram/raw/functions/auth/resend_code.py +80 -0
  828. pyrogram/raw/functions/auth/reset_authorizations.py +67 -0
  829. pyrogram/raw/functions/auth/reset_login_email.py +80 -0
  830. pyrogram/raw/functions/auth/send_code.py +96 -0
  831. pyrogram/raw/functions/auth/sign_in.py +101 -0
  832. pyrogram/raw/functions/auth/sign_up.py +96 -0
  833. pyrogram/raw/functions/bots/__init__.py +37 -0
  834. pyrogram/raw/functions/bots/answer_webhook_json_query.py +80 -0
  835. pyrogram/raw/functions/bots/get_bot_commands.py +80 -0
  836. pyrogram/raw/functions/bots/get_bot_info.py +84 -0
  837. pyrogram/raw/functions/bots/get_bot_menu_button.py +72 -0
  838. pyrogram/raw/functions/bots/reorder_usernames.py +80 -0
  839. pyrogram/raw/functions/bots/reset_bot_commands.py +80 -0
  840. pyrogram/raw/functions/bots/send_custom_request.py +80 -0
  841. pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +72 -0
  842. pyrogram/raw/functions/bots/set_bot_commands.py +88 -0
  843. pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +72 -0
  844. pyrogram/raw/functions/bots/set_bot_info.py +111 -0
  845. pyrogram/raw/functions/bots/set_bot_menu_button.py +80 -0
  846. pyrogram/raw/functions/bots/toggle_username.py +88 -0
  847. pyrogram/raw/functions/channels/__init__.py +79 -0
  848. pyrogram/raw/functions/channels/check_username.py +80 -0
  849. pyrogram/raw/functions/channels/convert_to_gigagroup.py +72 -0
  850. pyrogram/raw/functions/channels/create_channel.py +134 -0
  851. pyrogram/raw/functions/channels/create_forum_topic.py +118 -0
  852. pyrogram/raw/functions/channels/deactivate_all_usernames.py +72 -0
  853. pyrogram/raw/functions/channels/delete_channel.py +72 -0
  854. pyrogram/raw/functions/channels/delete_history.py +88 -0
  855. pyrogram/raw/functions/channels/delete_messages.py +80 -0
  856. pyrogram/raw/functions/channels/delete_participant_history.py +80 -0
  857. pyrogram/raw/functions/channels/delete_topic_history.py +80 -0
  858. pyrogram/raw/functions/channels/edit_admin.py +96 -0
  859. pyrogram/raw/functions/channels/edit_banned.py +88 -0
  860. pyrogram/raw/functions/channels/edit_creator.py +88 -0
  861. pyrogram/raw/functions/channels/edit_forum_topic.py +118 -0
  862. pyrogram/raw/functions/channels/edit_location.py +88 -0
  863. pyrogram/raw/functions/channels/edit_photo.py +80 -0
  864. pyrogram/raw/functions/channels/edit_title.py +80 -0
  865. pyrogram/raw/functions/channels/export_message_link.py +94 -0
  866. pyrogram/raw/functions/channels/get_admin_log.py +126 -0
  867. pyrogram/raw/functions/channels/get_admined_public_channels.py +78 -0
  868. pyrogram/raw/functions/channels/get_channels.py +72 -0
  869. pyrogram/raw/functions/channels/get_forum_topics.py +115 -0
  870. pyrogram/raw/functions/channels/get_forum_topics_by_id.py +80 -0
  871. pyrogram/raw/functions/channels/get_full_channel.py +72 -0
  872. pyrogram/raw/functions/channels/get_groups_for_discussion.py +67 -0
  873. pyrogram/raw/functions/channels/get_inactive_channels.py +67 -0
  874. pyrogram/raw/functions/channels/get_left_channels.py +72 -0
  875. pyrogram/raw/functions/channels/get_messages.py +80 -0
  876. pyrogram/raw/functions/channels/get_participant.py +80 -0
  877. pyrogram/raw/functions/channels/get_participants.py +104 -0
  878. pyrogram/raw/functions/channels/get_send_as.py +72 -0
  879. pyrogram/raw/functions/channels/get_sponsored_messages.py +72 -0
  880. pyrogram/raw/functions/channels/invite_to_channel.py +80 -0
  881. pyrogram/raw/functions/channels/join_channel.py +72 -0
  882. pyrogram/raw/functions/channels/leave_channel.py +72 -0
  883. pyrogram/raw/functions/channels/read_history.py +80 -0
  884. pyrogram/raw/functions/channels/read_message_contents.py +80 -0
  885. pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py +88 -0
  886. pyrogram/raw/functions/channels/reorder_usernames.py +80 -0
  887. pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +80 -0
  888. pyrogram/raw/functions/channels/report_spam.py +88 -0
  889. pyrogram/raw/functions/channels/set_discussion_group.py +80 -0
  890. pyrogram/raw/functions/channels/set_stickers.py +80 -0
  891. pyrogram/raw/functions/channels/toggle_anti_spam.py +80 -0
  892. pyrogram/raw/functions/channels/toggle_forum.py +80 -0
  893. pyrogram/raw/functions/channels/toggle_join_request.py +80 -0
  894. pyrogram/raw/functions/channels/toggle_join_to_send.py +80 -0
  895. pyrogram/raw/functions/channels/toggle_participants_hidden.py +80 -0
  896. pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +80 -0
  897. pyrogram/raw/functions/channels/toggle_signatures.py +80 -0
  898. pyrogram/raw/functions/channels/toggle_slow_mode.py +80 -0
  899. pyrogram/raw/functions/channels/toggle_username.py +88 -0
  900. pyrogram/raw/functions/channels/update_pinned_forum_topic.py +88 -0
  901. pyrogram/raw/functions/channels/update_username.py +80 -0
  902. pyrogram/raw/functions/channels/view_sponsored_message.py +80 -0
  903. pyrogram/raw/functions/chatlists/__init__.py +35 -0
  904. pyrogram/raw/functions/chatlists/check_chatlist_invite.py +72 -0
  905. pyrogram/raw/functions/chatlists/delete_exported_invite.py +80 -0
  906. pyrogram/raw/functions/chatlists/edit_exported_invite.py +101 -0
  907. pyrogram/raw/functions/chatlists/export_chatlist_invite.py +88 -0
  908. pyrogram/raw/functions/chatlists/get_chatlist_updates.py +72 -0
  909. pyrogram/raw/functions/chatlists/get_exported_invites.py +72 -0
  910. pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +72 -0
  911. pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +72 -0
  912. pyrogram/raw/functions/chatlists/join_chatlist_invite.py +80 -0
  913. pyrogram/raw/functions/chatlists/join_chatlist_updates.py +80 -0
  914. pyrogram/raw/functions/chatlists/leave_chatlist.py +80 -0
  915. pyrogram/raw/functions/contacts/__init__.py +47 -0
  916. pyrogram/raw/functions/contacts/accept_contact.py +72 -0
  917. pyrogram/raw/functions/contacts/add_contact.py +104 -0
  918. pyrogram/raw/functions/contacts/block.py +72 -0
  919. pyrogram/raw/functions/contacts/block_from_replies.py +92 -0
  920. pyrogram/raw/functions/contacts/delete_by_phones.py +72 -0
  921. pyrogram/raw/functions/contacts/delete_contacts.py +72 -0
  922. pyrogram/raw/functions/contacts/export_contact_token.py +67 -0
  923. pyrogram/raw/functions/contacts/get_blocked.py +80 -0
  924. pyrogram/raw/functions/contacts/get_contact_i_ds.py +72 -0
  925. pyrogram/raw/functions/contacts/get_contacts.py +72 -0
  926. pyrogram/raw/functions/contacts/get_located.py +89 -0
  927. pyrogram/raw/functions/contacts/get_saved.py +67 -0
  928. pyrogram/raw/functions/contacts/get_statuses.py +67 -0
  929. pyrogram/raw/functions/contacts/get_top_peers.py +138 -0
  930. pyrogram/raw/functions/contacts/import_contact_token.py +72 -0
  931. pyrogram/raw/functions/contacts/import_contacts.py +72 -0
  932. pyrogram/raw/functions/contacts/reset_saved.py +67 -0
  933. pyrogram/raw/functions/contacts/reset_top_peer_rating.py +80 -0
  934. pyrogram/raw/functions/contacts/resolve_phone.py +72 -0
  935. pyrogram/raw/functions/contacts/resolve_username.py +72 -0
  936. pyrogram/raw/functions/contacts/search.py +80 -0
  937. pyrogram/raw/functions/contacts/toggle_top_peers.py +72 -0
  938. pyrogram/raw/functions/contacts/unblock.py +72 -0
  939. pyrogram/raw/functions/contest/__init__.py +25 -0
  940. pyrogram/raw/functions/contest/save_developer_info.py +104 -0
  941. pyrogram/raw/functions/destroy_auth_key.py +67 -0
  942. pyrogram/raw/functions/destroy_session.py +72 -0
  943. pyrogram/raw/functions/folders/__init__.py +25 -0
  944. pyrogram/raw/functions/folders/edit_peer_folders.py +72 -0
  945. pyrogram/raw/functions/get_future_salts.py +72 -0
  946. pyrogram/raw/functions/help/__init__.py +47 -0
  947. pyrogram/raw/functions/help/accept_terms_of_service.py +72 -0
  948. pyrogram/raw/functions/help/dismiss_suggestion.py +80 -0
  949. pyrogram/raw/functions/help/edit_user_info.py +88 -0
  950. pyrogram/raw/functions/help/get_app_changelog.py +72 -0
  951. pyrogram/raw/functions/help/get_app_config.py +72 -0
  952. pyrogram/raw/functions/help/get_app_update.py +72 -0
  953. pyrogram/raw/functions/help/get_cdn_config.py +67 -0
  954. pyrogram/raw/functions/help/get_config.py +67 -0
  955. pyrogram/raw/functions/help/get_countries_list.py +80 -0
  956. pyrogram/raw/functions/help/get_deep_link_info.py +72 -0
  957. pyrogram/raw/functions/help/get_invite_text.py +67 -0
  958. pyrogram/raw/functions/help/get_nearest_dc.py +67 -0
  959. pyrogram/raw/functions/help/get_passport_config.py +72 -0
  960. pyrogram/raw/functions/help/get_premium_promo.py +67 -0
  961. pyrogram/raw/functions/help/get_promo_data.py +67 -0
  962. pyrogram/raw/functions/help/get_recent_me_urls.py +72 -0
  963. pyrogram/raw/functions/help/get_support.py +67 -0
  964. pyrogram/raw/functions/help/get_support_name.py +67 -0
  965. pyrogram/raw/functions/help/get_terms_of_service_update.py +67 -0
  966. pyrogram/raw/functions/help/get_user_info.py +72 -0
  967. pyrogram/raw/functions/help/hide_promo_data.py +72 -0
  968. pyrogram/raw/functions/help/save_app_log.py +72 -0
  969. pyrogram/raw/functions/help/set_bot_updates_status.py +80 -0
  970. pyrogram/raw/functions/init_connection.py +150 -0
  971. pyrogram/raw/functions/invoke_after_msg.py +80 -0
  972. pyrogram/raw/functions/invoke_after_msgs.py +80 -0
  973. pyrogram/raw/functions/invoke_with_layer.py +80 -0
  974. pyrogram/raw/functions/invoke_with_messages_range.py +80 -0
  975. pyrogram/raw/functions/invoke_with_takeout.py +80 -0
  976. pyrogram/raw/functions/invoke_without_updates.py +72 -0
  977. pyrogram/raw/functions/langpack/__init__.py +29 -0
  978. pyrogram/raw/functions/langpack/get_difference.py +88 -0
  979. pyrogram/raw/functions/langpack/get_lang_pack.py +80 -0
  980. pyrogram/raw/functions/langpack/get_language.py +80 -0
  981. pyrogram/raw/functions/langpack/get_languages.py +72 -0
  982. pyrogram/raw/functions/langpack/get_strings.py +88 -0
  983. pyrogram/raw/functions/messages/__init__.py +212 -0
  984. pyrogram/raw/functions/messages/accept_encryption.py +88 -0
  985. pyrogram/raw/functions/messages/accept_url_auth.py +109 -0
  986. pyrogram/raw/functions/messages/add_chat_user.py +88 -0
  987. pyrogram/raw/functions/messages/check_chat_invite.py +72 -0
  988. pyrogram/raw/functions/messages/check_history_import.py +72 -0
  989. pyrogram/raw/functions/messages/check_history_import_peer.py +72 -0
  990. pyrogram/raw/functions/messages/clear_all_drafts.py +67 -0
  991. pyrogram/raw/functions/messages/clear_recent_reactions.py +67 -0
  992. pyrogram/raw/functions/messages/clear_recent_stickers.py +72 -0
  993. pyrogram/raw/functions/messages/create_chat.py +91 -0
  994. pyrogram/raw/functions/messages/delete_chat.py +72 -0
  995. pyrogram/raw/functions/messages/delete_chat_user.py +88 -0
  996. pyrogram/raw/functions/messages/delete_exported_chat_invite.py +80 -0
  997. pyrogram/raw/functions/messages/delete_history.py +112 -0
  998. pyrogram/raw/functions/messages/delete_messages.py +80 -0
  999. pyrogram/raw/functions/messages/delete_phone_call_history.py +72 -0
  1000. pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +80 -0
  1001. pyrogram/raw/functions/messages/delete_scheduled_messages.py +80 -0
  1002. pyrogram/raw/functions/messages/discard_encryption.py +80 -0
  1003. pyrogram/raw/functions/messages/edit_chat_about.py +80 -0
  1004. pyrogram/raw/functions/messages/edit_chat_admin.py +88 -0
  1005. pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +80 -0
  1006. pyrogram/raw/functions/messages/edit_chat_photo.py +80 -0
  1007. pyrogram/raw/functions/messages/edit_chat_title.py +80 -0
  1008. pyrogram/raw/functions/messages/edit_exported_chat_invite.py +124 -0
  1009. pyrogram/raw/functions/messages/edit_inline_bot_message.py +119 -0
  1010. pyrogram/raw/functions/messages/edit_message.py +136 -0
  1011. pyrogram/raw/functions/messages/export_chat_invite.py +113 -0
  1012. pyrogram/raw/functions/messages/fave_sticker.py +80 -0
  1013. pyrogram/raw/functions/messages/forward_messages.py +162 -0
  1014. pyrogram/raw/functions/messages/get_admins_with_invites.py +72 -0
  1015. pyrogram/raw/functions/messages/get_all_chats.py +72 -0
  1016. pyrogram/raw/functions/messages/get_all_drafts.py +67 -0
  1017. pyrogram/raw/functions/messages/get_all_stickers.py +72 -0
  1018. pyrogram/raw/functions/messages/get_archived_stickers.py +94 -0
  1019. pyrogram/raw/functions/messages/get_attach_menu_bot.py +72 -0
  1020. pyrogram/raw/functions/messages/get_attach_menu_bots.py +72 -0
  1021. pyrogram/raw/functions/messages/get_attached_stickers.py +72 -0
  1022. pyrogram/raw/functions/messages/get_available_reactions.py +72 -0
  1023. pyrogram/raw/functions/messages/get_bot_app.py +80 -0
  1024. pyrogram/raw/functions/messages/get_bot_callback_answer.py +107 -0
  1025. pyrogram/raw/functions/messages/get_chat_invite_importers.py +122 -0
  1026. pyrogram/raw/functions/messages/get_chats.py +72 -0
  1027. pyrogram/raw/functions/messages/get_common_chats.py +88 -0
  1028. pyrogram/raw/functions/messages/get_custom_emoji_documents.py +72 -0
  1029. pyrogram/raw/functions/messages/get_default_history_ttl.py +67 -0
  1030. pyrogram/raw/functions/messages/get_dh_config.py +80 -0
  1031. pyrogram/raw/functions/messages/get_dialog_filters.py +67 -0
  1032. pyrogram/raw/functions/messages/get_dialog_unread_marks.py +67 -0
  1033. pyrogram/raw/functions/messages/get_dialogs.py +121 -0
  1034. pyrogram/raw/functions/messages/get_discussion_message.py +80 -0
  1035. pyrogram/raw/functions/messages/get_document_by_hash.py +88 -0
  1036. pyrogram/raw/functions/messages/get_emoji_groups.py +72 -0
  1037. pyrogram/raw/functions/messages/get_emoji_keywords.py +72 -0
  1038. pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +80 -0
  1039. pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +72 -0
  1040. pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +72 -0
  1041. pyrogram/raw/functions/messages/get_emoji_status_groups.py +72 -0
  1042. pyrogram/raw/functions/messages/get_emoji_stickers.py +72 -0
  1043. pyrogram/raw/functions/messages/get_emoji_url.py +72 -0
  1044. pyrogram/raw/functions/messages/get_exported_chat_invite.py +80 -0
  1045. pyrogram/raw/functions/messages/get_exported_chat_invites.py +114 -0
  1046. pyrogram/raw/functions/messages/get_extended_media.py +80 -0
  1047. pyrogram/raw/functions/messages/get_faved_stickers.py +72 -0
  1048. pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +72 -0
  1049. pyrogram/raw/functions/messages/get_featured_stickers.py +72 -0
  1050. pyrogram/raw/functions/messages/get_full_chat.py +72 -0
  1051. pyrogram/raw/functions/messages/get_game_high_scores.py +88 -0
  1052. pyrogram/raw/functions/messages/get_history.py +128 -0
  1053. pyrogram/raw/functions/messages/get_inline_bot_results.py +108 -0
  1054. pyrogram/raw/functions/messages/get_inline_game_high_scores.py +80 -0
  1055. pyrogram/raw/functions/messages/get_mask_stickers.py +72 -0
  1056. pyrogram/raw/functions/messages/get_message_edit_data.py +80 -0
  1057. pyrogram/raw/functions/messages/get_message_reactions_list.py +109 -0
  1058. pyrogram/raw/functions/messages/get_message_read_participants.py +80 -0
  1059. pyrogram/raw/functions/messages/get_messages.py +72 -0
  1060. pyrogram/raw/functions/messages/get_messages_reactions.py +80 -0
  1061. pyrogram/raw/functions/messages/get_messages_views.py +88 -0
  1062. pyrogram/raw/functions/messages/get_old_featured_stickers.py +88 -0
  1063. pyrogram/raw/functions/messages/get_onlines.py +72 -0
  1064. pyrogram/raw/functions/messages/get_peer_dialogs.py +72 -0
  1065. pyrogram/raw/functions/messages/get_peer_settings.py +72 -0
  1066. pyrogram/raw/functions/messages/get_pinned_dialogs.py +72 -0
  1067. pyrogram/raw/functions/messages/get_poll_results.py +80 -0
  1068. pyrogram/raw/functions/messages/get_poll_votes.py +108 -0
  1069. pyrogram/raw/functions/messages/get_recent_locations.py +88 -0
  1070. pyrogram/raw/functions/messages/get_recent_reactions.py +80 -0
  1071. pyrogram/raw/functions/messages/get_recent_stickers.py +80 -0
  1072. pyrogram/raw/functions/messages/get_replies.py +136 -0
  1073. pyrogram/raw/functions/messages/get_saved_gifs.py +72 -0
  1074. pyrogram/raw/functions/messages/get_scheduled_history.py +80 -0
  1075. pyrogram/raw/functions/messages/get_scheduled_messages.py +80 -0
  1076. pyrogram/raw/functions/messages/get_search_counters.py +91 -0
  1077. pyrogram/raw/functions/messages/get_search_results_calendar.py +96 -0
  1078. pyrogram/raw/functions/messages/get_search_results_positions.py +96 -0
  1079. pyrogram/raw/functions/messages/get_split_ranges.py +67 -0
  1080. pyrogram/raw/functions/messages/get_sticker_set.py +80 -0
  1081. pyrogram/raw/functions/messages/get_stickers.py +80 -0
  1082. pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +67 -0
  1083. pyrogram/raw/functions/messages/get_top_reactions.py +80 -0
  1084. pyrogram/raw/functions/messages/get_unread_mentions.py +123 -0
  1085. pyrogram/raw/functions/messages/get_unread_reactions.py +123 -0
  1086. pyrogram/raw/functions/messages/get_web_page.py +80 -0
  1087. pyrogram/raw/functions/messages/get_web_page_preview.py +84 -0
  1088. pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +89 -0
  1089. pyrogram/raw/functions/messages/hide_chat_join_request.py +88 -0
  1090. pyrogram/raw/functions/messages/hide_peer_settings_bar.py +72 -0
  1091. pyrogram/raw/functions/messages/import_chat_invite.py +72 -0
  1092. pyrogram/raw/functions/messages/init_history_import.py +88 -0
  1093. pyrogram/raw/functions/messages/install_sticker_set.py +80 -0
  1094. pyrogram/raw/functions/messages/mark_dialog_unread.py +80 -0
  1095. pyrogram/raw/functions/messages/migrate_chat.py +72 -0
  1096. pyrogram/raw/functions/messages/prolong_web_view.py +124 -0
  1097. pyrogram/raw/functions/messages/rate_transcribed_audio.py +96 -0
  1098. pyrogram/raw/functions/messages/read_discussion.py +88 -0
  1099. pyrogram/raw/functions/messages/read_encrypted_history.py +80 -0
  1100. pyrogram/raw/functions/messages/read_featured_stickers.py +72 -0
  1101. pyrogram/raw/functions/messages/read_history.py +80 -0
  1102. pyrogram/raw/functions/messages/read_mentions.py +83 -0
  1103. pyrogram/raw/functions/messages/read_message_contents.py +72 -0
  1104. pyrogram/raw/functions/messages/read_reactions.py +83 -0
  1105. pyrogram/raw/functions/messages/received_messages.py +72 -0
  1106. pyrogram/raw/functions/messages/received_queue.py +72 -0
  1107. pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +88 -0
  1108. pyrogram/raw/functions/messages/reorder_sticker_sets.py +86 -0
  1109. pyrogram/raw/functions/messages/report.py +96 -0
  1110. pyrogram/raw/functions/messages/report_encrypted_spam.py +72 -0
  1111. pyrogram/raw/functions/messages/report_reaction.py +88 -0
  1112. pyrogram/raw/functions/messages/report_spam.py +72 -0
  1113. pyrogram/raw/functions/messages/request_app_web_view.py +115 -0
  1114. pyrogram/raw/functions/messages/request_encryption.py +88 -0
  1115. pyrogram/raw/functions/messages/request_simple_web_view.py +106 -0
  1116. pyrogram/raw/functions/messages/request_url_auth.py +103 -0
  1117. pyrogram/raw/functions/messages/request_web_view.py +158 -0
  1118. pyrogram/raw/functions/messages/save_default_send_as.py +80 -0
  1119. pyrogram/raw/functions/messages/save_draft.py +116 -0
  1120. pyrogram/raw/functions/messages/save_gif.py +80 -0
  1121. pyrogram/raw/functions/messages/save_recent_sticker.py +88 -0
  1122. pyrogram/raw/functions/messages/search.py +173 -0
  1123. pyrogram/raw/functions/messages/search_custom_emoji.py +80 -0
  1124. pyrogram/raw/functions/messages/search_global.py +139 -0
  1125. pyrogram/raw/functions/messages/search_sent_media.py +88 -0
  1126. pyrogram/raw/functions/messages/search_sticker_sets.py +88 -0
  1127. pyrogram/raw/functions/messages/send_bot_requested_peer.py +96 -0
  1128. pyrogram/raw/functions/messages/send_encrypted.py +96 -0
  1129. pyrogram/raw/functions/messages/send_encrypted_file.py +104 -0
  1130. pyrogram/raw/functions/messages/send_encrypted_service.py +88 -0
  1131. pyrogram/raw/functions/messages/send_inline_bot_result.py +159 -0
  1132. pyrogram/raw/functions/messages/send_media.py +185 -0
  1133. pyrogram/raw/functions/messages/send_message.py +183 -0
  1134. pyrogram/raw/functions/messages/send_multi_media.py +149 -0
  1135. pyrogram/raw/functions/messages/send_reaction.py +104 -0
  1136. pyrogram/raw/functions/messages/send_scheduled_messages.py +80 -0
  1137. pyrogram/raw/functions/messages/send_screenshot_notification.py +88 -0
  1138. pyrogram/raw/functions/messages/send_vote.py +88 -0
  1139. pyrogram/raw/functions/messages/send_web_view_data.py +96 -0
  1140. pyrogram/raw/functions/messages/send_web_view_result_message.py +80 -0
  1141. pyrogram/raw/functions/messages/set_bot_callback_answer.py +106 -0
  1142. pyrogram/raw/functions/messages/set_bot_precheckout_results.py +89 -0
  1143. pyrogram/raw/functions/messages/set_bot_shipping_results.py +93 -0
  1144. pyrogram/raw/functions/messages/set_chat_available_reactions.py +80 -0
  1145. pyrogram/raw/functions/messages/set_chat_theme.py +80 -0
  1146. pyrogram/raw/functions/messages/set_chat_wall_paper.py +103 -0
  1147. pyrogram/raw/functions/messages/set_default_history_ttl.py +72 -0
  1148. pyrogram/raw/functions/messages/set_default_reaction.py +72 -0
  1149. pyrogram/raw/functions/messages/set_encrypted_typing.py +80 -0
  1150. pyrogram/raw/functions/messages/set_game_score.py +110 -0
  1151. pyrogram/raw/functions/messages/set_history_ttl.py +80 -0
  1152. pyrogram/raw/functions/messages/set_inline_bot_results.py +131 -0
  1153. pyrogram/raw/functions/messages/set_inline_game_score.py +102 -0
  1154. pyrogram/raw/functions/messages/set_typing.py +91 -0
  1155. pyrogram/raw/functions/messages/start_bot.py +96 -0
  1156. pyrogram/raw/functions/messages/start_history_import.py +80 -0
  1157. pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +88 -0
  1158. pyrogram/raw/functions/messages/toggle_dialog_pin.py +80 -0
  1159. pyrogram/raw/functions/messages/toggle_no_forwards.py +80 -0
  1160. pyrogram/raw/functions/messages/toggle_peer_translations.py +80 -0
  1161. pyrogram/raw/functions/messages/toggle_sticker_sets.py +92 -0
  1162. pyrogram/raw/functions/messages/transcribe_audio.py +80 -0
  1163. pyrogram/raw/functions/messages/translate_text.py +104 -0
  1164. pyrogram/raw/functions/messages/uninstall_sticker_set.py +72 -0
  1165. pyrogram/raw/functions/messages/unpin_all_messages.py +83 -0
  1166. pyrogram/raw/functions/messages/update_dialog_filter.py +84 -0
  1167. pyrogram/raw/functions/messages/update_dialog_filters_order.py +72 -0
  1168. pyrogram/raw/functions/messages/update_pinned_message.py +100 -0
  1169. pyrogram/raw/functions/messages/upload_encrypted_file.py +80 -0
  1170. pyrogram/raw/functions/messages/upload_imported_media.py +96 -0
  1171. pyrogram/raw/functions/messages/upload_media.py +80 -0
  1172. pyrogram/raw/functions/payments/__init__.py +35 -0
  1173. pyrogram/raw/functions/payments/assign_app_store_transaction.py +80 -0
  1174. pyrogram/raw/functions/payments/assign_play_market_transaction.py +80 -0
  1175. pyrogram/raw/functions/payments/can_purchase_premium.py +72 -0
  1176. pyrogram/raw/functions/payments/clear_saved_info.py +78 -0
  1177. pyrogram/raw/functions/payments/export_invoice.py +72 -0
  1178. pyrogram/raw/functions/payments/get_bank_card_data.py +72 -0
  1179. pyrogram/raw/functions/payments/get_payment_form.py +84 -0
  1180. pyrogram/raw/functions/payments/get_payment_receipt.py +80 -0
  1181. pyrogram/raw/functions/payments/get_saved_info.py +67 -0
  1182. pyrogram/raw/functions/payments/send_payment_form.py +117 -0
  1183. pyrogram/raw/functions/payments/validate_requested_info.py +88 -0
  1184. pyrogram/raw/functions/phone/__init__.py +55 -0
  1185. pyrogram/raw/functions/phone/accept_call.py +88 -0
  1186. pyrogram/raw/functions/phone/check_group_call.py +80 -0
  1187. pyrogram/raw/functions/phone/confirm_call.py +96 -0
  1188. pyrogram/raw/functions/phone/create_group_call.py +106 -0
  1189. pyrogram/raw/functions/phone/discard_call.py +104 -0
  1190. pyrogram/raw/functions/phone/discard_group_call.py +72 -0
  1191. pyrogram/raw/functions/phone/edit_group_call_participant.py +136 -0
  1192. pyrogram/raw/functions/phone/edit_group_call_title.py +80 -0
  1193. pyrogram/raw/functions/phone/export_group_call_invite.py +80 -0
  1194. pyrogram/raw/functions/phone/get_call_config.py +67 -0
  1195. pyrogram/raw/functions/phone/get_group_call.py +80 -0
  1196. pyrogram/raw/functions/phone/get_group_call_join_as.py +72 -0
  1197. pyrogram/raw/functions/phone/get_group_call_stream_channels.py +72 -0
  1198. pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +80 -0
  1199. pyrogram/raw/functions/phone/get_group_participants.py +104 -0
  1200. pyrogram/raw/functions/phone/invite_to_group_call.py +80 -0
  1201. pyrogram/raw/functions/phone/join_group_call.py +111 -0
  1202. pyrogram/raw/functions/phone/join_group_call_presentation.py +80 -0
  1203. pyrogram/raw/functions/phone/leave_group_call.py +80 -0
  1204. pyrogram/raw/functions/phone/leave_group_call_presentation.py +72 -0
  1205. pyrogram/raw/functions/phone/received_call.py +72 -0
  1206. pyrogram/raw/functions/phone/request_call.py +104 -0
  1207. pyrogram/raw/functions/phone/save_call_debug.py +80 -0
  1208. pyrogram/raw/functions/phone/save_call_log.py +80 -0
  1209. pyrogram/raw/functions/phone/save_default_group_call_join_as.py +80 -0
  1210. pyrogram/raw/functions/phone/send_signaling_data.py +80 -0
  1211. pyrogram/raw/functions/phone/set_call_rating.py +96 -0
  1212. pyrogram/raw/functions/phone/start_scheduled_group_call.py +72 -0
  1213. pyrogram/raw/functions/phone/toggle_group_call_record.py +104 -0
  1214. pyrogram/raw/functions/phone/toggle_group_call_settings.py +89 -0
  1215. pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +80 -0
  1216. pyrogram/raw/functions/photos/__init__.py +29 -0
  1217. pyrogram/raw/functions/photos/delete_photos.py +72 -0
  1218. pyrogram/raw/functions/photos/get_user_photos.py +96 -0
  1219. pyrogram/raw/functions/photos/update_profile_photo.py +90 -0
  1220. pyrogram/raw/functions/photos/upload_contact_profile_photo.py +125 -0
  1221. pyrogram/raw/functions/photos/upload_profile_photo.py +121 -0
  1222. pyrogram/raw/functions/ping.py +72 -0
  1223. pyrogram/raw/functions/ping_delay_disconnect.py +80 -0
  1224. pyrogram/raw/functions/req_dh_params.py +112 -0
  1225. pyrogram/raw/functions/req_pq.py +72 -0
  1226. pyrogram/raw/functions/req_pq_multi.py +72 -0
  1227. pyrogram/raw/functions/rpc_drop_answer.py +72 -0
  1228. pyrogram/raw/functions/set_client_dh_params.py +88 -0
  1229. pyrogram/raw/functions/stats/__init__.py +29 -0
  1230. pyrogram/raw/functions/stats/get_broadcast_stats.py +80 -0
  1231. pyrogram/raw/functions/stats/get_megagroup_stats.py +80 -0
  1232. pyrogram/raw/functions/stats/get_message_public_forwards.py +112 -0
  1233. pyrogram/raw/functions/stats/get_message_stats.py +88 -0
  1234. pyrogram/raw/functions/stats/load_async_graph.py +83 -0
  1235. pyrogram/raw/functions/stickers/__init__.py +34 -0
  1236. pyrogram/raw/functions/stickers/add_sticker_to_set.py +80 -0
  1237. pyrogram/raw/functions/stickers/change_sticker.py +102 -0
  1238. pyrogram/raw/functions/stickers/change_sticker_position.py +80 -0
  1239. pyrogram/raw/functions/stickers/check_short_name.py +72 -0
  1240. pyrogram/raw/functions/stickers/create_sticker_set.py +147 -0
  1241. pyrogram/raw/functions/stickers/delete_sticker_set.py +72 -0
  1242. pyrogram/raw/functions/stickers/remove_sticker_from_set.py +72 -0
  1243. pyrogram/raw/functions/stickers/rename_sticker_set.py +80 -0
  1244. pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +93 -0
  1245. pyrogram/raw/functions/stickers/suggest_short_name.py +72 -0
  1246. pyrogram/raw/functions/updates/__init__.py +27 -0
  1247. pyrogram/raw/functions/updates/get_channel_difference.py +104 -0
  1248. pyrogram/raw/functions/updates/get_difference.py +99 -0
  1249. pyrogram/raw/functions/updates/get_state.py +67 -0
  1250. pyrogram/raw/functions/upload/__init__.py +32 -0
  1251. pyrogram/raw/functions/upload/get_cdn_file.py +88 -0
  1252. pyrogram/raw/functions/upload/get_cdn_file_hashes.py +80 -0
  1253. pyrogram/raw/functions/upload/get_file.py +102 -0
  1254. pyrogram/raw/functions/upload/get_file_hashes.py +80 -0
  1255. pyrogram/raw/functions/upload/get_web_file.py +88 -0
  1256. pyrogram/raw/functions/upload/reupload_cdn_file.py +80 -0
  1257. pyrogram/raw/functions/upload/save_big_file_part.py +96 -0
  1258. pyrogram/raw/functions/upload/save_file_part.py +88 -0
  1259. pyrogram/raw/functions/users/__init__.py +27 -0
  1260. pyrogram/raw/functions/users/get_full_user.py +72 -0
  1261. pyrogram/raw/functions/users/get_users.py +72 -0
  1262. pyrogram/raw/functions/users/set_secure_value_errors.py +80 -0
  1263. pyrogram/raw/types/__init__.py +959 -0
  1264. pyrogram/raw/types/access_point_rule.py +88 -0
  1265. pyrogram/raw/types/account/__init__.py +52 -0
  1266. pyrogram/raw/types/account/authorization_form.py +116 -0
  1267. pyrogram/raw/types/account/authorizations.py +89 -0
  1268. pyrogram/raw/types/account/auto_download_settings.py +97 -0
  1269. pyrogram/raw/types/account/auto_save_settings.py +121 -0
  1270. pyrogram/raw/types/account/content_settings.py +87 -0
  1271. pyrogram/raw/types/account/email_verified.py +81 -0
  1272. pyrogram/raw/types/account/email_verified_login.py +89 -0
  1273. pyrogram/raw/types/account/emoji_statuses.py +90 -0
  1274. pyrogram/raw/types/account/emoji_statuses_not_modified.py +77 -0
  1275. pyrogram/raw/types/account/password.py +181 -0
  1276. pyrogram/raw/types/account/password_input_settings.py +113 -0
  1277. pyrogram/raw/types/account/password_settings.py +94 -0
  1278. pyrogram/raw/types/account/privacy_rules.py +98 -0
  1279. pyrogram/raw/types/account/reset_password_failed_wait.py +81 -0
  1280. pyrogram/raw/types/account/reset_password_ok.py +76 -0
  1281. pyrogram/raw/types/account/reset_password_requested_wait.py +81 -0
  1282. pyrogram/raw/types/account/saved_ringtone.py +76 -0
  1283. pyrogram/raw/types/account/saved_ringtone_converted.py +81 -0
  1284. pyrogram/raw/types/account/saved_ringtones.py +89 -0
  1285. pyrogram/raw/types/account/saved_ringtones_not_modified.py +76 -0
  1286. pyrogram/raw/types/account/sent_email_code.py +89 -0
  1287. pyrogram/raw/types/account/takeout.py +81 -0
  1288. pyrogram/raw/types/account/themes.py +90 -0
  1289. pyrogram/raw/types/account/themes_not_modified.py +77 -0
  1290. pyrogram/raw/types/account/tmp_password.py +89 -0
  1291. pyrogram/raw/types/account/wall_papers.py +89 -0
  1292. pyrogram/raw/types/account/wall_papers_not_modified.py +76 -0
  1293. pyrogram/raw/types/account/web_authorizations.py +89 -0
  1294. pyrogram/raw/types/account_days_ttl.py +81 -0
  1295. pyrogram/raw/types/app_web_view_result_url.py +81 -0
  1296. pyrogram/raw/types/attach_menu_bot.py +116 -0
  1297. pyrogram/raw/types/attach_menu_bot_icon.py +92 -0
  1298. pyrogram/raw/types/attach_menu_bot_icon_color.py +80 -0
  1299. pyrogram/raw/types/attach_menu_bots.py +97 -0
  1300. pyrogram/raw/types/attach_menu_bots_bot.py +89 -0
  1301. pyrogram/raw/types/attach_menu_bots_not_modified.py +76 -0
  1302. pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +67 -0
  1303. pyrogram/raw/types/attach_menu_peer_type_broadcast.py +67 -0
  1304. pyrogram/raw/types/attach_menu_peer_type_chat.py +67 -0
  1305. pyrogram/raw/types/attach_menu_peer_type_pm.py +67 -0
  1306. pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +67 -0
  1307. pyrogram/raw/types/auth/__init__.py +48 -0
  1308. pyrogram/raw/types/auth/authorization.py +122 -0
  1309. pyrogram/raw/types/auth/authorization_sign_up_required.py +91 -0
  1310. pyrogram/raw/types/auth/code_type_call.py +67 -0
  1311. pyrogram/raw/types/auth/code_type_flash_call.py +67 -0
  1312. pyrogram/raw/types/auth/code_type_fragment_sms.py +67 -0
  1313. pyrogram/raw/types/auth/code_type_missed_call.py +67 -0
  1314. pyrogram/raw/types/auth/code_type_sms.py +67 -0
  1315. pyrogram/raw/types/auth/exported_authorization.py +89 -0
  1316. pyrogram/raw/types/auth/logged_out.py +84 -0
  1317. pyrogram/raw/types/auth/login_token.py +90 -0
  1318. pyrogram/raw/types/auth/login_token_migrate_to.py +90 -0
  1319. pyrogram/raw/types/auth/login_token_success.py +82 -0
  1320. pyrogram/raw/types/auth/password_recovery.py +81 -0
  1321. pyrogram/raw/types/auth/sent_code.py +115 -0
  1322. pyrogram/raw/types/auth/sent_code_success.py +86 -0
  1323. pyrogram/raw/types/auth/sent_code_type_app.py +72 -0
  1324. pyrogram/raw/types/auth/sent_code_type_call.py +72 -0
  1325. pyrogram/raw/types/auth/sent_code_type_email_code.py +112 -0
  1326. pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +101 -0
  1327. pyrogram/raw/types/auth/sent_code_type_flash_call.py +72 -0
  1328. pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +80 -0
  1329. pyrogram/raw/types/auth/sent_code_type_missed_call.py +80 -0
  1330. pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +78 -0
  1331. pyrogram/raw/types/auth/sent_code_type_sms.py +72 -0
  1332. pyrogram/raw/types/authorization.py +201 -0
  1333. pyrogram/raw/types/auto_download_settings.py +122 -0
  1334. pyrogram/raw/types/auto_save_exception.py +80 -0
  1335. pyrogram/raw/types/auto_save_settings.py +87 -0
  1336. pyrogram/raw/types/available_reaction.py +154 -0
  1337. pyrogram/raw/types/bad_msg_notification.py +88 -0
  1338. pyrogram/raw/types/bad_server_salt.py +96 -0
  1339. pyrogram/raw/types/bank_card_open_url.py +80 -0
  1340. pyrogram/raw/types/base_theme_arctic.py +67 -0
  1341. pyrogram/raw/types/base_theme_classic.py +67 -0
  1342. pyrogram/raw/types/base_theme_day.py +67 -0
  1343. pyrogram/raw/types/base_theme_night.py +67 -0
  1344. pyrogram/raw/types/base_theme_tinted.py +67 -0
  1345. pyrogram/raw/types/bind_auth_key_inner.py +104 -0
  1346. pyrogram/raw/types/bot_app.py +132 -0
  1347. pyrogram/raw/types/bot_app_not_modified.py +67 -0
  1348. pyrogram/raw/types/bot_command.py +89 -0
  1349. pyrogram/raw/types/bot_command_scope_chat_admins.py +67 -0
  1350. pyrogram/raw/types/bot_command_scope_chats.py +67 -0
  1351. pyrogram/raw/types/bot_command_scope_default.py +67 -0
  1352. pyrogram/raw/types/bot_command_scope_peer.py +72 -0
  1353. pyrogram/raw/types/bot_command_scope_peer_admins.py +72 -0
  1354. pyrogram/raw/types/bot_command_scope_peer_user.py +80 -0
  1355. pyrogram/raw/types/bot_command_scope_users.py +67 -0
  1356. pyrogram/raw/types/bot_info.py +124 -0
  1357. pyrogram/raw/types/bot_inline_media_result.py +128 -0
  1358. pyrogram/raw/types/bot_inline_message_media_auto.py +94 -0
  1359. pyrogram/raw/types/bot_inline_message_media_contact.py +108 -0
  1360. pyrogram/raw/types/bot_inline_message_media_geo.py +111 -0
  1361. pyrogram/raw/types/bot_inline_message_media_invoice.py +130 -0
  1362. pyrogram/raw/types/bot_inline_message_media_venue.py +124 -0
  1363. pyrogram/raw/types/bot_inline_message_text.py +100 -0
  1364. pyrogram/raw/types/bot_inline_result.py +137 -0
  1365. pyrogram/raw/types/bot_menu_button.py +89 -0
  1366. pyrogram/raw/types/bot_menu_button_commands.py +76 -0
  1367. pyrogram/raw/types/bot_menu_button_default.py +76 -0
  1368. pyrogram/raw/types/bots/__init__.py +25 -0
  1369. pyrogram/raw/types/bots/bot_info.py +97 -0
  1370. pyrogram/raw/types/cdn_config.py +81 -0
  1371. pyrogram/raw/types/cdn_public_key.py +80 -0
  1372. pyrogram/raw/types/channel.py +299 -0
  1373. pyrogram/raw/types/channel_admin_log_event.py +96 -0
  1374. pyrogram/raw/types/channel_admin_log_event_action_change_about.py +80 -0
  1375. pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +80 -0
  1376. pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +80 -0
  1377. pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +80 -0
  1378. pyrogram/raw/types/channel_admin_log_event_action_change_location.py +80 -0
  1379. pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +80 -0
  1380. pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +80 -0
  1381. pyrogram/raw/types/channel_admin_log_event_action_change_title.py +80 -0
  1382. pyrogram/raw/types/channel_admin_log_event_action_change_username.py +80 -0
  1383. pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +80 -0
  1384. pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +72 -0
  1385. pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +80 -0
  1386. pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +72 -0
  1387. pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +72 -0
  1388. pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +72 -0
  1389. pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +80 -0
  1390. pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +80 -0
  1391. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +72 -0
  1392. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +80 -0
  1393. pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +72 -0
  1394. pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +72 -0
  1395. pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +67 -0
  1396. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +80 -0
  1397. pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +80 -0
  1398. pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +67 -0
  1399. pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +72 -0
  1400. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +80 -0
  1401. pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +80 -0
  1402. pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +72 -0
  1403. pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +72 -0
  1404. pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +86 -0
  1405. pyrogram/raw/types/channel_admin_log_event_action_send_message.py +72 -0
  1406. pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +72 -0
  1407. pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +72 -0
  1408. pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +72 -0
  1409. pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +72 -0
  1410. pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +72 -0
  1411. pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +72 -0
  1412. pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +72 -0
  1413. pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +72 -0
  1414. pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +72 -0
  1415. pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +80 -0
  1416. pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +72 -0
  1417. pyrogram/raw/types/channel_admin_log_events_filter.py +174 -0
  1418. pyrogram/raw/types/channel_forbidden.py +111 -0
  1419. pyrogram/raw/types/channel_full.py +457 -0
  1420. pyrogram/raw/types/channel_location.py +80 -0
  1421. pyrogram/raw/types/channel_location_empty.py +67 -0
  1422. pyrogram/raw/types/channel_messages_filter.py +80 -0
  1423. pyrogram/raw/types/channel_messages_filter_empty.py +67 -0
  1424. pyrogram/raw/types/channel_participant.py +80 -0
  1425. pyrogram/raw/types/channel_participant_admin.py +128 -0
  1426. pyrogram/raw/types/channel_participant_banned.py +104 -0
  1427. pyrogram/raw/types/channel_participant_creator.py +91 -0
  1428. pyrogram/raw/types/channel_participant_left.py +72 -0
  1429. pyrogram/raw/types/channel_participant_self.py +96 -0
  1430. pyrogram/raw/types/channel_participants_admins.py +67 -0
  1431. pyrogram/raw/types/channel_participants_banned.py +72 -0
  1432. pyrogram/raw/types/channel_participants_bots.py +67 -0
  1433. pyrogram/raw/types/channel_participants_contacts.py +72 -0
  1434. pyrogram/raw/types/channel_participants_kicked.py +72 -0
  1435. pyrogram/raw/types/channel_participants_mentions.py +84 -0
  1436. pyrogram/raw/types/channel_participants_recent.py +67 -0
  1437. pyrogram/raw/types/channel_participants_search.py +72 -0
  1438. pyrogram/raw/types/channels/__init__.py +29 -0
  1439. pyrogram/raw/types/channels/admin_log_results.py +97 -0
  1440. pyrogram/raw/types/channels/channel_participant.py +97 -0
  1441. pyrogram/raw/types/channels/channel_participants.py +105 -0
  1442. pyrogram/raw/types/channels/channel_participants_not_modified.py +76 -0
  1443. pyrogram/raw/types/channels/send_as_peers.py +97 -0
  1444. pyrogram/raw/types/chat.py +180 -0
  1445. pyrogram/raw/types/chat_admin_rights.py +138 -0
  1446. pyrogram/raw/types/chat_admin_with_invites.py +88 -0
  1447. pyrogram/raw/types/chat_banned_rights.py +194 -0
  1448. pyrogram/raw/types/chat_empty.py +72 -0
  1449. pyrogram/raw/types/chat_forbidden.py +80 -0
  1450. pyrogram/raw/types/chat_full.py +231 -0
  1451. pyrogram/raw/types/chat_invite.py +148 -0
  1452. pyrogram/raw/types/chat_invite_already.py +81 -0
  1453. pyrogram/raw/types/chat_invite_exported.py +171 -0
  1454. pyrogram/raw/types/chat_invite_importer.py +112 -0
  1455. pyrogram/raw/types/chat_invite_peek.py +89 -0
  1456. pyrogram/raw/types/chat_invite_public_join_requests.py +76 -0
  1457. pyrogram/raw/types/chat_onlines.py +81 -0
  1458. pyrogram/raw/types/chat_participant.py +88 -0
  1459. pyrogram/raw/types/chat_participant_admin.py +88 -0
  1460. pyrogram/raw/types/chat_participant_creator.py +72 -0
  1461. pyrogram/raw/types/chat_participants.py +88 -0
  1462. pyrogram/raw/types/chat_participants_forbidden.py +84 -0
  1463. pyrogram/raw/types/chat_photo.py +97 -0
  1464. pyrogram/raw/types/chat_photo_empty.py +67 -0
  1465. pyrogram/raw/types/chat_reactions_all.py +72 -0
  1466. pyrogram/raw/types/chat_reactions_none.py +67 -0
  1467. pyrogram/raw/types/chat_reactions_some.py +72 -0
  1468. pyrogram/raw/types/chatlists/__init__.py +29 -0
  1469. pyrogram/raw/types/chatlists/chatlist_invite.py +116 -0
  1470. pyrogram/raw/types/chatlists/chatlist_invite_already.py +113 -0
  1471. pyrogram/raw/types/chatlists/chatlist_updates.py +97 -0
  1472. pyrogram/raw/types/chatlists/exported_chatlist_invite.py +89 -0
  1473. pyrogram/raw/types/chatlists/exported_invites.py +97 -0
  1474. pyrogram/raw/types/client_dh_inner_data.py +96 -0
  1475. pyrogram/raw/types/code_settings.py +124 -0
  1476. pyrogram/raw/types/config.py +453 -0
  1477. pyrogram/raw/types/contact.py +80 -0
  1478. pyrogram/raw/types/contact_status.py +89 -0
  1479. pyrogram/raw/types/contacts/__init__.py +34 -0
  1480. pyrogram/raw/types/contacts/blocked.py +97 -0
  1481. pyrogram/raw/types/contacts/blocked_slice.py +105 -0
  1482. pyrogram/raw/types/contacts/contacts.py +97 -0
  1483. pyrogram/raw/types/contacts/contacts_not_modified.py +76 -0
  1484. pyrogram/raw/types/contacts/found.py +105 -0
  1485. pyrogram/raw/types/contacts/imported_contacts.py +105 -0
  1486. pyrogram/raw/types/contacts/resolved_peer.py +98 -0
  1487. pyrogram/raw/types/contacts/top_peers.py +97 -0
  1488. pyrogram/raw/types/contacts/top_peers_disabled.py +76 -0
  1489. pyrogram/raw/types/contacts/top_peers_not_modified.py +76 -0
  1490. pyrogram/raw/types/data_json.py +82 -0
  1491. pyrogram/raw/types/dc_option.py +135 -0
  1492. pyrogram/raw/types/default_history_ttl.py +81 -0
  1493. pyrogram/raw/types/destroy_auth_key_fail.py +76 -0
  1494. pyrogram/raw/types/destroy_auth_key_none.py +76 -0
  1495. pyrogram/raw/types/destroy_auth_key_ok.py +76 -0
  1496. pyrogram/raw/types/destroy_session_none.py +81 -0
  1497. pyrogram/raw/types/destroy_session_ok.py +81 -0
  1498. pyrogram/raw/types/dh_gen_fail.py +97 -0
  1499. pyrogram/raw/types/dh_gen_ok.py +97 -0
  1500. pyrogram/raw/types/dh_gen_retry.py +97 -0
  1501. pyrogram/raw/types/dialog.py +179 -0
  1502. pyrogram/raw/types/dialog_filter.py +172 -0
  1503. pyrogram/raw/types/dialog_filter_chatlist.py +122 -0
  1504. pyrogram/raw/types/dialog_filter_default.py +76 -0
  1505. pyrogram/raw/types/dialog_filter_suggested.py +89 -0
  1506. pyrogram/raw/types/dialog_folder.py +128 -0
  1507. pyrogram/raw/types/dialog_peer.py +81 -0
  1508. pyrogram/raw/types/dialog_peer_folder.py +81 -0
  1509. pyrogram/raw/types/document.py +162 -0
  1510. pyrogram/raw/types/document_attribute_animated.py +67 -0
  1511. pyrogram/raw/types/document_attribute_audio.py +107 -0
  1512. pyrogram/raw/types/document_attribute_custom_emoji.py +94 -0
  1513. pyrogram/raw/types/document_attribute_filename.py +72 -0
  1514. pyrogram/raw/types/document_attribute_has_stickers.py +67 -0
  1515. pyrogram/raw/types/document_attribute_image_size.py +80 -0
  1516. pyrogram/raw/types/document_attribute_sticker.py +98 -0
  1517. pyrogram/raw/types/document_attribute_video.py +102 -0
  1518. pyrogram/raw/types/document_empty.py +84 -0
  1519. pyrogram/raw/types/draft_message.py +107 -0
  1520. pyrogram/raw/types/draft_message_empty.py +75 -0
  1521. pyrogram/raw/types/email_verification_apple.py +72 -0
  1522. pyrogram/raw/types/email_verification_code.py +72 -0
  1523. pyrogram/raw/types/email_verification_google.py +72 -0
  1524. pyrogram/raw/types/email_verify_purpose_login_change.py +67 -0
  1525. pyrogram/raw/types/email_verify_purpose_login_setup.py +80 -0
  1526. pyrogram/raw/types/email_verify_purpose_passport.py +67 -0
  1527. pyrogram/raw/types/emoji_group.py +88 -0
  1528. pyrogram/raw/types/emoji_keyword.py +80 -0
  1529. pyrogram/raw/types/emoji_keyword_deleted.py +80 -0
  1530. pyrogram/raw/types/emoji_keywords_difference.py +106 -0
  1531. pyrogram/raw/types/emoji_language.py +81 -0
  1532. pyrogram/raw/types/emoji_list.py +91 -0
  1533. pyrogram/raw/types/emoji_list_not_modified.py +78 -0
  1534. pyrogram/raw/types/emoji_status.py +72 -0
  1535. pyrogram/raw/types/emoji_status_empty.py +67 -0
  1536. pyrogram/raw/types/emoji_status_until.py +80 -0
  1537. pyrogram/raw/types/emoji_url.py +81 -0
  1538. pyrogram/raw/types/encrypted_chat.py +130 -0
  1539. pyrogram/raw/types/encrypted_chat_discarded.py +90 -0
  1540. pyrogram/raw/types/encrypted_chat_empty.py +82 -0
  1541. pyrogram/raw/types/encrypted_chat_requested.py +133 -0
  1542. pyrogram/raw/types/encrypted_chat_waiting.py +114 -0
  1543. pyrogram/raw/types/encrypted_file.py +113 -0
  1544. pyrogram/raw/types/encrypted_file_empty.py +76 -0
  1545. pyrogram/raw/types/encrypted_message.py +104 -0
  1546. pyrogram/raw/types/encrypted_message_service.py +96 -0
  1547. pyrogram/raw/types/exported_chatlist_invite.py +100 -0
  1548. pyrogram/raw/types/exported_contact_token.py +89 -0
  1549. pyrogram/raw/types/exported_message_link.py +89 -0
  1550. pyrogram/raw/types/file_hash.py +99 -0
  1551. pyrogram/raw/types/folder.py +110 -0
  1552. pyrogram/raw/types/folder_peer.py +80 -0
  1553. pyrogram/raw/types/forum_topic.py +211 -0
  1554. pyrogram/raw/types/forum_topic_deleted.py +72 -0
  1555. pyrogram/raw/types/game.py +124 -0
  1556. pyrogram/raw/types/geo_point.py +99 -0
  1557. pyrogram/raw/types/geo_point_empty.py +67 -0
  1558. pyrogram/raw/types/global_privacy_settings.py +85 -0
  1559. pyrogram/raw/types/group_call.py +199 -0
  1560. pyrogram/raw/types/group_call_discarded.py +88 -0
  1561. pyrogram/raw/types/group_call_participant.py +206 -0
  1562. pyrogram/raw/types/group_call_participant_video.py +97 -0
  1563. pyrogram/raw/types/group_call_participant_video_source_group.py +80 -0
  1564. pyrogram/raw/types/group_call_stream_channel.py +88 -0
  1565. pyrogram/raw/types/help/__init__.py +49 -0
  1566. pyrogram/raw/types/help/app_config.py +89 -0
  1567. pyrogram/raw/types/help/app_config_not_modified.py +76 -0
  1568. pyrogram/raw/types/help/app_update.py +142 -0
  1569. pyrogram/raw/types/help/config_simple.py +88 -0
  1570. pyrogram/raw/types/help/countries_list.py +89 -0
  1571. pyrogram/raw/types/help/countries_list_not_modified.py +76 -0
  1572. pyrogram/raw/types/help/country.py +105 -0
  1573. pyrogram/raw/types/help/country_code.py +94 -0
  1574. pyrogram/raw/types/help/deep_link_info.py +99 -0
  1575. pyrogram/raw/types/help/deep_link_info_empty.py +76 -0
  1576. pyrogram/raw/types/help/invite_text.py +81 -0
  1577. pyrogram/raw/types/help/no_app_update.py +76 -0
  1578. pyrogram/raw/types/help/passport_config.py +89 -0
  1579. pyrogram/raw/types/help/passport_config_not_modified.py +76 -0
  1580. pyrogram/raw/types/help/premium_promo.py +121 -0
  1581. pyrogram/raw/types/help/promo_data.py +131 -0
  1582. pyrogram/raw/types/help/promo_data_empty.py +81 -0
  1583. pyrogram/raw/types/help/recent_me_urls.py +97 -0
  1584. pyrogram/raw/types/help/support.py +89 -0
  1585. pyrogram/raw/types/help/support_name.py +81 -0
  1586. pyrogram/raw/types/help/terms_of_service.py +105 -0
  1587. pyrogram/raw/types/help/terms_of_service_update.py +89 -0
  1588. pyrogram/raw/types/help/terms_of_service_update_empty.py +81 -0
  1589. pyrogram/raw/types/help/user_info.py +106 -0
  1590. pyrogram/raw/types/help/user_info_empty.py +77 -0
  1591. pyrogram/raw/types/high_score.py +88 -0
  1592. pyrogram/raw/types/http_wait.py +88 -0
  1593. pyrogram/raw/types/imported_contact.py +80 -0
  1594. pyrogram/raw/types/inline_bot_switch_pm.py +80 -0
  1595. pyrogram/raw/types/inline_bot_web_view.py +80 -0
  1596. pyrogram/raw/types/inline_query_peer_type_bot_pm.py +67 -0
  1597. pyrogram/raw/types/inline_query_peer_type_broadcast.py +67 -0
  1598. pyrogram/raw/types/inline_query_peer_type_chat.py +67 -0
  1599. pyrogram/raw/types/inline_query_peer_type_megagroup.py +67 -0
  1600. pyrogram/raw/types/inline_query_peer_type_pm.py +67 -0
  1601. pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +67 -0
  1602. pyrogram/raw/types/input_app_event.py +96 -0
  1603. pyrogram/raw/types/input_bot_app_id.py +80 -0
  1604. pyrogram/raw/types/input_bot_app_short_name.py +80 -0
  1605. pyrogram/raw/types/input_bot_inline_message_game.py +76 -0
  1606. pyrogram/raw/types/input_bot_inline_message_id.py +88 -0
  1607. pyrogram/raw/types/input_bot_inline_message_id64.py +96 -0
  1608. pyrogram/raw/types/input_bot_inline_message_media_auto.py +94 -0
  1609. pyrogram/raw/types/input_bot_inline_message_media_contact.py +108 -0
  1610. pyrogram/raw/types/input_bot_inline_message_media_geo.py +111 -0
  1611. pyrogram/raw/types/input_bot_inline_message_media_invoice.py +134 -0
  1612. pyrogram/raw/types/input_bot_inline_message_media_venue.py +124 -0
  1613. pyrogram/raw/types/input_bot_inline_message_text.py +100 -0
  1614. pyrogram/raw/types/input_bot_inline_result.py +137 -0
  1615. pyrogram/raw/types/input_bot_inline_result_document.py +116 -0
  1616. pyrogram/raw/types/input_bot_inline_result_game.py +88 -0
  1617. pyrogram/raw/types/input_bot_inline_result_photo.py +96 -0
  1618. pyrogram/raw/types/input_channel.py +80 -0
  1619. pyrogram/raw/types/input_channel_empty.py +67 -0
  1620. pyrogram/raw/types/input_channel_from_message.py +88 -0
  1621. pyrogram/raw/types/input_chat_photo.py +72 -0
  1622. pyrogram/raw/types/input_chat_photo_empty.py +67 -0
  1623. pyrogram/raw/types/input_chat_uploaded_photo.py +105 -0
  1624. pyrogram/raw/types/input_chatlist_dialog_filter.py +72 -0
  1625. pyrogram/raw/types/input_check_password_empty.py +67 -0
  1626. pyrogram/raw/types/input_check_password_srp.py +88 -0
  1627. pyrogram/raw/types/input_client_proxy.py +80 -0
  1628. pyrogram/raw/types/input_dialog_peer.py +72 -0
  1629. pyrogram/raw/types/input_dialog_peer_folder.py +72 -0
  1630. pyrogram/raw/types/input_document.py +88 -0
  1631. pyrogram/raw/types/input_document_empty.py +67 -0
  1632. pyrogram/raw/types/input_document_file_location.py +96 -0
  1633. pyrogram/raw/types/input_encrypted_chat.py +80 -0
  1634. pyrogram/raw/types/input_encrypted_file.py +80 -0
  1635. pyrogram/raw/types/input_encrypted_file_big_uploaded.py +88 -0
  1636. pyrogram/raw/types/input_encrypted_file_empty.py +67 -0
  1637. pyrogram/raw/types/input_encrypted_file_location.py +80 -0
  1638. pyrogram/raw/types/input_encrypted_file_uploaded.py +96 -0
  1639. pyrogram/raw/types/input_file.py +96 -0
  1640. pyrogram/raw/types/input_file_big.py +88 -0
  1641. pyrogram/raw/types/input_file_location.py +96 -0
  1642. pyrogram/raw/types/input_folder_peer.py +80 -0
  1643. pyrogram/raw/types/input_game_id.py +80 -0
  1644. pyrogram/raw/types/input_game_short_name.py +80 -0
  1645. pyrogram/raw/types/input_geo_point.py +91 -0
  1646. pyrogram/raw/types/input_geo_point_empty.py +67 -0
  1647. pyrogram/raw/types/input_group_call.py +80 -0
  1648. pyrogram/raw/types/input_group_call_stream.py +108 -0
  1649. pyrogram/raw/types/input_invoice_message.py +80 -0
  1650. pyrogram/raw/types/input_invoice_slug.py +72 -0
  1651. pyrogram/raw/types/input_keyboard_button_url_auth.py +105 -0
  1652. pyrogram/raw/types/input_keyboard_button_user_profile.py +80 -0
  1653. pyrogram/raw/types/input_media_contact.py +96 -0
  1654. pyrogram/raw/types/input_media_dice.py +72 -0
  1655. pyrogram/raw/types/input_media_document.py +98 -0
  1656. pyrogram/raw/types/input_media_document_external.py +89 -0
  1657. pyrogram/raw/types/input_media_empty.py +67 -0
  1658. pyrogram/raw/types/input_media_game.py +72 -0
  1659. pyrogram/raw/types/input_media_geo_live.py +107 -0
  1660. pyrogram/raw/types/input_media_geo_point.py +72 -0
  1661. pyrogram/raw/types/input_media_invoice.py +143 -0
  1662. pyrogram/raw/types/input_media_photo.py +89 -0
  1663. pyrogram/raw/types/input_media_photo_external.py +89 -0
  1664. pyrogram/raw/types/input_media_poll.py +103 -0
  1665. pyrogram/raw/types/input_media_uploaded_document.py +137 -0
  1666. pyrogram/raw/types/input_media_uploaded_photo.py +99 -0
  1667. pyrogram/raw/types/input_media_venue.py +112 -0
  1668. pyrogram/raw/types/input_message_callback_query.py +80 -0
  1669. pyrogram/raw/types/input_message_entity_mention_name.py +88 -0
  1670. pyrogram/raw/types/input_message_id.py +72 -0
  1671. pyrogram/raw/types/input_message_pinned.py +67 -0
  1672. pyrogram/raw/types/input_message_reply_to.py +72 -0
  1673. pyrogram/raw/types/input_messages_filter_chat_photos.py +67 -0
  1674. pyrogram/raw/types/input_messages_filter_contacts.py +67 -0
  1675. pyrogram/raw/types/input_messages_filter_document.py +67 -0
  1676. pyrogram/raw/types/input_messages_filter_empty.py +67 -0
  1677. pyrogram/raw/types/input_messages_filter_geo.py +67 -0
  1678. pyrogram/raw/types/input_messages_filter_gif.py +67 -0
  1679. pyrogram/raw/types/input_messages_filter_music.py +67 -0
  1680. pyrogram/raw/types/input_messages_filter_my_mentions.py +67 -0
  1681. pyrogram/raw/types/input_messages_filter_phone_calls.py +72 -0
  1682. pyrogram/raw/types/input_messages_filter_photo_video.py +67 -0
  1683. pyrogram/raw/types/input_messages_filter_photos.py +67 -0
  1684. pyrogram/raw/types/input_messages_filter_pinned.py +67 -0
  1685. pyrogram/raw/types/input_messages_filter_round_video.py +67 -0
  1686. pyrogram/raw/types/input_messages_filter_round_voice.py +67 -0
  1687. pyrogram/raw/types/input_messages_filter_url.py +67 -0
  1688. pyrogram/raw/types/input_messages_filter_video.py +67 -0
  1689. pyrogram/raw/types/input_messages_filter_voice.py +67 -0
  1690. pyrogram/raw/types/input_notify_broadcasts.py +67 -0
  1691. pyrogram/raw/types/input_notify_chats.py +67 -0
  1692. pyrogram/raw/types/input_notify_forum_topic.py +80 -0
  1693. pyrogram/raw/types/input_notify_peer.py +72 -0
  1694. pyrogram/raw/types/input_notify_users.py +67 -0
  1695. pyrogram/raw/types/input_payment_credentials.py +80 -0
  1696. pyrogram/raw/types/input_payment_credentials_apple_pay.py +72 -0
  1697. pyrogram/raw/types/input_payment_credentials_google_pay.py +72 -0
  1698. pyrogram/raw/types/input_payment_credentials_saved.py +80 -0
  1699. pyrogram/raw/types/input_peer_channel.py +80 -0
  1700. pyrogram/raw/types/input_peer_channel_from_message.py +88 -0
  1701. pyrogram/raw/types/input_peer_chat.py +72 -0
  1702. pyrogram/raw/types/input_peer_empty.py +67 -0
  1703. pyrogram/raw/types/input_peer_notify_settings.py +103 -0
  1704. pyrogram/raw/types/input_peer_photo_file_location.py +88 -0
  1705. pyrogram/raw/types/input_peer_self.py +67 -0
  1706. pyrogram/raw/types/input_peer_user.py +80 -0
  1707. pyrogram/raw/types/input_peer_user_from_message.py +88 -0
  1708. pyrogram/raw/types/input_phone_call.py +80 -0
  1709. pyrogram/raw/types/input_phone_contact.py +96 -0
  1710. pyrogram/raw/types/input_photo.py +88 -0
  1711. pyrogram/raw/types/input_photo_empty.py +67 -0
  1712. pyrogram/raw/types/input_photo_file_location.py +96 -0
  1713. pyrogram/raw/types/input_photo_legacy_file_location.py +112 -0
  1714. pyrogram/raw/types/input_privacy_key_added_by_phone.py +67 -0
  1715. pyrogram/raw/types/input_privacy_key_chat_invite.py +67 -0
  1716. pyrogram/raw/types/input_privacy_key_forwards.py +67 -0
  1717. pyrogram/raw/types/input_privacy_key_phone_call.py +67 -0
  1718. pyrogram/raw/types/input_privacy_key_phone_number.py +67 -0
  1719. pyrogram/raw/types/input_privacy_key_phone_p2_p.py +67 -0
  1720. pyrogram/raw/types/input_privacy_key_profile_photo.py +67 -0
  1721. pyrogram/raw/types/input_privacy_key_status_timestamp.py +67 -0
  1722. pyrogram/raw/types/input_privacy_key_voice_messages.py +67 -0
  1723. pyrogram/raw/types/input_privacy_value_allow_all.py +67 -0
  1724. pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +72 -0
  1725. pyrogram/raw/types/input_privacy_value_allow_contacts.py +67 -0
  1726. pyrogram/raw/types/input_privacy_value_allow_users.py +72 -0
  1727. pyrogram/raw/types/input_privacy_value_disallow_all.py +67 -0
  1728. pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +72 -0
  1729. pyrogram/raw/types/input_privacy_value_disallow_contacts.py +67 -0
  1730. pyrogram/raw/types/input_privacy_value_disallow_users.py +72 -0
  1731. pyrogram/raw/types/input_report_reason_child_abuse.py +67 -0
  1732. pyrogram/raw/types/input_report_reason_copyright.py +67 -0
  1733. pyrogram/raw/types/input_report_reason_fake.py +67 -0
  1734. pyrogram/raw/types/input_report_reason_geo_irrelevant.py +67 -0
  1735. pyrogram/raw/types/input_report_reason_illegal_drugs.py +67 -0
  1736. pyrogram/raw/types/input_report_reason_other.py +67 -0
  1737. pyrogram/raw/types/input_report_reason_personal_details.py +67 -0
  1738. pyrogram/raw/types/input_report_reason_pornography.py +67 -0
  1739. pyrogram/raw/types/input_report_reason_spam.py +67 -0
  1740. pyrogram/raw/types/input_report_reason_violence.py +67 -0
  1741. pyrogram/raw/types/input_secure_file.py +80 -0
  1742. pyrogram/raw/types/input_secure_file_location.py +80 -0
  1743. pyrogram/raw/types/input_secure_file_uploaded.py +104 -0
  1744. pyrogram/raw/types/input_secure_value.py +144 -0
  1745. pyrogram/raw/types/input_single_media.py +100 -0
  1746. pyrogram/raw/types/input_sticker_set_animated_emoji.py +67 -0
  1747. pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +67 -0
  1748. pyrogram/raw/types/input_sticker_set_dice.py +72 -0
  1749. pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +67 -0
  1750. pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +67 -0
  1751. pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +67 -0
  1752. pyrogram/raw/types/input_sticker_set_empty.py +67 -0
  1753. pyrogram/raw/types/input_sticker_set_id.py +80 -0
  1754. pyrogram/raw/types/input_sticker_set_item.py +101 -0
  1755. pyrogram/raw/types/input_sticker_set_premium_gifts.py +67 -0
  1756. pyrogram/raw/types/input_sticker_set_short_name.py +72 -0
  1757. pyrogram/raw/types/input_sticker_set_thumb.py +80 -0
  1758. pyrogram/raw/types/input_stickered_media_document.py +72 -0
  1759. pyrogram/raw/types/input_stickered_media_photo.py +72 -0
  1760. pyrogram/raw/types/input_store_payment_gift_premium.py +88 -0
  1761. pyrogram/raw/types/input_store_payment_premium_subscription.py +78 -0
  1762. pyrogram/raw/types/input_takeout_file_location.py +67 -0
  1763. pyrogram/raw/types/input_theme.py +80 -0
  1764. pyrogram/raw/types/input_theme_settings.py +127 -0
  1765. pyrogram/raw/types/input_theme_slug.py +72 -0
  1766. pyrogram/raw/types/input_user.py +80 -0
  1767. pyrogram/raw/types/input_user_empty.py +67 -0
  1768. pyrogram/raw/types/input_user_from_message.py +88 -0
  1769. pyrogram/raw/types/input_user_self.py +67 -0
  1770. pyrogram/raw/types/input_wall_paper.py +80 -0
  1771. pyrogram/raw/types/input_wall_paper_no_file.py +72 -0
  1772. pyrogram/raw/types/input_wall_paper_slug.py +72 -0
  1773. pyrogram/raw/types/input_web_document.py +96 -0
  1774. pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +100 -0
  1775. pyrogram/raw/types/input_web_file_geo_point_location.py +112 -0
  1776. pyrogram/raw/types/input_web_file_location.py +80 -0
  1777. pyrogram/raw/types/invoice.py +164 -0
  1778. pyrogram/raw/types/ip_port.py +80 -0
  1779. pyrogram/raw/types/ip_port_secret.py +88 -0
  1780. pyrogram/raw/types/json_array.py +72 -0
  1781. pyrogram/raw/types/json_bool.py +72 -0
  1782. pyrogram/raw/types/json_null.py +67 -0
  1783. pyrogram/raw/types/json_number.py +72 -0
  1784. pyrogram/raw/types/json_object.py +72 -0
  1785. pyrogram/raw/types/json_object_value.py +80 -0
  1786. pyrogram/raw/types/json_string.py +72 -0
  1787. pyrogram/raw/types/keyboard_button.py +72 -0
  1788. pyrogram/raw/types/keyboard_button_buy.py +72 -0
  1789. pyrogram/raw/types/keyboard_button_callback.py +88 -0
  1790. pyrogram/raw/types/keyboard_button_game.py +72 -0
  1791. pyrogram/raw/types/keyboard_button_request_geo_location.py +72 -0
  1792. pyrogram/raw/types/keyboard_button_request_peer.py +88 -0
  1793. pyrogram/raw/types/keyboard_button_request_phone.py +72 -0
  1794. pyrogram/raw/types/keyboard_button_request_poll.py +83 -0
  1795. pyrogram/raw/types/keyboard_button_row.py +72 -0
  1796. pyrogram/raw/types/keyboard_button_simple_web_view.py +80 -0
  1797. pyrogram/raw/types/keyboard_button_switch_inline.py +98 -0
  1798. pyrogram/raw/types/keyboard_button_url.py +80 -0
  1799. pyrogram/raw/types/keyboard_button_url_auth.py +99 -0
  1800. pyrogram/raw/types/keyboard_button_user_profile.py +80 -0
  1801. pyrogram/raw/types/keyboard_button_web_view.py +80 -0
  1802. pyrogram/raw/types/labeled_price.py +80 -0
  1803. pyrogram/raw/types/lang_pack_difference.py +106 -0
  1804. pyrogram/raw/types/lang_pack_language.py +159 -0
  1805. pyrogram/raw/types/lang_pack_string.py +89 -0
  1806. pyrogram/raw/types/lang_pack_string_deleted.py +81 -0
  1807. pyrogram/raw/types/lang_pack_string_pluralized.py +136 -0
  1808. pyrogram/raw/types/mask_coords.py +96 -0
  1809. pyrogram/raw/types/message.py +311 -0
  1810. pyrogram/raw/types/message_action_bot_allowed.py +91 -0
  1811. pyrogram/raw/types/message_action_channel_create.py +72 -0
  1812. pyrogram/raw/types/message_action_channel_migrate_from.py +80 -0
  1813. pyrogram/raw/types/message_action_chat_add_user.py +72 -0
  1814. pyrogram/raw/types/message_action_chat_create.py +80 -0
  1815. pyrogram/raw/types/message_action_chat_delete_photo.py +67 -0
  1816. pyrogram/raw/types/message_action_chat_delete_user.py +72 -0
  1817. pyrogram/raw/types/message_action_chat_edit_photo.py +72 -0
  1818. pyrogram/raw/types/message_action_chat_edit_title.py +72 -0
  1819. pyrogram/raw/types/message_action_chat_joined_by_link.py +72 -0
  1820. pyrogram/raw/types/message_action_chat_joined_by_request.py +67 -0
  1821. pyrogram/raw/types/message_action_chat_migrate_to.py +72 -0
  1822. pyrogram/raw/types/message_action_contact_sign_up.py +67 -0
  1823. pyrogram/raw/types/message_action_custom_action.py +72 -0
  1824. pyrogram/raw/types/message_action_empty.py +67 -0
  1825. pyrogram/raw/types/message_action_game_score.py +80 -0
  1826. pyrogram/raw/types/message_action_geo_proximity_reached.py +88 -0
  1827. pyrogram/raw/types/message_action_gift_premium.py +108 -0
  1828. pyrogram/raw/types/message_action_group_call.py +83 -0
  1829. pyrogram/raw/types/message_action_group_call_scheduled.py +80 -0
  1830. pyrogram/raw/types/message_action_history_clear.py +67 -0
  1831. pyrogram/raw/types/message_action_invite_to_group_call.py +80 -0
  1832. pyrogram/raw/types/message_action_payment_sent.py +103 -0
  1833. pyrogram/raw/types/message_action_payment_sent_me.py +129 -0
  1834. pyrogram/raw/types/message_action_phone_call.py +99 -0
  1835. pyrogram/raw/types/message_action_pin_message.py +67 -0
  1836. pyrogram/raw/types/message_action_requested_peer.py +80 -0
  1837. pyrogram/raw/types/message_action_screenshot_taken.py +67 -0
  1838. pyrogram/raw/types/message_action_secure_values_sent.py +72 -0
  1839. pyrogram/raw/types/message_action_secure_values_sent_me.py +80 -0
  1840. pyrogram/raw/types/message_action_set_chat_theme.py +72 -0
  1841. pyrogram/raw/types/message_action_set_chat_wall_paper.py +72 -0
  1842. pyrogram/raw/types/message_action_set_messages_ttl.py +83 -0
  1843. pyrogram/raw/types/message_action_set_same_chat_wall_paper.py +72 -0
  1844. pyrogram/raw/types/message_action_suggest_profile_photo.py +72 -0
  1845. pyrogram/raw/types/message_action_topic_create.py +91 -0
  1846. pyrogram/raw/types/message_action_topic_edit.py +102 -0
  1847. pyrogram/raw/types/message_action_web_view_data_sent.py +72 -0
  1848. pyrogram/raw/types/message_action_web_view_data_sent_me.py +80 -0
  1849. pyrogram/raw/types/message_empty.py +84 -0
  1850. pyrogram/raw/types/message_entity_bank_card.py +80 -0
  1851. pyrogram/raw/types/message_entity_blockquote.py +80 -0
  1852. pyrogram/raw/types/message_entity_bold.py +80 -0
  1853. pyrogram/raw/types/message_entity_bot_command.py +80 -0
  1854. pyrogram/raw/types/message_entity_cashtag.py +80 -0
  1855. pyrogram/raw/types/message_entity_code.py +80 -0
  1856. pyrogram/raw/types/message_entity_custom_emoji.py +88 -0
  1857. pyrogram/raw/types/message_entity_email.py +80 -0
  1858. pyrogram/raw/types/message_entity_hashtag.py +80 -0
  1859. pyrogram/raw/types/message_entity_italic.py +80 -0
  1860. pyrogram/raw/types/message_entity_mention.py +80 -0
  1861. pyrogram/raw/types/message_entity_mention_name.py +88 -0
  1862. pyrogram/raw/types/message_entity_phone.py +80 -0
  1863. pyrogram/raw/types/message_entity_pre.py +88 -0
  1864. pyrogram/raw/types/message_entity_spoiler.py +80 -0
  1865. pyrogram/raw/types/message_entity_strike.py +80 -0
  1866. pyrogram/raw/types/message_entity_text_url.py +88 -0
  1867. pyrogram/raw/types/message_entity_underline.py +80 -0
  1868. pyrogram/raw/types/message_entity_unknown.py +80 -0
  1869. pyrogram/raw/types/message_entity_url.py +80 -0
  1870. pyrogram/raw/types/message_extended_media.py +72 -0
  1871. pyrogram/raw/types/message_extended_media_preview.py +103 -0
  1872. pyrogram/raw/types/message_fwd_header.py +145 -0
  1873. pyrogram/raw/types/message_interaction_counters.py +88 -0
  1874. pyrogram/raw/types/message_media_contact.py +115 -0
  1875. pyrogram/raw/types/message_media_dice.py +91 -0
  1876. pyrogram/raw/types/message_media_document.py +108 -0
  1877. pyrogram/raw/types/message_media_empty.py +78 -0
  1878. pyrogram/raw/types/message_media_game.py +83 -0
  1879. pyrogram/raw/types/message_media_geo.py +83 -0
  1880. pyrogram/raw/types/message_media_geo_live.py +111 -0
  1881. pyrogram/raw/types/message_media_invoice.py +158 -0
  1882. pyrogram/raw/types/message_media_photo.py +102 -0
  1883. pyrogram/raw/types/message_media_poll.py +91 -0
  1884. pyrogram/raw/types/message_media_unsupported.py +78 -0
  1885. pyrogram/raw/types/message_media_venue.py +123 -0
  1886. pyrogram/raw/types/message_media_web_page.py +83 -0
  1887. pyrogram/raw/types/message_peer_reaction.py +102 -0
  1888. pyrogram/raw/types/message_range.py +89 -0
  1889. pyrogram/raw/types/message_reactions.py +96 -0
  1890. pyrogram/raw/types/message_replies.py +125 -0
  1891. pyrogram/raw/types/message_reply_header.py +105 -0
  1892. pyrogram/raw/types/message_service.py +163 -0
  1893. pyrogram/raw/types/message_user_vote.py +88 -0
  1894. pyrogram/raw/types/message_user_vote_input_option.py +80 -0
  1895. pyrogram/raw/types/message_user_vote_multiple.py +88 -0
  1896. pyrogram/raw/types/message_views.py +94 -0
  1897. pyrogram/raw/types/messages/__init__.py +94 -0
  1898. pyrogram/raw/types/messages/affected_found_messages.py +105 -0
  1899. pyrogram/raw/types/messages/affected_history.py +102 -0
  1900. pyrogram/raw/types/messages/affected_messages.py +92 -0
  1901. pyrogram/raw/types/messages/all_stickers.py +91 -0
  1902. pyrogram/raw/types/messages/all_stickers_not_modified.py +78 -0
  1903. pyrogram/raw/types/messages/archived_stickers.py +89 -0
  1904. pyrogram/raw/types/messages/available_reactions.py +89 -0
  1905. pyrogram/raw/types/messages/available_reactions_not_modified.py +76 -0
  1906. pyrogram/raw/types/messages/bot_app.py +95 -0
  1907. pyrogram/raw/types/messages/bot_callback_answer.py +119 -0
  1908. pyrogram/raw/types/messages/bot_results.py +142 -0
  1909. pyrogram/raw/types/messages/channel_messages.py +150 -0
  1910. pyrogram/raw/types/messages/chat_admins_with_invites.py +89 -0
  1911. pyrogram/raw/types/messages/chat_full.py +98 -0
  1912. pyrogram/raw/types/messages/chat_invite_importers.py +97 -0
  1913. pyrogram/raw/types/messages/chats.py +87 -0
  1914. pyrogram/raw/types/messages/chats_slice.py +95 -0
  1915. pyrogram/raw/types/messages/checked_history_import_peer.py +81 -0
  1916. pyrogram/raw/types/messages/dh_config.py +105 -0
  1917. pyrogram/raw/types/messages/dh_config_not_modified.py +81 -0
  1918. pyrogram/raw/types/messages/dialogs.py +105 -0
  1919. pyrogram/raw/types/messages/dialogs_not_modified.py +81 -0
  1920. pyrogram/raw/types/messages/dialogs_slice.py +113 -0
  1921. pyrogram/raw/types/messages/discussion_message.py +134 -0
  1922. pyrogram/raw/types/messages/emoji_groups.py +91 -0
  1923. pyrogram/raw/types/messages/emoji_groups_not_modified.py +78 -0
  1924. pyrogram/raw/types/messages/exported_chat_invite.py +90 -0
  1925. pyrogram/raw/types/messages/exported_chat_invite_replaced.py +98 -0
  1926. pyrogram/raw/types/messages/exported_chat_invites.py +97 -0
  1927. pyrogram/raw/types/messages/faved_stickers.py +97 -0
  1928. pyrogram/raw/types/messages/faved_stickers_not_modified.py +76 -0
  1929. pyrogram/raw/types/messages/featured_stickers.py +115 -0
  1930. pyrogram/raw/types/messages/featured_stickers_not_modified.py +83 -0
  1931. pyrogram/raw/types/messages/forum_topics.py +130 -0
  1932. pyrogram/raw/types/messages/found_sticker_sets.py +89 -0
  1933. pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +76 -0
  1934. pyrogram/raw/types/messages/high_scores.py +90 -0
  1935. pyrogram/raw/types/messages/history_import.py +81 -0
  1936. pyrogram/raw/types/messages/history_import_parsed.py +96 -0
  1937. pyrogram/raw/types/messages/inactive_chats.py +97 -0
  1938. pyrogram/raw/types/messages/message_edit_data.py +81 -0
  1939. pyrogram/raw/types/messages/message_reactions_list.py +116 -0
  1940. pyrogram/raw/types/messages/message_views.py +97 -0
  1941. pyrogram/raw/types/messages/messages.py +109 -0
  1942. pyrogram/raw/types/messages/messages_not_modified.py +93 -0
  1943. pyrogram/raw/types/messages/messages_slice.py +143 -0
  1944. pyrogram/raw/types/messages/peer_dialogs.py +114 -0
  1945. pyrogram/raw/types/messages/peer_settings.py +97 -0
  1946. pyrogram/raw/types/messages/reactions.py +90 -0
  1947. pyrogram/raw/types/messages/reactions_not_modified.py +77 -0
  1948. pyrogram/raw/types/messages/recent_stickers.py +105 -0
  1949. pyrogram/raw/types/messages/recent_stickers_not_modified.py +76 -0
  1950. pyrogram/raw/types/messages/saved_gifs.py +89 -0
  1951. pyrogram/raw/types/messages/saved_gifs_not_modified.py +76 -0
  1952. pyrogram/raw/types/messages/search_counter.py +97 -0
  1953. pyrogram/raw/types/messages/search_results_calendar.py +146 -0
  1954. pyrogram/raw/types/messages/search_results_positions.py +89 -0
  1955. pyrogram/raw/types/messages/sent_encrypted_file.py +91 -0
  1956. pyrogram/raw/types/messages/sent_encrypted_message.py +83 -0
  1957. pyrogram/raw/types/messages/sponsored_messages.py +108 -0
  1958. pyrogram/raw/types/messages/sponsored_messages_empty.py +76 -0
  1959. pyrogram/raw/types/messages/sticker_set.py +112 -0
  1960. pyrogram/raw/types/messages/sticker_set_install_result_archive.py +81 -0
  1961. pyrogram/raw/types/messages/sticker_set_install_result_success.py +76 -0
  1962. pyrogram/raw/types/messages/sticker_set_not_modified.py +83 -0
  1963. pyrogram/raw/types/messages/stickers.py +89 -0
  1964. pyrogram/raw/types/messages/stickers_not_modified.py +76 -0
  1965. pyrogram/raw/types/messages/transcribed_audio.py +97 -0
  1966. pyrogram/raw/types/messages/translate_result.py +81 -0
  1967. pyrogram/raw/types/messages/votes_list.py +108 -0
  1968. pyrogram/raw/types/msg_detailed_info.py +96 -0
  1969. pyrogram/raw/types/msg_new_detailed_info.py +88 -0
  1970. pyrogram/raw/types/msg_resend_ans_req.py +72 -0
  1971. pyrogram/raw/types/msg_resend_req.py +72 -0
  1972. pyrogram/raw/types/msgs_ack.py +72 -0
  1973. pyrogram/raw/types/msgs_all_info.py +80 -0
  1974. pyrogram/raw/types/msgs_state_info.py +80 -0
  1975. pyrogram/raw/types/msgs_state_req.py +72 -0
  1976. pyrogram/raw/types/nearest_dc.py +97 -0
  1977. pyrogram/raw/types/new_session_created.py +88 -0
  1978. pyrogram/raw/types/notification_sound_default.py +67 -0
  1979. pyrogram/raw/types/notification_sound_local.py +80 -0
  1980. pyrogram/raw/types/notification_sound_none.py +67 -0
  1981. pyrogram/raw/types/notification_sound_ringtone.py +72 -0
  1982. pyrogram/raw/types/notify_broadcasts.py +67 -0
  1983. pyrogram/raw/types/notify_chats.py +67 -0
  1984. pyrogram/raw/types/notify_forum_topic.py +80 -0
  1985. pyrogram/raw/types/notify_peer.py +72 -0
  1986. pyrogram/raw/types/notify_users.py +67 -0
  1987. pyrogram/raw/types/page.py +125 -0
  1988. pyrogram/raw/types/page_block_anchor.py +72 -0
  1989. pyrogram/raw/types/page_block_audio.py +80 -0
  1990. pyrogram/raw/types/page_block_author_date.py +80 -0
  1991. pyrogram/raw/types/page_block_blockquote.py +80 -0
  1992. pyrogram/raw/types/page_block_channel.py +72 -0
  1993. pyrogram/raw/types/page_block_collage.py +80 -0
  1994. pyrogram/raw/types/page_block_cover.py +72 -0
  1995. pyrogram/raw/types/page_block_details.py +88 -0
  1996. pyrogram/raw/types/page_block_divider.py +67 -0
  1997. pyrogram/raw/types/page_block_embed.py +131 -0
  1998. pyrogram/raw/types/page_block_embed_post.py +120 -0
  1999. pyrogram/raw/types/page_block_footer.py +72 -0
  2000. pyrogram/raw/types/page_block_header.py +72 -0
  2001. pyrogram/raw/types/page_block_kicker.py +72 -0
  2002. pyrogram/raw/types/page_block_list.py +72 -0
  2003. pyrogram/raw/types/page_block_map.py +104 -0
  2004. pyrogram/raw/types/page_block_ordered_list.py +72 -0
  2005. pyrogram/raw/types/page_block_paragraph.py +72 -0
  2006. pyrogram/raw/types/page_block_photo.py +100 -0
  2007. pyrogram/raw/types/page_block_preformatted.py +80 -0
  2008. pyrogram/raw/types/page_block_pullquote.py +80 -0
  2009. pyrogram/raw/types/page_block_related_articles.py +80 -0
  2010. pyrogram/raw/types/page_block_slideshow.py +80 -0
  2011. pyrogram/raw/types/page_block_subheader.py +72 -0
  2012. pyrogram/raw/types/page_block_subtitle.py +72 -0
  2013. pyrogram/raw/types/page_block_table.py +94 -0
  2014. pyrogram/raw/types/page_block_title.py +72 -0
  2015. pyrogram/raw/types/page_block_unsupported.py +67 -0
  2016. pyrogram/raw/types/page_block_video.py +94 -0
  2017. pyrogram/raw/types/page_caption.py +80 -0
  2018. pyrogram/raw/types/page_list_item_blocks.py +72 -0
  2019. pyrogram/raw/types/page_list_item_text.py +72 -0
  2020. pyrogram/raw/types/page_list_ordered_item_blocks.py +80 -0
  2021. pyrogram/raw/types/page_list_ordered_item_text.py +80 -0
  2022. pyrogram/raw/types/page_related_article.py +127 -0
  2023. pyrogram/raw/types/page_table_cell.py +124 -0
  2024. pyrogram/raw/types/page_table_row.py +72 -0
  2025. pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +96 -0
  2026. pyrogram/raw/types/password_kdf_algo_unknown.py +67 -0
  2027. pyrogram/raw/types/payment_charge.py +80 -0
  2028. pyrogram/raw/types/payment_form_method.py +80 -0
  2029. pyrogram/raw/types/payment_requested_info.py +103 -0
  2030. pyrogram/raw/types/payment_saved_credentials_card.py +80 -0
  2031. pyrogram/raw/types/payments/__init__.py +32 -0
  2032. pyrogram/raw/types/payments/bank_card_data.py +89 -0
  2033. pyrogram/raw/types/payments/exported_invoice.py +81 -0
  2034. pyrogram/raw/types/payments/payment_form.py +210 -0
  2035. pyrogram/raw/types/payments/payment_receipt.py +194 -0
  2036. pyrogram/raw/types/payments/payment_result.py +81 -0
  2037. pyrogram/raw/types/payments/payment_verification_needed.py +81 -0
  2038. pyrogram/raw/types/payments/saved_info.py +91 -0
  2039. pyrogram/raw/types/payments/validated_requested_info.py +94 -0
  2040. pyrogram/raw/types/peer_blocked.py +80 -0
  2041. pyrogram/raw/types/peer_channel.py +81 -0
  2042. pyrogram/raw/types/peer_chat.py +81 -0
  2043. pyrogram/raw/types/peer_located.py +88 -0
  2044. pyrogram/raw/types/peer_notify_settings.py +132 -0
  2045. pyrogram/raw/types/peer_self_located.py +72 -0
  2046. pyrogram/raw/types/peer_settings.py +147 -0
  2047. pyrogram/raw/types/peer_user.py +81 -0
  2048. pyrogram/raw/types/phone/__init__.py +31 -0
  2049. pyrogram/raw/types/phone/exported_group_call_invite.py +81 -0
  2050. pyrogram/raw/types/phone/group_call.py +113 -0
  2051. pyrogram/raw/types/phone/group_call_stream_channels.py +81 -0
  2052. pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +89 -0
  2053. pyrogram/raw/types/phone/group_participants.py +121 -0
  2054. pyrogram/raw/types/phone/join_as_peers.py +97 -0
  2055. pyrogram/raw/types/phone/phone_call.py +91 -0
  2056. pyrogram/raw/types/phone_call.py +158 -0
  2057. pyrogram/raw/types/phone_call_accepted.py +128 -0
  2058. pyrogram/raw/types/phone_call_discard_reason_busy.py +67 -0
  2059. pyrogram/raw/types/phone_call_discard_reason_disconnect.py +67 -0
  2060. pyrogram/raw/types/phone_call_discard_reason_hangup.py +67 -0
  2061. pyrogram/raw/types/phone_call_discard_reason_missed.py +67 -0
  2062. pyrogram/raw/types/phone_call_discarded.py +111 -0
  2063. pyrogram/raw/types/phone_call_empty.py +72 -0
  2064. pyrogram/raw/types/phone_call_protocol.py +102 -0
  2065. pyrogram/raw/types/phone_call_requested.py +128 -0
  2066. pyrogram/raw/types/phone_call_waiting.py +129 -0
  2067. pyrogram/raw/types/phone_connection.py +112 -0
  2068. pyrogram/raw/types/phone_connection_webrtc.py +126 -0
  2069. pyrogram/raw/types/photo.py +130 -0
  2070. pyrogram/raw/types/photo_cached_size.py +96 -0
  2071. pyrogram/raw/types/photo_empty.py +72 -0
  2072. pyrogram/raw/types/photo_path_size.py +80 -0
  2073. pyrogram/raw/types/photo_size.py +96 -0
  2074. pyrogram/raw/types/photo_size_empty.py +72 -0
  2075. pyrogram/raw/types/photo_size_progressive.py +96 -0
  2076. pyrogram/raw/types/photo_stripped_size.py +80 -0
  2077. pyrogram/raw/types/photos/__init__.py +27 -0
  2078. pyrogram/raw/types/photos/photo.py +91 -0
  2079. pyrogram/raw/types/photos/photos.py +89 -0
  2080. pyrogram/raw/types/photos/photos_slice.py +97 -0
  2081. pyrogram/raw/types/poll.py +132 -0
  2082. pyrogram/raw/types/poll_answer.py +80 -0
  2083. pyrogram/raw/types/poll_answer_voters.py +94 -0
  2084. pyrogram/raw/types/poll_results.py +120 -0
  2085. pyrogram/raw/types/pong.py +90 -0
  2086. pyrogram/raw/types/popular_contact.py +80 -0
  2087. pyrogram/raw/types/post_address.py +112 -0
  2088. pyrogram/raw/types/pq_inner_data.py +112 -0
  2089. pyrogram/raw/types/pq_inner_data_dc.py +120 -0
  2090. pyrogram/raw/types/pq_inner_data_temp.py +120 -0
  2091. pyrogram/raw/types/pq_inner_data_temp_dc.py +128 -0
  2092. pyrogram/raw/types/premium_gift_option.py +107 -0
  2093. pyrogram/raw/types/premium_subscription_option.py +128 -0
  2094. pyrogram/raw/types/privacy_key_added_by_phone.py +67 -0
  2095. pyrogram/raw/types/privacy_key_chat_invite.py +67 -0
  2096. pyrogram/raw/types/privacy_key_forwards.py +67 -0
  2097. pyrogram/raw/types/privacy_key_phone_call.py +67 -0
  2098. pyrogram/raw/types/privacy_key_phone_number.py +67 -0
  2099. pyrogram/raw/types/privacy_key_phone_p2_p.py +67 -0
  2100. pyrogram/raw/types/privacy_key_profile_photo.py +67 -0
  2101. pyrogram/raw/types/privacy_key_status_timestamp.py +67 -0
  2102. pyrogram/raw/types/privacy_key_voice_messages.py +67 -0
  2103. pyrogram/raw/types/privacy_value_allow_all.py +67 -0
  2104. pyrogram/raw/types/privacy_value_allow_chat_participants.py +72 -0
  2105. pyrogram/raw/types/privacy_value_allow_contacts.py +67 -0
  2106. pyrogram/raw/types/privacy_value_allow_users.py +72 -0
  2107. pyrogram/raw/types/privacy_value_disallow_all.py +67 -0
  2108. pyrogram/raw/types/privacy_value_disallow_chat_participants.py +72 -0
  2109. pyrogram/raw/types/privacy_value_disallow_contacts.py +67 -0
  2110. pyrogram/raw/types/privacy_value_disallow_users.py +72 -0
  2111. pyrogram/raw/types/reaction_count.py +91 -0
  2112. pyrogram/raw/types/reaction_custom_emoji.py +72 -0
  2113. pyrogram/raw/types/reaction_emoji.py +72 -0
  2114. pyrogram/raw/types/reaction_empty.py +67 -0
  2115. pyrogram/raw/types/read_participant_date.py +89 -0
  2116. pyrogram/raw/types/received_notify_message.py +89 -0
  2117. pyrogram/raw/types/recent_me_url_chat.py +80 -0
  2118. pyrogram/raw/types/recent_me_url_chat_invite.py +80 -0
  2119. pyrogram/raw/types/recent_me_url_sticker_set.py +80 -0
  2120. pyrogram/raw/types/recent_me_url_unknown.py +72 -0
  2121. pyrogram/raw/types/recent_me_url_user.py +80 -0
  2122. pyrogram/raw/types/reply_inline_markup.py +72 -0
  2123. pyrogram/raw/types/reply_keyboard_force_reply.py +87 -0
  2124. pyrogram/raw/types/reply_keyboard_hide.py +72 -0
  2125. pyrogram/raw/types/reply_keyboard_markup.py +107 -0
  2126. pyrogram/raw/types/request_peer_type_broadcast.py +101 -0
  2127. pyrogram/raw/types/request_peer_type_chat.py +116 -0
  2128. pyrogram/raw/types/request_peer_type_user.py +84 -0
  2129. pyrogram/raw/types/res_pq.py +106 -0
  2130. pyrogram/raw/types/restriction_reason.py +88 -0
  2131. pyrogram/raw/types/rpc_answer_dropped.py +97 -0
  2132. pyrogram/raw/types/rpc_answer_dropped_running.py +76 -0
  2133. pyrogram/raw/types/rpc_answer_unknown.py +76 -0
  2134. pyrogram/raw/types/rpc_error.py +80 -0
  2135. pyrogram/raw/types/rpc_result.py +80 -0
  2136. pyrogram/raw/types/saved_phone_contact.py +105 -0
  2137. pyrogram/raw/types/search_result_position.py +88 -0
  2138. pyrogram/raw/types/search_results_calendar_period.py +96 -0
  2139. pyrogram/raw/types/secure_credentials_encrypted.py +88 -0
  2140. pyrogram/raw/types/secure_data.py +88 -0
  2141. pyrogram/raw/types/secure_file.py +120 -0
  2142. pyrogram/raw/types/secure_file_empty.py +67 -0
  2143. pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +72 -0
  2144. pyrogram/raw/types/secure_password_kdf_algo_sha512.py +72 -0
  2145. pyrogram/raw/types/secure_password_kdf_algo_unknown.py +67 -0
  2146. pyrogram/raw/types/secure_plain_email.py +72 -0
  2147. pyrogram/raw/types/secure_plain_phone.py +72 -0
  2148. pyrogram/raw/types/secure_required_type.py +92 -0
  2149. pyrogram/raw/types/secure_required_type_one_of.py +72 -0
  2150. pyrogram/raw/types/secure_secret_settings.py +88 -0
  2151. pyrogram/raw/types/secure_value.py +163 -0
  2152. pyrogram/raw/types/secure_value_error.py +88 -0
  2153. pyrogram/raw/types/secure_value_error_data.py +96 -0
  2154. pyrogram/raw/types/secure_value_error_file.py +88 -0
  2155. pyrogram/raw/types/secure_value_error_files.py +88 -0
  2156. pyrogram/raw/types/secure_value_error_front_side.py +88 -0
  2157. pyrogram/raw/types/secure_value_error_reverse_side.py +88 -0
  2158. pyrogram/raw/types/secure_value_error_selfie.py +88 -0
  2159. pyrogram/raw/types/secure_value_error_translation_file.py +88 -0
  2160. pyrogram/raw/types/secure_value_error_translation_files.py +88 -0
  2161. pyrogram/raw/types/secure_value_hash.py +80 -0
  2162. pyrogram/raw/types/secure_value_type_address.py +67 -0
  2163. pyrogram/raw/types/secure_value_type_bank_statement.py +67 -0
  2164. pyrogram/raw/types/secure_value_type_driver_license.py +67 -0
  2165. pyrogram/raw/types/secure_value_type_email.py +67 -0
  2166. pyrogram/raw/types/secure_value_type_identity_card.py +67 -0
  2167. pyrogram/raw/types/secure_value_type_internal_passport.py +67 -0
  2168. pyrogram/raw/types/secure_value_type_passport.py +67 -0
  2169. pyrogram/raw/types/secure_value_type_passport_registration.py +67 -0
  2170. pyrogram/raw/types/secure_value_type_personal_details.py +67 -0
  2171. pyrogram/raw/types/secure_value_type_phone.py +67 -0
  2172. pyrogram/raw/types/secure_value_type_rental_agreement.py +67 -0
  2173. pyrogram/raw/types/secure_value_type_temporary_registration.py +67 -0
  2174. pyrogram/raw/types/secure_value_type_utility_bill.py +67 -0
  2175. pyrogram/raw/types/send_as_peer.py +80 -0
  2176. pyrogram/raw/types/send_message_cancel_action.py +67 -0
  2177. pyrogram/raw/types/send_message_choose_contact_action.py +67 -0
  2178. pyrogram/raw/types/send_message_choose_sticker_action.py +67 -0
  2179. pyrogram/raw/types/send_message_emoji_interaction.py +88 -0
  2180. pyrogram/raw/types/send_message_emoji_interaction_seen.py +72 -0
  2181. pyrogram/raw/types/send_message_game_play_action.py +67 -0
  2182. pyrogram/raw/types/send_message_geo_location_action.py +67 -0
  2183. pyrogram/raw/types/send_message_history_import_action.py +72 -0
  2184. pyrogram/raw/types/send_message_record_audio_action.py +67 -0
  2185. pyrogram/raw/types/send_message_record_round_action.py +67 -0
  2186. pyrogram/raw/types/send_message_record_video_action.py +67 -0
  2187. pyrogram/raw/types/send_message_typing_action.py +67 -0
  2188. pyrogram/raw/types/send_message_upload_audio_action.py +72 -0
  2189. pyrogram/raw/types/send_message_upload_document_action.py +72 -0
  2190. pyrogram/raw/types/send_message_upload_photo_action.py +72 -0
  2191. pyrogram/raw/types/send_message_upload_round_action.py +72 -0
  2192. pyrogram/raw/types/send_message_upload_video_action.py +72 -0
  2193. pyrogram/raw/types/server_dh_inner_data.py +112 -0
  2194. pyrogram/raw/types/server_dh_params_fail.py +97 -0
  2195. pyrogram/raw/types/server_dh_params_ok.py +97 -0
  2196. pyrogram/raw/types/shipping_option.py +88 -0
  2197. pyrogram/raw/types/simple_web_view_result_url.py +81 -0
  2198. pyrogram/raw/types/speaking_in_group_call_action.py +67 -0
  2199. pyrogram/raw/types/sponsored_message.py +169 -0
  2200. pyrogram/raw/types/stats/__init__.py +27 -0
  2201. pyrogram/raw/types/stats/broadcast_stats.py +193 -0
  2202. pyrogram/raw/types/stats/megagroup_stats.py +209 -0
  2203. pyrogram/raw/types/stats/message_stats.py +81 -0
  2204. pyrogram/raw/types/stats_abs_value_and_prev.py +80 -0
  2205. pyrogram/raw/types/stats_date_range_days.py +80 -0
  2206. pyrogram/raw/types/stats_graph.py +92 -0
  2207. pyrogram/raw/types/stats_graph_async.py +81 -0
  2208. pyrogram/raw/types/stats_graph_error.py +81 -0
  2209. pyrogram/raw/types/stats_group_top_admin.py +96 -0
  2210. pyrogram/raw/types/stats_group_top_inviter.py +80 -0
  2211. pyrogram/raw/types/stats_group_top_poster.py +88 -0
  2212. pyrogram/raw/types/stats_percent_value.py +80 -0
  2213. pyrogram/raw/types/stats_url.py +72 -0
  2214. pyrogram/raw/types/sticker_keyword.py +80 -0
  2215. pyrogram/raw/types/sticker_pack.py +80 -0
  2216. pyrogram/raw/types/sticker_set.py +196 -0
  2217. pyrogram/raw/types/sticker_set_covered.py +89 -0
  2218. pyrogram/raw/types/sticker_set_full_covered.py +105 -0
  2219. pyrogram/raw/types/sticker_set_multi_covered.py +89 -0
  2220. pyrogram/raw/types/sticker_set_no_covered.py +81 -0
  2221. pyrogram/raw/types/stickers/__init__.py +25 -0
  2222. pyrogram/raw/types/stickers/suggested_short_name.py +81 -0
  2223. pyrogram/raw/types/storage/__init__.py +34 -0
  2224. pyrogram/raw/types/storage/file_gif.py +67 -0
  2225. pyrogram/raw/types/storage/file_jpeg.py +67 -0
  2226. pyrogram/raw/types/storage/file_mov.py +67 -0
  2227. pyrogram/raw/types/storage/file_mp3.py +67 -0
  2228. pyrogram/raw/types/storage/file_mp4.py +67 -0
  2229. pyrogram/raw/types/storage/file_partial.py +67 -0
  2230. pyrogram/raw/types/storage/file_pdf.py +67 -0
  2231. pyrogram/raw/types/storage/file_png.py +67 -0
  2232. pyrogram/raw/types/storage/file_unknown.py +67 -0
  2233. pyrogram/raw/types/storage/file_webp.py +67 -0
  2234. pyrogram/raw/types/text_anchor.py +80 -0
  2235. pyrogram/raw/types/text_bold.py +72 -0
  2236. pyrogram/raw/types/text_concat.py +72 -0
  2237. pyrogram/raw/types/text_email.py +80 -0
  2238. pyrogram/raw/types/text_empty.py +67 -0
  2239. pyrogram/raw/types/text_fixed.py +72 -0
  2240. pyrogram/raw/types/text_image.py +88 -0
  2241. pyrogram/raw/types/text_italic.py +72 -0
  2242. pyrogram/raw/types/text_marked.py +72 -0
  2243. pyrogram/raw/types/text_phone.py +80 -0
  2244. pyrogram/raw/types/text_plain.py +72 -0
  2245. pyrogram/raw/types/text_strike.py +72 -0
  2246. pyrogram/raw/types/text_subscript.py +72 -0
  2247. pyrogram/raw/types/text_superscript.py +72 -0
  2248. pyrogram/raw/types/text_underline.py +72 -0
  2249. pyrogram/raw/types/text_url.py +88 -0
  2250. pyrogram/raw/types/text_with_entities.py +80 -0
  2251. pyrogram/raw/types/theme.py +165 -0
  2252. pyrogram/raw/types/theme_settings.py +117 -0
  2253. pyrogram/raw/types/top_peer.py +80 -0
  2254. pyrogram/raw/types/top_peer_category_bots_inline.py +67 -0
  2255. pyrogram/raw/types/top_peer_category_bots_pm.py +67 -0
  2256. pyrogram/raw/types/top_peer_category_channels.py +67 -0
  2257. pyrogram/raw/types/top_peer_category_correspondents.py +67 -0
  2258. pyrogram/raw/types/top_peer_category_forward_chats.py +67 -0
  2259. pyrogram/raw/types/top_peer_category_forward_users.py +67 -0
  2260. pyrogram/raw/types/top_peer_category_groups.py +67 -0
  2261. pyrogram/raw/types/top_peer_category_peers.py +88 -0
  2262. pyrogram/raw/types/top_peer_category_phone_calls.py +67 -0
  2263. pyrogram/raw/types/update_attach_menu_bots.py +67 -0
  2264. pyrogram/raw/types/update_auto_save_settings.py +67 -0
  2265. pyrogram/raw/types/update_bot_callback_query.py +124 -0
  2266. pyrogram/raw/types/update_bot_chat_invite_requester.py +112 -0
  2267. pyrogram/raw/types/update_bot_commands.py +88 -0
  2268. pyrogram/raw/types/update_bot_inline_query.py +118 -0
  2269. pyrogram/raw/types/update_bot_inline_send.py +110 -0
  2270. pyrogram/raw/types/update_bot_menu_button.py +80 -0
  2271. pyrogram/raw/types/update_bot_precheckout_query.py +125 -0
  2272. pyrogram/raw/types/update_bot_shipping_query.py +96 -0
  2273. pyrogram/raw/types/update_bot_stopped.py +96 -0
  2274. pyrogram/raw/types/update_bot_webhook_json.py +72 -0
  2275. pyrogram/raw/types/update_bot_webhook_json_query.py +88 -0
  2276. pyrogram/raw/types/update_channel.py +72 -0
  2277. pyrogram/raw/types/update_channel_available_messages.py +80 -0
  2278. pyrogram/raw/types/update_channel_message_forwards.py +88 -0
  2279. pyrogram/raw/types/update_channel_message_views.py +88 -0
  2280. pyrogram/raw/types/update_channel_participant.py +142 -0
  2281. pyrogram/raw/types/update_channel_pinned_topic.py +88 -0
  2282. pyrogram/raw/types/update_channel_pinned_topics.py +84 -0
  2283. pyrogram/raw/types/update_channel_read_messages_contents.py +91 -0
  2284. pyrogram/raw/types/update_channel_too_long.py +83 -0
  2285. pyrogram/raw/types/update_channel_user_typing.py +99 -0
  2286. pyrogram/raw/types/update_channel_web_page.py +96 -0
  2287. pyrogram/raw/types/update_chat.py +72 -0
  2288. pyrogram/raw/types/update_chat_default_banned_rights.py +88 -0
  2289. pyrogram/raw/types/update_chat_participant.py +136 -0
  2290. pyrogram/raw/types/update_chat_participant_add.py +104 -0
  2291. pyrogram/raw/types/update_chat_participant_admin.py +96 -0
  2292. pyrogram/raw/types/update_chat_participant_delete.py +88 -0
  2293. pyrogram/raw/types/update_chat_participants.py +72 -0
  2294. pyrogram/raw/types/update_chat_user_typing.py +88 -0
  2295. pyrogram/raw/types/update_config.py +67 -0
  2296. pyrogram/raw/types/update_contacts_reset.py +67 -0
  2297. pyrogram/raw/types/update_dc_options.py +72 -0
  2298. pyrogram/raw/types/update_delete_channel_messages.py +96 -0
  2299. pyrogram/raw/types/update_delete_messages.py +88 -0
  2300. pyrogram/raw/types/update_delete_scheduled_messages.py +80 -0
  2301. pyrogram/raw/types/update_dialog_filter.py +84 -0
  2302. pyrogram/raw/types/update_dialog_filter_order.py +72 -0
  2303. pyrogram/raw/types/update_dialog_filters.py +67 -0
  2304. pyrogram/raw/types/update_dialog_pinned.py +89 -0
  2305. pyrogram/raw/types/update_dialog_unread_mark.py +80 -0
  2306. pyrogram/raw/types/update_draft_message.py +91 -0
  2307. pyrogram/raw/types/update_edit_channel_message.py +88 -0
  2308. pyrogram/raw/types/update_edit_message.py +88 -0
  2309. pyrogram/raw/types/update_encrypted_chat_typing.py +72 -0
  2310. pyrogram/raw/types/update_encrypted_messages_read.py +88 -0
  2311. pyrogram/raw/types/update_encryption.py +80 -0
  2312. pyrogram/raw/types/update_faved_stickers.py +67 -0
  2313. pyrogram/raw/types/update_folder_peers.py +88 -0
  2314. pyrogram/raw/types/update_geo_live_viewed.py +80 -0
  2315. pyrogram/raw/types/update_group_call.py +80 -0
  2316. pyrogram/raw/types/update_group_call_connection.py +80 -0
  2317. pyrogram/raw/types/update_group_call_participants.py +88 -0
  2318. pyrogram/raw/types/update_group_invite_privacy_forbidden.py +72 -0
  2319. pyrogram/raw/types/update_inline_bot_callback_query.py +116 -0
  2320. pyrogram/raw/types/update_lang_pack.py +72 -0
  2321. pyrogram/raw/types/update_lang_pack_too_long.py +72 -0
  2322. pyrogram/raw/types/update_login_token.py +67 -0
  2323. pyrogram/raw/types/update_message_extended_media.py +88 -0
  2324. pyrogram/raw/types/update_message_id.py +80 -0
  2325. pyrogram/raw/types/update_message_poll.py +92 -0
  2326. pyrogram/raw/types/update_message_poll_vote.py +96 -0
  2327. pyrogram/raw/types/update_message_reactions.py +99 -0
  2328. pyrogram/raw/types/update_move_sticker_set_to_top.py +86 -0
  2329. pyrogram/raw/types/update_new_channel_message.py +88 -0
  2330. pyrogram/raw/types/update_new_encrypted_message.py +80 -0
  2331. pyrogram/raw/types/update_new_message.py +88 -0
  2332. pyrogram/raw/types/update_new_scheduled_message.py +72 -0
  2333. pyrogram/raw/types/update_new_sticker_set.py +72 -0
  2334. pyrogram/raw/types/update_notify_settings.py +80 -0
  2335. pyrogram/raw/types/update_peer_blocked.py +80 -0
  2336. pyrogram/raw/types/update_peer_history_ttl.py +83 -0
  2337. pyrogram/raw/types/update_peer_located.py +72 -0
  2338. pyrogram/raw/types/update_peer_settings.py +80 -0
  2339. pyrogram/raw/types/update_pending_join_requests.py +88 -0
  2340. pyrogram/raw/types/update_phone_call.py +72 -0
  2341. pyrogram/raw/types/update_phone_call_signaling_data.py +80 -0
  2342. pyrogram/raw/types/update_pinned_channel_messages.py +104 -0
  2343. pyrogram/raw/types/update_pinned_dialogs.py +85 -0
  2344. pyrogram/raw/types/update_pinned_messages.py +104 -0
  2345. pyrogram/raw/types/update_privacy.py +80 -0
  2346. pyrogram/raw/types/update_pts_changed.py +67 -0
  2347. pyrogram/raw/types/update_read_channel_discussion_inbox.py +108 -0
  2348. pyrogram/raw/types/update_read_channel_discussion_outbox.py +88 -0
  2349. pyrogram/raw/types/update_read_channel_inbox.py +107 -0
  2350. pyrogram/raw/types/update_read_channel_outbox.py +80 -0
  2351. pyrogram/raw/types/update_read_featured_emoji_stickers.py +67 -0
  2352. pyrogram/raw/types/update_read_featured_stickers.py +67 -0
  2353. pyrogram/raw/types/update_read_history_inbox.py +115 -0
  2354. pyrogram/raw/types/update_read_history_outbox.py +96 -0
  2355. pyrogram/raw/types/update_read_messages_contents.py +88 -0
  2356. pyrogram/raw/types/update_recent_emoji_statuses.py +67 -0
  2357. pyrogram/raw/types/update_recent_reactions.py +67 -0
  2358. pyrogram/raw/types/update_recent_stickers.py +67 -0
  2359. pyrogram/raw/types/update_saved_gifs.py +67 -0
  2360. pyrogram/raw/types/update_saved_ringtones.py +67 -0
  2361. pyrogram/raw/types/update_service_notification.py +113 -0
  2362. pyrogram/raw/types/update_short.py +175 -0
  2363. pyrogram/raw/types/update_short_chat_message.py +289 -0
  2364. pyrogram/raw/types/update_short_message.py +281 -0
  2365. pyrogram/raw/types/update_short_sent_message.py +228 -0
  2366. pyrogram/raw/types/update_sticker_sets.py +78 -0
  2367. pyrogram/raw/types/update_sticker_sets_order.py +86 -0
  2368. pyrogram/raw/types/update_theme.py +72 -0
  2369. pyrogram/raw/types/update_transcribed_audio.py +104 -0
  2370. pyrogram/raw/types/update_user.py +72 -0
  2371. pyrogram/raw/types/update_user_emoji_status.py +80 -0
  2372. pyrogram/raw/types/update_user_name.py +96 -0
  2373. pyrogram/raw/types/update_user_phone.py +80 -0
  2374. pyrogram/raw/types/update_user_status.py +80 -0
  2375. pyrogram/raw/types/update_user_typing.py +80 -0
  2376. pyrogram/raw/types/update_web_page.py +88 -0
  2377. pyrogram/raw/types/update_web_view_result_sent.py +72 -0
  2378. pyrogram/raw/types/updates/__init__.py +32 -0
  2379. pyrogram/raw/types/updates/channel_difference.py +130 -0
  2380. pyrogram/raw/types/updates/channel_difference_empty.py +98 -0
  2381. pyrogram/raw/types/updates/channel_difference_too_long.py +122 -0
  2382. pyrogram/raw/types/updates/difference.py +121 -0
  2383. pyrogram/raw/types/updates/difference_empty.py +89 -0
  2384. pyrogram/raw/types/updates/difference_slice.py +121 -0
  2385. pyrogram/raw/types/updates/difference_too_long.py +81 -0
  2386. pyrogram/raw/types/updates/state.py +113 -0
  2387. pyrogram/raw/types/updates_combined.py +207 -0
  2388. pyrogram/raw/types/updates_t.py +199 -0
  2389. pyrogram/raw/types/updates_too_long.py +162 -0
  2390. pyrogram/raw/types/upload/__init__.py +29 -0
  2391. pyrogram/raw/types/upload/cdn_file.py +81 -0
  2392. pyrogram/raw/types/upload/cdn_file_reupload_needed.py +81 -0
  2393. pyrogram/raw/types/upload/file.py +97 -0
  2394. pyrogram/raw/types/upload/file_cdn_redirect.py +113 -0
  2395. pyrogram/raw/types/upload/web_file.py +113 -0
  2396. pyrogram/raw/types/url_auth_result_accepted.py +82 -0
  2397. pyrogram/raw/types/url_auth_result_default.py +77 -0
  2398. pyrogram/raw/types/url_auth_result_request.py +98 -0
  2399. pyrogram/raw/types/user.py +327 -0
  2400. pyrogram/raw/types/user_empty.py +85 -0
  2401. pyrogram/raw/types/user_full.py +280 -0
  2402. pyrogram/raw/types/user_profile_photo.py +103 -0
  2403. pyrogram/raw/types/user_profile_photo_empty.py +67 -0
  2404. pyrogram/raw/types/user_status_empty.py +67 -0
  2405. pyrogram/raw/types/user_status_last_month.py +67 -0
  2406. pyrogram/raw/types/user_status_last_week.py +67 -0
  2407. pyrogram/raw/types/user_status_offline.py +72 -0
  2408. pyrogram/raw/types/user_status_online.py +72 -0
  2409. pyrogram/raw/types/user_status_recently.py +67 -0
  2410. pyrogram/raw/types/username.py +86 -0
  2411. pyrogram/raw/types/users/__init__.py +25 -0
  2412. pyrogram/raw/types/users/user_full.py +97 -0
  2413. pyrogram/raw/types/video_size.py +107 -0
  2414. pyrogram/raw/types/video_size_emoji_markup.py +80 -0
  2415. pyrogram/raw/types/video_size_sticker_markup.py +88 -0
  2416. pyrogram/raw/types/wall_paper.py +143 -0
  2417. pyrogram/raw/types/wall_paper_no_file.py +107 -0
  2418. pyrogram/raw/types/wall_paper_settings.py +132 -0
  2419. pyrogram/raw/types/web_authorization.py +136 -0
  2420. pyrogram/raw/types/web_document.py +104 -0
  2421. pyrogram/raw/types/web_document_no_proxy.py +96 -0
  2422. pyrogram/raw/types/web_page.py +237 -0
  2423. pyrogram/raw/types/web_page_attribute_theme.py +86 -0
  2424. pyrogram/raw/types/web_page_empty.py +81 -0
  2425. pyrogram/raw/types/web_page_not_modified.py +84 -0
  2426. pyrogram/raw/types/web_page_pending.py +89 -0
  2427. pyrogram/raw/types/web_view_message_sent.py +85 -0
  2428. pyrogram/raw/types/web_view_result_url.py +89 -0
  2429. pyrogram/session/__init__.py +20 -0
  2430. pyrogram/session/auth.py +281 -0
  2431. pyrogram/session/internals/__init__.py +21 -0
  2432. pyrogram/session/internals/data_center.py +83 -0
  2433. pyrogram/session/internals/msg_factory.py +38 -0
  2434. pyrogram/session/internals/msg_id.py +35 -0
  2435. pyrogram/session/internals/seq_no.py +30 -0
  2436. pyrogram/session/session.py +412 -0
  2437. pyrogram/storage/__init__.py +21 -0
  2438. pyrogram/storage/file_storage.py +69 -0
  2439. pyrogram/storage/memory_storage.py +73 -0
  2440. pyrogram/storage/sqlite_storage.py +222 -0
  2441. pyrogram/storage/storage.py +91 -0
  2442. pyrogram/sync.py +113 -0
  2443. pyrogram/types/__init__.py +28 -0
  2444. pyrogram/types/authorization/__init__.py +22 -0
  2445. pyrogram/types/authorization/sent_code.py +62 -0
  2446. pyrogram/types/authorization/terms_of_service.py +56 -0
  2447. pyrogram/types/bots_and_keyboards/__init__.py +71 -0
  2448. pyrogram/types/bots_and_keyboards/bot_command.py +53 -0
  2449. pyrogram/types/bots_and_keyboards/bot_command_scope.py +73 -0
  2450. pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +32 -0
  2451. pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +32 -0
  2452. pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +32 -0
  2453. pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +43 -0
  2454. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +43 -0
  2455. pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +48 -0
  2456. pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +33 -0
  2457. pyrogram/types/bots_and_keyboards/callback_game.py +29 -0
  2458. pyrogram/types/bots_and_keyboards/callback_query.py +313 -0
  2459. pyrogram/types/bots_and_keyboards/force_reply.py +66 -0
  2460. pyrogram/types/bots_and_keyboards/game_high_score.py +70 -0
  2461. pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +224 -0
  2462. pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +76 -0
  2463. pyrogram/types/bots_and_keyboards/keyboard_button.py +95 -0
  2464. pyrogram/types/bots_and_keyboards/login_url.py +90 -0
  2465. pyrogram/types/bots_and_keyboards/menu_button.py +44 -0
  2466. pyrogram/types/bots_and_keyboards/menu_button_commands.py +32 -0
  2467. pyrogram/types/bots_and_keyboards/menu_button_default.py +32 -0
  2468. pyrogram/types/bots_and_keyboards/menu_button_web_app.py +51 -0
  2469. pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +112 -0
  2470. pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +58 -0
  2471. pyrogram/types/bots_and_keyboards/sent_web_app_message.py +42 -0
  2472. pyrogram/types/bots_and_keyboards/web_app_info.py +37 -0
  2473. pyrogram/types/inline_mode/__init__.py +47 -0
  2474. pyrogram/types/inline_mode/chosen_inline_result.py +99 -0
  2475. pyrogram/types/inline_mode/inline_query.py +181 -0
  2476. pyrogram/types/inline_mode/inline_query_result.py +63 -0
  2477. pyrogram/types/inline_mode/inline_query_result_animation.py +155 -0
  2478. pyrogram/types/inline_mode/inline_query_result_article.py +99 -0
  2479. pyrogram/types/inline_mode/inline_query_result_audio.py +120 -0
  2480. pyrogram/types/inline_mode/inline_query_result_cached_animation.py +108 -0
  2481. pyrogram/types/inline_mode/inline_query_result_cached_audio.py +101 -0
  2482. pyrogram/types/inline_mode/inline_query_result_cached_document.py +113 -0
  2483. pyrogram/types/inline_mode/inline_query_result_cached_photo.py +111 -0
  2484. pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +78 -0
  2485. pyrogram/types/inline_mode/inline_query_result_cached_video.py +114 -0
  2486. pyrogram/types/inline_mode/inline_query_result_cached_voice.py +108 -0
  2487. pyrogram/types/inline_mode/inline_query_result_contact.py +114 -0
  2488. pyrogram/types/inline_mode/inline_query_result_document.py +145 -0
  2489. pyrogram/types/inline_mode/inline_query_result_location.py +122 -0
  2490. pyrogram/types/inline_mode/inline_query_result_photo.py +147 -0
  2491. pyrogram/types/inline_mode/inline_query_result_venue.py +131 -0
  2492. pyrogram/types/inline_mode/inline_query_result_video.py +151 -0
  2493. pyrogram/types/inline_mode/inline_query_result_voice.py +114 -0
  2494. pyrogram/types/input_media/__init__.py +30 -0
  2495. pyrogram/types/input_media/input_media.py +49 -0
  2496. pyrogram/types/input_media/input_media_animation.py +85 -0
  2497. pyrogram/types/input_media/input_media_audio.py +82 -0
  2498. pyrogram/types/input_media/input_media_document.py +65 -0
  2499. pyrogram/types/input_media/input_media_photo.py +63 -0
  2500. pyrogram/types/input_media/input_media_video.py +91 -0
  2501. pyrogram/types/input_media/input_phone_contact.py +51 -0
  2502. pyrogram/types/input_message_content/__init__.py +24 -0
  2503. pyrogram/types/input_message_content/input_message_content.py +40 -0
  2504. pyrogram/types/input_message_content/input_text_message_content.py +68 -0
  2505. pyrogram/types/list.py +30 -0
  2506. pyrogram/types/messages_and_media/__init__.py +47 -0
  2507. pyrogram/types/messages_and_media/animation.py +121 -0
  2508. pyrogram/types/messages_and_media/audio.py +121 -0
  2509. pyrogram/types/messages_and_media/contact.py +71 -0
  2510. pyrogram/types/messages_and_media/dice.py +47 -0
  2511. pyrogram/types/messages_and_media/document.py +98 -0
  2512. pyrogram/types/messages_and_media/game.py +99 -0
  2513. pyrogram/types/messages_and_media/location.py +55 -0
  2514. pyrogram/types/messages_and_media/message.py +3590 -0
  2515. pyrogram/types/messages_and_media/message_entity.py +124 -0
  2516. pyrogram/types/messages_and_media/message_reactions.py +56 -0
  2517. pyrogram/types/messages_and_media/photo.py +130 -0
  2518. pyrogram/types/messages_and_media/poll.py +203 -0
  2519. pyrogram/types/messages_and_media/poll_option.py +50 -0
  2520. pyrogram/types/messages_and_media/reaction.py +86 -0
  2521. pyrogram/types/messages_and_media/sticker.py +206 -0
  2522. pyrogram/types/messages_and_media/stripped_thumbnail.py +47 -0
  2523. pyrogram/types/messages_and_media/thumbnail.py +111 -0
  2524. pyrogram/types/messages_and_media/venue.py +74 -0
  2525. pyrogram/types/messages_and_media/video.py +134 -0
  2526. pyrogram/types/messages_and_media/video_note.py +108 -0
  2527. pyrogram/types/messages_and_media/voice.py +96 -0
  2528. pyrogram/types/messages_and_media/web_app_data.py +51 -0
  2529. pyrogram/types/messages_and_media/web_page.py +187 -0
  2530. pyrogram/types/object.py +121 -0
  2531. pyrogram/types/update.py +27 -0
  2532. pyrogram/types/user_and_chats/__init__.py +67 -0
  2533. pyrogram/types/user_and_chats/chat.py +963 -0
  2534. pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +63 -0
  2535. pyrogram/types/user_and_chats/chat_event.py +489 -0
  2536. pyrogram/types/user_and_chats/chat_event_filter.py +175 -0
  2537. pyrogram/types/user_and_chats/chat_invite_link.py +130 -0
  2538. pyrogram/types/user_and_chats/chat_join_request.py +139 -0
  2539. pyrogram/types/user_and_chats/chat_joiner.py +82 -0
  2540. pyrogram/types/user_and_chats/chat_member.py +227 -0
  2541. pyrogram/types/user_and_chats/chat_member_updated.py +102 -0
  2542. pyrogram/types/user_and_chats/chat_permissions.py +98 -0
  2543. pyrogram/types/user_and_chats/chat_photo.py +107 -0
  2544. pyrogram/types/user_and_chats/chat_preview.py +79 -0
  2545. pyrogram/types/user_and_chats/chat_privileges.py +112 -0
  2546. pyrogram/types/user_and_chats/chat_reactions.py +69 -0
  2547. pyrogram/types/user_and_chats/dialog.py +79 -0
  2548. pyrogram/types/user_and_chats/emoji_status.py +77 -0
  2549. pyrogram/types/user_and_chats/invite_link_importer.py +61 -0
  2550. pyrogram/types/user_and_chats/restriction.py +50 -0
  2551. pyrogram/types/user_and_chats/user.py +399 -0
  2552. pyrogram/types/user_and_chats/video_chat_ended.py +41 -0
  2553. pyrogram/types/user_and_chats/video_chat_members_invited.py +50 -0
  2554. pyrogram/types/user_and_chats/video_chat_scheduled.py +43 -0
  2555. pyrogram/types/user_and_chats/video_chat_started.py +29 -0
  2556. pyrogram/utils.py +371 -0
  2557. pyromt-2.0.106.dist-info/METADATA +127 -0
  2558. pyromt-2.0.106.dist-info/RECORD +2563 -0
  2559. pyromt-2.0.106.dist-info/WHEEL +5 -0
  2560. pyromt-2.0.106.dist-info/licenses/COPYING +674 -0
  2561. pyromt-2.0.106.dist-info/licenses/COPYING.lesser +165 -0
  2562. pyromt-2.0.106.dist-info/licenses/NOTICE +17 -0
  2563. pyromt-2.0.106.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2563 @@
1
+ pyrogram/__init__.py,sha256=wQbvOr_QIgJ3lkAiIi-gZfY-IAez1_KYzmzLpKtZj7s,1401
2
+ pyrogram/client.py,sha256=Njr38GMuK5cvyaPPbwZL8sjIamupyz3kiw_DClG3Yxw,41976
3
+ pyrogram/dispatcher.py,sha256=e_WmuTYMhcFajzC2EKz8jCeCsUMzLcto-ricX9mVyGs,10054
4
+ pyrogram/emoji.py,sha256=ixb3OXR1XpLf3BQpw8kWIpmbQRowRIaFedjdnuzljac,208021
5
+ pyrogram/file_id.py,sha256=jmMBAt2O_XhLE_AXKffZ4F5gccXJB8GHV7MlFCpiklA,15154
6
+ pyrogram/filters.py,sha256=kxIx1C9Dyx-4OIq7U4ND1G0oc9PWuHeSiSGjiyJM1CQ,24836
7
+ pyrogram/mime_types.py,sha256=JbYF6B-JrxZQNga8dPz2C8Dwp8-2pOrE1uv3KIBbjA0,61915
8
+ pyrogram/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ pyrogram/sync.py,sha256=cxKmLz9NAJPX2N2n2CogTLXyNo-dWgf6etBRXnqq1XA,3739
10
+ pyrogram/utils.py,sha256=76a-cYMH5osJUh1B0pssWiqtOaw9Sfzcm-arwAYuOWI,10572
11
+ pyrogram/connection/__init__.py,sha256=q7KiWEV6VNDQGoj5s13GPyhRRlafXVPvX1h1VpAsVf8,854
12
+ pyrogram/connection/connection.py,sha256=GGyBx0sT2R4wal7yBSkeJvnoohkB0XYySdVhvsfiM_4,2542
13
+ pyrogram/connection/transport/__init__.py,sha256=nRpFdumPinBtuLOZkR8hH_vXlN7ChzW1oyJ6na4a8qw,838
14
+ pyrogram/connection/transport/tcp/__init__.py,sha256=-nZvDSAzgezc3V6z3GNe-gVUpQ5VVZuzQFqfp5n9tWw,1044
15
+ pyrogram/connection/transport/tcp/tcp.py,sha256=P9VdKnEV1pq-2hbD98GazB15-2jNh8flmR2LJzmKmgo,4089
16
+ pyrogram/connection/transport/tcp/tcp_abridged.py,sha256=9a95UJihaZ68TPnqVOhGp-73T2G2CVEB5Bw9CUkIQWA,1768
17
+ pyrogram/connection/transport/tcp/tcp_abridged_o.py,sha256=MFw_VUrYulrfZNXZgJwW1hhbGp1qhL_17wAC3U91oRU,2830
18
+ pyrogram/connection/transport/tcp/tcp_full.py,sha256=qWTYKTzOAnsQdKfu-deyd00Smrv6ijazlnx5KVaa3xU,1906
19
+ pyrogram/connection/transport/tcp/tcp_intermediate.py,sha256=IvJQD5PilVkVx-Gt_f2SjU9VcB4LBTG2FJsbp1wkJWs,1511
20
+ pyrogram/connection/transport/tcp/tcp_intermediate_o.py,sha256=_4FtlQbuocJkdeg3tI6rwTSO-iwLa3LfNnUcH1Bnd18,2453
21
+ pyrogram/crypto/__init__.py,sha256=zIKDctQwf1s97ZK7RwwCKOTR05C1JVR2ACY2-GbZlZk,818
22
+ pyrogram/crypto/aes.py,sha256=AS5me5W2ksoJ1i13JBcoMaO4MlpVxt04y5PCZRrT8W4,4013
23
+ pyrogram/crypto/mtproto.py,sha256=qwoXwETZzjzFDA-mRvdYL2kel0IToELLOdfE9Lhr0Gk,4018
24
+ pyrogram/crypto/prime.py,sha256=hZe9xlM_nfOonL53emLn9zjmT79SHC5yFgDElZ-II40,2446
25
+ pyrogram/crypto/rsa.py,sha256=5A89QWIwKz1JB-Ng3N7r_ONJSzXL-t8lWKGy585W06I,13437
26
+ pyrogram/enums/__init__.py,sha256=Mz2zBULs-Zo0RzntqDSj0p1JX2kmbG-tyOnvFwS7JlA,1736
27
+ pyrogram/enums/auto_name.py,sha256=YEFxmS8URqR1SLHqtSwDry_t48158GS-nHq7uMtwITw,1002
28
+ pyrogram/enums/chat_action.py,sha256=htJ7CyLxKF5g8kmuSQlZw1G_xzHJ0G7ipIrte5UpTLw,2307
29
+ pyrogram/enums/chat_event_action.py,sha256=lhfSzB8PNrC6KKbM1GcAPQJ1LteBwnG_gspstKVI5Hk,4203
30
+ pyrogram/enums/chat_member_status.py,sha256=R52wBlniGyVz1STL_xbY8Q8qNRdiUuf926MEKpGb2ww,1265
31
+ pyrogram/enums/chat_members_filter.py,sha256=elc_gNvVeE0jY0O8ecoJPJ9sX7jXpbvnLTGDRNu1_l0,1446
32
+ pyrogram/enums/chat_type.py,sha256=vf-DMg89K5hjOwuJbOHp66dM3whu_ZdMDiuWBA2z16g,1238
33
+ pyrogram/enums/message_entity_type.py,sha256=tsAs7zQ_QuAQ2eCV5L9oQmXltJ3VpLUn5suZVJ_RbLs,2464
34
+ pyrogram/enums/message_media_type.py,sha256=EgSJKsJm4SYjMOx-ce-m3EWMNVCrBPZkrSGmJqDPPr4,1599
35
+ pyrogram/enums/message_service_type.py,sha256=BEbnNVWIP6RB8462OepoYXoYbvG91okNdqwjdPTiVaQ,1900
36
+ pyrogram/enums/messages_filter.py,sha256=zuRmFYB1D-3-THlsOmVm6G41iBZkggjCg6vV-ocqTYI,2406
37
+ pyrogram/enums/next_code_type.py,sha256=GMofmZCvqJxjn_2bXWjQ7T06AiI584UlWlfZYtBnVS0,1521
38
+ pyrogram/enums/parse_mode.py,sha256=9xKPMEZf1hIYsCHWWcemCFyo3U5xnaQ05pYiaxvXezk,1188
39
+ pyrogram/enums/poll_type.py,sha256=C2MDTqWrRBT24qnkuosxIA5E8vDeGYDpAPep7o6HIgE,1047
40
+ pyrogram/enums/sent_code_type.py,sha256=LHRDeJ3YTdi0v_-12y5RA3Yn7t9BMKal2cz7-EQ1txg,1723
41
+ pyrogram/enums/user_status.py,sha256=0WEpJJmjfGsJ3CVEhItO3Zc1VP9CBjgZBpxWUOzoFFg,1299
42
+ pyrogram/errors/__init__.py,sha256=Td5_TRqn2Ht6R3ZTxrLJaL_HoaugITxNCsiYEfueqCw,2605
43
+ pyrogram/errors/rpc_error.py,sha256=18YbiYLQ-wKBZJ389SfPpl0pwQMHn4Xzh0leuZ-vuNU,3315
44
+ pyrogram/errors/exceptions/__init__.py,sha256=a2d1ssPFkGOKqZBwx4x0ZM477cUNvZeXj5RqBgvIiwg,1066
45
+ pyrogram/errors/exceptions/all.py,sha256=px8dK0OL8XcaCxLUohumxrrb8gZgFl68vi4hDiUJ6dw,25520
46
+ pyrogram/errors/exceptions/bad_request_400.py,sha256=SXmj1YFJ11Slln799Ru_dv2pFIbmZJNB6HBQXjJ95rQ,64535
47
+ pyrogram/errors/exceptions/flood_420.py,sha256=zx79occjP1x4wx5pS3W9PSYyk_235B0iWf0D6FjXNEI,1941
48
+ pyrogram/errors/exceptions/forbidden_403.py,sha256=KeyoOhKfJCrBOaR4ENnFpJyzWPdRjgeiJPpwdqmNL9I,6046
49
+ pyrogram/errors/exceptions/internal_server_error_500.py,sha256=tOrKmSS8y5_VZ56KdWOVsf560XqOa9D8EwCfkKNTgx8,10644
50
+ pyrogram/errors/exceptions/not_acceptable_406.py,sha256=Ths6smBw-CSH5vyH6f6uF9MFKC-_colTSLMh0DWYHkQ,3580
51
+ pyrogram/errors/exceptions/see_other_303.py,sha256=_-P2lSLpLky-e5L17DLWneEponf5uw2sUGY2FabD-KI,1952
52
+ pyrogram/errors/exceptions/service_unavailable_503.py,sha256=FBTHLPAOwcMtZ-0SCQB5kVfUwAZHZjrSR0YLTeF0LQE,1351
53
+ pyrogram/errors/exceptions/unauthorized_401.py,sha256=-b6fglrqn1EZ_lQP56dcuK7pfhH5wPeT9nh8cyMOjZQ,2672
54
+ pyrogram/handlers/__init__.py,sha256=gDT9YtYS4dOhJdSozIs4-NpZvputaUgk8cNv13mn1Ns,1475
55
+ pyrogram/handlers/callback_query_handler.py,sha256=--kShy_dyptJVNCDov_HX0P2FXdmxNPeJjYccoRX68s,2026
56
+ pyrogram/handlers/chat_join_request_handler.py,sha256=8jWNUBgxJE54_WAHBHp_HpglHNrjJEZsNKfudsBeo0s,2011
57
+ pyrogram/handlers/chat_member_updated_handler.py,sha256=8ceqNAlH7KBU5ukkfV1v44uvCZzA_reiKDUIQ8jsH2s,2046
58
+ pyrogram/handlers/chosen_inline_result_handler.py,sha256=BCb75OkfHLVDjqT1jLLZ1A7_1gv-2-ndpr8NXeOm7uQ,2101
59
+ pyrogram/handlers/deleted_messages_handler.py,sha256=Coo7lHAv9y0ojB0QyGXhWJ2UnYA9MTrUvVjufEWUDok,2543
60
+ pyrogram/handlers/disconnect_handler.py,sha256=LSvQI38kvJbD4s31jphnr5Ft3WjNLQupz2_zK3tm2PU,1702
61
+ pyrogram/handlers/edited_message_handler.py,sha256=5_lCX7YcuGhqi_Ro2IG-_J1mF6n-vyYdjMFPVZdM5N8,1979
62
+ pyrogram/handlers/handler.py,sha256=HarspsG7NoMele9vJMf2aN-AOGXJpJ-U127hP5Ne2xk,1550
63
+ pyrogram/handlers/inline_query_handler.py,sha256=uQ5CIEBgvWaizCnMaah08T576OP0K542WS8Os_ocpH4,1984
64
+ pyrogram/handlers/message_handler.py,sha256=um0VeYMbH0IFZS2H18a5W9y3Gvk03SGZ0nHJrNU8hDw,1935
65
+ pyrogram/handlers/poll_handler.py,sha256=IngTr6CYaDTzc6ign2F0noaoGcN7ddlncpjgeKm1UyQ,1914
66
+ pyrogram/handlers/raw_update_handler.py,sha256=9Uh0oVyDm4AgQ39Y87JaebeL5V6HM1eE6svW6HYY114,2942
67
+ pyrogram/handlers/user_status_handler.py,sha256=NcrvIuvaE8cwccG0cgSjGtN12IVLbDi1OZqDmiuht8k,1989
68
+ pyrogram/methods/__init__.py,sha256=6PpIkjIGLQ_e50nySmI2yjLPym5TGz1YIkHFRUQg_qg,1320
69
+ pyrogram/methods/advanced/__init__.py,sha256=nRNLZaThEQylTXtzEbPoQz0s4A5GcJrH7C_dwKKJ530,988
70
+ pyrogram/methods/advanced/invoke.py,sha256=cduAX4lBhqJ6GF6psrwEw3uRFnnEggk_fuyeD3Nmbo4,3133
71
+ pyrogram/methods/advanced/resolve_peer.py,sha256=vXM5M9NiUzbe9nK9LtpIwbHYttyx-89lcZ1CPMbHv0Q,4560
72
+ pyrogram/methods/advanced/save_file.py,sha256=WVBc7Py36K1uPqOaFTIdbBGbEs5zJeX4F8-baUdCvFo,8421
73
+ pyrogram/methods/auth/__init__.py,sha256=7oOjTXZkLaq8BlEVxJuM6C5ZhMDe1sA0wMPlsC8UF2Q,1655
74
+ pyrogram/methods/auth/accept_terms_of_service.py,sha256=qegqafaxszNcOgYCWxTRssXpXJzfKVKexwbqJaEbM1M,1468
75
+ pyrogram/methods/auth/check_password.py,sha256=5w01ommIRhnbNlQVUeRWJVl3Cp27I4EVI_SvMh2YQIE,1942
76
+ pyrogram/methods/auth/connect.py,sha256=pSHxdQY7SZqn6330kv2VVTyn9-PujV28k3495U2-VV8,1749
77
+ pyrogram/methods/auth/disconnect.py,sha256=TqoEGX70tyR-1U4YUo92FEnIgPFTPgfYHxOeBgF-9sI,1504
78
+ pyrogram/methods/auth/get_password_hint.py,sha256=tAXJFt_ywvIZ5_KdmyJQow-xdxvqMSnr22ywqoxuKlg,1307
79
+ pyrogram/methods/auth/initialize.py,sha256=Ey0X_2groFxBsQe_m7o7OU7IoAfnKpwD7reD98c2xkA,1762
80
+ pyrogram/methods/auth/log_out.py,sha256=FV_Qs5iobjXwyuB4fki2n4OSsQBReLiNHvE7qRa2xf4,1626
81
+ pyrogram/methods/auth/recover_password.py,sha256=nn3dcGvJA99l8E6A2fJNyGdRp7m7saUP0qVuHV4nlEk,1831
82
+ pyrogram/methods/auth/resend_code.py,sha256=x-OuwVq4eSXwL8usTE5F5SDd8r85GA51C5bJuW__4zA,2150
83
+ pyrogram/methods/auth/send_code.py,sha256=VCT4tpc8xW8jKXJp6O6qH18vJYbwDRj_mZsxWpQlbSU,2786
84
+ pyrogram/methods/auth/send_recovery_code.py,sha256=5s21Op59kO-NjGNkSy7ull2Gjas-iy0eT0T4lAVuVdI,1473
85
+ pyrogram/methods/auth/sign_in.py,sha256=04oAl-EtV4-nZ79N5pdpmoyxiTU6HSgbghXiCedC2ic,3085
86
+ pyrogram/methods/auth/sign_in_bot.py,sha256=EuzmBeVyIIcSB1c3s0j_7qCfbiKLVokypMrTX8fppfw,2723
87
+ pyrogram/methods/auth/sign_up.py,sha256=zzr8viLT6Zo_IE9ZIVvfzyU_8a6wlXP6XTmGUX1AZqQ,2355
88
+ pyrogram/methods/auth/terminate.py,sha256=AnJ5--Z7AhNL3vDiBvxgONGPfLNT-zjtNGyFj6eWXqE,2042
89
+ pyrogram/methods/bots/__init__.py,sha256=pmY56VGTZrJAhU7TKadIq5JKPE53wxqTAav-0NPGro0,2041
90
+ pyrogram/methods/bots/answer_callback_query.py,sha256=jfmLjr8Q_VWLC2lpmWPe7bEFiQlID29-FPbTisjY7Ds,3311
91
+ pyrogram/methods/bots/answer_inline_query.py,sha256=6JOB0lszuWJ-9jNXDif1l1JK2O1cE3m8mgXsxVYoWEA,4990
92
+ pyrogram/methods/bots/answer_web_app_query.py,sha256=IPqGvFu7rouC51EhMmrcax4rgzFw52qaZJPldpbXMvw,1989
93
+ pyrogram/methods/bots/delete_bot_commands.py,sha256=KBSL9gg4iHhsxX1X13yyOvu8yqOd_OmVgeH-giq9mPc,2360
94
+ pyrogram/methods/bots/get_bot_commands.py,sha256=dnZz6JI7EKkDvAkiWVb2ijuZfmmnFpGkEqrD_tugKdQ,2573
95
+ pyrogram/methods/bots/get_bot_default_privileges.py,sha256=Mbl_qNSBnTDIQlXnbsGZAIxVAZIzeESt2RPoM0USres,2051
96
+ pyrogram/methods/bots/get_chat_menu_button.py,sha256=cOek_NoNG_LOs1tUaqc2UqXh3elKzdUEoNQd3lI0DpQ,2319
97
+ pyrogram/methods/bots/get_game_high_scores.py,sha256=ais2gK7YfKhwDo_WhyOdi9WYj4kXmSPq8U9KKnMV3ps,2798
98
+ pyrogram/methods/bots/get_inline_bot_results.py,sha256=bnV9ayI6t3w7bZf2GqVuwo-sS6KvjsNmcCK81C0WNv8,3365
99
+ pyrogram/methods/bots/request_callback_answer.py,sha256=JK1hfk4wuLkyAotRbRCr8aeMlNstSwGAXAaDkKB21WY,2847
100
+ pyrogram/methods/bots/send_game.py,sha256=rbq_FS7kkBY-zYnYOoGLPRw0CXVvRw_-98g9l0KKQoo,3956
101
+ pyrogram/methods/bots/send_inline_bot_result.py,sha256=_EzBjeEPgVEFCbdc6_tlWVDK-Z_xcMaW5Y-ruQ7oa24,2826
102
+ pyrogram/methods/bots/set_bot_commands.py,sha256=LbMSB3RLHNRPcmX6Azakt289JRyx5Y82ksSde8t9gj4,2710
103
+ pyrogram/methods/bots/set_bot_default_privileges.py,sha256=KL2oX1O8f9Lsez1iSaxJKK2BEvw0tNoW8VKh0UUunW4,3186
104
+ pyrogram/methods/bots/set_chat_menu_button.py,sha256=jNzIy93GcYPqyg9FhvvN-NeBznstgDmQIJU-OVfSIi8,2048
105
+ pyrogram/methods/bots/set_game_score.py,sha256=5tpnHs16tgOfz2gEJKkgoh40N64Qzg_NVsaEGvw-Rj8,3946
106
+ pyrogram/methods/chats/__init__.py,sha256=adHfdJjLHO1RmXRgICa-Xp_30em-RXbc4kIOpneptWA,3439
107
+ pyrogram/methods/chats/add_chat_members.py,sha256=pxMyUKzp7Vs0FaOfP0VY4H5yvf5hiR1kPnmE99AJ9ow,3364
108
+ pyrogram/methods/chats/archive_chats.py,sha256=d2cHk63K_5gc1s_9zJdQibBH8xYRC4iYWd3l_yJs7Ac,2216
109
+ pyrogram/methods/chats/ban_chat_member.py,sha256=tAkWmDHDdG7qHJlDR6NWwA13Sz78-uYQi5NN8ZlNfzw,4620
110
+ pyrogram/methods/chats/create_channel.py,sha256=Vaur4qzd9wD-VQDXT1_OewDhwxCasx7RdGmXgJSkCN0,1817
111
+ pyrogram/methods/chats/create_group.py,sha256=v1mv3krOjtX09-EVOsuJTQjktOjNlnaq1mA6ic51n5Q,2281
112
+ pyrogram/methods/chats/create_supergroup.py,sha256=EiAyDC3Lo7yzvUZVIZ0yKf8-uIv56Cu6cq7SsB_zZsQ,1955
113
+ pyrogram/methods/chats/delete_channel.py,sha256=gj8HqiKl3TaZh948R30nkyeZsB5akyDhpCuT0SqPnRU,1585
114
+ pyrogram/methods/chats/delete_chat_photo.py,sha256=cBjrrl9V2ASYrNGAgFGUfGuGYBEtIMDHIBrGBZIopps,2307
115
+ pyrogram/methods/chats/delete_supergroup.py,sha256=5kn1O2mE7jOERzB9J-mirvK0cnvMtIgrsqhsb94B304,1603
116
+ pyrogram/methods/chats/delete_user_history.py,sha256=VUCMtrKZtj1abOsYGcdTcdw4YrcLMzMcfOHIV81EYoI,1969
117
+ pyrogram/methods/chats/get_chat.py,sha256=Npx6awIKGYBfDvgeAqNI-iwIpIOtJOf3adctonPxiGw,3282
118
+ pyrogram/methods/chats/get_chat_event_log.py,sha256=oTWBJjLjiEEvk0ipqFfkCSX3KpQ2GqNJu-8QD1xrtok,4032
119
+ pyrogram/methods/chats/get_chat_member.py,sha256=klM41rHgrhk7JuVuiyKAZ6_1p6vHJJqM08wgZJDR_gk,3338
120
+ pyrogram/methods/chats/get_chat_members.py,sha256=TQ5z1ApQZQQzxNUQkBIU3l5Vm4knkC960NPiMk-vFS4,5282
121
+ pyrogram/methods/chats/get_chat_members_count.py,sha256=HGp5AxViuUkQP8xI6DW0r36gdncn5h0ikZtU1wViXR8,2264
122
+ pyrogram/methods/chats/get_chat_online_count.py,sha256=jjz86ljyBDVcSxA3IqLpvmY8t6kX1GzMJ-IGBsywfYc,1723
123
+ pyrogram/methods/chats/get_dialogs.py,sha256=tWnkn-twKewPHPR867Lw5lIWk7HNrmeq0W29h5k9_ys,3360
124
+ pyrogram/methods/chats/get_dialogs_count.py,sha256=0JagwclwbH6ws3jkMvyGbtjmsYFbWWBTKJUPz43Knjs,2096
125
+ pyrogram/methods/chats/get_nearby_chats.py,sha256=sOoNjQ9qHKzD4UYoVusMM5G65KnqzqpzzwLwByJf6tc,2401
126
+ pyrogram/methods/chats/get_send_as_chats.py,sha256=T7tclOYX5NLg5SxZfW_xLpqwqGQObLsMJ3Xh49_r0nk,2136
127
+ pyrogram/methods/chats/join_chat.py,sha256=nJwFMp3HxWzrikg0_Ma2vGu1SKwQPaYAdDcfCnEJiGA,2694
128
+ pyrogram/methods/chats/leave_chat.py,sha256=ZzX4K2BYcxo3ufJ4o9ePyjuiRnT5OQglKB7EC9K9ZQA,2605
129
+ pyrogram/methods/chats/mark_chat_unread.py,sha256=sBpqKV4IqtbBxIlOta__qQg4vlvIdFqX1sQTZsX9_XA,1528
130
+ pyrogram/methods/chats/pin_chat_message.py,sha256=O45EDfn60ut5SyyAFe8dxKREaNRbL7WI7Fb_zU_EunQ,3157
131
+ pyrogram/methods/chats/promote_chat_member.py,sha256=15q8IZvvfmHPdfbjlGhsBl1hshsd9zTLLD6IaVB6UrQ,3861
132
+ pyrogram/methods/chats/restrict_chat_member.py,sha256=qVZUZICcW0FJhTZ1jfoZ_Y5HSNYuOpPg3-0XYdf0b-o,4312
133
+ pyrogram/methods/chats/set_administrator_title.py,sha256=c4qhSRHl1cLf8ymYIXTtGe7uu2LONq6WnVWHwG81EJA,3136
134
+ pyrogram/methods/chats/set_chat_description.py,sha256=DQNYi2YqmFpylqMFWJV6yzF14M5sGbf8jszYAoj1QYk,2247
135
+ pyrogram/methods/chats/set_chat_permissions.py,sha256=5hHAcEaSmFzH0or5WMpgvZOSDqMNAsa8KJ0YslZShh4,3415
136
+ pyrogram/methods/chats/set_chat_photo.py,sha256=AgSaQ-PAzjaJisWcwAlBfGd4RThebOR6d8KS5b9p8kw,4601
137
+ pyrogram/methods/chats/set_chat_protected_content.py,sha256=-jT3B1M5rfRhXe6cX5QHhcCxgk2nImt1E7WJxeNU4I4,1727
138
+ pyrogram/methods/chats/set_chat_title.py,sha256=T9DQIBSWowVh2VoFIEQPB0_mK7Bz_mG1BrJejVqGA-k,2572
139
+ pyrogram/methods/chats/set_chat_username.py,sha256=EYlxEi8ovCWKZdocIyI_mphbXLZt1w74r0B7U_69zDQ,2296
140
+ pyrogram/methods/chats/set_send_as_chat.py,sha256=QsipC3pmXirw4ukjo4k4tNzQlAgEaQ0UtIxh3j_D524,1982
141
+ pyrogram/methods/chats/set_slow_mode.py,sha256=pf5dmljR4pYBkh003DM0s179_TAFZioh1_aXw5lI6vc,2083
142
+ pyrogram/methods/chats/unarchive_chats.py,sha256=eDZ4gm-JmIH893MEwksxm4OuqW2e5a-E-PTfaFDSpl8,2230
143
+ pyrogram/methods/chats/unban_chat_member.py,sha256=lhCvAW_Qxua1bgJdYjNTedBVtKopFHsPP6ojDNXdkRQ,2305
144
+ pyrogram/methods/chats/unpin_all_chat_messages.py,sha256=-in6YiGk2VALHo64mEB_kslx45HbG1Q-k2Cn0smfQYI,1940
145
+ pyrogram/methods/chats/unpin_chat_message.py,sha256=34cQTFacTwmk9eFPoZbjhyZqor8TRXiUkhUP6kdx-P0,2139
146
+ pyrogram/methods/contacts/__init__.py,sha256=yOSpR43yZRyTG1BESgFaLIl9GUGuDubycOn1QgjwG9s,1154
147
+ pyrogram/methods/contacts/add_contact.py,sha256=5hdJsZSVIzamjulgwil5-9t0HH1EC7gGvAybSL5-0GY,2566
148
+ pyrogram/methods/contacts/delete_contacts.py,sha256=o16G0xjhW0s9U23OOVf95UojcCDWEEtjIktCUDpFq8w,2448
149
+ pyrogram/methods/contacts/get_contacts.py,sha256=x51h5r61JtOJvg_7kbdxCQ3vfJj0BHG7TnS3l-lp_Tk,1605
150
+ pyrogram/methods/contacts/get_contacts_count.py,sha256=p2xPnjRSTQKwU7cLYDr4V_owhR7uaiFnfM5sdBHfHfE,1422
151
+ pyrogram/methods/contacts/import_contacts.py,sha256=SavyyDMF_B3-2tlzjXu6S7V7wKSNuoBAYZcVh5DReJY,1934
152
+ pyrogram/methods/decorators/__init__.py,sha256=zfA3xke1L1zDcpAJhxU0svgb6RriObW9nuPCbPgOrmA,1624
153
+ pyrogram/methods/decorators/on_callback_query.py,sha256=pfluCK6sUjj19rjYEeCJgi2-lAVW1Jo6fE5QVttoJ_A,2181
154
+ pyrogram/methods/decorators/on_chat_join_request.py,sha256=xj3_BATr2J_2GCZ0fureS-LhaeTOJPDi150FHkfmw4M,2169
155
+ pyrogram/methods/decorators/on_chat_member_updated.py,sha256=eKHEywNRh5uMeMPkgQfK4Bp5EgCNd-tUNZPC_k3f6CQ,2190
156
+ pyrogram/methods/decorators/on_chosen_inline_result.py,sha256=SUSKQUyuMBHKn5Rww3rSMkTw4zPgBjrv0O_PenJkfyo,2217
157
+ pyrogram/methods/decorators/on_deleted_messages.py,sha256=9aY_7x824tkLR-iDvvdAziHo-ZbHdR3VfndmSX4e-TU,2183
158
+ pyrogram/methods/decorators/on_disconnect.py,sha256=F6na-06Bu1344pnELge95XG-ZmgR7eJ1s0oNq1SKnXM,1553
159
+ pyrogram/methods/decorators/on_edited_message.py,sha256=fV3EO_6MXQ6cssGJ592uUEa19jLQXypDZi9prvslGqM,2172
160
+ pyrogram/methods/decorators/on_inline_query.py,sha256=KlMO9TKBIkbtr-Cxuxpm6evwQ5OWVI4uX8dVlC70yCk,2167
161
+ pyrogram/methods/decorators/on_message.py,sha256=ja05g_qjFSUsF1UuJBOSA9XNEnnn06AWLk8htNNaPck,2138
162
+ pyrogram/methods/decorators/on_poll.py,sha256=oSnvFaHyw6utJhon0RAADNbOSM26WKCb7sdW4tBTDUk,2120
163
+ pyrogram/methods/decorators/on_raw_update.py,sha256=A8X4AMmNO3AMQPjfvibslAnVxXPBjcd1Yo7qlUaIaTY,1818
164
+ pyrogram/methods/decorators/on_user_status.py,sha256=b2iFqzaaHVfslnRaNdV0hHfoZI_EzwnAAJtazGetPTI,2154
165
+ pyrogram/methods/invite_links/__init__.py,sha256=jJAxU6EIgqJ8_NjLiI5fHJdczFed98Y-5cNJKfG8jGs,2435
166
+ pyrogram/methods/invite_links/approve_all_chat_join_requests.py,sha256=Y8ls46X7Hx0mSAbhQEmTIZaqSeUIT0_4etVw2rmO0DQ,1894
167
+ pyrogram/methods/invite_links/approve_chat_join_request.py,sha256=aKt3uVOdYzmSjlR17Thdt17iihAGSj4i0Ib4wszvQhI,1924
168
+ pyrogram/methods/invite_links/create_chat_invite_link.py,sha256=fKeu5Xa2_Ho4XIoDoIPFRely1fvfXFTH5uA9qUBAVRY,3369
169
+ pyrogram/methods/invite_links/decline_all_chat_join_requests.py,sha256=J6tym1uAViGJJBpj7jmKCB-gRfRuSF6P9b8orywCdg4,1895
170
+ pyrogram/methods/invite_links/decline_chat_join_request.py,sha256=MK7-OBbbiQVzVHZXSufHvNjZj2nDqg_CbbSCIFHARiE,1925
171
+ pyrogram/methods/invite_links/delete_chat_admin_invite_links.py,sha256=d68Q_qjmAavM6-vl6xxiFHANlXRn8qXNxu_Gzq-su54,2031
172
+ pyrogram/methods/invite_links/delete_chat_invite_link.py,sha256=bsfuBTZmQl8dE7OXk-54W11s8Cc1_gIORkzyZR839Ss,1751
173
+ pyrogram/methods/invite_links/edit_chat_invite_link.py,sha256=ZNogt99XP9ggAG3DFsSRjTFb3BxfTHM1vAAUyzu_eDs,3533
174
+ pyrogram/methods/invite_links/export_chat_invite_link.py,sha256=2kQVF1GQXMlgd73lhZIvrNH0N0H7dGum8DWs0IeEbys,2582
175
+ pyrogram/methods/invite_links/get_chat_admin_invite_links.py,sha256=SdEgaLv_RqDsHEQo3UBxZl6BEHB4A1M3L47IeFpsjgs,3566
176
+ pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py,sha256=zoZdXvgRRrw75wV0x6eQEHLpAdUF1KzJKJoz5JPtlW8,2335
177
+ pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py,sha256=j4acqHoph85S3d_ztZP0QgIKAgMwX1h5aEtmTp0vhWg,1997
178
+ pyrogram/methods/invite_links/get_chat_invite_link.py,sha256=t_4_ddjNQEqxllBUBX03e4iMdLt_HdWXknfWWRMCm5U,1925
179
+ pyrogram/methods/invite_links/get_chat_invite_link_joiners.py,sha256=DO5I-4MyFmpGCbhU_Int-K7bhEeZuLdcqWKQZuO9mZQ,2928
180
+ pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py,sha256=H-uRoL2JRlrZbXxwbVdb0VqxQsijDX6DTfEaDXljk1g,1929
181
+ pyrogram/methods/invite_links/get_chat_join_requests.py,sha256=8vvbKTl0stM5RQi77wSC5xqO_0MJdcFtPoIcULHIQJQ,2947
182
+ pyrogram/methods/invite_links/revoke_chat_invite_link.py,sha256=zY_-XAQYXb6B0C1-7Zl6AoYpkMPKjrVhC6MTfaVZMLQ,2329
183
+ pyrogram/methods/messages/__init__.py,sha256=a5FXHDQ1E3Igec1rjcfVNNQyAS1fe_v1TbnG7zenw7k,3921
184
+ pyrogram/methods/messages/copy_media_group.py,sha256=EuVx83X48_wasOtVZxefKA9yhFFQBioyNmXfq2ti8mU,5963
185
+ pyrogram/methods/messages/copy_message.py,sha256=vH9qP6VRqwzmXARJ8391hbUaZPlrQ0nCLmx8P0ZpayE,5179
186
+ pyrogram/methods/messages/delete_messages.py,sha256=PgsVHswsRQ_f9ympNS7DM8-gHHBnnBRw4Du4evqYnJA,3148
187
+ pyrogram/methods/messages/download_media.py,sha256=ywWibTMTYiSbg5lZ_l6WKDNMP3pZ8ThwVV0RX5CfRXo,7530
188
+ pyrogram/methods/messages/edit_inline_caption.py,sha256=dmr8PNbsk1J_N5PPsHowfiAQqeVkUA-JfOOWZlgw_Ho,2271
189
+ pyrogram/methods/messages/edit_inline_media.py,sha256=jQ8KfuZyKMmC9RVZzL-8H-LZvUYKxa8MMj29uYRkbwI,10375
190
+ pyrogram/methods/messages/edit_inline_reply_markup.py,sha256=4HjFqTkm5mcbuj_D82q-wiQKXemgeWfR4lF-S-LTbJU,2464
191
+ pyrogram/methods/messages/edit_inline_text.py,sha256=tTsYC4MkUjETwySGpM-IxqXLqcjKAg3Z0LUk4a9FeZg,3115
192
+ pyrogram/methods/messages/edit_message_caption.py,sha256=lSk2xefczNONy1IsBhT1QK28SpvVVt7zn0Wza9_6_h0,2978
193
+ pyrogram/methods/messages/edit_message_media.py,sha256=hyD23fpfo7DGkPcZREi6TYwGwrhEqhD7M_1HzuaKgWY,13022
194
+ pyrogram/methods/messages/edit_message_reply_markup.py,sha256=cTBRVLGR5JXvHkzjp2BeHYVSCfVyTXaUGurvCpgEJLE,2976
195
+ pyrogram/methods/messages/edit_message_text.py,sha256=8pCnrak4uxkz00Ppe6DNh8kD2vtRkq2QN4cscitSN3A,3906
196
+ pyrogram/methods/messages/forward_messages.py,sha256=NYzY8xhBQDQqfIHU2sfKZwjX-hOkil1CFNiRp4TQMR8,4564
197
+ pyrogram/methods/messages/get_chat_history.py,sha256=dKmwBXostwOpTYmIuf8rHqs6edxygTPGKc7Qu-gObP8,4041
198
+ pyrogram/methods/messages/get_chat_history_count.py,sha256=O_vSD5QYdX8XDO_G0rq_5pY7c_WM4xv80CPrrB843-Q,2389
199
+ pyrogram/methods/messages/get_custom_emoji_stickers.py,sha256=dOBQIPSlbluS2CQcdjLzvbyCbbmQvNzq3MLD4zJN6Fs,1980
200
+ pyrogram/methods/messages/get_discussion_message.py,sha256=EDksLjNnqbAZrgUFbtGGaimXmdNHgaAnqQ9tMC9NHfI,2229
201
+ pyrogram/methods/messages/get_discussion_replies.py,sha256=e91DJ5mrM8dG17C7c2P49w8TUV6N4kIVqfRLsWnVeJo,2808
202
+ pyrogram/methods/messages/get_discussion_replies_count.py,sha256=3lMJGwc16XR36An0MqsnrccT6PKhy_eSVuUD2Cwuvro,1950
203
+ pyrogram/methods/messages/get_media_group.py,sha256=JrzsjK_9OPWpRWfV_8fRz7Z9_IPqTXeQ3bO73dJd6sA,2946
204
+ pyrogram/methods/messages/get_messages.py,sha256=SNC6Tj3V_anFYVGjKrr68LzLE5lgscfTMYVoZoUHz1U,4741
205
+ pyrogram/methods/messages/inline_session.py,sha256=3koTaqZ43dA15V0PgDxAJ_UZhZco-jgrurfYgZJoKNk,2175
206
+ pyrogram/methods/messages/read_chat_history.py,sha256=zbpkJ4PLWS34mLWx-GTC5Li2gNciprCdpT41jTvv3UY,2527
207
+ pyrogram/methods/messages/retract_vote.py,sha256=IqDx1OMYxpj8QQHCFrOUcJsgkFeQrpJ0Gu7mFY6rhhM,2124
208
+ pyrogram/methods/messages/search_global.py,sha256=NDE-cWy2kYhIRHfTzCtoWPnJozQevxwYwVH3o-8I7Nw,4160
209
+ pyrogram/methods/messages/search_global_count.py,sha256=3xiTdLSCo5iq_Jxc83eIXfsh5JfhKzChmSjkMwp0nqw,2156
210
+ pyrogram/methods/messages/search_messages.py,sha256=MKyMCHXyN1TeAuaKKa-_P9iGxDR3AqPvy-lwCSS2pbY,5349
211
+ pyrogram/methods/messages/search_messages_count.py,sha256=qPZLc9UxRoq85h5MvIvm6AJMUcfY71mBMxNHIIQKP24,3203
212
+ pyrogram/methods/messages/send_animation.py,sha256=UIuD1cihjAh6A75rAaCyWQ-q_ZyLZ3IGgXmziSvdOWg,12584
213
+ pyrogram/methods/messages/send_audio.py,sha256=xwft4A-bRT6V33Exh2YhbxASToV2HbbwZe2syVgFzQU,11118
214
+ pyrogram/methods/messages/send_cached_media.py,sha256=MiWaMjgHq7NzoF8CWGueLs6-xVAQgaPu6ItWownD0y8,5479
215
+ pyrogram/methods/messages/send_chat_action.py,sha256=iPKzZehOgkVyfjOSb5OegmUWrA7mFGnuJG1dQCRlmvY,2817
216
+ pyrogram/methods/messages/send_contact.py,sha256=puOaQEJ3yRd3cyvZCY1yJQqfpPK9ur6Nq6I1jIR21P8,4867
217
+ pyrogram/methods/messages/send_dice.py,sha256=oKnnqgOQiIvKdwzpwMLV8cnW3TQvB-RLZVS79UAM7kk,4841
218
+ pyrogram/methods/messages/send_document.py,sha256=UaKalJAbanQ9gdnPyGzzHjmqz3JSNMu3ZcEDRp4GKfA,10468
219
+ pyrogram/methods/messages/send_location.py,sha256=D4fK3C2Iog3NVyE0YRHUr1hlQy7Vj8exqEkGWQ61C6o,4576
220
+ pyrogram/methods/messages/send_media_group.py,sha256=EvJig8p4z9KDoTl73KOcAE8pMj7EIw35fAxm0kCUMfA,19906
221
+ pyrogram/methods/messages/send_message.py,sha256=n6mAd_c6B-EkCb39UD1Uh4HTpssY0iJnwAZcEs1k62E,7396
222
+ pyrogram/methods/messages/send_photo.py,sha256=-vPm_FmI0F98_-H5HsBO3hQ4nLIJKYeN2fPS-7bHt0o,9438
223
+ pyrogram/methods/messages/send_poll.py,sha256=fh7kU2reGADSNmpem8roIJf7tYjsY55jsANKkMUTIfM,8071
224
+ pyrogram/methods/messages/send_reaction.py,sha256=zm0iKvaU2XEcagld6kEvrpuX7XoumFIiVSij1W-pLUo,2361
225
+ pyrogram/methods/messages/send_sticker.py,sha256=M_XeRzy6GevU71ezQYBH1aaBre6lWPSG8ulM2ZgoJWM,8338
226
+ pyrogram/methods/messages/send_venue.py,sha256=GdzLUet4imeetZA8oPpiEGIFs-G_FE_RmoS4YQsKCFA,5397
227
+ pyrogram/methods/messages/send_video.py,sha256=pogxEmsB6dOtzFCQ4Oyuhw9YubkI-xoewGX2lrKxcWA,11954
228
+ pyrogram/methods/messages/send_video_note.py,sha256=kNeatX8q_wCSBHb8qWXPgpWiTyXpRNNKJBI62FUrPRc,9312
229
+ pyrogram/methods/messages/send_voice.py,sha256=cyBtE8ZXyY4_-F1tr8uXK-AhtS0J5ctAjbvQDCIkMXM,9428
230
+ pyrogram/methods/messages/stop_poll.py,sha256=p2BRsKpGDLU1pFRXd2qQG_2z_O4eiwbaJgJ5EOdDpSg,2819
231
+ pyrogram/methods/messages/stream_media.py,sha256=3zGibhZmLYZhTuusLyFdZZ9zqLLt7F9dJKMdbysnUIo,3937
232
+ pyrogram/methods/messages/vote_poll.py,sha256=nhc2PA33qNGL-VAlwYqh-fEmPUP4ehta2REpGyZu80g,2504
233
+ pyrogram/methods/password/__init__.py,sha256=Ok9BhMf3Z96wqF3US1qqjGT67z5mylwQdDCcnt7i-L8,1088
234
+ pyrogram/methods/password/change_cloud_password.py,sha256=UYwjT1MsALY49cixsm-XY-Kw9IuoeDESecAyVVoBnec,2797
235
+ pyrogram/methods/password/enable_cloud_password.py,sha256=W5tVXfwoGCgfvBM7EDlx976Hazl21lVKjbpK8Rc-iFQ,3006
236
+ pyrogram/methods/password/remove_cloud_password.py,sha256=JidQpLomzEs6teTcF3zNcthYrapIvCfhBfgaBptcyyM,2143
237
+ pyrogram/methods/users/__init__.py,sha256=vQ6XbYSvPnfYMWAT5YH6bZNOXBxiyp-NW9sTeI16Lpo,1659
238
+ pyrogram/methods/users/block_user.py,sha256=2yZTTl2fOM_1VHgYU8MQa5g7IjCYBWQo0xdHyIcOl_I,1771
239
+ pyrogram/methods/users/delete_profile_photos.py,sha256=0-YdzEv3DTWZcmb9NWQ4hCTFowoczZK2p8EQJTYzk_8,2237
240
+ pyrogram/methods/users/get_chat_photos.py,sha256=pWt78bsPiZ6aC6nd0QyoAIHgRo4wXJft9DHsZCOTQHM,4421
241
+ pyrogram/methods/users/get_chat_photos_count.py,sha256=vYmpEokrlTrMs20ltV5bWwO-r07UIy96kMpGfzuX2I4,2509
242
+ pyrogram/methods/users/get_common_chats.py,sha256=soBBRyz8MnSFuE8RYaO1k3lLPyawtCyKGPTeTmA7jkg,2359
243
+ pyrogram/methods/users/get_default_emoji_statuses.py,sha256=Dd-aJ2BFixwg7aNCtW25LUpTV81Zd77C6UIoo9zJvC4,1664
244
+ pyrogram/methods/users/get_me.py,sha256=R554nwFIq-8NY_FA-yHnELHtAoiM6IosyEfeCqhGQD4,1565
245
+ pyrogram/methods/users/get_users.py,sha256=ktcg8-Wsba3pv8NK6tks-nHLdaZcc9fZk5KEFcs0q0Q,2562
246
+ pyrogram/methods/users/set_emoji_status.py,sha256=TKK0LTkroeJi5kWgep7YzUdRiA9SpltZ3aNZpUBX79k,1882
247
+ pyrogram/methods/users/set_profile_photo.py,sha256=2oenLYvFQShesa7bC3w_c-lIEkyjW1jkSVikhEEZMf8,2718
248
+ pyrogram/methods/users/set_username.py,sha256=N12t7V2GSXzfQB8MpRfi928gNTyq92AlmG_TdoejBiA,1876
249
+ pyrogram/methods/users/unblock_user.py,sha256=xXE_CWZ5badwb3tlmkn5Zp81PZucRhgbN9pOCMmBeJM,1781
250
+ pyrogram/methods/users/update_profile.py,sha256=FcLw9B1NeOGGFBLF8UZSSr8uhiTYUgpV5YiBAbr53iE,2376
251
+ pyrogram/methods/utilities/__init__.py,sha256=wvcEsNaEbrabTtawjhz8Bo2cnHYZYhvCTtqS4hirRZ0,1253
252
+ pyrogram/methods/utilities/add_handler.py,sha256=TIAkUs2eDbtny3OZgnRfgT3askJGB4WfgVtAFdEP_C0,2346
253
+ pyrogram/methods/utilities/compose.py,sha256=q3oGzYOLpHoANag_uXWGkkLe73vZo0weLqQsYMglNus,2232
254
+ pyrogram/methods/utilities/export_session_string.py,sha256=fDfJQK_IEcR715JuX9gN53UcKKJCDNY5yM3kf9Y2geM,1557
255
+ pyrogram/methods/utilities/idle.py,sha256=lx4ShloWi-NcrQdaMM12AUaC5BeX5y-WIF-fk0AuyRA,2750
256
+ pyrogram/methods/utilities/remove_handler.py,sha256=3hqUvIbPDMhVQTZMevY0UQz3mxgCTLh_SY3K_em2J44,2210
257
+ pyrogram/methods/utilities/restart.py,sha256=1wgvjNkoruGqatbs2Btnh-LQGukc-pyVg61zkxqk4TU,2294
258
+ pyrogram/methods/utilities/run.py,sha256=CmHh4jiG5sQXtu4FwpkMcvmoSxpgNHKdUttEnwjf1Vg,2857
259
+ pyrogram/methods/utilities/start.py,sha256=8xzVSQ-DOKBGPyOBgpGlDspv4HuIrhbj7L1wdTNL_TU,2364
260
+ pyrogram/methods/utilities/stop.py,sha256=rH1S5flZ8FUhaHH9iTpW2PJELSkRJ51ZwS7SrcaDDoM,2117
261
+ pyrogram/methods/utilities/stop_transmission.py,sha256=iClg-dNY526ZX51KIAnej6UFQ8xzbfVvyp0QW2uaYRQ,1710
262
+ pyrogram/parser/__init__.py,sha256=_edKp9rOvapFltGr6u-SLH62298yqBdKLe128f04GyI,846
263
+ pyrogram/parser/html.py,sha256=zXaPWhO0Yi4ms3ABOALBH_KJsgzrx_rGGqRVWyus5Tk,8684
264
+ pyrogram/parser/markdown.py,sha256=qh2vl-63w1qWn0RJpC78dyHH1i4f0rNlwscIFwnfTqo,5770
265
+ pyrogram/parser/parser.py,sha256=QT8UM59HP-vGgce15QCtsG0rh4vP3cU0UyqixmkgBsQ,2077
266
+ pyrogram/parser/utils.py,sha256=XUj5yOSZFBX26vkclDNKWRspsjZlokgYZr-9s1nraOI,1545
267
+ pyrogram/raw/__init__.py,sha256=kJ96Z7VBF3hQvwLWrnHWMWC6LZQCvLb3cTFr1zVgZv4,1040
268
+ pyrogram/raw/all.py,sha256=Go633WlI80UovG1_ecvT5uDnCAn6s5WGwBH3Yx05sPE,105152
269
+ pyrogram/raw/base/__init__.py,sha256=LYdHapvj4_0xstJczwIYFJCysn_jOLCgXewYIJPjdOU,14002
270
+ pyrogram/raw/base/access_point_rule.py,sha256=HAbFAGVtkEZXieo7_5WOPJEWi_9Hz2js8fdFesYzDX0,1934
271
+ pyrogram/raw/base/account_days_ttl.py,sha256=DDvvusD-IAOwcFsJrkFaG1u7nr4SZiOnTtnGQ5qM0Qw,2134
272
+ pyrogram/raw/base/app_web_view_result.py,sha256=1iF3iFrzNeIXIpKacBaeI2qhDH5rBBZREjhSuhnwcho,2158
273
+ pyrogram/raw/base/attach_menu_bot.py,sha256=tzGNDikhYeaYrwfapL1futXuKK_zyMd9hbgR65pTq2w,1922
274
+ pyrogram/raw/base/attach_menu_bot_icon.py,sha256=sDTM8qhuObHCj0RZLqvOqJ0YAW081DeEx1UpT7NI3Go,1947
275
+ pyrogram/raw/base/attach_menu_bot_icon_color.py,sha256=KRht07W3RvGheEKBFIracmtfxEq7shoeUK3svrK8RXg,1978
276
+ pyrogram/raw/base/attach_menu_bots.py,sha256=Skmq9nmPByS9e-Hlhysb5Pp4cA6RoP35tM4aoncWC_U,2215
277
+ pyrogram/raw/base/attach_menu_bots_bot.py,sha256=05D9bYorKlihg73Xrn5RH5gEQImzqp27lUJgz3ooFEk,2157
278
+ pyrogram/raw/base/attach_menu_peer_type.py,sha256=5nW_pxRvRPk30gDbGCcRixTdzC6Sl-0FB26GXewPOog,2256
279
+ pyrogram/raw/base/authorization.py,sha256=NdVR-PxRhJHXgiB7_Sriy0Vtn_GbMuf-NRwF_Nfubx0,2126
280
+ pyrogram/raw/base/auto_download_settings.py,sha256=TZoz1nZRB5cSOmWIMb1eqG1sBP-bO_ygjLgIY0NVUpw,1964
281
+ pyrogram/raw/base/auto_save_exception.py,sha256=J8KVjMWZSwIEx1TXA6xw76354SvISdxqtK2xQQMtdYU,1946
282
+ pyrogram/raw/base/auto_save_settings.py,sha256=EC7i5raFNTt8mAd13Zla5Xio0DYPOp9mzFB8t3Cc5Ic,1940
283
+ pyrogram/raw/base/available_reaction.py,sha256=TH6tkgGE1cebseRyTYzMzOIBcgssJ3E_jK1OfwPzNLY,1945
284
+ pyrogram/raw/base/bad_msg_notification.py,sha256=xYvmjTbysK0j_t_kz3OeeuQtN4_WqKaB0lFnJ5oi4pE,2004
285
+ pyrogram/raw/base/bank_card_open_url.py,sha256=opCBHmJSPgvoEBb_xUGvgen7OXfMk0PJj7wHvE4ktnM,1935
286
+ pyrogram/raw/base/base_theme.py,sha256=hatzA2vxgHELE09TQJHkbbL9cZg2hKuxDkRtjimicl8,2124
287
+ pyrogram/raw/base/bind_auth_key_inner.py,sha256=OIamZ0wlVYmBXCk2gF-g7zT8o9aZxFjxBtaD8lnJ1dk,1941
288
+ pyrogram/raw/base/bot_app.py,sha256=PtjQc_-DAUb6ZwiIIHfv4bbUNhuhLvPxm5DU4A-KTaw,1939
289
+ pyrogram/raw/base/bot_command.py,sha256=IAroVeyWIKDLDas7Jxje5uDo5ZdJ9ivj6v_k1ea-8OE,2107
290
+ pyrogram/raw/base/bot_command_scope.py,sha256=B34VkDCdKfXIqXAYTHrPfswb3VV7XuyZc1BFSqYe3zk,2363
291
+ pyrogram/raw/base/bot_info.py,sha256=uUDIhkZRIygV_ZkxwEbazTXM1SdOEKilo2uDbKKkHoY,1885
292
+ pyrogram/raw/base/bot_inline_message.py,sha256=45pYpxtgSC9cFBLZm3kW-9KAphyeG8w73lA1MwlcKMw,2336
293
+ pyrogram/raw/base/bot_inline_result.py,sha256=wmpeqzqS1G9R8ZBWmDNuvHkt9TXJQh5FjxHLU4y9pu4,2000
294
+ pyrogram/raw/base/bot_menu_button.py,sha256=G8Ba2K9YVNaSzsVlLinCjqQwP3YVLxYgq1aU94LUtv8,2261
295
+ pyrogram/raw/base/cdn_config.py,sha256=2XzpNnJHVIashRGc2akp3xeMOVs7nXNU_O1MES9Skqk,2099
296
+ pyrogram/raw/base/cdn_public_key.py,sha256=WdV5aB92ttR5r6NlrDPTA2VL_tar8EFIkImfXkhcnR0,1916
297
+ pyrogram/raw/base/channel_admin_log_event.py,sha256=A1Pcy94SgCv_7yFPad-C4VxF52e9781LcYY_L7_CBGA,1965
298
+ pyrogram/raw/base/channel_admin_log_event_action.py,sha256=esDJUaF-tRr9RI5aYwjB48cYg3sdjFAhhJeXx9lg12A,6564
299
+ pyrogram/raw/base/channel_admin_log_events_filter.py,sha256=iHAIkhuJSEugnm30u4U4ZlqCaYhUOoD2F9b-aF5AK1Q,2008
300
+ pyrogram/raw/base/channel_location.py,sha256=Qjqcz1YyIhNAqvlnMwTKJlFPdT3cobXz8tdgYOgdn0g,1999
301
+ pyrogram/raw/base/channel_messages_filter.py,sha256=rSFL6WmHZgdnO4TDkuc574u5OPzYFcMfuieSnyMUDtQ,2048
302
+ pyrogram/raw/base/channel_participant.py,sha256=IY3HVbshU2TS4KLhqVBp4QPziqaSgcHz-bwKxJ6V7Ew,2309
303
+ pyrogram/raw/base/channel_participants_filter.py,sha256=UzahwXolxtDDZ6omyA5DXS0Vpq2L4wT_NV4CrfMRXq4,2524
304
+ pyrogram/raw/base/chat.py,sha256=a3VbBC0-AJLfdl1cHjCA5PFjjGPKvRT0hsxO0MBqV0g,2057
305
+ pyrogram/raw/base/chat_admin_rights.py,sha256=He7_j3-pGA0PxjMaYrmckwL51A_dBgFN1maRAGAq0Ao,1934
306
+ pyrogram/raw/base/chat_admin_with_invites.py,sha256=ySlrUAgN1zdB5ee1giCQxiqkn3EX5y5jjjD8yjTNIJI,1965
307
+ pyrogram/raw/base/chat_banned_rights.py,sha256=lU5rc_lQaOdswbhHhWDDxj3vFEl1XjKfWv5MLu7dHJU,1940
308
+ pyrogram/raw/base/chat_full.py,sha256=IWHPyJPV5lLZHNg6QDhsKHKjtneJMJ9MXpmnpzUHZyU,1939
309
+ pyrogram/raw/base/chat_invite.py,sha256=40c2IkUArgCT9-fabuWyjDushoA7GvBnbINylR-hOy4,2225
310
+ pyrogram/raw/base/chat_invite_importer.py,sha256=eZQx8r5BmveXMLmQqMIvCcjbe6Ljz_Hzff9CG7Iyunk,1952
311
+ pyrogram/raw/base/chat_onlines.py,sha256=9UJnVrFhquHdwmkgKhVVsMSVSlpI4WgDRnQdgbCrMrQ,2113
312
+ pyrogram/raw/base/chat_participant.py,sha256=36KlwORegP1j07nKnzkm3Tt0KRuCteU4xQqEb_md_Hk,2068
313
+ pyrogram/raw/base/chat_participants.py,sha256=zxzkZrjqmPbeoC_63lvZ9Vmu98THYFXav9FGEWS6GLI,2015
314
+ pyrogram/raw/base/chat_photo.py,sha256=NpcevXYa-_8n_d5GPKwn5aU-XozWAB3vF3ngCEQM8JE,1951
315
+ pyrogram/raw/base/chat_reactions.py,sha256=33NbsI94fDZJZucOQbgj4G9wLYB0eXPwEhH_anNS6dw,2046
316
+ pyrogram/raw/base/client_dh_inner_data.py,sha256=PFgpzc-iIf10ap9WJoASXWuJ8G3QyvdrUPXIpIHVhD8,1947
317
+ pyrogram/raw/base/code_settings.py,sha256=pB_DK6r4tEAJyfmoS607X4jJD1H0Emy-Wvsbd7-GGus,1915
318
+ pyrogram/raw/base/config.py,sha256=BoqA9jHtl42CNM_VGqKVoTajbb2K9uWjoXgDEt1Z7hg,2077
319
+ pyrogram/raw/base/contact.py,sha256=VMX0cT9h-ecu1ZliSNK3DWHXfeGTwEKYPWp2-6Ns2JU,1884
320
+ pyrogram/raw/base/contact_status.py,sha256=l71N7ntEb1VSaIOHiKrdGkf1-5WvbKwSXpcP8Za_reQ,2126
321
+ pyrogram/raw/base/data_json.py,sha256=pM3wWmrdQiOh_Tw5Nzw9Y_82ee9_eyDDmMY9n5yiwIs,2131
322
+ pyrogram/raw/base/dc_option.py,sha256=bgkeoKpzfK_hiasKV0Dx-O195j539xf5UehVb_qq-YE,1891
323
+ pyrogram/raw/base/default_history_ttl.py,sha256=uGyzzJ2kYPzUvKVUIy4G6sk6TF7wcLfhHeBErdmOhEo,2160
324
+ pyrogram/raw/base/destroy_auth_key_res.py,sha256=CN8Shbf3MVqepNfSoy4po8Ms5qeNKmddr80pezrZO10,2267
325
+ pyrogram/raw/base/destroy_session_res.py,sha256=GmNMiVNivKrrCRqnsB9ZcX9JctBpJhDzAsHhLQKPwME,2205
326
+ pyrogram/raw/base/dialog.py,sha256=AVtF1FOtnGhaRZ3Xdn5T7RpYjG9QIAzi66lmNRBf6eI,1928
327
+ pyrogram/raw/base/dialog_filter.py,sha256=1dmjupeWBuulmTRBjjjwzufGYRh5ygngQmkLIp4idsA,2254
328
+ pyrogram/raw/base/dialog_filter_suggested.py,sha256=Dj1BBOZEVUDK0wKMU1rJGOlbmmtDqF1fxD4BSGPvJjA,2189
329
+ pyrogram/raw/base/dialog_peer.py,sha256=afNG9K0pI4I8tq1mWuxdyP-lHJEk6FTVdJH1MjSkjtY,2175
330
+ pyrogram/raw/base/document.py,sha256=feH9PRNihuGCsVOgngmkfwNT8JGMEX7ss7bMH2X9KII,2266
331
+ pyrogram/raw/base/document_attribute.py,sha256=Q-47ac27BW3bSX2SFrTv06UJvhNvjG6uncdk-0g6GAU,2487
332
+ pyrogram/raw/base/draft_message.py,sha256=KBKdQgxjVUSrAPB5v2mcYk-3lEGyxfbxyMFBiZLoRf0,1975
333
+ pyrogram/raw/base/email_verification.py,sha256=c7vYSTlbd8yXFfRrNS7kuuzM_bP2SEqvOD7GPKAS5vA,2094
334
+ pyrogram/raw/base/email_verify_purpose.py,sha256=aaS9LAWar_DZSUS1lHmNrDi-siY_MLEdw-TtD3nNMcg,2133
335
+ pyrogram/raw/base/emoji_group.py,sha256=NUeQoWH2j0L70WtDihBKX3KIE27qPFzYxBJ-F2OUxAM,1903
336
+ pyrogram/raw/base/emoji_keyword.py,sha256=bBr8qAQcsiMDQwD5-zdMwOl3C82JVjvFe5SWudIFFVs,1979
337
+ pyrogram/raw/base/emoji_keywords_difference.py,sha256=Nx2n8RqLtunGvtiLNokm7MNLSPfxm59pjNA7n7IYqa0,2241
338
+ pyrogram/raw/base/emoji_language.py,sha256=6EddNL3u2aRz0kcNSPhu5Y7Bw4abqaQN8GCMho_Dds8,2140
339
+ pyrogram/raw/base/emoji_list.py,sha256=zX3Oyp4cU3pO0yDiIk1txnhw8YeU_NxgkpK-BFrLZ5o,2271
340
+ pyrogram/raw/base/emoji_status.py,sha256=tob0PWVR89CXx-gJgHThcCL1WncH1rQHfeejtwPXqUU,2024
341
+ pyrogram/raw/base/emoji_url.py,sha256=m9Tg9JO79KiesShHrx94qFkLwiT-wqn-V7OuC4OenVI,2096
342
+ pyrogram/raw/base/encrypted_chat.py,sha256=ih61u8SGDch3S_dQoesy0bQcwIlyW7t7cXi74cnbjk0,2436
343
+ pyrogram/raw/base/encrypted_file.py,sha256=46dzeFoPDI4fkl3-0LcPLEDrtRJ8BOU7vNT0ZkwRKnE,2196
344
+ pyrogram/raw/base/encrypted_message.py,sha256=4mG24FLW48AWqN1r-HcagwFLutFcbCiTwOzAlo3JiUI,2011
345
+ pyrogram/raw/base/exported_chat_invite.py,sha256=TBLZM1-hc92b3niT6op056_YfzTriHBAeJUG4ip6ZEQ,2244
346
+ pyrogram/raw/base/exported_chatlist_invite.py,sha256=j-usXfdZycyPHuT11Z8irWQKyTIEg1ROzRr8eH6NX9k,2189
347
+ pyrogram/raw/base/exported_contact_token.py,sha256=uYERIzIwpLXO5NIoSsjxOnLWrknp4cccZpElo-r3WTA,2176
348
+ pyrogram/raw/base/exported_message_link.py,sha256=15ma-HK5muzcYnn3JR_pTFZEhsHxUnSxrBp3wdRYb0w,2169
349
+ pyrogram/raw/base/file_hash.py,sha256=ybj2I_DcxtHm9VOl9eDjgWnTnz_wYui0v8yoGq15C6Q,2168
350
+ pyrogram/raw/base/folder.py,sha256=hwXgquccQytmF6kvValCMb3D1omygr0Th7cuU_IIKys,1878
351
+ pyrogram/raw/base/folder_peer.py,sha256=JUlloLbxkR7wsh-MXoTqxnPSsGv6WPFPSDwUYzLkCtU,1903
352
+ pyrogram/raw/base/forum_topic.py,sha256=iZy_IOXsDeVJQKAp4CkZNRYf-FnH5uoQZ30jMBemSHA,1963
353
+ pyrogram/raw/base/game.py,sha256=utoSbM7TAt5Gusd6truWb0Kdc2qaUY9_AE2KsTfLpRc,1866
354
+ pyrogram/raw/base/geo_point.py,sha256=n9mj8mIOV5gXpGDEs2DAtTpRr55KIT1YJPD9uZeuZaI,1943
355
+ pyrogram/raw/base/global_privacy_settings.py,sha256=DF8k5dd05K0MrjUjnUAKS5Fpk690C2cqgPdpMOaqCYE,2233
356
+ pyrogram/raw/base/group_call.py,sha256=r90OT2DuWTFoHTP9ZFM2eFbGpmh4TGsdI7iqllJ8VO4,1959
357
+ pyrogram/raw/base/group_call_participant.py,sha256=pnM_9qOINSVe8OiRIod1ANGdwV5LFQPXmBKzIdQCqAA,1964
358
+ pyrogram/raw/base/group_call_participant_video.py,sha256=lCA7McAvlIMmKnUv16kH0abVYlWdKNSxDjPsWoGUYgA,1995
359
+ pyrogram/raw/base/group_call_participant_video_source_group.py,sha256=qYVPbG4L8AvDrgvRQ8CZbesa-6dI9OtJG68Td5HUxfM,2063
360
+ pyrogram/raw/base/group_call_stream_channel.py,sha256=26ucDhHmgaZpWY_LU0_-yVIfjXgAZCAMReNoV6DYgVg,1977
361
+ pyrogram/raw/base/high_score.py,sha256=FLHElkIV8dYu9oTmFEM08pWfA9f_7S7IBeWsw5rqvmA,1897
362
+ pyrogram/raw/base/http_wait.py,sha256=dYZLm7JGwcs-eCu10ssgNAu_Wqzxtprt3JfhpAkk_gw,1891
363
+ pyrogram/raw/base/imported_contact.py,sha256=bnpl71LtX85qroiLjtwrJcJZD5LVc3OdcXJ0lHDa2SY,1933
364
+ pyrogram/raw/base/inline_bot_switch_pm.py,sha256=EQ1zXeSw8PJ4zycIT9ypBr8Xn52G5UrK5YVswlvRTMo,1947
365
+ pyrogram/raw/base/inline_bot_web_view.py,sha256=aRFo5EAMo9m0hwCCCdiJM0_wuC1u_yL1h6KJAko3pmY,1941
366
+ pyrogram/raw/base/inline_query_peer_type.py,sha256=nEHQ6wjBdIsWE-BTjlQ3JlF47T3TIeV54_Wsn_vcP6I,2351
367
+ pyrogram/raw/base/input_app_event.py,sha256=pzbWvAZ9YciTm7NGumxA-26uKwfQZbHarOK93NMmKow,1922
368
+ pyrogram/raw/base/input_bot_app.py,sha256=AroNKRPdsaKLKVZUOWsvUQJffs-ABF8u0BQzMSpT_7s,1980
369
+ pyrogram/raw/base/input_bot_inline_message.py,sha256=k8NLvnie1u9Vz2NZjCp84ozunq4uSe6Bu05bCj5AFvw,2492
370
+ pyrogram/raw/base/input_bot_inline_message_id.py,sha256=_FHrfBhCniEeUbtNF2L1g4Sz9rqGg1QD41ef4Tu-rUI,2060
371
+ pyrogram/raw/base/input_bot_inline_result.py,sha256=D-oM3yO6WrreIxGGw9SQT0xCWdi3ZA7KS-f3R799dC0,2195
372
+ pyrogram/raw/base/input_channel.py,sha256=GwBBaHtPFRdgwgASZGTjEurpH30KNcP4_wD8k7tc-PM,2046
373
+ pyrogram/raw/base/input_chat_photo.py,sha256=LvdL694xOfoCscBIo-dpTH3VkdRZSYkyvvM0I9VUJjY,2061
374
+ pyrogram/raw/base/input_chatlist.py,sha256=NUzonhGD7Fv-WaBY3gRyI8orNAE6tzJB-IZ2fLP6kQw,1945
375
+ pyrogram/raw/base/input_check_password_srp.py,sha256=L7aFZBiT85u4DPm2LF4NanoSknPA_TXdrNKTRDA3uvc,2043
376
+ pyrogram/raw/base/input_client_proxy.py,sha256=9G1qZPTWXCT_BataDql84R73_m_P49TENJBSyxmOMuQ,1940
377
+ pyrogram/raw/base/input_contact.py,sha256=vZtcQobOMaZDMQC30oB-KBPaiFTFSBpIQP9PlijjU2M,1925
378
+ pyrogram/raw/base/input_dialog_peer.py,sha256=ZCZTwFpd6ZJr1ulTb6iYfjgm15aIqblXgj_iidrLqUE,2002
379
+ pyrogram/raw/base/input_document.py,sha256=vWlkQPQnVkEnjmMmzKOf0eX9V79smy11rS_ZidvuKrk,1983
380
+ pyrogram/raw/base/input_encrypted_chat.py,sha256=Ntr0y4lqLJl6gsf_n1jkl-ULO_J02wB3BIJkUq2zUEQ,1952
381
+ pyrogram/raw/base/input_encrypted_file.py,sha256=FhYSE1unclTh-mxIXQXfXx5516f_XJIU04X-7BdZKIQ,2184
382
+ pyrogram/raw/base/input_file.py,sha256=swuyyk6PokSp1--sm2fQnANQLFLfRQav_viaj147T7s,1947
383
+ pyrogram/raw/base/input_file_location.py,sha256=NNsQYidOZ2REwDlFQEoiyYYCueJVIxRLBad2Kka1n7I,2601
384
+ pyrogram/raw/base/input_folder_peer.py,sha256=vyOg1VxuykX8vwu7timjGhyJV4WuSCy6zpP5M18EouM,1934
385
+ pyrogram/raw/base/input_game.py,sha256=j73XJMQrFzfyIGExItr6QZFbx5n3NgEEpQH_zcX8_R8,1963
386
+ pyrogram/raw/base/input_geo_point.py,sha256=GIRw1YjHAyn_etqVx4LC8vfJo1VnqG0ZM4rIHPdkvwI,1984
387
+ pyrogram/raw/base/input_group_call.py,sha256=8I2u8k4_ic_dY487Yo2-4f34b-gX2CcG_rxGP3OVOfM,1928
388
+ pyrogram/raw/base/input_invoice.py,sha256=_IfVOEs2eie_oc0jWqikAxYrMu1IxFSG-SgqIaiS1y4,1987
389
+ pyrogram/raw/base/input_media.py,sha256=bK4jDOzR7xNiqca0O69B_Gt32CfpZddBpCxBLVmzQt0,2779
390
+ pyrogram/raw/base/input_message.py,sha256=eSJROQpy0-Zjr9DUV8OlcKaP221hXxIciC_5OMEd_1g,2119
391
+ pyrogram/raw/base/input_notify_peer.py,sha256=AW6wYphSQQchL02I6mtez4v8Ztu8CR-oYNuXWzThEPg,2183
392
+ pyrogram/raw/base/input_payment_credentials.py,sha256=_I5sS67N7jWP6XA4fZ3f46RjE-hEP7uva9uGRq_y_LI,2240
393
+ pyrogram/raw/base/input_peer.py,sha256=cDfiDepEYun0I1_ZSBVHMFehGo8QksgPiKb-bXAMZCg,2270
394
+ pyrogram/raw/base/input_peer_notify_settings.py,sha256=Ye5geES0Qock9qgPQn0vOMxALf6bRo2V_MFmhIlhPWI,1983
395
+ pyrogram/raw/base/input_phone_call.py,sha256=-JgQhNR9jqZpFVsPLKhwcj6l3IpUnw9-Ajq7bl4Qi5w,1928
396
+ pyrogram/raw/base/input_photo.py,sha256=EkYYQ3fqpV5jQICshGYva0HLl27yXk53aq3_0xfuHj8,1959
397
+ pyrogram/raw/base/input_privacy_key.py,sha256=yiTwKFD3WLXNjdgcqfuURUuscYRsbVhujAzhySo0DTM,2571
398
+ pyrogram/raw/base/input_privacy_rule.py,sha256=rWNg1eskLTJ3lKS2bjPUxnATwFdv6-wz-jZMiGk1rfA,2588
399
+ pyrogram/raw/base/input_secure_file.py,sha256=f4gJX0MuceagGC02XFdHJXTlRKbf1jkjf5Zjjj73vDk,2006
400
+ pyrogram/raw/base/input_secure_value.py,sha256=CY5BFnxTp0yVBT8uKxsJyzZdNOCKBASV-MizYDB-4aM,1940
401
+ pyrogram/raw/base/input_single_media.py,sha256=HXPWT9TYzTaz7_nWcC_6a29oj_nuevE958CU6yLxvns,1940
402
+ pyrogram/raw/base/input_sticker_set.py,sha256=tSYbOI0Ucl3GQcPE67XF0xqrQCmAgnq92YENA5o8T9g,2695
403
+ pyrogram/raw/base/input_sticker_set_item.py,sha256=OehzEfeHiovb6EnUsGOpA0qnc_B1t2Foq3YzbqO40lM,1959
404
+ pyrogram/raw/base/input_stickered_media.py,sha256=KyX0Lxf6RZ2MFCYrU9IhxEldfMN0I4TwlVpS3dP0BIY,2048
405
+ pyrogram/raw/base/input_store_payment_purpose.py,sha256=JYAiK23tWAt8BbF8sWWT8Ba66VUaSvloeL0E1_YTGrA,2095
406
+ pyrogram/raw/base/input_theme.py,sha256=6kJcjJI_G04dtCOBFWJ-DjjnQL4sXIQ2N4HDUMreFrA,1957
407
+ pyrogram/raw/base/input_theme_settings.py,sha256=y_tsFCzOjj2IkfhrxIBhUAWFYUvqVczKYHgJGHfpXJE,1952
408
+ pyrogram/raw/base/input_user.py,sha256=8VrAhosEpAeOiQ-GAcnIoHIXyAhi7LrMLRJbCdW2qm4,2067
409
+ pyrogram/raw/base/input_wall_paper.py,sha256=nOhTN3vOL2e8hVFfYc6LGuxQ3qQ_tj2Otx6l8PvU6Zo,2055
410
+ pyrogram/raw/base/input_web_document.py,sha256=sOyG3SZzXtl7Vl6mwHDwPKIQ4-QTvTP0JdAQ3hfTemc,1940
411
+ pyrogram/raw/base/input_web_file_location.py,sha256=r5QhFOHHvR1hiUaew9cTNDZF2GuZ4rA7-F73mBfSuJ0,2142
412
+ pyrogram/raw/base/invoice.py,sha256=NioaEmBR3BMPD-sXJMYao1c3g1Gs6_AxjYIS9shj9Iw,1884
413
+ pyrogram/raw/base/ip_port.py,sha256=JK-jAh1VmjkiSIkr5jyXFSO-anrZB6JgJGWMREbkhNo,1929
414
+ pyrogram/raw/base/json_object_value.py,sha256=x7KtCdHdrAVkKuo3Yg2ntfvB76spJN1XjdltA21x1gA,1934
415
+ pyrogram/raw/base/json_value.py,sha256=Njl1K8S0QeK8CB7KNIIDtasKNZMTCkCzPeCWaaxUcxM,2115
416
+ pyrogram/raw/base/keyboard_button.py,sha256=6TA2FYfoleS8MaDC9aXzYUfZKskFHKKabVoMXo5u46M,3020
417
+ pyrogram/raw/base/keyboard_button_row.py,sha256=P6dsOnafgp4UgxXazvjaAFIlWOv8cHxbNWVeMDiDd4U,1946
418
+ pyrogram/raw/base/labeled_price.py,sha256=nB_mo9_p0IDaE8xDUewqsrmecXugdiVdx-TxOKEtNpA,1915
419
+ pyrogram/raw/base/lang_pack_difference.py,sha256=Abl9u2ALdNnQbAT2alhIcg80DecmWgzMOaZWvUQyrxI,2193
420
+ pyrogram/raw/base/lang_pack_language.py,sha256=rJuB6yIw16UhOqr5UkxkPcOzPlpmYwvv5eaKjajzpq4,2180
421
+ pyrogram/raw/base/lang_pack_string.py,sha256=wFnpj3Ri0fzU9DkTCA4ZthA-ZTza6UQ6AXK8W6UuWu8,2273
422
+ pyrogram/raw/base/mask_coords.py,sha256=xsuXR1uh8SdDGW8k_CGtUD7sbtEylZmMeN03PzS4RRg,1903
423
+ pyrogram/raw/base/message.py,sha256=ZUrBRyY659FqycK_hJSa3DVsKZOEGxg2ONA5vdA7jTM,1987
424
+ pyrogram/raw/base/message_action.py,sha256=Jg_jbf1kpgyo4C9iKHpuONwpHC_G8-ygxhYMb24t9U0,4917
425
+ pyrogram/raw/base/message_entity.py,sha256=QAJTvV8MvtUC2OhKkMhIAXwPXhsF3KZkWjiDjtdAjDQ,3249
426
+ pyrogram/raw/base/message_extended_media.py,sha256=Q8HbgBG5JgBQ_Jubrhc8-MOhyV0U4DHi0535KTjhjJc,2044
427
+ pyrogram/raw/base/message_fwd_header.py,sha256=V_Y5u3NS7xD0j19hpYJ6L5YReIxFvCvHbKaP8hgZUEw,1940
428
+ pyrogram/raw/base/message_interaction_counters.py,sha256=1r_gjkwmNZiTxJn8ySNCxmamyW7R6YTJqzWLjKU7djs,2000
429
+ pyrogram/raw/base/message_media.py,sha256=RGVF2t0onZ4Sz67iblNr8zZMUViYOWab5XUC5uCgtv0,2945
430
+ pyrogram/raw/base/message_peer_reaction.py,sha256=X9ZsaxZ3ZdDf16Wo59UVSS8CDV2_Hxv7iTIcOn-CimI,1958
431
+ pyrogram/raw/base/message_range.py,sha256=bzg3glASLb9MEMebClGKWB2qrc7XmJsSyWrbeWbJyb4,2123
432
+ pyrogram/raw/base/message_reactions.py,sha256=2L20cz7Xb-n4JpspDg023rzmmkNwhHMqT3ujVO8YZ-M,1939
433
+ pyrogram/raw/base/message_replies.py,sha256=UZU2YFgZpfSzCm0dtXGGOfAH6dt287_nWLBLlhjAoII,1927
434
+ pyrogram/raw/base/message_reply_header.py,sha256=Q6YUba86hIH9Sg96s2cv9F2KHTaGmxb8E_aqFJS6qiM,1952
435
+ pyrogram/raw/base/message_user_vote.py,sha256=ZgTUc7Zy7beO2yOm3B2YbU871bAbFuTyYFVnh1PuMs0,2083
436
+ pyrogram/raw/base/message_views.py,sha256=b3h6G18fhmrKmtzhb1NmDH1hIkpWethm-EsrLwR_A7U,1915
437
+ pyrogram/raw/base/messages_filter.py,sha256=1aJO3mSOhdhesj_Pwm8G74d1xo7yRBTVdv0Y641Z4gs,3181
438
+ pyrogram/raw/base/msg_detailed_info.py,sha256=xsVXd1lfdA2MxF-GFaOD45GVT8PeSURESyJadlxOSu4,1996
439
+ pyrogram/raw/base/msg_resend_req.py,sha256=Q883tv0UlJQFW0Sc0FZ4aseDijx6peXY9ZAF5nvVhJM,1972
440
+ pyrogram/raw/base/msgs_ack.py,sha256=72ofxEIKiscYbySaNICyFmerFMZ50w-eP-J2iwIpGy4,1885
441
+ pyrogram/raw/base/msgs_all_info.py,sha256=04T_QADkNJMDRq4PgkesBcRI0dfxub7DLk-iae2Ql2k,1910
442
+ pyrogram/raw/base/msgs_state_info.py,sha256=CoB-Rcng2U8uVB4WXRRKW-Tf6jkIv5pqBUY3DixRqgk,1922
443
+ pyrogram/raw/base/msgs_state_req.py,sha256=sUMPp33fF4FdtC-L0Dir194xAL_zOiwW9BISsp0N8QU,1916
444
+ pyrogram/raw/base/nearest_dc.py,sha256=sXotdSh_o8Xm4FGfxkqxVSRAotrCbaRReoPjXiIqwaw,2099
445
+ pyrogram/raw/base/new_session.py,sha256=ExthntqfV6G1CLOrn6Otwyv64evcQXhmOtWiP73qklE,1917
446
+ pyrogram/raw/base/notification_sound.py,sha256=cMozEiXn4gPRG2Zl-_Iem_HIo_7B6IdJ-btDjnC3bCA,2171
447
+ pyrogram/raw/base/notify_peer.py,sha256=YEn1LIewhD5sI-6j7Xjc63dUkZlcC8W0UvcC2E5ONnw,2112
448
+ pyrogram/raw/base/page.py,sha256=DexK5glsYnPd0bFSs7wwWVuRjMkCmMq3PGjqJYXONmc,1866
449
+ pyrogram/raw/base/page_block.py,sha256=tjaQ0Z0T6_Wj3yDP1z3BA8gOsAcpUP-UiVW4ogz6Scc,3535
450
+ pyrogram/raw/base/page_caption.py,sha256=stNakGAfykDceikQBPsWWQMQIDwwyPwDz86P-h4RD6A,1909
451
+ pyrogram/raw/base/page_list_item.py,sha256=uwVIZh3TDEsJb3taPD8M26nX1FdXE148bsm_Do4MgQw,1986
452
+ pyrogram/raw/base/page_list_ordered_item.py,sha256=9F6jenEvgcOXyTSIT6YpcmtkatmfSuhgTDQJS6IjjwE,2043
453
+ pyrogram/raw/base/page_related_article.py,sha256=A7SjlfHnmCGdxSlXXlwvuimEZ7D2-zLveke2bmD2FmI,1952
454
+ pyrogram/raw/base/page_table_cell.py,sha256=LMFYvLghdlSLaM7n9yV3Ektg-Ffuojl6mHBN0p8PCIM,1922
455
+ pyrogram/raw/base/page_table_row.py,sha256=EIgeuJP1PcwPQKsdp0MZSTOBeC5ftoSKYq9e4-NFcVU,1916
456
+ pyrogram/raw/base/password_kdf_algo.py,sha256=_gm39kp6RcypXPLF6hnthr-XdQlVGovSDU-RrJs-u8w,2104
457
+ pyrogram/raw/base/payment_charge.py,sha256=XaEvYISCzeFQpOxaeuDLjMo18F2IRWaWBn6FzmsDPvk,1921
458
+ pyrogram/raw/base/payment_form_method.py,sha256=skp6yb_I86jhpTS30DrRXQNSEplopjXj9Y9CIgHD788,1946
459
+ pyrogram/raw/base/payment_requested_info.py,sha256=UgKb0kNR6cJU8AfrGvtnxaSaYdQ5NjWQMHF43lw6W8Q,1964
460
+ pyrogram/raw/base/payment_saved_credentials.py,sha256=vHgvQM1ETIBe_3oY60NAOX8DND49oQKaeC7NS5_Lw_k,1990
461
+ pyrogram/raw/base/peer.py,sha256=WgDbSOftkoCD6S2wm6v5_IiohsxvKuXTpEiyntJ6Bnc,2185
462
+ pyrogram/raw/base/peer_blocked.py,sha256=IkimdTa7Nf6_d7A3nsc1uvN3HAf65c8tV4tjqSTO7hM,1909
463
+ pyrogram/raw/base/peer_located.py,sha256=0c-6QHVJUZloxcYd4mkVSStFe0sSUCfXFNVORCpXRW8,1965
464
+ pyrogram/raw/base/peer_notify_settings.py,sha256=AZohF8emMRfMYMxPWaaDG7319ugHZgK20hEA2K6zin4,2162
465
+ pyrogram/raw/base/peer_settings.py,sha256=k51Lvg3JSglCoQRk_9nhCULo9MOjbC4W6P64ePEc6_Q,1915
466
+ pyrogram/raw/base/phone_call.py,sha256=v9BRqbkZ6GQhXyPd8Nt5rB9uv2C28ruCW1CQgFVOUg8,2189
467
+ pyrogram/raw/base/phone_call_discard_reason.py,sha256=gjMlNPKyMXT-eg-oyggEdr3XUOlR4mpaO36tMAlHFJM,2237
468
+ pyrogram/raw/base/phone_call_protocol.py,sha256=Ukkz5M5OC3_sjVtEV3f6iu0b-lzyRCUoVQUC1nNMve8,1946
469
+ pyrogram/raw/base/phone_connection.py,sha256=TZzZyAJp4C5hfJS0QGqEEWwfKfIU3IO368Mi5v2RI_0,2001
470
+ pyrogram/raw/base/photo.py,sha256=D3Z9pjK3xyOyZKb6DStCSQRTD_ByMIEWZKL_OutSna8,1918
471
+ pyrogram/raw/base/photo_size.py,sha256=1YgjawFfUZG0TniduFEDoSK91f0KJ6yz2lcDtOMcY84,2181
472
+ pyrogram/raw/base/poll.py,sha256=XSCE6ljWyLf8YAFyuvSckTWlqeq8qJyQomtfhrUlYho,1866
473
+ pyrogram/raw/base/poll_answer.py,sha256=iB5BafkflxQOvHkeRWsthuyo00VOc36Lh2C2ULkTROw,1903
474
+ pyrogram/raw/base/poll_answer_voters.py,sha256=8kaccvs2gmetdUXv7l6vIoiaXnsfowGoRjWSxFZEhQs,1940
475
+ pyrogram/raw/base/poll_results.py,sha256=awXtGGOTeRWgqT5SXexSCG-cnY29LhBODvlwTqGu5q4,1909
476
+ pyrogram/raw/base/pong.py,sha256=m1pzCCd8pyovXPZcvr9Ix6OZMRnaActTuIV4Gooc9yw,2088
477
+ pyrogram/raw/base/popular_contact.py,sha256=n0CXZK1dg-UHo9-p4UbU4opYKmu5f4b2iFEVX1IjXLk,1927
478
+ pyrogram/raw/base/post_address.py,sha256=ZyknWSzQaKkOPA8YxBw-m4DmdGBf8TsSVY-7iwsN9zE,1909
479
+ pyrogram/raw/base/pq_inner_data.py,sha256=KuPi_SJxBThWckmvP0kPEsuosaQ7kOhnTZm3xdMwy4c,2076
480
+ pyrogram/raw/base/premium_gift_option.py,sha256=_i8vn5k205gaX5pxW_4RNv-y1iGMe-k1flS2Yit3IRQ,1946
481
+ pyrogram/raw/base/premium_subscription_option.py,sha256=yz__B5wODp5jjXMjpHMJHWKUgCIHSFXaKt3Z6pttTvw,1994
482
+ pyrogram/raw/base/privacy_key.py,sha256=4EWkOEV1x5Yqr9UZMeoS0GX_F5wSjBH4Iad2ba890n8,2460
483
+ pyrogram/raw/base/privacy_rule.py,sha256=jgeCnFQIB-ZUswnHeRZWClkpHmitelcX_Emkcffm8xU,2487
484
+ pyrogram/raw/base/reaction.py,sha256=A7-zIlIesvU5nj_2f-5B7oNLCGDY63LWFvmlMkTXKPo,2015
485
+ pyrogram/raw/base/reaction_count.py,sha256=GlfXVouCgDtL7szS1HaQHKrZoAlyygMxZmIn-3DyJOU,1921
486
+ pyrogram/raw/base/read_participant_date.py,sha256=B3Aea4Zr7P1-344L_Ih9QYgUXCt_sYU8tsv222H7fIo,2178
487
+ pyrogram/raw/base/received_notify_message.py,sha256=q5--f6oYSli7ldheoeF27RixhOPXRJ1C_Kh8Itw42Xs,2180
488
+ pyrogram/raw/base/recent_me_url.py,sha256=NfKNO4luF_L41BnFQuvTKWYpSwjfqKXNGriciygT-_w,2169
489
+ pyrogram/raw/base/reply_markup.py,sha256=LvqUyq8YnEwnPMxKpRX1cH4nwWvEe33qxPqyGKSjpp8,2115
490
+ pyrogram/raw/base/report_reason.py,sha256=do5Dz5OPOOe5Sa-wEDpJIhdv1sYxekAhgV1qAegwviU,2640
491
+ pyrogram/raw/base/request_peer_type.py,sha256=-o612byVxyKcyF7u8ikjfUE5J3c34kcnvwEBsNrkrU4,2079
492
+ pyrogram/raw/base/res_pq.py,sha256=0USqa21YEPl5_2ZqXvyNxAYnBL7ZGswEfBmgTYJgHgk,2087
493
+ pyrogram/raw/base/restriction_reason.py,sha256=LlcfKK05gH4jpzUJi-5t1iy1YimoeEOx6kdKtCbYOTs,1945
494
+ pyrogram/raw/base/rich_text.py,sha256=hHUYXvYAI7X_KujEACpIep9TCqpp9b2WFwh3QTaxNMQ,2572
495
+ pyrogram/raw/base/rpc_drop_answer.py,sha256=W1JR57LeejFFQlVDAs8pGD4ZFbwnHKauB2eddOtCGOQ,2255
496
+ pyrogram/raw/base/rpc_error.py,sha256=n5yCrfg7lqMgdf0gluoD4CZT4obuo1K6KxQAf5154Xk,1891
497
+ pyrogram/raw/base/rpc_result.py,sha256=rfJ9b-8rb1fMYU-HvmlM-Vclu_FcGAnnUIx-qPM-2LE,1897
498
+ pyrogram/raw/base/saved_contact.py,sha256=QhRp6cuO2S_tL9kryClYGYZPoVn4WGIInSkAdHX6qZA,2127
499
+ pyrogram/raw/base/search_results_calendar_period.py,sha256=Tglv2TmBUuYzkVbLKS93PhkaE-hWx71FOeLVuLJ4eBg,2007
500
+ pyrogram/raw/base/search_results_position.py,sha256=2ozRy2vKz8rTsyMXT09gy9ZxeCF9AYeZ81eWG0rK9xM,1968
501
+ pyrogram/raw/base/secure_credentials_encrypted.py,sha256=L5ExgBH0ElyZfnMXI1eRg_GJ61m5y55WplAyDwiKqzQ,2000
502
+ pyrogram/raw/base/secure_data.py,sha256=JVATRJJ1WFeb-buW3FE2Q5-YA8421-PPl-0g6UXvHsw,1903
503
+ pyrogram/raw/base/secure_file.py,sha256=fSKQqPEZI2kzY2A6Z5w8sv32nPLdX75FiC8V0bjyChQ,1959
504
+ pyrogram/raw/base/secure_password_kdf_algo.py,sha256=mTCoHx2xW4FkG-cXJYJD5GNfbA8DRDB_CtKJZekeYcg,2184
505
+ pyrogram/raw/base/secure_plain_data.py,sha256=ptjT7VhxYS3uCzJNcv91G2nUB4fYhZC5pzOP4bJJbRw,1994
506
+ pyrogram/raw/base/secure_required_type.py,sha256=t3MNMd3Hp6RwUdyOYJbwHVHwt_NjYelFpNIPxQH87rI,2024
507
+ pyrogram/raw/base/secure_secret_settings.py,sha256=hweIMy2pPqfrMXeYAJD2W_A5YvKyaG8_EYQJQBxMTmI,1964
508
+ pyrogram/raw/base/secure_value.py,sha256=5bl6FPg2eTe_ELy7g37vd00Xywcf1g4MEHCwEa5iO8k,2192
509
+ pyrogram/raw/base/secure_value_error.py,sha256=Mh78SFXsjJnjeSAx0qmwWiBCkpXL5UafwLKC-KJJk3c,2537
510
+ pyrogram/raw/base/secure_value_hash.py,sha256=qOXYQ1cg2iiqjuD3ndOFIkbye4oyd9foi2WuNDHfYrU,1934
511
+ pyrogram/raw/base/secure_value_type.py,sha256=NQebsq4iBnJIbfEq2Vrq51hG4jbvmdTP_Sxe9GA4vbI,2918
512
+ pyrogram/raw/base/send_as_peer.py,sha256=oAwz7TGFp3036p_qyIPUD77liC9LK6U3-0JlZi76H7U,1904
513
+ pyrogram/raw/base/send_message_action.py,sha256=27-6ANEujqWqiHPbf5XpHZkXUEd6FiGioZA2QQFDu5c,3337
514
+ pyrogram/raw/base/server_dh_inner_data.py,sha256=McHOvdK8NZPFc7aIwlcZeeB-Gn7CX2ifngZHkYyD0_I,1947
515
+ pyrogram/raw/base/server_dh_params.py,sha256=ara0KGYMg3UYkj3LItBU1DXU5tavbYquGUlLa4Z6S6w,2190
516
+ pyrogram/raw/base/set_client_dh_params_answer.py,sha256=SIkQcooSgjMcF4fqZgpk7jnph1ypyIJFONUH-cBmiNo,2243
517
+ pyrogram/raw/base/shipping_option.py,sha256=qegqzbwyrrlS7gMDgyImo-UdGVoYj47MWmlkyaH8fz8,1927
518
+ pyrogram/raw/base/simple_web_view_result.py,sha256=lXJlSxilYHc91o2sMTF0jYzYXFIUix29Ce1XePY9niw,2179
519
+ pyrogram/raw/base/sponsored_message.py,sha256=dTEaBt6wn-yN1PtFLOPvPKRs1ziFLa5gsgdRysq1gEM,1939
520
+ pyrogram/raw/base/stats_abs_value_and_prev.py,sha256=uThOGQ1kZMSJmuC4_4MSLcKZpheNI2ejNm-u6V3lkwI,1966
521
+ pyrogram/raw/base/stats_date_range_days.py,sha256=vSJ-uJZrLwUhazrdlFZFHcDutWwG-TufOtMerdq9NaQ,1953
522
+ pyrogram/raw/base/stats_graph.py,sha256=olykh4nkwnqs46EISeR6M-JB8fqPL66M6ysoCjJi_po,2219
523
+ pyrogram/raw/base/stats_group_top_admin.py,sha256=qpaDeBgDRB73_FOSxy-x9TqOjd8HXILW_dNKNAGrRCU,1953
524
+ pyrogram/raw/base/stats_group_top_inviter.py,sha256=oQtT2Sr6c5gtGYFE1g1Og9Q8NBFzNziqI26H0Z1whZs,1965
525
+ pyrogram/raw/base/stats_group_top_poster.py,sha256=yoRCAkJ3q7QfnVI9Z58UmpF1Wi_v3QNPlt-6OjGWLXk,1959
526
+ pyrogram/raw/base/stats_percent_value.py,sha256=oDNTwCY8uPSSBioBt4YrHM5cq0FqcJVIY0PNnJTWXBU,1946
527
+ pyrogram/raw/base/stats_url.py,sha256=z8h1ezaJtOHF8-HmroSYOvYLfuEOoieHQwiPIEo4d9k,1891
528
+ pyrogram/raw/base/sticker_keyword.py,sha256=Gf5QvhLk1bEg-AYoMIsuwkuxWI-l2UiwCx4TNUGx0Jw,1927
529
+ pyrogram/raw/base/sticker_pack.py,sha256=dZvqb6r5vQI0eRJtZ4ca-JLSZvIeEApz965ZVtmSduk,1909
530
+ pyrogram/raw/base/sticker_set.py,sha256=TDbCGfLwVOtHBbSm3RI-TypDk9-8rQZPy4OH042Aofc,1903
531
+ pyrogram/raw/base/sticker_set_covered.py,sha256=RpM87a0ski-O85ZZ28yKrUs7OUikc-sDN6T7elo520M,2359
532
+ pyrogram/raw/base/text_with_entities.py,sha256=yQd4n5VgVO8JntbXb7wuoLcNIOr881vHxXcNpekH9L4,1940
533
+ pyrogram/raw/base/theme.py,sha256=Aw8YcZEwUCzxrBdTjUiUuHJFiCz59bs-XQ9SDt_tHl4,2138
534
+ pyrogram/raw/base/theme_settings.py,sha256=WDictoVG3GSiMxd9RPtcyjA1mqDNJWek_2qBbfRQ34Y,1921
535
+ pyrogram/raw/base/top_peer.py,sha256=E8BxOY23Ne6o5z-zY5Xd2VP91mwb4N0q7-yRxzCBtlc,1885
536
+ pyrogram/raw/base/top_peer_category.py,sha256=pgtAtLcysNl6I7W5n_VOIEYErPnFHlV6xk1IzWlgjhE,2476
537
+ pyrogram/raw/base/top_peer_category_peers.py,sha256=x1vD5fn5mjkL07wMfEIX0RUMLUQywO03XfYMX7ElJHo,1965
538
+ pyrogram/raw/base/update.py,sha256=Z0QkacH40QGCOg0rnlHo2Xdi-8OaCWl6GHEFtGpq4QU,9329
539
+ pyrogram/raw/base/updates_t.py,sha256=MzxJdLlmAMSCtRZich9w8z5hKua-IMYPxecv_KFaKBs,5681
540
+ pyrogram/raw/base/url_auth_result.py,sha256=Sl9PXGoVXXHnPoLWTGsS5PEGv6NK4wRFTBAC2lood8Y,2313
541
+ pyrogram/raw/base/user.py,sha256=1c9udGrq_mtb7L-xyJZIF62YfWmi-ZriG6DhwN13uI0,2251
542
+ pyrogram/raw/base/user_full.py,sha256=w-UjqLRtidy2x8vL8Fg0sgqpJcTprgZP9YUdkEkdiGA,1891
543
+ pyrogram/raw/base/user_profile_photo.py,sha256=-EsIdi17fp120vMEJMvH9yjNJ2YZHhLQiRXCJcFAR7Q,2008
544
+ pyrogram/raw/base/user_status.py,sha256=9XJ3jSxGHoAJJyBFU45Q2TZKlq_qXsR3YxAJzeczjfI,2215
545
+ pyrogram/raw/base/username.py,sha256=ldOAlikKDWgJ30hfA0AA_seTLTMlVq0hoVyCxrBW_k8,1890
546
+ pyrogram/raw/base/video_size.py,sha256=NGuS-hM7CVr-DZG-uUE2ish9dCdkNVq1Ac1UjlFu-do,2032
547
+ pyrogram/raw/base/wall_paper.py,sha256=ZzlvPs3y1To0mNyWDMscnsSGc07MVeeDyoKApxQBvKE,2234
548
+ pyrogram/raw/base/wall_paper_settings.py,sha256=9NnTV12USJMKKckVNhwiqNDWVfSyYUtBPDt9IAk74wg,1946
549
+ pyrogram/raw/base/web_authorization.py,sha256=GeT0hd-sz6bYO5p_TrLT1b7kdP4WDw2WPyM1WTtS1_4,1939
550
+ pyrogram/raw/base/web_document.py,sha256=bjmgEEfN9SjfE5qWNV2wx9aEvKBEOfkSs0O_y-cDJTc,1971
551
+ pyrogram/raw/base/web_page.py,sha256=tGRcSK9zFdzwiT-m3hd88QJytqnMgBjGeI33Y9SgKHo,2253
552
+ pyrogram/raw/base/web_page_attribute.py,sha256=kkS_ywXHAAON4RZwiAG-0wiYs1HyNzhSNs6y8ny10lY,1950
553
+ pyrogram/raw/base/web_view_message_sent.py,sha256=8GmXfoRX2XKm20vPpEFXTsRrlv9gmNw_5o-8jLJ_Z14,2171
554
+ pyrogram/raw/base/web_view_result.py,sha256=jrrDFpFCOVwTN8qUyrc13cqJnoSy5_nWKUkPGuFXvWA,2136
555
+ pyrogram/raw/base/account/__init__.py,sha256=9KbMvAXtaQ0oGiDqKsApRDGzVFMZOtJ3f1KL0h0sLc8,1931
556
+ pyrogram/raw/base/account/authorization_form.py,sha256=aT1v5ykIgiiT7QFZFPzkTHUjgTwiemE7A2QjX3P8CDM,2182
557
+ pyrogram/raw/base/account/authorizations.py,sha256=BFYKzXaDfrfvraA2dg3Hvc8_BJ53ibDfssr4HeQtzbU,2160
558
+ pyrogram/raw/base/account/auto_download_settings.py,sha256=ekqWQjukNyLWYnn9i3MCNJIRLWlnZP1x9Td6sQA0yKw,2204
559
+ pyrogram/raw/base/account/auto_save_settings.py,sha256=Ulu2cV9HUXA9HkAc-v1F1AL3lGOpsUmUpOFn6ixKF5c,2176
560
+ pyrogram/raw/base/account/content_settings.py,sha256=n03TYXF4xQweJo2SwdjXYQgAOIyhm-OipU17S4uPwcg,2168
561
+ pyrogram/raw/base/account/email_verified.py,sha256=4Pa1QFMm2GWIWUCuEseFeafGiE5tIgkIEJCy_iIJucw,2227
562
+ pyrogram/raw/base/account/emoji_statuses.py,sha256=fc4FtB-7T-6xk4IprPFMK9InIOMfcCderA2371_sRMo,2295
563
+ pyrogram/raw/base/account/password.py,sha256=XU781o7nTtVraR_H-ph50GjIiQEbWixwEUstTrtgaS0,2118
564
+ pyrogram/raw/base/account/password_input_settings.py,sha256=CignyU_TRb9E4_eUrlm6pXjrhRjfTxMbvnDNgwJTsZ4,1994
565
+ pyrogram/raw/base/account/password_settings.py,sha256=7OBJx7dwr03yTjtogKVnW4nddzoYkAOqgeVNmRpNxQM,2175
566
+ pyrogram/raw/base/account/privacy_rules.py,sha256=cP7Z1BW4fhRunoztjiv1KqLuxlV0lp-s5st0OYHQV6g,2174
567
+ pyrogram/raw/base/account/reset_password_result.py,sha256=8C9EuruOVdX0CIdlZmZ82S5GlIHYRJLATpj00_hDKhw,2361
568
+ pyrogram/raw/base/account/saved_ringtone.py,sha256=PdAHYWVjMSyf28-9FSQA3EMJfW2Y0UD1HxND1UF71VQ,2236
569
+ pyrogram/raw/base/account/saved_ringtones.py,sha256=wamWIBOhYenMQexRr5oQACcvcKJJy6hk-XOFwKco9G0,2253
570
+ pyrogram/raw/base/account/sent_email_code.py,sha256=aBMdmVmlFoF9lZkOgbFl8TdxFf8uIzg0-YPEOxiBsmA,2158
571
+ pyrogram/raw/base/account/takeout.py,sha256=ahG4lZlU8GdfUjzJ9zLkRkHFbBGkjKzMJEHBqAiuQ5M,2119
572
+ pyrogram/raw/base/account/themes.py,sha256=MxMma10YVivNtK8wumrMJyTCmJ8S8TicJ-TjY4bkDhE,2215
573
+ pyrogram/raw/base/account/tmp_password.py,sha256=G5bNQdsfvhVYkw-fPUc7KVd-9nC7UyE1FydcvkjXSVU,2140
574
+ pyrogram/raw/base/account/wall_papers.py,sha256=qzAV5Q0ixaWwGbnsjDm20MVBkfAPqjlajnLEhQEJerQ,2217
575
+ pyrogram/raw/base/account/web_authorizations.py,sha256=JizuMgI4ImgpKhP0os7nVol31buqw3hv3YRvhZYcsgg,2182
576
+ pyrogram/raw/base/auth/__init__.py,sha256=0obNQGlRoJ6O7keJX8gCRgcZ2yUulvVWOCgaA8TcUWI,1382
577
+ pyrogram/raw/base/auth/authorization.py,sha256=Q0c9M0S6ZCE4iFTYQMOw2CqiFa5NfyH99KhQvJvV8KI,2432
578
+ pyrogram/raw/base/auth/code_type.py,sha256=jbhQ3HHXPVprglkm78iFisuHlLwyUk6nxlla8NqcTOA,2185
579
+ pyrogram/raw/base/auth/exported_authorization.py,sha256=vnIt-hq3yLMK8r8xj5OfaVUrHjC8QKRH6OenYRBHia0,2193
580
+ pyrogram/raw/base/auth/logged_out.py,sha256=Q_2_i48zB-nlEQG6CfoH6yO6EdJlyWPml67wXl2uego,2108
581
+ pyrogram/raw/base/auth/login_token.py,sha256=hxWeAKw51Epii7mxeyeV-DTI0LMHzzJQQEnVpnKsN8s,2302
582
+ pyrogram/raw/base/auth/password_recovery.py,sha256=nz1GQz8XI2iHxJnzlE4jTX-IhrZ4csM3_usx6zcGtDI,2167
583
+ pyrogram/raw/base/auth/sent_code.py,sha256=9BtO3MEZtBHdNGPYPgZd8Hwdpx_PPHuwA5aDTFVsNtk,2353
584
+ pyrogram/raw/base/auth/sent_code_type.py,sha256=KKtA06amIZ1jqVhvbUTAf_-vkH0hn_foTnZUGvPhJtI,2560
585
+ pyrogram/raw/base/bots/__init__.py,sha256=Hry3YTadAObxjrv0kkCpJYSkFPA3Yi4p3lH61PappNI,1090
586
+ pyrogram/raw/base/bots/bot_info.py,sha256=Ru4ulMfiSQVmzjxSD_PiZoCiDzlW0PsugrX8M9cNaD8,2100
587
+ pyrogram/raw/base/channels/__init__.py,sha256=Ie0nk1xY_PYLMtRWFlHYWgFykRo1Jm38YiPfkrjEHEM,1252
588
+ pyrogram/raw/base/channels/admin_log_results.py,sha256=WXHEWYQIKDgQkUi74UTKtV2hmPx68ci6sxDYBflsSEE,2166
589
+ pyrogram/raw/base/channels/channel_participant.py,sha256=DsoNBtcI7T9gXxQ47AU21yeSvTPwrkl0ct6rz3k3vgI,2186
590
+ pyrogram/raw/base/channels/channel_participants.py,sha256=tyCLgD4FYDueqdQ2ii04R7c6T68Qbd_SRncSlhjzRIE,2297
591
+ pyrogram/raw/base/channels/send_as_peers.py,sha256=mq0pRwERgYPMKQlDUPPmJ7Fc7YrwQ8P89u7PTWsN1mo,2140
592
+ pyrogram/raw/base/chatlists/__init__.py,sha256=QgypkMNIZRZIPHv1uPz5Mt_aNoju42c074-B0GduTpo,1257
593
+ pyrogram/raw/base/chatlists/chatlist_invite.py,sha256=L1HhCQTMbpFJLOcxndTEGR6ZTxuj1qvfgKDyCkoFjNU,2259
594
+ pyrogram/raw/base/chatlists/chatlist_updates.py,sha256=i1aOqX3TjGReqMbieKy9OVbIZX1Mxc_GaR9etmsnGVM,2176
595
+ pyrogram/raw/base/chatlists/exported_chatlist_invite.py,sha256=pEOZdPMaY7j9NvaTJtqe4S8XJcEcLYpcryhiWNo36fk,2221
596
+ pyrogram/raw/base/chatlists/exported_invites.py,sha256=hqCxuhVYRk-QBEIGkYTCkvkpx6MXwFUmK1Kpnrz9Kpw,2176
597
+ pyrogram/raw/base/contacts/__init__.py,sha256=NxVGxoULlk9vt8AdeHPoBVjjqGpRp716D8ATN2JCFNY,1265
598
+ pyrogram/raw/base/contacts/blocked.py,sha256=gr0AkAG6T_7u6rRUM80Qacyi5pQeXxsO4MuvynWb-Pg,2183
599
+ pyrogram/raw/base/contacts/contacts.py,sha256=M_biyxZxj1w5FynfrDM7YIgPV8sQE_kSfHUZ6krPtVY,2204
600
+ pyrogram/raw/base/contacts/found.py,sha256=68S_5WQ_i9ycvc7DPIeDc_U3nKIGzRPbFULa96445c8,2099
601
+ pyrogram/raw/base/contacts/imported_contacts.py,sha256=dk9uv9Z4wXiJ_vpbGx416qyDhT_dT-5e-XdyFceJMtw,2174
602
+ pyrogram/raw/base/contacts/resolved_peer.py,sha256=YM12zEttg_1kg-Q2PRGiZsDxLV0hLZSQ9DSSWs-578Y,2186
603
+ pyrogram/raw/base/contacts/top_peers.py,sha256=Lr5q4GV-ispQwyPw0CT3rRR_AGJEOUEvaudgE2Mc0uw,2280
604
+ pyrogram/raw/base/help/__init__.py,sha256=k2Pr-kypul5-QB_8S5lDXmRJYgmE-Nn1o6btoSfkWLE,1715
605
+ pyrogram/raw/base/help/app_config.py,sha256=WqjnFJwsqlb70UpUrzBzwaToHMZPyhdt1t5QjU5zT6g,2190
606
+ pyrogram/raw/base/help/app_update.py,sha256=dJsZqm-Lx0JTqAZiquEkJd46NnzSOaGQHye7YPDPb3o,2172
607
+ pyrogram/raw/base/help/config_simple.py,sha256=5MzXbzSOv_7vLwe77t09_UhfYP_GFhGdvpJ6KdFuMz8,1930
608
+ pyrogram/raw/base/help/countries_list.py,sha256=UeFcxeCKoskj_dYofk9ibzPgwXc6ym7z-Lj50gz6Lgc,2226
609
+ pyrogram/raw/base/help/country.py,sha256=ufLLzg2nJOVLFyqibuChYfXdWCzHmxo2vjm0EHr0BzQ,1899
610
+ pyrogram/raw/base/help/country_code.py,sha256=4EzMqQ64fxqkzmjDrQXA4yz_HH2cZUGgf83Qpl7yG-8,1924
611
+ pyrogram/raw/base/help/deep_link_info.py,sha256=gKUQXn-mczbkex9Sbx43D3D1y_OI0rL0ERsxy-czKFs,2206
612
+ pyrogram/raw/base/help/invite_text.py,sha256=I3h9skXxUlz4vXLUK4jRYlvEFev4EqWSwbifZzAiOwA,2121
613
+ pyrogram/raw/base/help/passport_config.py,sha256=Ghwc0C66oTGZ8heesnQ7BtdE-meegeWYIyWjqxpqSes,2235
614
+ pyrogram/raw/base/help/premium_promo.py,sha256=BMHDiky-yuKcLoOLtxqT0fit_W4G6YgX_GNByPvxuBQ,2135
615
+ pyrogram/raw/base/help/promo_data.py,sha256=1BjjtfI5pfbikTCkaehQdrRRxNuFzHHV_f2k7X1NSDU,2178
616
+ pyrogram/raw/base/help/recent_me_urls.py,sha256=qQjVg0TYvil-GJVeEEPuJ8p7AjprCGhqgQhAC5j65-s,2136
617
+ pyrogram/raw/base/help/support.py,sha256=YPu7_0_IhYd8aGFEo2WkFopcT4NjfvpI4gUz_c4lY08,2099
618
+ pyrogram/raw/base/help/support_name.py,sha256=3WNUvqN1gkLfL2zbt-jSAiek3dlyDTvQEA1cKZVqaGw,2128
619
+ pyrogram/raw/base/help/terms_of_service.py,sha256=K-t6S_D_4Jr8Nh0i42mwfp3zd1kzAg1S_sUnE_aPv8Q,1943
620
+ pyrogram/raw/base/help/terms_of_service_update.py,sha256=bL1ptjK2DnmKasPu7c5k0__97wgvTUvpHaGuaPCqaQ8,2279
621
+ pyrogram/raw/base/help/user_info.py,sha256=lYvDsgywyxfttEYW0DdPeg72dMj5Y3kqRBaA8lTSEYc,2200
622
+ pyrogram/raw/base/messages/__init__.py,sha256=QHjIBOj2OO_8P9OlE1Bw7SpacXN0jOPE8ytlDNn8QWU,3203
623
+ pyrogram/raw/base/messages/affected_found_messages.py,sha256=CzygG2uV3EMe2BMqJqdPXl2dqAFFbxu0FvzUCbv9u3Q,2213
624
+ pyrogram/raw/base/messages/affected_history.py,sha256=rv_IZH2DQJHDrIEADJDekBQDLQFVGwCHFNRcaCMMtF0,2361
625
+ pyrogram/raw/base/messages/affected_messages.py,sha256=drWIujUPQehDVzWYdHwEP_mX_PvY661Op-Tyy0feSqI,2285
626
+ pyrogram/raw/base/messages/all_stickers.py,sha256=Vo5EsPjELEtfeJW6jf4rO8ZIqGgVetM3_HqIJ0zQcBk,2308
627
+ pyrogram/raw/base/messages/archived_stickers.py,sha256=ZbWdS79N559KBI7y5BFPZXuHA7UDeUnG_MbJksik6GM,2179
628
+ pyrogram/raw/base/messages/available_reactions.py,sha256=s38y1FKWU7xyE9VmGy-8w-dI5u-l5b2HzwSHBHH6qcQ,2295
629
+ pyrogram/raw/base/messages/bot_app.py,sha256=bEA7RybqUZdNAzkYUG1Cd0Q37N2YYlmLGIUkyL57Vss,2109
630
+ pyrogram/raw/base/messages/bot_callback_answer.py,sha256=hVVUEFbMNN1b1kKOtQFz47C90PewlFDVIHjsPmCopZ8,2187
631
+ pyrogram/raw/base/messages/bot_results.py,sha256=lDmEtmGDjkCa8CYKtFpW2KiMWF8bb3077r91jQfzHA4,2143
632
+ pyrogram/raw/base/messages/chat_admins_with_invites.py,sha256=mQYbG1y-fv9eOtVRX3n6EUd9qmWOrcNwl_JFXJkndag,2212
633
+ pyrogram/raw/base/messages/chat_full.py,sha256=nCVyfGJhrsWmHwoCL-3RJ-vtjBc36bkxBb4bUHeypec,2160
634
+ pyrogram/raw/base/messages/chat_invite_importers.py,sha256=icSpuw1Xheph3OZoXqgV45HV2VpGKRvlg3P0aq7_1FQ,2201
635
+ pyrogram/raw/base/messages/chats.py,sha256=9TDxKyHD3vFz2pooSMS6qQWNT5WxYII9qqystaKLyi0,2395
636
+ pyrogram/raw/base/messages/checked_history_import_peer.py,sha256=7lMVacApH64p1bRMejg7k_esvLmcxDxJTU7a6cjw9QA,2232
637
+ pyrogram/raw/base/messages/dh_config.py,sha256=tJz_aQ2N9IS6ytw--jwy1bPOYx-paEmK7AodIzXoSns,2205
638
+ pyrogram/raw/base/messages/dialogs.py,sha256=4GYgnw81Ud2KzZsdtGOh9KJ05Lwg75u-pENgGN7eWLg,2262
639
+ pyrogram/raw/base/messages/discussion_message.py,sha256=6qM-DbJEkzkdbNBpTFMusy2OSSubo0WhdcRNd6MA6B4,2186
640
+ pyrogram/raw/base/messages/emoji_groups.py,sha256=NU-vLaHne8uCZKT-edlOrvEPmzihKfiE9Hf2DAmm1jM,2323
641
+ pyrogram/raw/base/messages/exported_chat_invite.py,sha256=rqILujkVbZ4YMQEWG5WmGU-uZERX2IazN1g0au__B2g,2335
642
+ pyrogram/raw/base/messages/exported_chat_invites.py,sha256=D7Extkwd9eVT62yaNXk7biYChWPp1C3_cx35HaBng-o,2201
643
+ pyrogram/raw/base/messages/faved_stickers.py,sha256=yi6RHOTGnMTvVVnJ5heqGk0_NfgpOV-ikRAyLgVPoWo,2250
644
+ pyrogram/raw/base/messages/featured_stickers.py,sha256=2OELZiOis0w55bOZdzR2lyv1Bl9sA42t7Gern80jRgk,2368
645
+ pyrogram/raw/base/messages/forum_topics.py,sha256=DqUIuKSBrbTTVM-CUnm7EuU99OfADOuZIvWb2OEH1e4,2185
646
+ pyrogram/raw/base/messages/found_sticker_sets.py,sha256=MnJai1nksA5m2SnWywGrYog6C1vi8L-PEfY_FN-n-Pw,2276
647
+ pyrogram/raw/base/messages/high_scores.py,sha256=9bnstPIwVVvyWZnzZ22hOOS-atgAsYuNnQr0mtZsYEE,2187
648
+ pyrogram/raw/base/messages/history_import.py,sha256=RkdHO8lRnemxQqSQb9Nlze0S3yXKqMjhQLuD4kWW_Mw,2159
649
+ pyrogram/raw/base/messages/history_import_parsed.py,sha256=pO0pe5stNntN0qw2Q7Ka7dYaCXUkxDF15TtB1n3JZR0,2197
650
+ pyrogram/raw/base/messages/inactive_chats.py,sha256=VhwDpnln8IFwUZNzOZQSWHaAbyeAjoVwUHCsNNPYVsk,2161
651
+ pyrogram/raw/base/messages/message_edit_data.py,sha256=wAf9kyBObiuR57uFqCztkBq5YPCgdd1w3PUuzrFrBeA,2173
652
+ pyrogram/raw/base/messages/message_reactions_list.py,sha256=uTWP_0P3gURRnx3DMG3x3uHDj0KoYBuHnfkXJFkFIJA,2208
653
+ pyrogram/raw/base/messages/message_views.py,sha256=rjgv9Wvl_EPCfg8oDptgLwByB3B4FW4auI86jO5zA7Y,2152
654
+ pyrogram/raw/base/messages/messages.py,sha256=TUrIZWhBHpbHu_CukEn3is91jJOfT1H01a2wv9sC_4U,2789
655
+ pyrogram/raw/base/messages/peer_dialogs.py,sha256=z3mqVIZwYT0Qq5ROXMe5Yefy2umjP0va7YpumebU7RA,2183
656
+ pyrogram/raw/base/messages/peer_settings.py,sha256=leYFSNocpLLNJAwgk0xJYCqcxZv86bCcnksjM9hSGIQ,2151
657
+ pyrogram/raw/base/messages/reactions.py,sha256=pG_DxIQZh_b5iAgB6wzOyaTzVL-Usa71Mc7HLbfLVtg,2257
658
+ pyrogram/raw/base/messages/recent_stickers.py,sha256=wnXnNdacvC8aYlixFYKCfw2M3VaymN-ELMkCxkomjH4,2259
659
+ pyrogram/raw/base/messages/saved_gifs.py,sha256=funEUghhT6KrgRgcWKgTUkb97kjDPwxWMnW14A-6kxs,2214
660
+ pyrogram/raw/base/messages/search_counter.py,sha256=dACyMNpMwCKm3M64W2WJ0I7cBDCvMYRXc9owexz8FWk,2159
661
+ pyrogram/raw/base/messages/search_results_calendar.py,sha256=AbwAhAHC0KM7yjQf2fpNqTGRQyLOS8hqO5Ln0mM86qc,2215
662
+ pyrogram/raw/base/messages/search_results_positions.py,sha256=MBo7srECTngHIsCVk0-kDPhMdE5yFR7Y7srzmvpUqLg,2222
663
+ pyrogram/raw/base/messages/sent_encrypted_message.py,sha256=ZvAmkrwazeCrPsgn3Tv_9N1ZCt7gsPjuDIl8ro2YE58,2358
664
+ pyrogram/raw/base/messages/sponsored_messages.py,sha256=BHzsRqsOx9SrKLYlTepAsiyUPI9lDSovpn9x47Y1RSY,2274
665
+ pyrogram/raw/base/messages/sticker_set.py,sha256=t8qoHTsia5Bst2z5XSi0NmPRkPrN1brEa_u5q-BlPWk,2497
666
+ pyrogram/raw/base/messages/sticker_set_install_result.py,sha256=oZ1sQ95-4LSsrIazrnTxzvE2zPVkF7CLpV5n6eBYpos,2339
667
+ pyrogram/raw/base/messages/stickers.py,sha256=WSuNC5dIE01gfADMGDZZRFvBLRlvD0JrJ9bGZgG9L8Q,2204
668
+ pyrogram/raw/base/messages/transcribed_audio.py,sha256=79z4Uebp-XMY-y8kp42JI8Z1B5rZTUr5oCAYhqoKbBs,2175
669
+ pyrogram/raw/base/messages/translated_text.py,sha256=HUBowEALTN6FtPq-uL19vevwX69eGIMQUc6IYjDrRc8,2163
670
+ pyrogram/raw/base/messages/votes_list.py,sha256=xOUcuQr8Ws8lqn4CsN4Uhbx6NrdDDY9u_lh0BI0Ghhk,2130
671
+ pyrogram/raw/base/payments/__init__.py,sha256=mmtb5B1zrzZedRhYyUDxAcplSgWtZL61CjeVavLjMGM,1366
672
+ pyrogram/raw/base/payments/bank_card_data.py,sha256=gO7SX62nU5MGmZTSjSD13vDrjLSaIT5SPqu6zlAk8RI,2152
673
+ pyrogram/raw/base/payments/exported_invoice.py,sha256=mzw8P1c1ME5LcAL3zhpnJKqHp-uTFUNvYJsoVRqALBE,2167
674
+ pyrogram/raw/base/payments/payment_form.py,sha256=O4RZJ4G6OjkpicpTxK3QTlt0IDAaDs5VrVbMGqYyxco,2144
675
+ pyrogram/raw/base/payments/payment_receipt.py,sha256=EC0ArNt80VzEkSwV_MwdEOBuosQfW8bkcqOZK8WNw3U,2165
676
+ pyrogram/raw/base/payments/payment_result.py,sha256=vmnStQH9uQSXuecLqE6IPCA0au1S3N1gcp3A6AsUJwQ,2251
677
+ pyrogram/raw/base/payments/saved_info.py,sha256=z_t-WjZ-5ucA1FjYSd1YVYt8ajpOEM2Xr-Lol1h1wEU,2130
678
+ pyrogram/raw/base/payments/validated_requested_info.py,sha256=osL9v_5Rja40rROxSRxECew6U5pYRq7FohE9CSA-GcQ,2218
679
+ pyrogram/raw/base/phone/__init__.py,sha256=l6wKXBP2fkcKZyMzG_ZCcRQj8FVGUceLg0a6s37AGF0,1408
680
+ pyrogram/raw/base/phone/exported_group_call_invite.py,sha256=XliZZ8WuwKupbY9oofyy3lesmYq50FKFxjRZ9rGB0GI,2213
681
+ pyrogram/raw/base/phone/group_call.py,sha256=8vVfg1_GAwEmXMwp5UCba1OxJ8fUlNR-Nk2l9nx7oNM,2118
682
+ pyrogram/raw/base/phone/group_call_stream_channels.py,sha256=NY0wUg_8vEsyRG9cF1fMo88ZjEznPIT8vqyX87QTCfA,2218
683
+ pyrogram/raw/base/phone/group_call_stream_rtmp_url.py,sha256=ODX41xxZFe8DWE54r_RH9_-o8oSBK_XM6hLo5E5OUtI,2212
684
+ pyrogram/raw/base/phone/group_participants.py,sha256=RrQ2ieNRurVX9-QYxntfvntPaVdEYiprI-bMb3P4PAY,2174
685
+ pyrogram/raw/base/phone/join_as_peers.py,sha256=542aqHj7NgD2AZiVasVQTSdpK4ZEpRhnapRIBeYtRto,2137
686
+ pyrogram/raw/base/phone/phone_call.py,sha256=58LeF9h_HUtpPcWkQUiGIpJKFjXxPhDKku8oKP0gShA,2177
687
+ pyrogram/raw/base/photos/__init__.py,sha256=tIzwJhO9CoJpN5UWZdVNaNtXcyJfH89BiWpcTd6FVlE,1112
688
+ pyrogram/raw/base/photos/photo.py,sha256=iJ7DjmIFiV05svKnAJI4TeT_L419sDfaLbpbkK5Gp1k,2187
689
+ pyrogram/raw/base/photos/photos.py,sha256=YRu33TJLbThQdgmOnCVJYjwEHmjDTljG5Pm85zyZqRM,2166
690
+ pyrogram/raw/base/stats/__init__.py,sha256=n0dmja00IGX6vQpohSI12rVVYk6rF7684SeRIWddciY,1188
691
+ pyrogram/raw/base/stats/broadcast_stats.py,sha256=YAa28IwSRGihQOT1JjXJ8wV-PS1DWuP-dBCbJqWZTfs,2153
692
+ pyrogram/raw/base/stats/megagroup_stats.py,sha256=RqR-O6E-1I9w8AxqN4pvfVTC5aKUI_ZNIicSXUPfpJo,2153
693
+ pyrogram/raw/base/stats/message_stats.py,sha256=213vAZWAYpmtsxh8RKzeC87b2CpWo_e9g1ueKzz72I0,2139
694
+ pyrogram/raw/base/stickers/__init__.py,sha256=rJAWW6hP7i77jeDfwwOYCJieasOL-AcZtrMu3RHlQQw,1113
695
+ pyrogram/raw/base/stickers/suggested_short_name.py,sha256=3eRn4pyrO3RHuqUnIqqLRgj213dJrp8fc_SqAQ1cCZc,2189
696
+ pyrogram/raw/base/storage/__init__.py,sha256=YL8lcLzHTDkq_iU9QClFNfngZsidnDGSrOyjIAJJTI0,1092
697
+ pyrogram/raw/base/storage/file_type.py,sha256=UdUClCLIi4_bkOk39LuWMny2bBXYOgaVnwWKvbh87OQ,2430
698
+ pyrogram/raw/base/updates/__init__.py,sha256=YVdRIBaksE0YA6PeYiBRNfWUDAw_f584-w1u8nQlBc8,1170
699
+ pyrogram/raw/base/updates/channel_difference.py,sha256=MwQ0PoLyxC29AsYG0RRTQgQJgOjHB5ehTOwzagEydTM,2357
700
+ pyrogram/raw/base/updates/difference.py,sha256=UraPtOERmeFdLhsYpDg1eb9mjllpxgFhqF6UBNQ-kmg,2350
701
+ pyrogram/raw/base/updates/state.py,sha256=QnPBhXcyuIdndWblaWsm9czm8Ste_ZOqjCH32PvrKH0,2097
702
+ pyrogram/raw/base/upload/__init__.py,sha256=wKdR29fhiQhzlX4EG33309Jyf9FP_EAv9jx_D6Y9zbI,1143
703
+ pyrogram/raw/base/upload/cdn_file.py,sha256=E98bb6S4CI3ys91YWptE78prs58uoNtIC-GGJeGZH6c,2190
704
+ pyrogram/raw/base/upload/file.py,sha256=tiesdKnqA2tyUn8qownxhuumqjgtwGQdcVqNlXNJinQ,2156
705
+ pyrogram/raw/base/upload/web_file.py,sha256=kfuY38iEv_NtV50zeCV2cy4W0_u3wjyhU7kZaun99Tc,2108
706
+ pyrogram/raw/base/users/__init__.py,sha256=X0MPB9bLJmIaChEGfjqRMhAY26yNnpC-S4P-oCFnm2U,1092
707
+ pyrogram/raw/base/users/user_full.py,sha256=qTCVn4gYN9mG-_2Hgqz993fh_j9DRZH4q6xG5xGlSD0,2111
708
+ pyrogram/raw/core/__init__.py,sha256=zUsSyx7p_hfAZkugK2T9YmJUnm4dh0kR5T9tgKVASMA,1312
709
+ pyrogram/raw/core/future_salt.py,sha256=CXmWMaMkMz5JBnDmcD26WudqWXKfAi_ynSg6s87A64g,1692
710
+ pyrogram/raw/core/future_salts.py,sha256=19jYtwHnVy_STLZbDMOFz2dvzzZh8vud-nP0SKfESyA,1891
711
+ pyrogram/raw/core/gzip_packed.py,sha256=DVzEFra8gpJ3OVbZmhTtGyfH_0neI5_mqpl5qZOk6vA,1814
712
+ pyrogram/raw/core/list.py,sha256=oGkC0El2v4wWmzO5E7rOjYnAjRnXxljGHogGBzo7A8U,1048
713
+ pyrogram/raw/core/message.py,sha256=OdadQYdzPL-nozw6F5lOH5pva8jzxmzvkJ5dOSqj8Z0,1851
714
+ pyrogram/raw/core/msg_container.py,sha256=Zid716adIiFXsxjbXes_sjoWdtipnDsZ3Ojb4NsBWo4,1614
715
+ pyrogram/raw/core/tl_object.py,sha256=vAyCHFrBfFhNRgJupZAzJYAoxt3p9-aAobKbaa88nkw,2495
716
+ pyrogram/raw/core/primitives/__init__.py,sha256=YHD23FhbiuhRy2iSYKBVlJdOZXMRkbBoQWRnxNZ4RRs,1012
717
+ pyrogram/raw/core/primitives/bool.py,sha256=-1bc7y7hrguxpZuAkQn-sAFgvFb_pGJI4T5c-8fHjKg,1497
718
+ pyrogram/raw/core/primitives/bytes.py,sha256=-GAovTgmnQ207j1sbHksbee_uYGd-mgWhoZoHj6RYmg,1759
719
+ pyrogram/raw/core/primitives/double.py,sha256=rJWraBxf6fEcSJi1OendWYzMyMW8Mfh13z4rX0dpSP4,1193
720
+ pyrogram/raw/core/primitives/int.py,sha256=d7l4DYyyI4FIQwB77eniT_eN3-FVn7XACcc8g5zw8X8,1358
721
+ pyrogram/raw/core/primitives/string.py,sha256=Uz8dAIbFE9R5DGkaXnx3c9tNT51a3beefZVrODo0rLE,1194
722
+ pyrogram/raw/core/primitives/vector.py,sha256=WYTaJTfZul2__1qH7UMDKZxr5h7L2Jvz9Ap7Df7y2Ck,2022
723
+ pyrogram/raw/functions/__init__.py,sha256=3x7Gr6h-Qh9zTy5NBQycz8ezdhmg5EEqa1azrFEZVSs,1998
724
+ pyrogram/raw/functions/destroy_auth_key.py,sha256=b4jNMcNah3IWOpfmHTt6gpHltAmtm6ymW4QKb69wvEw,2010
725
+ pyrogram/raw/functions/destroy_session.py,sha256=waq8vwYY6N9f1EYWqqsGQPEFPcNieQwN0Nxm3iCKobI,2211
726
+ pyrogram/raw/functions/get_future_salts.py,sha256=ZZzxwrShKufam6ksZeS6Ciwjxp85r7MlY1eZbhYoagI,2133
727
+ pyrogram/raw/functions/init_connection.py,sha256=JkAMKXf3I_N6NIg_Hp50pyDoD8UJ-UF30bS0lBzm-r4,4863
728
+ pyrogram/raw/functions/invoke_after_msg.py,sha256=8z7sTcdAyco5f-K7nxP_qUX_SPiAu-tNev_BKJbibFo,2397
729
+ pyrogram/raw/functions/invoke_after_msgs.py,sha256=DCw7_sh0ckWb7QQxyrBIiatjp3sBfTWJuZfhhnWMmT4,2450
730
+ pyrogram/raw/functions/invoke_with_layer.py,sha256=mGifIiAXtNPE0tlmv0ZZCvR4qPsOGPUiz0p8U5LcIEE,2389
731
+ pyrogram/raw/functions/invoke_with_messages_range.py,sha256=doTSG9wq-5-i4n2E_RQpd3Sj_dLqyizgakBQsWwiWIo,2492
732
+ pyrogram/raw/functions/invoke_with_takeout.py,sha256=ZUVoZDOm-FPldTGE9jiSFsH7yId7BWPGhZUmUjOnnoI,2445
733
+ pyrogram/raw/functions/invoke_without_updates.py,sha256=KhK2mvtVCvTOF9pLNbJCcMJmxKLq57WWvhQkupazVvA,2209
734
+ pyrogram/raw/functions/ping.py,sha256=YEADfYKQjKWp7U7EN_QvL_qkpTf2gVOHxxIif-kAsR0,2118
735
+ pyrogram/raw/functions/ping_delay_disconnect.py,sha256=460sxWoZZYMd66sR5EUsSqhZzj3fctYhmgqizXf9xjI,2477
736
+ pyrogram/raw/functions/req_dh_params.py,sha256=xofMEQvQ0IXlaJaRlOR1sU1QWwVX763kNtF7we_RfMA,3390
737
+ pyrogram/raw/functions/req_pq.py,sha256=VYy1d56Vv3SAB5SFLIjqYNBQfScOsUElhcvm0woHZPI,2113
738
+ pyrogram/raw/functions/req_pq_multi.py,sha256=_b0DKzXsu6WlYFfXXl2oU71r3KTUDbJP6rxbCAV8s-w,2133
739
+ pyrogram/raw/functions/rpc_drop_answer.py,sha256=AQMToWYTAbwl0vjUAtCY3KcyvhkPB_OuOx0Tfj8tJ8I,2199
740
+ pyrogram/raw/functions/set_client_dh_params.py,sha256=JsqnbIoESdeO-vuP2yb2nRResLJFTUvcLiM2lsdW5mA,2750
741
+ pyrogram/raw/functions/account/__init__.py,sha256=hXNEDdB08Hj4GM-fq7-JXPhTgDl-ZDR79DVSasixOFE,5483
742
+ pyrogram/raw/functions/account/accept_authorization.py,sha256=-XXJeIF0YVzFEa-j3PaToj0nlHPuyYtfFj5VFy1aJH8,3339
743
+ pyrogram/raw/functions/account/cancel_password_email.py,sha256=cjsKHhrr3fFTP019l_n_b014XFTpaVuCO_fA62o2O9s,1984
744
+ pyrogram/raw/functions/account/change_authorization_settings.py,sha256=ytPV0k_9MrM-UwbuI7VnTo1stuNQyr-rdr26t1_wehg,3337
745
+ pyrogram/raw/functions/account/change_phone.py,sha256=HL_YrlzBYw1fStguH7S8UMfUmoenqmFFD4-xFwSgxY8,2725
746
+ pyrogram/raw/functions/account/check_username.py,sha256=ig4eXl4V6vqDEpSDxgnTdJgz2JvILLb7hUcFv3Xdxl4,2138
747
+ pyrogram/raw/functions/account/clear_recent_emoji_statuses.py,sha256=lYKGf6vx-AsnC9luwsp7D2AMxaplftBC94q_Vp01VWs,2004
748
+ pyrogram/raw/functions/account/confirm_password_email.py,sha256=p9pGz_ipbt4RSnBc47nbFjfQ5U6C0h__v__OprTKRiM,2130
749
+ pyrogram/raw/functions/account/confirm_phone.py,sha256=cVg84e4Y7wolY_kg3wcxbM2WBp7h0vrkLcqy3-3sNao,2440
750
+ pyrogram/raw/functions/account/create_theme.py,sha256=B2iFBwiVBJhdo-AxhUaknKQwrI9oOZcrZb2RpTLwink,3331
751
+ pyrogram/raw/functions/account/decline_password_reset.py,sha256=zxaREepOm73coyATB5EfIQIem50wJclC2RoQ-pQkGxw,1988
752
+ pyrogram/raw/functions/account/delete_account.py,sha256=VHMPly5PU9ph00l58RiYipLb6vikOLCnR15fMBYz9RI,2660
753
+ pyrogram/raw/functions/account/delete_auto_save_exceptions.py,sha256=nx7UKYLMNcaywDJHcgXyS5TDTrgrCFU36KMuRRPcRW0,2004
754
+ pyrogram/raw/functions/account/delete_secure_value.py,sha256=FNifb-U88P1kzgI0-OE7gMVe3Bu8UL76YmnkKM6Moog,2234
755
+ pyrogram/raw/functions/account/finish_takeout_session.py,sha256=unUC6XQ_BwlmeHf3Jx5m15dm1EN8YTpMnFKscoPPVr4,2253
756
+ pyrogram/raw/functions/account/get_account_ttl.py,sha256=aqRMAL4C0HeFHrs4igNG01m9wP4HV3w9p4sXhMg1ZLY,2006
757
+ pyrogram/raw/functions/account/get_all_secure_values.py,sha256=GR3da8E2eZAdhngo5LVwGm1NPraqImZh-cVMZIlRjzs,2030
758
+ pyrogram/raw/functions/account/get_authorization_form.py,sha256=S2UK7Bg6m-K4jkJIyfNC3UZKLHfHY_YrNygzH3veZRI,2664
759
+ pyrogram/raw/functions/account/get_authorizations.py,sha256=ijf4NR5n-zBn_6D0h0GreNSepGTtZbjmQJvVcIOdPA4,2040
760
+ pyrogram/raw/functions/account/get_auto_download_settings.py,sha256=XMkRGqDs6jIjxxJZgJwZm1Cdj3vJKffYHfeI00V27_Y,2076
761
+ pyrogram/raw/functions/account/get_auto_save_settings.py,sha256=HrE6uSHWygJfUvvciK3r_SbGtzzEW2aa4FRACy69aGY,2052
762
+ pyrogram/raw/functions/account/get_chat_themes.py,sha256=0izLaK4nyxS0fRNZW2JFj_z6pz2H5T1p5Z7Wra9jJZQ,2155
763
+ pyrogram/raw/functions/account/get_contact_sign_up_notification.py,sha256=59PdkdWwEkKatPrSu7TM13xZCRC0RKMGj3I62U57gRg,2020
764
+ pyrogram/raw/functions/account/get_content_settings.py,sha256=pTMXJGW7cSe5XAk7rsvhw3DyseKrChZCoCczAmR2L_o,2046
765
+ pyrogram/raw/functions/account/get_default_emoji_statuses.py,sha256=cSo8tco8UIbOJyYh43NI_HD8SIaF8RzbjdSe3d-AYS8,2209
766
+ pyrogram/raw/functions/account/get_default_group_photo_emojis.py,sha256=4h9NK3KF9OZTDs4z9h9caMKTQClEc4WHH_n0tvXteCg,2197
767
+ pyrogram/raw/functions/account/get_default_profile_photo_emojis.py,sha256=wmsYnYyYanmBbdApmGjVlB-H3bo8KcpVDptAj78IEbA,2205
768
+ pyrogram/raw/functions/account/get_global_privacy_settings.py,sha256=GpytHpmKuIv9QWN9GSkkdCASVwsN-9Yvkr8pNprgy-0,2066
769
+ pyrogram/raw/functions/account/get_multi_wall_papers.py,sha256=6knUlvVQIBBdh1fCY4HtsPu8qPAtNClu4jDMjihjG9A,2325
770
+ pyrogram/raw/functions/account/get_notify_exceptions.py,sha256=GA-Pxn_g4l1SHVwoUH1KdL1yPRGKJ6QMmgH6hsi3-og,2764
771
+ pyrogram/raw/functions/account/get_notify_settings.py,sha256=xIRDW9ghiYuao4qBq-lrDOAU8VvkeATD3NsPpYdNOTU,2259
772
+ pyrogram/raw/functions/account/get_password.py,sha256=9kfGSZ2IQVKHCIpLDSXX1UJvYFpFvjmcK_GUdPRIH3o,2004
773
+ pyrogram/raw/functions/account/get_password_settings.py,sha256=d2KD9iGE4EBpgA3kALBfQutjWr854YkflnAVtncxcvw,2339
774
+ pyrogram/raw/functions/account/get_privacy.py,sha256=kp1_8moAVH8b9NCrpwbQHNhyy2k_KznSUzFrSpgc-sI,2226
775
+ pyrogram/raw/functions/account/get_recent_emoji_statuses.py,sha256=6oRHaO_VghGdQZmDf3iL2FmqOH7uWdUuIYutKdGG8QI,2203
776
+ pyrogram/raw/functions/account/get_saved_ringtones.py,sha256=k7WTRz77qNdRsL6yZXeohSyBmCNMkDfAlj-nvCITRHw,2187
777
+ pyrogram/raw/functions/account/get_secure_value.py,sha256=yDFg1a1YYeHFXAquwKfr10P2yriljtG7bSFv3cobfqw,2272
778
+ pyrogram/raw/functions/account/get_theme.py,sha256=_cSnZ3KF9SHquPkNpNGApyAn4Jy4MjrD9O7LQzeJ4o8,2393
779
+ pyrogram/raw/functions/account/get_themes.py,sha256=XMcMhIsReYdkJQo1BnkTVSRUNjdK2B_zRVacgVC8NXg,2346
780
+ pyrogram/raw/functions/account/get_tmp_password.py,sha256=XBC_wuhRhNiGtINGNaLJiqu88y_Ah1VXhPtMt0VcD98,2518
781
+ pyrogram/raw/functions/account/get_wall_paper.py,sha256=e4XtJZgkRIhFw6X6Du3Nhf53t9VzPqWPGXDy6cBglrQ,2262
782
+ pyrogram/raw/functions/account/get_wall_papers.py,sha256=5xZQY3HV3wba82y5c2UAosIR0002oIe6CPEekD7Ea9Y,2161
783
+ pyrogram/raw/functions/account/get_web_authorizations.py,sha256=3BtFyRp4srdw3tEStH9YST28bDauh2c2L4qiSSn9p7M,2058
784
+ pyrogram/raw/functions/account/init_takeout_session.py,sha256=3FunPz7rdj8dlCVYLauQBmg9lttg02AwsjN-mn6dLjo,4356
785
+ pyrogram/raw/functions/account/install_theme.py,sha256=YjF4gPnY3TiMZnDpnPrRW-SOw4RIZ9Cye-aggHV1r_o,3446
786
+ pyrogram/raw/functions/account/install_wall_paper.py,sha256=7Qq9uR5xi6bLzZnsritzK9murKDQwlI6sQNJLPKC9pI,2558
787
+ pyrogram/raw/functions/account/register_device.py,sha256=SHaOxgzwYbKRAQVRWfqMIverOSF_kMkVvI_SZHMOMOU,3425
788
+ pyrogram/raw/functions/account/reorder_usernames.py,sha256=TEiaxafFsu5SJDvZEBoLoNK1t6i84Z17Bo7HfBbAe6I,2163
789
+ pyrogram/raw/functions/account/report_peer.py,sha256=uIFO8lCwMTSIHIe75fG4tK2LAT-Wz59MxqyoUDTbL40,2647
790
+ pyrogram/raw/functions/account/report_profile_photo.py,sha256=ft7qtWAN2TuAGhRE7j9OPDaH2NNjDGtnGMsm5uaJ_q4,2969
791
+ pyrogram/raw/functions/account/resend_password_email.py,sha256=cvJ2T4qRfrfMia6xw3sGn7H-6BmnXgC8oOySQpMCiEk,1984
792
+ pyrogram/raw/functions/account/reset_authorization.py,sha256=qq52oGg5eB9lPpO0eP-kEye2Z8F5yDRcvQI2kJidlQs,2127
793
+ pyrogram/raw/functions/account/reset_notify_settings.py,sha256=q4cqR0S6oN91axIlqlkGg5iQXfOt822DjctJBesxBaU,1984
794
+ pyrogram/raw/functions/account/reset_password.py,sha256=Rur6_4wJYdfwJDYuj6C1jEVR3mOnw-SQ8lxA0rfwEDg,2034
795
+ pyrogram/raw/functions/account/reset_wall_papers.py,sha256=DdyJ-V8mxSAH6k8J4TQxONk2VU9VSduFZ4wmQVSn_2w,1968
796
+ pyrogram/raw/functions/account/reset_web_authorization.py,sha256=JsXZCLquguB3jZEfOUvDDlz8T0QTJ1kTnLpqrwiMlUQ,2139
797
+ pyrogram/raw/functions/account/reset_web_authorizations.py,sha256=du_dEGbE6x1jO132IWfzXN0EmHytYI-emYQ9uEzppuM,1996
798
+ pyrogram/raw/functions/account/save_auto_download_settings.py,sha256=dJNket0FYk34--34YRUK8xfgoxXhp95-2ejR9lwkZq4,2803
799
+ pyrogram/raw/functions/account/save_auto_save_settings.py,sha256=5Mazf78_dMNWRDxx-RPplNcCIyrB0s1MDUpUPUCLXLQ,3495
800
+ pyrogram/raw/functions/account/save_ringtone.py,sha256=3sULA4yaKP9wOn6yfZse4Waibwt0ITb8ctVao8IStjM,2422
801
+ pyrogram/raw/functions/account/save_secure_value.py,sha256=krmaPRVWNM_6qB5d56YS-c9luovikk3zTbTXYuIqlAA,2552
802
+ pyrogram/raw/functions/account/save_theme.py,sha256=NOU0IDQmCBSu-tjXFobiw8RNH5KWJ9sNxy4z8F9VOJo,2363
803
+ pyrogram/raw/functions/account/save_wall_paper.py,sha256=rbFOWEXtheuzCT72_jrk3I4aF6SmpXhDA387TS1060g,2749
804
+ pyrogram/raw/functions/account/send_change_phone_code.py,sha256=QZE6BIunstEq71n_BEmDcgf0Ok8O3EUtKVUrx1NZ-Tk,2542
805
+ pyrogram/raw/functions/account/send_confirm_phone_code.py,sha256=vcoqBSokuI8y-dtthuIavWya8LTidkfCMWKkrQwFSHI,2474
806
+ pyrogram/raw/functions/account/send_verify_email_code.py,sha256=Q1fj3wK63eKvbcIA2qWjZgvGG77aNqsqc8sPvjuBfn8,2510
807
+ pyrogram/raw/functions/account/send_verify_phone_code.py,sha256=QE1ttRmMHbr1wqra5ZJGTC1XGqOCQeUHdFzBcvzDyt4,2542
808
+ pyrogram/raw/functions/account/set_account_ttl.py,sha256=OtCMlGfihDwcishyE4EP2Zfks5aUL9x1lPUEdrwoN44,2174
809
+ pyrogram/raw/functions/account/set_authorization_ttl.py,sha256=grEMG9Ach3UgXk-t4BzqMl4Tenj1n4NR8D-wFvEC5I4,2290
810
+ pyrogram/raw/functions/account/set_contact_sign_up_notification.py,sha256=AAgzqnLhozSrYqc9ANJ6xGcYilH9OpSp2AfluiAL_Vk,2176
811
+ pyrogram/raw/functions/account/set_content_settings.py,sha256=aj09cSdLXEM5o7xB1R_Q6IpQIleqE-C5vxWz27DrnWw,2335
812
+ pyrogram/raw/functions/account/set_global_privacy_settings.py,sha256=LmnDL9W-LMto3QeA4Uelm6ndLWsu4bhmg2lyh9YF1D4,2353
813
+ pyrogram/raw/functions/account/set_privacy.py,sha256=4E244V3i99g0aIvd7ldNP4JGVTSgxGcaevHFcKc3wdY,2535
814
+ pyrogram/raw/functions/account/toggle_username.py,sha256=0yBvnBvCs4ZNtISJSF2gIa9VGT5nR7rTQQdkEffY5F8,2345
815
+ pyrogram/raw/functions/account/unregister_device.py,sha256=Pm_p3cT4wX8xxFDEYAYlDWWuleGjlWMU4unRZm7_V1M,2656
816
+ pyrogram/raw/functions/account/update_device_locked.py,sha256=_FbZS7f_8ubt3awCBMQHg_x8YreMVqah_riramGvMbA,2142
817
+ pyrogram/raw/functions/account/update_emoji_status.py,sha256=LnELp9e7pCDX0PLUpo31WRMG_YXhvecWCeyidOAMhtA,2259
818
+ pyrogram/raw/functions/account/update_notify_settings.py,sha256=G5sS4gxg2dw2mxd33VQeNssqtwUdJfU6aNJnno_x06k,2557
819
+ pyrogram/raw/functions/account/update_password_settings.py,sha256=13lGn61ahnCjfYxLvRg9mohM_yn4OcnxN6FGllSTDCM,2685
820
+ pyrogram/raw/functions/account/update_profile.py,sha256=hg88ZL2b4BQ6DtHN_285eD2ZwTVAmOo1V4YHjRpvPBI,3147
821
+ pyrogram/raw/functions/account/update_status.py,sha256=umnfvkf29YF18tCk2BPvEBM8DokaMywwkjWsgy2ZqFc,2121
822
+ pyrogram/raw/functions/account/update_theme.py,sha256=d5H7sG7JHikqqG-K6LD95APt37195HtC_-oDHjUw9bo,4111
823
+ pyrogram/raw/functions/account/update_username.py,sha256=SmTIFG6anbb2YpkizRXWAkWYgEDdS3g1Jt0fXlL0g9M,2170
824
+ pyrogram/raw/functions/account/upload_ringtone.py,sha256=VJ_wa2d8asa1eeo-ncYOImM40ck0m1mB7uj-IRRGkss,2671
825
+ pyrogram/raw/functions/account/upload_theme.py,sha256=h554Ko_gnM8jxBJgFKXkNYkA3fP0c46QcRVjBMH2AJU,3118
826
+ pyrogram/raw/functions/account/upload_wall_paper.py,sha256=Ocv7Y7yZAKqhcko88XoSikQeuBgVWoFcB1vhgCz6Cdw,3082
827
+ pyrogram/raw/functions/account/verify_email.py,sha256=JzQBOKSbiICfT1WeTkgKdAfV26EmOa67LkJ2GMeqkSg,2632
828
+ pyrogram/raw/functions/account/verify_phone.py,sha256=Yj1HhIX3uRTonf-uCUGESYsQja1oBCeUk2XQni0gjGA,2697
829
+ pyrogram/raw/functions/auth/__init__.py,sha256=osIufI-W5c1AYlwAP_UlykObyIn1CHUzGRwsntNe5RE,2098
830
+ pyrogram/raw/functions/auth/accept_login_token.py,sha256=4-KA6KoOdFHJdPKWksUogjuHG505_ja03szK3hDyE1Q,2167
831
+ pyrogram/raw/functions/auth/bind_temp_auth_key.py,sha256=PmF_FGG6wtBDx6Y_9UWBtgEW40LbaABEqW1qcwyXcgQ,2975
832
+ pyrogram/raw/functions/auth/cancel_code.py,sha256=SA5XnnD_AYKjlpyaCZpHflfSkjuwkY24zc2ougEQ2qk,2447
833
+ pyrogram/raw/functions/auth/check_password.py,sha256=xzSiNq4pEtoYPT7386Q986RoCtmfJQ-ZO-UOTEy1Yxk,2300
834
+ pyrogram/raw/functions/auth/check_recovery_password.py,sha256=u1RkzHosv5bDI4kdv9ZwwZCsgZNaj5Cf8gjP5pHUa8k,2129
835
+ pyrogram/raw/functions/auth/drop_temp_auth_keys.py,sha256=iN4LahXr5sfbJVzskl5uhq269O5YYdA2BOkERTkfoVg,2264
836
+ pyrogram/raw/functions/auth/export_authorization.py,sha256=Wf8EbPY_pLiu2HdEWJeu815p7E5zj8p9burN68t6iKU,2206
837
+ pyrogram/raw/functions/auth/export_login_token.py,sha256=VKIGp-NBKl-CG991FVGJLqBwILTFl3K5Xuxr7fmadIs,2694
838
+ pyrogram/raw/functions/auth/import_authorization.py,sha256=Okaq-CPqNpKlgMPm4pMpPYOOWdAJCIb8ntI9lGYw9E8,2365
839
+ pyrogram/raw/functions/auth/import_bot_authorization.py,sha256=WMyDZ8NlK4FtMB_mP6fOZqJtkOkYwF5Bsj0Jg3M3I68,2915
840
+ pyrogram/raw/functions/auth/import_login_token.py,sha256=F2kT8ax06m0CdPQuEktOuYp11x_VfCgxNSde5Y6MSx4,2171
841
+ pyrogram/raw/functions/auth/import_web_token_authorization.py,sha256=6c3E6Ke-QOGqYONnxfcfhOzupvVHBImE3E5yir1dHNg,2735
842
+ pyrogram/raw/functions/auth/log_out.py,sha256=L1vZrRfQf9gWH4KsaBDKDYtBUIvNa15m90xBYZNuvYM,1977
843
+ pyrogram/raw/functions/auth/recover_password.py,sha256=pxOgxrA3132azLzUTS9f9JQudj9t1Go23llewVlR-AY,2779
844
+ pyrogram/raw/functions/auth/request_firebase_sms.py,sha256=MA0D4RFcuBOX4pN0M_-pXPzo1Y-XbHX2JGw5ZY9zcZU,3463
845
+ pyrogram/raw/functions/auth/request_password_recovery.py,sha256=N83NJpQh1QN0CqyNZoNeSBVn2jeAZSJ0Jl3RyGKWWWs,2059
846
+ pyrogram/raw/functions/auth/resend_code.py,sha256=AVHaH0Ij-OlIdTz_g5pMQRhQgQ2s6t84Oemeg2q1r74,2493
847
+ pyrogram/raw/functions/auth/reset_authorizations.py,sha256=aSjz3gbmcvX9uNSPPCxm3T5pkIgt2L5u4VuTGn_qIAc,1981
848
+ pyrogram/raw/functions/auth/reset_login_email.py,sha256=sLi2oWe3FAIxMLLEntxRqiRU0HQ9SFrnQJBlr8tES7E,2513
849
+ pyrogram/raw/functions/auth/send_code.py,sha256=kbrb8MXvChzqfS-uGHLFZVGTdeF_-YGx1aKeDFb9JOQ,2929
850
+ pyrogram/raw/functions/auth/sign_in.py,sha256=3XxXnWluLJEyTTfRdA9aq0N59sB9oNzg8joOhbZWAuY,3530
851
+ pyrogram/raw/functions/auth/sign_up.py,sha256=OaO3nyO6ZX46jQpKbsI_1rXZ7id83QKs65dx59bYhJQ,2964
852
+ pyrogram/raw/functions/bots/__init__.py,sha256=RqyU3G2zphdopmIc-mW-TJa2uYxcl31XG-Xs2w9d-f4,1742
853
+ pyrogram/raw/functions/bots/answer_webhook_json_query.py,sha256=wBQyE7VZpiM-vy2BWkVTqpEh9ijFQguNpP8htWLgUF0,2422
854
+ pyrogram/raw/functions/bots/get_bot_commands.py,sha256=85a54VtN5mWMj2cHTKv2ZrLf3sPnpKfeX3hCcRcdaiQ,2479
855
+ pyrogram/raw/functions/bots/get_bot_info.py,sha256=dIXJ-4KoAWVpYmqtDtGmFnsM_ip-Wkujy9GEjYoFbto,2613
856
+ pyrogram/raw/functions/bots/get_bot_menu_button.py,sha256=stPgdWmpGyyLu5fcWTsShvzfSTKxbh_Qdv0zOqjKiC8,2245
857
+ pyrogram/raw/functions/bots/reorder_usernames.py,sha256=SOw6ddww9MWx0DuRfb0f7Tj54dk9Z7FEK49fjqLgwOA,2401
858
+ pyrogram/raw/functions/bots/reset_bot_commands.py,sha256=B1OWo5jqsW0MsI-xuTUQ7XDljNClsLSrHr7o8ZupwQ0,2439
859
+ pyrogram/raw/functions/bots/send_custom_request.py,sha256=LHND3huyQfwiP99dDElaTOxBV_ikecTFCUWaTpRZxAI,2496
860
+ pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py,sha256=fx08Z4liLtyQC4YImK4e2YAOSo8UHWJPvVJHLWN1q0o,2336
861
+ pyrogram/raw/functions/bots/set_bot_commands.py,sha256=DctR2Q7n9bl7Ki53waIJZH7siFoxLo2YGtRXkAhm0c8,2741
862
+ pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py,sha256=DcE4pmYB10CtDiAY1vnMicBliwI7OXWbQuyxV631-yk,2320
863
+ pyrogram/raw/functions/bots/set_bot_info.py,sha256=mFKwRCPBlcC78YwhurkihPtLvzz0hdVnF9Y8TPtk8EA,3686
864
+ pyrogram/raw/functions/bots/set_bot_menu_button.py,sha256=Rim8wNWY8F4Huh6S1hNHW52PL4OzfSPLn1vZ3dYvaT0,2483
865
+ pyrogram/raw/functions/bots/toggle_username.py,sha256=-0AbZfwwt5mv5mHq-R2Q_5gTYbwvyRbhHrQSSwvBVq0,2581
866
+ pyrogram/raw/functions/channels/__init__.py,sha256=48b_Q0o4BtDJOKqyI4GCO-FuK8mp5cGi1oWbL4cEzpc,3680
867
+ pyrogram/raw/functions/channels/check_username.py,sha256=riQoJWj1MkCI3UIu4ElxTHsIuX7EC_TaevrVrtl_6Bo,2428
868
+ pyrogram/raw/functions/channels/convert_to_gigagroup.py,sha256=YcokExsuAyL7zqNed7RH1G1RHjHaZVWZJKDGzeVs1RQ,2255
869
+ pyrogram/raw/functions/channels/create_channel.py,sha256=TrGwQ6N7SOF7I-vCAGWbC4MzG-amfFsKeL6KUOiES6A,4763
870
+ pyrogram/raw/functions/channels/create_forum_topic.py,sha256=Q5dWKFz1O-vmsRS_894lXjx-gjDjlSpZxriplkf3WU8,4025
871
+ pyrogram/raw/functions/channels/deactivate_all_usernames.py,sha256=ofvl8-897YvKDDKDfCrprErdFimDbNfcaQpNovsrHxU,2237
872
+ pyrogram/raw/functions/channels/delete_channel.py,sha256=84HK52hVFNgzgeXh9ZAal69ADXaKNdYaWBgWceL5t1c,2237
873
+ pyrogram/raw/functions/channels/delete_history.py,sha256=MTycuNIEJwEuxIcC69c8bvhnZKaxX83kOBXoqryPxWk,2803
874
+ pyrogram/raw/functions/channels/delete_messages.py,sha256=AaOlWykRX_bbDH-izgg1vK1kTylAw-a_Vqqn_G4syU4,2490
875
+ pyrogram/raw/functions/channels/delete_participant_history.py,sha256=SMEIH2rubKSZ5fhPS3i6PjRxaZNjhKsVqTzDb-O-pGs,2628
876
+ pyrogram/raw/functions/channels/delete_topic_history.py,sha256=tX5D0rIRbsWik-hwsgDus6r0CKt8XESe8j8UDMZJxcA,2536
877
+ pyrogram/raw/functions/channels/edit_admin.py,sha256=uB9efwAzjQSzvw-BLjRFIOVG05elXtWYTWOC7eQ-W6E,3033
878
+ pyrogram/raw/functions/channels/edit_banned.py,sha256=e1ZOS491DXa3RpHmRpplIRqI1tuMDnYY97z5dpK_hcA,2897
879
+ pyrogram/raw/functions/channels/edit_creator.py,sha256=7XUEopiVqO9vtQmTrl_R0rkHoSPyXnb3lk-7HgnPmNY,2840
880
+ pyrogram/raw/functions/channels/edit_forum_topic.py,sha256=2gEw8gJ9skLY1HLpdsyDnZQmsbOxix9UDdsyDpuIC3g,4036
881
+ pyrogram/raw/functions/channels/edit_location.py,sha256=bOrmr1lNMyTVoJuCSakM67NAK5vOXgjk769HDa22ijU,2726
882
+ pyrogram/raw/functions/channels/edit_photo.py,sha256=uRMR7VVJSkM1mq8RjgVbblSG77cLcDJelaLk4oeNMQ8,2500
883
+ pyrogram/raw/functions/channels/edit_title.py,sha256=NuvbGJGPhUOaP3Ln1Kaaj81U6Ueu6WLQ4Va5HlpdaQ8,2419
884
+ pyrogram/raw/functions/channels/export_message_link.py,sha256=N-gJT9QLyKdobvltVdfd7PBSKciCUkKZXjvoDFT-Efo,3020
885
+ pyrogram/raw/functions/channels/get_admin_log.py,sha256=7XRgCI0NrEo951DRH_-frPLEQZ2pag3NMjqhblL0SoA,4111
886
+ pyrogram/raw/functions/channels/get_admined_public_channels.py,sha256=NoXGHn2xDsBWd-ad9-LKEyO1VoG-O9LCfqyBs0u9Jf8,2657
887
+ pyrogram/raw/functions/channels/get_channels.py,sha256=kiyO4qSEDEw1x956Jy8tt5VppNF7OnyFDEZg4MhtMgg,2218
888
+ pyrogram/raw/functions/channels/get_forum_topics.py,sha256=9DPsBONoebdx-jLHR-p8cpEK_PGNVLW3rX44rY26q3g,3573
889
+ pyrogram/raw/functions/channels/get_forum_topics_by_id.py,sha256=-6FZblwvUFF3-97MCzaRc7zmIo7il0wWl6JBIezlpZg,2532
890
+ pyrogram/raw/functions/channels/get_full_channel.py,sha256=jW7PT0y2ET2WxvtcgaQcMUdHXc42_tEMC952EFlDZtk,2259
891
+ pyrogram/raw/functions/channels/get_groups_for_discussion.py,sha256=BI3Cu1yZetF9i1NGl0IcU4POyNS3g9JNtja8dn_wjjg,2045
892
+ pyrogram/raw/functions/channels/get_inactive_channels.py,sha256=Gz9Y-bREhRHF3yxqifPgUuzziZY17F5xyLLeaIR6wR0,2049
893
+ pyrogram/raw/functions/channels/get_left_channels.py,sha256=5U5XPpsOIAl3890s0rVCYTdHJOM3HDYhhfT7FshVw_c,2179
894
+ pyrogram/raw/functions/channels/get_messages.py,sha256=qhQfeFLBjyvDu90zmAhYNPmHHw9YuTnWMyq4QZ0Q-Z4,2515
895
+ pyrogram/raw/functions/channels/get_participant.py,sha256=9uFEUlw51eFbCqEHcVEzGhE0qSqHY0z_ydZN-W2bTpo,2594
896
+ pyrogram/raw/functions/channels/get_participants.py,sha256=cG23IUTBJoicGeX-oJRfXuhqoUjuZ2cpCzsA-E0Pceo,3222
897
+ pyrogram/raw/functions/channels/get_send_as.py,sha256=RMNzKTIydm_KrbwOT67FuoxBHDT3zOFaJ_ei_77EpSg,2206
898
+ pyrogram/raw/functions/channels/get_sponsored_messages.py,sha256=NA1eT5x5xymYRATZx4Xdg91p4JzJyN0i8gmwy8E-n98,2303
899
+ pyrogram/raw/functions/channels/invite_to_channel.py,sha256=OEqCmDRXl3H8XE3qCvnK0ZHK5c_BanvLmWyzPDbHjY0,2526
900
+ pyrogram/raw/functions/channels/join_channel.py,sha256=hCZy99xuF7MIMlntlXZNjLVqxMrx4LDsjS1vT_kmYg4,2229
901
+ pyrogram/raw/functions/channels/leave_channel.py,sha256=_It-EZHPaDTg6lnXSvY0-KAI3J1gmtgw7AOCHt1Ar_s,2233
902
+ pyrogram/raw/functions/channels/read_history.py,sha256=HwroBZ5EK08GaJL5lZv0ydlSkvVB26MpN8cDEgv__cI,2404
903
+ pyrogram/raw/functions/channels/read_message_contents.py,sha256=hzAFmaWgCdIivgHJPO82YcvnQr16iXyAwAYPTyNN02E,2440
904
+ pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py,sha256=zs3v-v-jqwg13ocKQq4rwsnLhFS8O90SCokkQqTMZNw,2815
905
+ pyrogram/raw/functions/channels/reorder_usernames.py,sha256=k7jCcKCXG0OLR7SB9XlPd_baW62YsjN2p8m_pLjJDgk,2453
906
+ pyrogram/raw/functions/channels/report_anti_spam_false_positive.py,sha256=OS7yPHSxcHn-As9ILGpw25n83HLtx267gKwppKsieAE,2468
907
+ pyrogram/raw/functions/channels/report_spam.py,sha256=DAPQmaTOdHp18-cX_g3-manXoJfeSa1DqqE6gKxFifo,2717
908
+ pyrogram/raw/functions/channels/set_discussion_group.py,sha256=EDvI2Yu-TupeAd3aHOC7zg0fQxGqTSRMv-CxCpCpAaA,2512
909
+ pyrogram/raw/functions/channels/set_stickers.py,sha256=fctNyHBrZtMs-Y4Vk0ukUfLtK0EYcmVIYHEPh4u6jf8,2523
910
+ pyrogram/raw/functions/channels/toggle_anti_spam.py,sha256=NcxXI2KKcOpne0nQAPB63X5PNVjDnLByHxEMuHGtzT0,2453
911
+ pyrogram/raw/functions/channels/toggle_forum.py,sha256=i5FMSaK5TvWV60zteHkRKtDEOI8W45HPnZVTM9EitcQ,2441
912
+ pyrogram/raw/functions/channels/toggle_join_request.py,sha256=b53vw7kg2P71aOeig7fAPTWHks1AEswW5Z0NmmpaueM,2465
913
+ pyrogram/raw/functions/channels/toggle_join_to_send.py,sha256=fPRnIVqFhbiny-H6buFY959lZNnUFGfk-MSoRWxPrJI,2461
914
+ pyrogram/raw/functions/channels/toggle_participants_hidden.py,sha256=DDbwVDbtQVPwee-dwI_3GNIZXUntPFlgsN9A75rfuCY,2493
915
+ pyrogram/raw/functions/channels/toggle_pre_history_hidden.py,sha256=AFmuFbENlvlbK36UUyhYxQbkw8RRY6WIKazrEXF3lFA,2485
916
+ pyrogram/raw/functions/channels/toggle_signatures.py,sha256=wM_jEDLUmmWgNg6FiTdXR3eZZUHH3kgXF9bgOgw53X0,2461
917
+ pyrogram/raw/functions/channels/toggle_slow_mode.py,sha256=jUjaKhoDpUP_wZHjV1Slsh6ULXO2DUsPoRNA1gRl8NE,2459
918
+ pyrogram/raw/functions/channels/toggle_username.py,sha256=qb8v0fdjwy0lVDHxWnXVmNI6T8CHacSxYHSJoskAmCY,2635
919
+ pyrogram/raw/functions/channels/update_pinned_forum_topic.py,sha256=AhODUWMbzkYzZdPO-HFHaSpBgxepLSpaKi4Dvulpfh0,2703
920
+ pyrogram/raw/functions/channels/update_username.py,sha256=kRGhZf46Mr5Y4aDMD1yZMZYF1DrFWLLZimgAwRX6uPw,2432
921
+ pyrogram/raw/functions/channels/view_sponsored_message.py,sha256=275HReFvOc9gewlFf7HGdwbSYIjbkM8X9FAOvQUqO_c,2466
922
+ pyrogram/raw/functions/chatlists/__init__.py,sha256=coaBPkgpiifURg3ntgctPBMk3NCQFJGiuEHgDhGLtd8,1665
923
+ pyrogram/raw/functions/chatlists/check_chatlist_invite.py,sha256=P9OvACMpdFUqzDCE-TxCGZJu8fFQOr1qcsTdd4bwL3c,2196
924
+ pyrogram/raw/functions/chatlists/delete_exported_invite.py,sha256=go2i-pVz7EOoN4ngaCNfgLldtscbneYo1geJ8HSGivo,2434
925
+ pyrogram/raw/functions/chatlists/edit_exported_invite.py,sha256=XZCgu0Q1WqnoywjdAJ-3jI-LUFJ4Xz2sA5o0mX-6x8g,3321
926
+ pyrogram/raw/functions/chatlists/export_chatlist_invite.py,sha256=DAgJsGQTX3ZUOWlIy-t8H_eyp2OklHaB7zhAt29iMaQ,2808
927
+ pyrogram/raw/functions/chatlists/get_chatlist_updates.py,sha256=rhOMeea-sYr4GP8p0xVLbQ1-am1v5e7b-sgzzM8360A,2307
928
+ pyrogram/raw/functions/chatlists/get_exported_invites.py,sha256=3YjE_AvMTniiGSrZwx3SqnJOVhbBnwcgrCHGWU5e5xg,2307
929
+ pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py,sha256=Jxxnvyzmz4oM17Kp8M37WdrRzjKIf3-i06N-RXJZNnI,2309
930
+ pyrogram/raw/functions/chatlists/hide_chatlist_updates.py,sha256=jK3Y0znOSLM3-wd1-Qd91_70dJBgsJGQbnHA3G1YOgE,2241
931
+ pyrogram/raw/functions/chatlists/join_chatlist_invite.py,sha256=SuvlM9bWW3tMjJ_yJ2kDpBxcWUzQaDzVqKL3YlbPRXU,2439
932
+ pyrogram/raw/functions/chatlists/join_chatlist_updates.py,sha256=yf7m-qkMq9V-XnDs4wuhiHhpqNuEAL-vO5PvD3dhF4U,2556
933
+ pyrogram/raw/functions/chatlists/leave_chatlist.py,sha256=mHcVfUtswJEPMvYjHanrpEuQBrR2_fO7OVA0o-9ZVx8,2532
934
+ pyrogram/raw/functions/contacts/__init__.py,sha256=MMffPpq8zFri3sKes-VvbUKbt2xcE2xHGq2vScj5lAc,1991
935
+ pyrogram/raw/functions/contacts/accept_contact.py,sha256=V5aDUFGen-8pddw5TBZ_SafncQFGRo4XhM4M1EEc-vY,2180
936
+ pyrogram/raw/functions/contacts/add_contact.py,sha256=1dIBSSgWfn1IQpvDZh_MjYvsB1eQ34B_dIY-W1R0IP8,3335
937
+ pyrogram/raw/functions/contacts/block.py,sha256=6PZLELg5kCcelbcHUUDEzdYePbZPM-27O0qAQij_DWk,2114
938
+ pyrogram/raw/functions/contacts/block_from_replies.py,sha256=RU2Gg1Ijab1PtDg-PDl0_f2RIzTjhxHBug_f562PpeU,3177
939
+ pyrogram/raw/functions/contacts/delete_by_phones.py,sha256=kAXY8IoViGxE1FkEPgwvCFaQ7dGTyqhsVMI8WglhD3M,2165
940
+ pyrogram/raw/functions/contacts/delete_contacts.py,sha256=2_smHy1DiUJqNDXJ_cMaMd_Bi-zpI_-L6WQja5zk2xc,2204
941
+ pyrogram/raw/functions/contacts/export_contact_token.py,sha256=vLk48IP644tvy15OAtfzI5cSDWYJF8PNp1gXReYuwpA,2041
942
+ pyrogram/raw/functions/contacts/get_blocked.py,sha256=S7nh11LFdai_r05Vub7o_vjwbSF9vlYMMXsh8p8ssDw,2363
943
+ pyrogram/raw/functions/contacts/get_contact_i_ds.py,sha256=toSa512qfN4-GqWuChuw97fOuNTy4l7LS0IcZbVDLso,2126
944
+ pyrogram/raw/functions/contacts/get_contacts.py,sha256=JBMT7fWXETV_Yh1Ln3gRXORaCN43rfgtPomVstfM6t0,2154
945
+ pyrogram/raw/functions/contacts/get_located.py,sha256=i8NxtijbI6kFiFZWe_K8H_SEAqEmIwSTdBDHcy34pvg,3019
946
+ pyrogram/raw/functions/contacts/get_saved.py,sha256=00uVimkwj4y5OQgpyhR5BmjF8Hda3uDAg_Grp8R8VI0,1993
947
+ pyrogram/raw/functions/contacts/get_statuses.py,sha256=rr1xJPJXauqhYhC6Ap7QhXziFMkbc-8-fOujfwkxHio,2007
948
+ pyrogram/raw/functions/contacts/get_top_peers.py,sha256=g-4UPvxLI9BE2_MA9yPsdx-givg0Hlktwdkt2h0XvjI,4993
949
+ pyrogram/raw/functions/contacts/import_contact_token.py,sha256=hf5lHCCBcnQ9_m0jtx5ME6e6Fi8vubh3GLj3Uq5Xj7k,2160
950
+ pyrogram/raw/functions/contacts/import_contacts.py,sha256=jP9kgkqzy4X2tA1-S14NrBpBaEXrv2gsJDPGc6zqVuo,2308
951
+ pyrogram/raw/functions/contacts/reset_saved.py,sha256=4MS7GRYZrFmjU7le-uvlnnL0X9pTecAHA8flh6d2Uvo,1949
952
+ pyrogram/raw/functions/contacts/reset_top_peer_rating.py,sha256=M7njm5pIrHa3WW071eOdYVjr58F15wTKdv9qfgFYL94,2494
953
+ pyrogram/raw/functions/contacts/resolve_phone.py,sha256=7NfxxQVPR5OGv0PCpiLU8HMVBjNMbsd0tA8HrhSs21Y,2170
954
+ pyrogram/raw/functions/contacts/resolve_username.py,sha256=JrX3uZVoUHnN14cuW7dXhPnuLUuXSM7tVCrwGyFyhBU,2209
955
+ pyrogram/raw/functions/contacts/search.py,sha256=Nor1fwrRvEty4OZn3Yj42vqsOnpraoa_KAbbhRhrZe8,2296
956
+ pyrogram/raw/functions/contacts/toggle_top_peers.py,sha256=zAi0AsXuc_aj8lI6lqxPRelmfxXyBycJQPvAbLV-eUE,2130
957
+ pyrogram/raw/functions/contacts/unblock.py,sha256=Fo_jKmNFQoyGkUJAZOAoBOlpMnhi40eUMejF99jmWFI,2122
958
+ pyrogram/raw/functions/contest/__init__.py,sha256=MTINT54aO0XS-zrZ3PeZ0sX91ODJoDLXiiNOaukAtJA,1111
959
+ pyrogram/raw/functions/contest/save_developer_info.py,sha256=aoWjuzOXV-42uc0m5ltnBZAwtC9PZlvMIvhy_v7OcuU,2950
960
+ pyrogram/raw/functions/folders/__init__.py,sha256=iRvg1YdG__N7NCJY3_07h0AM9W5BRK3sW_l8PEPhB6M,1107
961
+ pyrogram/raw/functions/folders/edit_peer_folders.py,sha256=_U2ghzU_tQYr1Gbw7e9kDg3lR-RW0DYwd24e68Gu3Js,2323
962
+ pyrogram/raw/functions/help/__init__.py,sha256=EM2tYGi6riPiCKEtAxvj-TUwLSkyUpe4A9u-yd9fh6c,2102
963
+ pyrogram/raw/functions/help/accept_terms_of_service.py,sha256=0aFhHSarDQYuCUwgTJjfIizRiEc2pNorckB6SOrD0ww,2166
964
+ pyrogram/raw/functions/help/dismiss_suggestion.py,sha256=mD6hWcfKow4wCSpQiywxgpMYHnDr8qVJGPDbAbkwL00,2419
965
+ pyrogram/raw/functions/help/edit_user_info.py,sha256=DRh_sW8yZoyjgFnq9pJ9NBxsIXENY3Lq7M67WzlZlWs,2769
966
+ pyrogram/raw/functions/help/get_app_changelog.py,sha256=1xK9N6UqCG24TK35pgowxtG34JnbSP3Fr7nwjcv7qa8,2249
967
+ pyrogram/raw/functions/help/get_app_config.py,sha256=vPZnIci94VMc9mygGm0k2IPEQHUMTfi-sJOSBoovyY8,2145
968
+ pyrogram/raw/functions/help/get_app_update.py,sha256=IbfG-x4r2sFee1zEeRu6-G0vW9X3JIQApB6ZlCXTpPc,2161
969
+ pyrogram/raw/functions/help/get_cdn_config.py,sha256=ljxVkCiPK92cIEEDq2NzoXDHLS1koazAlj7dd7InqX8,1991
970
+ pyrogram/raw/functions/help/get_config.py,sha256=Q4aZRzT23_pszG_zj5gAu7L4kuGwa2zcMi4VWF8-AKo,1973
971
+ pyrogram/raw/functions/help/get_countries_list.py,sha256=3hT37ZD8eRp2I4mvFVEvywcJmAAz3MujmLmR0pAde1k,2403
972
+ pyrogram/raw/functions/help/get_deep_link_info.py,sha256=WeOu6-AVq9D002JvfYwxPMYjET1FVVA8hPicy8o_vFA,2161
973
+ pyrogram/raw/functions/help/get_invite_text.py,sha256=--8yoqgcOERzIqyuBwEnNLeiVjq2EpMZdWL8LG5VYUA,2007
974
+ pyrogram/raw/functions/help/get_nearest_dc.py,sha256=49Sfqff6nv9eCk3icu_9C9Yix2FScUHFgSKSKDSXHD0,1991
975
+ pyrogram/raw/functions/help/get_passport_config.py,sha256=wCceJCX6YqeFQB43FYdPYNH-uCwHMISPc4yUFD34nvM,2175
976
+ pyrogram/raw/functions/help/get_premium_promo.py,sha256=oKvs_PL1l6bw1l0wHi5HWsUI3PsjF_Q3Ca4Fj7LKb1I,2019
977
+ pyrogram/raw/functions/help/get_promo_data.py,sha256=o_VM-fW-R70k0f_mVFqjED_t8Ef277cCxW_RvJrCcfU,2001
978
+ pyrogram/raw/functions/help/get_recent_me_urls.py,sha256=6AVxBHUS1Dvn_H8Y1AtAyX8-2OSUBIpoPnpla1hdeT0,2188
979
+ pyrogram/raw/functions/help/get_support.py,sha256=WxELibxMKuo1RHSQyQ5jMvQdQuBT61wUa0b6VapPQ_8,1989
980
+ pyrogram/raw/functions/help/get_support_name.py,sha256=FVDtOBewLUKV8R-VoKs0jiTLsw1wCQpNHAx_4rHgsRk,2013
981
+ pyrogram/raw/functions/help/get_terms_of_service_update.py,sha256=fFTxrbNAXb75sRVO5VF_jcrPqAHNGd8ZOeNVLVwekKU,2067
982
+ pyrogram/raw/functions/help/get_user_info.py,sha256=okEYxJ3_UQrrPEd5ayh3ASJwbokjbnkwqJ698TTk2uQ,2223
983
+ pyrogram/raw/functions/help/hide_promo_data.py,sha256=oW4AktayjB93j9hcHl-csIUL0UcCQnUKVLUwKUR-ZWk,2160
984
+ pyrogram/raw/functions/help/save_app_log.py,sha256=-KHmZ_w-M-A5B_CG06AvCBmvfTdd9oaNIP1beteHjBc,2204
985
+ pyrogram/raw/functions/help/set_bot_updates_status.py,sha256=Y5C286vE7StRGkW8KU1QyeYfZKT9H0hd9x5mRmbXgnQ,2494
986
+ pyrogram/raw/functions/langpack/__init__.py,sha256=H2OvrXxUbANxI8u4S-E-U1Prie8LXZ9u3xKfq4Wtfx8,1255
987
+ pyrogram/raw/functions/langpack/get_difference.py,sha256=0NNMEdEKK9QvfQq8mtfBknpHjyW_Q-cHtZatNozf5kY,2701
988
+ pyrogram/raw/functions/langpack/get_lang_pack.py,sha256=UfcSG92Pe_y75JCzgUlmUtT4s4J4AAMhgFG87wXbO0M,2430
989
+ pyrogram/raw/functions/langpack/get_language.py,sha256=VZgFBWcyRl9FaX9Skrrx-hByHyNCi5jeZcGPu8bVhCg,2426
990
+ pyrogram/raw/functions/langpack/get_languages.py,sha256=I247cKrV_bwKbHGU54YfhrSO-hQ0PWYosQ2oBvmxzEY,2204
991
+ pyrogram/raw/functions/langpack/get_strings.py,sha256=9JqSvKZZ1Buoh2fTWjd7vrCUZpgwAv7C_Baplgo4E8w,2655
992
+ pyrogram/raw/functions/messages/__init__.py,sha256=1aFAl2YJEaDOfitw-rvQSZa-byOhdeMV0Y5ul-IKDOY,10522
993
+ pyrogram/raw/functions/messages/accept_encryption.py,sha256=te5uVoARNyfX5SNGk7XQFXnrCO4NTF4D3VTN9Sw2e7o,2732
994
+ pyrogram/raw/functions/messages/accept_url_auth.py,sha256=4X-6XikpUCbkMF7E1UqdEZC4Tnx9HmKH7LB4yhB-C4A,3828
995
+ pyrogram/raw/functions/messages/add_chat_user.py,sha256=7-cYo81v1rVHHhh7j8rF6Hj48o1bRjXwdxoY3fgwl3Y,2674
996
+ pyrogram/raw/functions/messages/check_chat_invite.py,sha256=WYTPebCQ8UnTXjTJ8u8U4nxxXuNnmCBQMdmBEHQLJ1A,2151
997
+ pyrogram/raw/functions/messages/check_history_import.py,sha256=jy5oaZcHDjmi1KGUYqAEfaiDMXUr3eJ1kkP302lSOCM,2262
998
+ pyrogram/raw/functions/messages/check_history_import_peer.py,sha256=0X3IVvIX5p_Q5x9OPw3MS8A0r8vL7pHm1wlV4c_6uPE,2286
999
+ pyrogram/raw/functions/messages/clear_all_drafts.py,sha256=aeg3viK4eYT-4T2qIqAW8ZD_Rka60JdGukcHcwFkTSE,1965
1000
+ pyrogram/raw/functions/messages/clear_recent_reactions.py,sha256=ftpoEYNdj9NwJJsve0l3RB4StsWwhBLNcPtHZeYyCVc,1989
1001
+ pyrogram/raw/functions/messages/clear_recent_stickers.py,sha256=YX2TyA4SHvfxY90vtDjaPqrtWfTiCIetclMN2FKf7jg,2259
1002
+ pyrogram/raw/functions/messages/create_chat.py,sha256=IJ9cdIJHh_BiMzM-6IrIvLpEHE6BsOOkJFFAwTJUgCU,2867
1003
+ pyrogram/raw/functions/messages/delete_chat.py,sha256=M5sQiU8jTrif1otaR2hIIUz7T6QHe5VJr1XY5_TC9As,2123
1004
+ pyrogram/raw/functions/messages/delete_chat_user.py,sha256=k2o8JfcKHXC-gf1iAFFvsjnR2onllyfeG5Vgcp0c7CQ,2825
1005
+ pyrogram/raw/functions/messages/delete_exported_chat_invite.py,sha256=yBRYTj39fKvwCpNeh57qMaL26xUIOETvc7tDubxD1Fk,2397
1006
+ pyrogram/raw/functions/messages/delete_history.py,sha256=MKHCEE9KSBPaXgxkBWJOPDPxWYoDayaW30GmvoJB-jM,3816
1007
+ pyrogram/raw/functions/messages/delete_messages.py,sha256=X9pe41e2MX8B0QmQb79JxdkBuNxIVlwifJxAsI47gok,2504
1008
+ pyrogram/raw/functions/messages/delete_phone_call_history.py,sha256=gMjDGwbf2f0TzdqLo1OwRAwTVOHib80SSKBmtr_vdTE,2333
1009
+ pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py,sha256=-kJtPB_2pnoGGvWlDy9BDarzsohT4sryuNwfDjEHxMw,2526
1010
+ pyrogram/raw/functions/messages/delete_scheduled_messages.py,sha256=q3MAbaOeTWo0Qzdbc0VzMbCIEv3x0i19iL5qqE13Pa8,2451
1011
+ pyrogram/raw/functions/messages/discard_encryption.py,sha256=_z3IGKDkZraf5a9KZi4XTPYkbB0PlvyX3qCbbbJE4BM,2523
1012
+ pyrogram/raw/functions/messages/edit_chat_about.py,sha256=EEPz0AGz3-xE9JbIKF6u35EbPZIgY0J2GalyxLmdwG4,2362
1013
+ pyrogram/raw/functions/messages/edit_chat_admin.py,sha256=LU6MuSkBSqo2UIlTycQuZDeoxRXdbX4sVeZeTIyBEzM,2633
1014
+ pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py,sha256=sKu3GeTV-GWQNG1-d96RfXv12L7G7uN7oajwHu9zM_s,2613
1015
+ pyrogram/raw/functions/messages/edit_chat_photo.py,sha256=NH8zc1YX9j47RAN0rG8BSmG-Zv54hFBy9vVoOQiXHXs,2448
1016
+ pyrogram/raw/functions/messages/edit_chat_title.py,sha256=lOpP7V56BXkmaQNGm8SYOgOoCSNW8OgatUVmsjWRCp0,2367
1017
+ pyrogram/raw/functions/messages/edit_exported_chat_invite.py,sha256=xrsxJ0CU9PjlIy7Jw7V7zsjCGib5K8fciNQD1lMFUq0,4422
1018
+ pyrogram/raw/functions/messages/edit_inline_bot_message.py,sha256=H8xEg_viPiJHfLHm2sS_b37Pn-UpZhS1SO65ezViua4,4349
1019
+ pyrogram/raw/functions/messages/edit_message.py,sha256=3_3E-Gn2WWO4X2yp6zfwlS69BkbPdKHnGxE4lh5Nu8c,4929
1020
+ pyrogram/raw/functions/messages/export_chat_invite.py,sha256=AnsZDWdbgKn54m0DMEfaSHPd-ZJI6036hS3O4IX3M-U,4216
1021
+ pyrogram/raw/functions/messages/fave_sticker.py,sha256=_GtgDLPGnGXq9W-SCoLUlE8i8wdXe0QozB__8hXD9t4,2357
1022
+ pyrogram/raw/functions/messages/forward_messages.py,sha256=Kl6HM-hlhxAwTqWoDECZ4LfvxS151YUoMtv0MQytTFE,6216
1023
+ pyrogram/raw/functions/messages/get_admins_with_invites.py,sha256=5GMNEZmqQUV4m15BI9f24Wv5x3alFgdqIzh9-qBdIEk,2272
1024
+ pyrogram/raw/functions/messages/get_all_chats.py,sha256=XHgaiB5aogaB83UqFNlmKvfhp54xzj3XYxUMwKmuNdQ,2242
1025
+ pyrogram/raw/functions/messages/get_all_drafts.py,sha256=2IrX7RDQuOzt9MlOfhvN0ztRAYs0KSzBQIFKB4B67GQ,1991
1026
+ pyrogram/raw/functions/messages/get_all_stickers.py,sha256=cRmJORUQe-QogjDpfK_0l81bKzXTo9zn5zBL2D4f9O4,2172
1027
+ pyrogram/raw/functions/messages/get_archived_stickers.py,sha256=ZoMRICOJHwVLsSbhrtEfyTfognI6L6n6CXFHqczmXtE,2999
1028
+ pyrogram/raw/functions/messages/get_attach_menu_bot.py,sha256=kgUTj2y_s3iymnbFFbBTD4IjEbvCA-om5EbeJ_lKECs,2221
1029
+ pyrogram/raw/functions/messages/get_attach_menu_bots.py,sha256=NpW6W7A9Gt3zmICU_B35Z1TwHX_zSMoFtuUtLyg80Pw,2172
1030
+ pyrogram/raw/functions/messages/get_attached_stickers.py,sha256=FNC4Zsyxc4WAHCvexD_fUibG7IEzpprL7W4GhcU2rxA,2299
1031
+ pyrogram/raw/functions/messages/get_available_reactions.py,sha256=3WgCG5jmanws3ieWH9Annmof6DN_MUs7ROeA64dXXLw,2211
1032
+ pyrogram/raw/functions/messages/get_bot_app.py,sha256=li9PDbmpN1Ki0Tct2aOqgPtTC6uwhzoTiWZz_g3Vu6k,2391
1033
+ pyrogram/raw/functions/messages/get_bot_callback_answer.py,sha256=WGnq-LwuqK6m3T0dByuJmX5_3HKAKLRwyIphEKdAmgM,3597
1034
+ pyrogram/raw/functions/messages/get_chat_invite_importers.py,sha256=3KIxQgwEMAcUcGSMqLPH9i0aFxGy5eslEKAMcMiWnfM,4026
1035
+ pyrogram/raw/functions/messages/get_chats.py,sha256=FUY3smrE4tcbg5Axic2qY2fYDR54YWeyUVq5fLqWIHA,2158
1036
+ pyrogram/raw/functions/messages/get_common_chats.py,sha256=95yoF_gFuMYfsoPLYSFMmtS2b_HvzH6T-tgnRqGZEls,2655
1037
+ pyrogram/raw/functions/messages/get_custom_emoji_documents.py,sha256=GeiUs1C7BjqF3HVgWyI7GsHzXHSwf2pU3xCbXUhVp08,2295
1038
+ pyrogram/raw/functions/messages/get_default_history_ttl.py,sha256=prLGkWZQbv_9QRIV6BYGXTpxMVLLKxyQHsg-LhOZUhI,2043
1039
+ pyrogram/raw/functions/messages/get_dh_config.py,sha256=nynKPKW2X_JornX5He-VjYgLyyURGR8Foa-wjZpxWgY,2450
1040
+ pyrogram/raw/functions/messages/get_dialog_filters.py,sha256=bhgPxUt0mQIWUR_fAYU015Ji5RS4Vc3RQKAX-LeUqr4,2025
1041
+ pyrogram/raw/functions/messages/get_dialog_unread_marks.py,sha256=SEm8w6XMDcvyTRwKG1CuTvrLVZ-q5xtvFvBnPFbFtyE,2037
1042
+ pyrogram/raw/functions/messages/get_dialogs.py,sha256=M7ZkTqjNqJNCh0HCyY_jRHDH7cQojA2De9eLkzt5sL0,3926
1043
+ pyrogram/raw/functions/messages/get_discussion_message.py,sha256=BSc4RhzGvjDxXJpAilBHptW-g6TDwrEVzmLusKBhdtY,2473
1044
+ pyrogram/raw/functions/messages/get_document_by_hash.py,sha256=CoUg_ITafK5AZRkZYg3rvJmRc_IarXcIixz1zWhLU3k,2602
1045
+ pyrogram/raw/functions/messages/get_emoji_groups.py,sha256=MFPfXVmaHjKOVcOg1S87_9lm8TAGJGfzuBTg7TvnLCo,2169
1046
+ pyrogram/raw/functions/messages/get_emoji_keywords.py,sha256=Rz4wj31YvA9yFQ6qejKKmyi4RtAEWo05AWKONqThiaw,2226
1047
+ pyrogram/raw/functions/messages/get_emoji_keywords_difference.py,sha256=w6iRbi87X6zaLtG0tXI7fAEjz5ONG0iVtl_IYJ8t-OU,2529
1048
+ pyrogram/raw/functions/messages/get_emoji_keywords_languages.py,sha256=HS5Q-YP8NqJMUEEx3IkHi4jlRuMLOK1ZB6rlUeWLOQ8,2299
1049
+ pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py,sha256=QnJDWI1arA3pFO-92p6_DTf1_nk3QFSz7rm6dbGDEGw,2217
1050
+ pyrogram/raw/functions/messages/get_emoji_status_groups.py,sha256=w9MmShIx65pheWkMknY3pKPNt3nGiqGT68nDthEtClM,2193
1051
+ pyrogram/raw/functions/messages/get_emoji_stickers.py,sha256=TNj3kog7lO7P1R4tdmGwLa-U0LigiMVdFaitCwhNKt4,2180
1052
+ pyrogram/raw/functions/messages/get_emoji_url.py,sha256=nv9C8G5PfcSQctvSRRYwjUEddS-E09AbxrVbOmxJa_g,2176
1053
+ pyrogram/raw/functions/messages/get_exported_chat_invite.py,sha256=uENSAtxx3-ZrAq0abICjC4la7QE_KBRbCiaFNs3Dl6g,2459
1054
+ pyrogram/raw/functions/messages/get_exported_chat_invites.py,sha256=S8WWjrzyhj66r8Ioo4dqQmL8HYn4OBbr3HrSb5uFhZo,3916
1055
+ pyrogram/raw/functions/messages/get_extended_media.py,sha256=5NY0tCOYTTkpLb2Oq3q4IOU_Urzad4ffHD8gxDegFn0,2423
1056
+ pyrogram/raw/functions/messages/get_faved_stickers.py,sha256=NilldsuXwLCqmv2YsRYrWw3kLokeQWGzZR8e8Vmhy20,2182
1057
+ pyrogram/raw/functions/messages/get_featured_emoji_stickers.py,sha256=b_yLK5hC6xkNBjjGpgYMDVLjw6QJdngOaT0HFtkWvCE,2220
1058
+ pyrogram/raw/functions/messages/get_featured_stickers.py,sha256=HOU-ocGhERy0JtH4QPcdjCs39XLRBRctt7OqJxxD1ns,2202
1059
+ pyrogram/raw/functions/messages/get_full_chat.py,sha256=1U0Tnbc0wDkvV9lV7ijUKmiHDUxPzxJfebG_V8mM7sA,2181
1060
+ pyrogram/raw/functions/messages/get_game_high_scores.py,sha256=3gOumUXGgbLvTPcK7Sdc4ecm_VaJUUNnwqRDovvBknQ,2688
1061
+ pyrogram/raw/functions/messages/get_history.py,sha256=83aMLd0UeXMEgJ5q_-ebm9kaFT-LuNWc18B2eXp_nKg,3753
1062
+ pyrogram/raw/functions/messages/get_inline_bot_results.py,sha256=wGkGINYVdY1e8m5qK5fjv6PsKO98oxrsGX9z8REH1PM,3411
1063
+ pyrogram/raw/functions/messages/get_inline_game_high_scores.py,sha256=KyleNsi2giCWsFOUtqlPiJwszpde2r_dRmiHp9sWF9o,2575
1064
+ pyrogram/raw/functions/messages/get_mask_stickers.py,sha256=YXQb3950wCfKnepy8C027kHfngrijSvgNXIbawVJ1NM,2176
1065
+ pyrogram/raw/functions/messages/get_message_edit_data.py,sha256=wShynoBx0yGMZReGktcj4G2SrpAVqNSWoJv3U4FNuXw,2425
1066
+ pyrogram/raw/functions/messages/get_message_reactions_list.py,sha256=d2rDKw0ccxSzotRf-wPodkrb8Iu3aLKv9lor6wzLqU8,3508
1067
+ pyrogram/raw/functions/messages/get_message_read_participants.py,sha256=ymvPU2T7i1f_2LxemK0oJ21sp7lXQFtsf6gMmodp3-U,2491
1068
+ pyrogram/raw/functions/messages/get_messages.py,sha256=D2SYK81DIIyLZbxQygNwqsdV5PFfxtjx4Lzzy9smFVE,2226
1069
+ pyrogram/raw/functions/messages/get_messages_reactions.py,sha256=78HjjYXnqPsOtoh885zpoaj6xw7t9tyXv1jDQaPJuKA,2439
1070
+ pyrogram/raw/functions/messages/get_messages_views.py,sha256=9-XDVE3Wfj4at6Lwk5zE0aFQLvMdEm_3_1v9sDD0weQ,2681
1071
+ pyrogram/raw/functions/messages/get_old_featured_stickers.py,sha256=9BZlsTRf1zCfs6OlIUEM0xjb3Od9N4tH1qGkQ6fACs0,2623
1072
+ pyrogram/raw/functions/messages/get_onlines.py,sha256=6haLbNOT_moTWygM8kek7aB9ckDQCBfGvHrhWzT8DmY,2194
1073
+ pyrogram/raw/functions/messages/get_peer_dialogs.py,sha256=zTBFD9VpXpINKvmEuio0TOzP923R9pm5SWVD7mTT02k,2283
1074
+ pyrogram/raw/functions/messages/get_peer_settings.py,sha256=tcqmTwJ8mqKA6XF1jyH4mtL_CLYo_n0IoYO1Xf_4GNk,2234
1075
+ pyrogram/raw/functions/messages/get_pinned_dialogs.py,sha256=4cQRwSSqJ26vOYw-4Geu3za_HMR1NOo8YlnckkctE_0,2222
1076
+ pyrogram/raw/functions/messages/get_poll_results.py,sha256=Gq4vwfoHq4QOnZqHe-c2thhaWN5jTcxpGPFUIj-ZdNM,2411
1077
+ pyrogram/raw/functions/messages/get_poll_votes.py,sha256=FoSzfuM3cawQeB3UUvU_ERw0Whb0-Z7gk2WxcBjHjN0,3365
1078
+ pyrogram/raw/functions/messages/get_recent_locations.py,sha256=Zze9nKenion61Yis732Wuy0NqJPKrKDILxSrpU8zzn0,2632
1079
+ pyrogram/raw/functions/messages/get_recent_reactions.py,sha256=sI66eYl9-7GxY6eVJKxSix17YgZ8Z2cFErUzLX5iAMs,2384
1080
+ pyrogram/raw/functions/messages/get_recent_stickers.py,sha256=50dVwnOURV9K7UiMGCjGjc0sMXuFotJWTNxiVO6sWs0,2511
1081
+ pyrogram/raw/functions/messages/get_replies.py,sha256=HUqBQa9y9xQQ_lMVL3jh-NpDBE7Og2zkQf800Fwe3ac,3962
1082
+ pyrogram/raw/functions/messages/get_saved_gifs.py,sha256=pYJlm9Mn3YYeR9cFK99TxaFVf2PTBNR2UR1_SyPbcgg,2160
1083
+ pyrogram/raw/functions/messages/get_scheduled_history.py,sha256=pkO8l0NsdVgL-vRNNv-b023bIBmfd2tuUgixwn2vexg,2436
1084
+ pyrogram/raw/functions/messages/get_scheduled_messages.py,sha256=ymf9zHq8msGPMiI7OE-pae6JMaAmlT5oUcU56-xSeiA,2459
1085
+ pyrogram/raw/functions/messages/get_search_counters.py,sha256=cJErPtGt7ZVu4d_3CR8-p2NY5vjYuOGazJFW4uZwUmY,3023
1086
+ pyrogram/raw/functions/messages/get_search_results_calendar.py,sha256=eVB9AyYKnnxkwA3luX5xNYzujLx43ICSYN6q6jWN0K8,3066
1087
+ pyrogram/raw/functions/messages/get_search_results_positions.py,sha256=-6TOj8NJIRUjNgYtgtl3Yac-iMiq575pMBBGzEBbY9E,3018
1088
+ pyrogram/raw/functions/messages/get_split_ranges.py,sha256=yygTJ9mj1WH8PG3NZuRzDZlqE_VgpymabAnnVXLESWQ,2017
1089
+ pyrogram/raw/functions/messages/get_sticker_set.py,sha256=QPDgOmLHcQl4tTWm8fYSEs1O7fyWUB04N2NrvSQfGS0,2491
1090
+ pyrogram/raw/functions/messages/get_stickers.py,sha256=ZDL7MDRi6nW4LSUukL_27azzZ_NDxyKOWtB0EbtPE4E,2379
1091
+ pyrogram/raw/functions/messages/get_suggested_dialog_filters.py,sha256=0mroAyl_TX48PGvVBLo7FvWug-l94quv749T7AcI_fE,2079
1092
+ pyrogram/raw/functions/messages/get_top_reactions.py,sha256=frQ030GNzifWKpNk1IUlIwnb7zu3c5yqC0Q3yg5xHSo,2372
1093
+ pyrogram/raw/functions/messages/get_unread_mentions.py,sha256=cGFSOlc21qP1j2OJaJ5lkbfC-eNeneSMf57O-CpYG_4,3789
1094
+ pyrogram/raw/functions/messages/get_unread_reactions.py,sha256=6eueft2E6NplM3GHJas-Lk70toG7YCiXrN5y1zSnuvE,3793
1095
+ pyrogram/raw/functions/messages/get_web_page.py,sha256=q9wgweeeWmlBrrObFv7uTMaC-s1PEqr1rGKcXSIHLOY,2307
1096
+ pyrogram/raw/functions/messages/get_web_page_preview.py,sha256=acL7WdOHkMwpQpSgtBD-8v7Wtmx7YvNldCMlbsNd9FM,2716
1097
+ pyrogram/raw/functions/messages/hide_all_chat_join_requests.py,sha256=N6Fu6ee6f-rmKOWE60QQVGK6aC_ek3RZvGSDZgV55tY,2902
1098
+ pyrogram/raw/functions/messages/hide_chat_join_request.py,sha256=DoJW_b2WaRxvC1HpsMhdHIibm-VaRqV2VrJwp3xZog4,2820
1099
+ pyrogram/raw/functions/messages/hide_peer_settings_bar.py,sha256=hkfiesETehKkz66ZO0PJzpBhZgvstEIy1lAF2pGIbwY,2188
1100
+ pyrogram/raw/functions/messages/import_chat_invite.py,sha256=DBVFKQ9T3dy7y3_QWDqcZaa_LdFlxpbr5xRp-kQkj0A,2149
1101
+ pyrogram/raw/functions/messages/init_history_import.py,sha256=ug0-Sl0IfSyXzvM0B3cLzswMO-2ls1bG1ZHsSVNhRko,2748
1102
+ pyrogram/raw/functions/messages/install_sticker_set.py,sha256=fPlszZTbeVO790sif6p0gSanyjNepFjYUeF_lkwjPMA,2563
1103
+ pyrogram/raw/functions/messages/mark_dialog_unread.py,sha256=7SnxJurmNtjv3GxGnurSTRFsveBNR8MPysucLj6xroY,2503
1104
+ pyrogram/raw/functions/messages/migrate_chat.py,sha256=CXYy-dSzBZ_Clr5thBa6Bv2S8lgs_wfbIgA_tEUjz8E,2161
1105
+ pyrogram/raw/functions/messages/prolong_web_view.py,sha256=FEU-MEyBvdg8CoHI480LpBIWiCGdnFn5udQ6w948l14,4258
1106
+ pyrogram/raw/functions/messages/rate_transcribed_audio.py,sha256=664P9JRDDX4Gym5Ji4N9YCqqCOgiSSyOL29Mcz2Lhxk,2888
1107
+ pyrogram/raw/functions/messages/read_discussion.py,sha256=RUgWH1OEphMuWpuWe1XbXaW-pPOex4IhPVT0cZg6-74,2631
1108
+ pyrogram/raw/functions/messages/read_encrypted_history.py,sha256=zTaYt-NGT41DFAUJEL6Q421ZAK_0LYOaEaqbhEJOui4,2455
1109
+ pyrogram/raw/functions/messages/read_featured_stickers.py,sha256=1DSvHjY5EJfGF-TVoNoEQuw-qyJIvPIRZ7ziRXNZaoU,2158
1110
+ pyrogram/raw/functions/messages/read_history.py,sha256=GsgTiFfsiWbA0Znb1zlrXB4fHKTxQPgYsy_4mumDpDQ,2433
1111
+ pyrogram/raw/functions/messages/read_mentions.py,sha256=9V9y_yQ6_DgPHmbneqPISDEPCiP11DxgsCGEZGGKb80,2684
1112
+ pyrogram/raw/functions/messages/read_message_contents.py,sha256=HNEfxK3iE_pdfSdjPCYClQdcMv6IpOepWcboIclaQYg,2221
1113
+ pyrogram/raw/functions/messages/read_reactions.py,sha256=_vWid8Z25MAocU9ftnVwGqvhURIQ2RYNK3xgUF3SgUg,2688
1114
+ pyrogram/raw/functions/messages/received_messages.py,sha256=_qsSM9g-FpnyorJHTMxmr7XVRjrrPRGwLwCz5sOelXA,2203
1115
+ pyrogram/raw/functions/messages/received_queue.py,sha256=UxA6DWBAOjCaU58sRSgNx228vuw1MJCdagrnC93ktCY,2150
1116
+ pyrogram/raw/functions/messages/reorder_pinned_dialogs.py,sha256=gal02kuvuxIwzLZyUPavq-fudyXiQCuWYOuWYlLNFBs,2777
1117
+ pyrogram/raw/functions/messages/reorder_sticker_sets.py,sha256=PyZxAO1MXqdhXPxZ03slIT-epMWPVqzKqQVIl1cUhPc,2729
1118
+ pyrogram/raw/functions/messages/report.py,sha256=kDaOEZMYrAO0dtxp5qWpD1TyUUHU4zqCCYwag7Vm9dc,2845
1119
+ pyrogram/raw/functions/messages/report_encrypted_spam.py,sha256=p7xCMdE1AatBQfMvz7mf4nld5GeeDY7ftbLRPyJaIm4,2224
1120
+ pyrogram/raw/functions/messages/report_reaction.py,sha256=0vhlo3IZb2OXRY4bw2aEQOOHBOhAd54KPjfNCQkivHY,2672
1121
+ pyrogram/raw/functions/messages/report_spam.py,sha256=Jh0f_dtEjFkMJvVgp61CCm7HgKNE2QSMmMXPvoXOAe8,2152
1122
+ pyrogram/raw/functions/messages/request_app_web_view.py,sha256=CDVO8L_3zpcHc-sLsIvWssGh_IDZnKnTZ9XzXTvUNbw,3979
1123
+ pyrogram/raw/functions/messages/request_encryption.py,sha256=3LcztqPczoulQL_kwClwPoJcDZSEAY9QPGXmoKowbSU,2670
1124
+ pyrogram/raw/functions/messages/request_simple_web_view.py,sha256=XbzzgtbONeebckhdBjitNMBQRKZIKyPgTjkfJXo5efQ,3553
1125
+ pyrogram/raw/functions/messages/request_url_auth.py,sha256=yj021ru736mzD_wExWOMekWERDThGlqCfqdlTLmlxTE,3511
1126
+ pyrogram/raw/functions/messages/request_web_view.py,sha256=9MfJMNc6uYnUbL_QnphsoVC-PhurzOW36ouvwcNxaTQ,5859
1127
+ pyrogram/raw/functions/messages/save_default_send_as.py,sha256=EGrrcMBcSTvG6EjV9rwSaanzxQ0wKiv7u5bEiPN4E9U,2457
1128
+ pyrogram/raw/functions/messages/save_draft.py,sha256=2EUwXZoxfdhYuZgcFR7njSuyFhLrgsF89P_tTiSwxDY,4061
1129
+ pyrogram/raw/functions/messages/save_gif.py,sha256=mb84ByQXD-RwiO_t8uG3CAnyxMoKCaknHfkzlBCN3Bg,2341
1130
+ pyrogram/raw/functions/messages/save_recent_sticker.py,sha256=R-XLenNHclRkAFOkpTjwVxj5pk0EYrG3le4fKFOFNJo,2702
1131
+ pyrogram/raw/functions/messages/search.py,sha256=WrOIxJiLlqSCkbzupg_xcE_A1f78RKrlpFo24VAg1AU,5279
1132
+ pyrogram/raw/functions/messages/search_custom_emoji.py,sha256=cr5K240uA8elTupmvnzWLLRMYT8aQyUKMEhhMVDqxNs,2387
1133
+ pyrogram/raw/functions/messages/search_global.py,sha256=9FXaQ0pY6OdSDRTIKc_5wWE0lg1CGEhiyqLjXGAhU7k,4316
1134
+ pyrogram/raw/functions/messages/search_sent_media.py,sha256=APM1greCsZLpWi13fhUMF_BhFYhjGFWe8vgP1kxWb_s,2626
1135
+ pyrogram/raw/functions/messages/search_sticker_sets.py,sha256=5Z79SDKvGA_0oANNb37PZFeuivRU2kbrq9RlTypOIs0,2749
1136
+ pyrogram/raw/functions/messages/send_bot_requested_peer.py,sha256=wy92n8F04FaRjbTvD-IiBv-oPGPMbeG5h_VShNHZG2M,3011
1137
+ pyrogram/raw/functions/messages/send_encrypted.py,sha256=chkMaIyKSNPSz8adFat0BQoxnBbAcLWdP7iUO-BB-5o,3010
1138
+ pyrogram/raw/functions/messages/send_encrypted_file.py,sha256=5oPh4zDlBkJfqo0BB5qJKvsZTv74rsCnDH-CErTM3Zo,3312
1139
+ pyrogram/raw/functions/messages/send_encrypted_service.py,sha256=YVRG3AlBbg6cqFyLQzoWvcW96kz_RGw5_gmPeB9N_OE,2735
1140
+ pyrogram/raw/functions/messages/send_inline_bot_result.py,sha256=WyUmJmErGpdourUycAfmpnEvSU5_D5_tomD2T-9hcTM,5804
1141
+ pyrogram/raw/functions/messages/send_media.py,sha256=zOkJRMYEsArF9oYtnrtPb5rTQ3QTIQms935t0Yrk5FI,7263
1142
+ pyrogram/raw/functions/messages/send_message.py,sha256=iqu0s3wnWCnX_TUOZGXLApuOkospVsqU8Hz_KJCrotk,7302
1143
+ pyrogram/raw/functions/messages/send_multi_media.py,sha256=V5SN8XXv4IonNsk1MEpbv6JHQzHoVvd5fVEtBma_Uuw,5948
1144
+ pyrogram/raw/functions/messages/send_reaction.py,sha256=4P84I4xysk4Vw9NRU12p_3Cf7LxLH4ry6rz6bVE1AiE,3461
1145
+ pyrogram/raw/functions/messages/send_scheduled_messages.py,sha256=TbLa6P-iGHBxPeLfu-z4Vsq33LR-pLKRABF62SFz8ho,2443
1146
+ pyrogram/raw/functions/messages/send_screenshot_notification.py,sha256=BISDPNFX6oIcbsbEWf_gQ6vIovdmwUn0pZkFgEve_aY,2779
1147
+ pyrogram/raw/functions/messages/send_vote.py,sha256=scIcKiLXSqO7cbrh2K1Zrwi3ojR9LqCQFTrFGAtkdSk,2644
1148
+ pyrogram/raw/functions/messages/send_web_view_data.py,sha256=pdClxaIpH4ZMc2StIbZD-sDoM5hQTWkaZdhqYRrDIvc,2877
1149
+ pyrogram/raw/functions/messages/send_web_view_result_message.py,sha256=8G5q-XP2jOJTVVNAta6KcYT0XvPoYduUu5OzwldjRqs,2585
1150
+ pyrogram/raw/functions/messages/set_bot_callback_answer.py,sha256=8oUztqiC2QfqqCZkR-1F9pbXVWy_PWwpPbPT4y4xZhc,3419
1151
+ pyrogram/raw/functions/messages/set_bot_precheckout_results.py,sha256=mPRfeoe7ibNMK3IJAVGFL0Ed39DAkCFZ1_QeM1XHM8U,2852
1152
+ pyrogram/raw/functions/messages/set_bot_shipping_results.py,sha256=2p3vnrjOdTkEH9fld_qKzk0KTJEcSUL3jHf5Fx2zs_4,3148
1153
+ pyrogram/raw/functions/messages/set_chat_available_reactions.py,sha256=tRrmS0wu6d2HDg982py8CGlPGd4z7zPrVM0jzhAvvzw,2647
1154
+ pyrogram/raw/functions/messages/set_chat_theme.py,sha256=iD7ghsGwLMrPR5J1iup24iZnZ4Vi0DMFfjL1jNEfZAY,2419
1155
+ pyrogram/raw/functions/messages/set_chat_wall_paper.py,sha256=xT3IfyMOnZ8HBRIOpQkDE7s-ZzrB7kdyBIJQLuZqQkA,3535
1156
+ pyrogram/raw/functions/messages/set_default_history_ttl.py,sha256=ZTonIhsHvWtuSjnEuHqH9vp7vuQcg2vVL3-lgFXO7T0,2151
1157
+ pyrogram/raw/functions/messages/set_default_reaction.py,sha256=KOyi1NQyavKpl_oQ-W5tL8GasSoQS4cZs7R1p6r_ffs,2216
1158
+ pyrogram/raw/functions/messages/set_encrypted_typing.py,sha256=Bw8HJ2c2-BvpPtGjOcqVI2qkUzzl1nkaFgnwlp2S9LY,2423
1159
+ pyrogram/raw/functions/messages/set_game_score.py,sha256=gmKM-bolcl8KhJho89AhptMFZXItXIIwOtKx4DND3rY,3450
1160
+ pyrogram/raw/functions/messages/set_history_ttl.py,sha256=Vq7rUp3rUxf0UA8XUQXU021jQAwvBnOrMAJdSc6IMjA,2407
1161
+ pyrogram/raw/functions/messages/set_inline_bot_results.py,sha256=NRlayGtPm6QUOjOIE-hmJRwPSsimBLNW11gTv9SjUgo,4786
1162
+ pyrogram/raw/functions/messages/set_inline_game_score.py,sha256=Uh59b64ikR1qLVI3OssDCBMmPzBKu_yYGBaojItERBk,3305
1163
+ pyrogram/raw/functions/messages/set_typing.py,sha256=n33jtpFLx_9Ui7cnCTUobpGg53-6diWowSVVPdvhuec,2904
1164
+ pyrogram/raw/functions/messages/start_bot.py,sha256=n9K8_wJOYBG6fUdEXS42R7Ua-DtWfEn-P6-AHri4VRE,2910
1165
+ pyrogram/raw/functions/messages/start_history_import.py,sha256=C-UNFZ0ew7bkJc5ocaM6BNB2B79X8QbY0EKZMuSXil4,2423
1166
+ pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py,sha256=AlPyhzaJn9uPhpijeBPSerFlFtYTnvad8SCzeAsOP0Q,2765
1167
+ pyrogram/raw/functions/messages/toggle_dialog_pin.py,sha256=yPREaxygiw51yFzAhleEny5h6ied-aEPfmo_A5VbZdE,2499
1168
+ pyrogram/raw/functions/messages/toggle_no_forwards.py,sha256=E7JaMAhUkcGrnA5kPveSI6J3K896ReIQCrlER-k6DWs,2422
1169
+ pyrogram/raw/functions/messages/toggle_peer_translations.py,sha256=D6SRunFCmf-VWrEvbigDOz2ao6x6q_HQEEiVgGmAFp8,2521
1170
+ pyrogram/raw/functions/messages/toggle_sticker_sets.py,sha256=huiB3-akuwGyYwACCfEYH8I96fsW2PIwDlt635zUgbs,3171
1171
+ pyrogram/raw/functions/messages/transcribe_audio.py,sha256=EzCqxtWcU5dtai7zZkVxPIEjoVYSoRcD7O4_SO0PIFg,2451
1172
+ pyrogram/raw/functions/messages/translate_text.py,sha256=kaC4IYd8MfRJrTRjc5XDMImbfzFDZVmUTgsTJVBEYM4,3451
1173
+ pyrogram/raw/functions/messages/uninstall_sticker_set.py,sha256=cSTpWKzM5VBJAYPpY-9JshFXvhWrsVTMHz3WksTAPhU,2266
1174
+ pyrogram/raw/functions/messages/unpin_all_messages.py,sha256=O-3RkJO0IiUdnYa-4DOg5nGnidkP6xaNYHv6g6h6RYE,2700
1175
+ pyrogram/raw/functions/messages/update_dialog_filter.py,sha256=nX6IcGyTvByJbe0SfATlEmtCHL6BQXf725qdCOPAfN0,2589
1176
+ pyrogram/raw/functions/messages/update_dialog_filters_order.py,sha256=sfDjN2knwa-lICPIhR8W2-gjBmWy7jD2cKJA2PgFv_s,2198
1177
+ pyrogram/raw/functions/messages/update_pinned_message.py,sha256=r-f7yUMdyjGvIsCzVIvtNkrjEU7FTFQ95IbkmLLEz8I,3241
1178
+ pyrogram/raw/functions/messages/upload_encrypted_file.py,sha256=s38hTBJINMwvqLxaNXO4m2LaPjpqG7ce7Pt-PNcXcDE,2556
1179
+ pyrogram/raw/functions/messages/upload_imported_media.py,sha256=1_9zLjO66rU5Y0Mss4gvY8Fn0mqLuteXWboMe6s9Vg0,2968
1180
+ pyrogram/raw/functions/messages/upload_media.py,sha256=msur_-tBf69WYIr1ZLOWIWmpB2ZWnbG1RjgtHgeDYDQ,2463
1181
+ pyrogram/raw/functions/payments/__init__.py,sha256=HjRlOEyMV-xnkvZRvkQVAvRG-l4K7TZfJl-OHHlZF4o,1631
1182
+ pyrogram/raw/functions/payments/assign_app_store_transaction.py,sha256=7GnRarvm8TYP16MlVZwdgBib1Lp0luba2Ww7zTZIZbM,2550
1183
+ pyrogram/raw/functions/payments/assign_play_market_transaction.py,sha256=v7quAYcQjTEtcDh3MMfFEw2jUtJG6eWS8rHpzb8Yr6s,2614
1184
+ pyrogram/raw/functions/payments/can_purchase_premium.py,sha256=8Awl-s18JLD7kxOgLcC2_TxHmpeVnvIFKxKoVsDHJJ8,2271
1185
+ pyrogram/raw/functions/payments/clear_saved_info.py,sha256=VF00xlHRqQwCC7J9Fnhfk0dXe1bUsNc0jyTcF6Jxy98,2506
1186
+ pyrogram/raw/functions/payments/export_invoice.py,sha256=4tnwbWFEDO3k_JLg4j5_TUeDY5gfxyrSjtmeO3biqMY,2315
1187
+ pyrogram/raw/functions/payments/get_bank_card_data.py,sha256=ErW1rXzE6-jsIf_yzcE4BJiSKnePw4YaSFN_vC4rBpA,2191
1188
+ pyrogram/raw/functions/payments/get_payment_form.py,sha256=qsk54Pvkxg6Wbp6bx92yaq5sR2m7YBDiEfIkpSN0fgU,2799
1189
+ pyrogram/raw/functions/payments/get_payment_receipt.py,sha256=SC6XQwUEGDKmJf0GFjYSEdoiZExE36lSlaBXk25nhJQ,2455
1190
+ pyrogram/raw/functions/payments/get_saved_info.py,sha256=VmObevq3KKpExLylol2D6HGgiiaQHHNQOwTq9T6PtSE,2013
1191
+ pyrogram/raw/functions/payments/send_payment_form.py,sha256=TYSgUG6C9qxCHrQTDCam1EBO85pl-fsmxB1S8q8qGQo,4307
1192
+ pyrogram/raw/functions/payments/validate_requested_info.py,sha256=7OpDKu1afzZG8Pom3jeOm54bmB32Yjb6GRcy_Ma9kgM,2896
1193
+ pyrogram/raw/functions/phone/__init__.py,sha256=eLgNUOa7VAaXEaAxIm74dJsU1G5Edtq7lFo7bH6GyE0,2705
1194
+ pyrogram/raw/functions/phone/accept_call.py,sha256=mTpjytHJJH0YG3o1_rnMXwuVUqV2DUERvM3Azkbiqkw,2718
1195
+ pyrogram/raw/functions/phone/check_group_call.py,sha256=pvdhFcticgu0DIMDNA5ZvrE39I_ty6elBPsuqBCnc_Y,2461
1196
+ pyrogram/raw/functions/phone/confirm_call.py,sha256=d37nptp1OctrdN_IkRDggywATzIETAnIg10yXjBckiM,3015
1197
+ pyrogram/raw/functions/phone/create_group_call.py,sha256=a3_BGblkhnrl0PBOJDrxuZpGuG1dUOSh11nClm8qmq0,3585
1198
+ pyrogram/raw/functions/phone/discard_call.py,sha256=qVRtCYMuLO6dBOwIk1kbZbP8O1EEwTSYBUdUyw4M63w,3323
1199
+ pyrogram/raw/functions/phone/discard_group_call.py,sha256=-JpJns4m1b-NhRhPkbZ5Nn1StS9en7Ic96QDaTRlbvw,2227
1200
+ pyrogram/raw/functions/phone/edit_group_call_participant.py,sha256=9FZSy4InqANkcG8gfSbxSHqaXqLqBvX29V8BiSzAo68,5108
1201
+ pyrogram/raw/functions/phone/edit_group_call_title.py,sha256=Rf1yuwnnhy0kk9Y5Gmvszb8Pxh6mmtNRvVzTHmUBiz4,2433
1202
+ pyrogram/raw/functions/phone/export_group_call_invite.py,sha256=krDoQbm4nIp35y-T7zZ0bUZ8Fp1RgxoVMQj2uBzkyf4,2675
1203
+ pyrogram/raw/functions/phone/get_call_config.py,sha256=LnVFib8Bt_Ba0De5nTTcHs3Gyhro5RLrdHPaN5exMXg,1994
1204
+ pyrogram/raw/functions/phone/get_group_call.py,sha256=KZ5SgBWkAsF0bg4NhcD2Cb01_kMUrAgt_uZlkmgxVG4,2425
1205
+ pyrogram/raw/functions/phone/get_group_call_join_as.py,sha256=X8y-O2DRpkY2eO_wJCKbEBnCuu6HVqKLCfWFRrjLS4M,2235
1206
+ pyrogram/raw/functions/phone/get_group_call_stream_channels.py,sha256=yKyWR6G5ZlknQ-xMpc-xd_UpAMdrbnhz-SH-vwTAL3Y,2311
1207
+ pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py,sha256=-LoR0F9qVhf9JcMWWHnkk_gdElDoaEHm5wiGWclsY4U,2488
1208
+ pyrogram/raw/functions/phone/get_group_participants.py,sha256=LIlPpJ59mOWNopQITmWzX2MBGgGbfIqLZLFpS9_mTko,3203
1209
+ pyrogram/raw/functions/phone/invite_to_group_call.py,sha256=0jmf3PlK0f8KuHiVQOWJz46UFwqcsFh7FZT_8pixy4A,2512
1210
+ pyrogram/raw/functions/phone/join_group_call.py,sha256=FDLBZPGXyzEV7MyYagaUh0TrZ0Ecyw5biOg2UvzMYSo,3791
1211
+ pyrogram/raw/functions/phone/join_group_call_presentation.py,sha256=A1lQB9CNaCBLl3bROQ-tzHJ0FnGAV2TAVoqLMKUe0Ow,2527
1212
+ pyrogram/raw/functions/phone/leave_group_call.py,sha256=ydyKxWADx8WU30J9ICsz4qElxD_eTdPWjhC70pV_fDA,2428
1213
+ pyrogram/raw/functions/phone/leave_group_call_presentation.py,sha256=_6rJSW5B8aS-0ZRBCFA8LOXa28n7XiiHn22Hp5IM-ns,2267
1214
+ pyrogram/raw/functions/phone/received_call.py,sha256=YRSsJe3az3XJFps5rHQpnHZYfeB9FJtRT-3aZnohrJM,2177
1215
+ pyrogram/raw/functions/phone/request_call.py,sha256=z_Tgsgjax3m-bvCkfzpz2z5uz3MbN6DWU5PVS0Q0nms,3304
1216
+ pyrogram/raw/functions/phone/save_call_debug.py,sha256=c9ezgoaVC8FUFCJ5VELrJRI738F1HV2lOfdUhvjtBxA,2436
1217
+ pyrogram/raw/functions/phone/save_call_log.py,sha256=gEyd3rFQUgQEzL_yU0QMsFSpWkFvK9Qm0aTcuy0E6gQ,2423
1218
+ pyrogram/raw/functions/phone/save_default_group_call_join_as.py,sha256=il5ujL-Agnxb6Qgjkbhz9r_Xmt81eVWvSQrRj3Wjfj8,2490
1219
+ pyrogram/raw/functions/phone/send_signaling_data.py,sha256=mEhzaer4NH44Pumd-oSWHyHdl75sRrW5x1KyawcgoGg,2387
1220
+ pyrogram/raw/functions/phone/set_call_rating.py,sha256=b5Fed5TULiYaNkGKPphhqA_PDOSU6BYQ48zx2CAc4z8,3024
1221
+ pyrogram/raw/functions/phone/start_scheduled_group_call.py,sha256=R2me9BzK-TqifEKl5tvh6XkAcMCzpzOHPjkA2EYYa7I,2255
1222
+ pyrogram/raw/functions/phone/toggle_group_call_record.py,sha256=CeYm22_SAClaJptT9sY3AFVdjudS_B4CtshJY2y2UNU,3593
1223
+ pyrogram/raw/functions/phone/toggle_group_call_settings.py,sha256=b9mHHladPy6HI2WpgjHor-v4X8sfj7rKV2KuM5rSVQU,3062
1224
+ pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py,sha256=xzHM_Ut_IkHSFJt8_yR64B6Osy2AsPDCWhMydYCO9Fs,2530
1225
+ pyrogram/raw/functions/photos/__init__.py,sha256=-x5-BsFhrqY2MepxM3G466yT92hKkpcXHl58Nc8ZOZE,1317
1226
+ pyrogram/raw/functions/photos/delete_photos.py,sha256=KhSoLjVit96AqMqjyGdSejTc_as5al9uyRuwIFkje1I,2184
1227
+ pyrogram/raw/functions/photos/get_user_photos.py,sha256=DGVgn-xTBOAX_-YeSz6jDqbVSoOAb9cyrTvC0PCd3O0,2856
1228
+ pyrogram/raw/functions/photos/update_profile_photo.py,sha256=WdqmjZcu5uEAQnvZ8D5drVqRD_e1H3z_n7-_fzkniyQ,2923
1229
+ pyrogram/raw/functions/photos/upload_contact_profile_photo.py,sha256=3WbpqzZh1TficwEQJNahrSuhNGlT-5ckV3tyFPlZwL0,4675
1230
+ pyrogram/raw/functions/photos/upload_profile_photo.py,sha256=I9qzCn793jFQq1gf4TXBtXHultkhSqzsmVdZ3uh0fPM,4529
1231
+ pyrogram/raw/functions/stats/__init__.py,sha256=NTy7Ygt8dcd01uCWPGUi-anLfxOOncf-bKaAECNzb38,1320
1232
+ pyrogram/raw/functions/stats/get_broadcast_stats.py,sha256=7ElOemehdIWkW_TBVUsZeXNwis2UrV4_3BWLb38gbL4,2561
1233
+ pyrogram/raw/functions/stats/get_megagroup_stats.py,sha256=Z3GCNokXxLE2y4LcVKogH6x-hLKG4muEpftlyhfV2oM,2561
1234
+ pyrogram/raw/functions/stats/get_message_public_forwards.py,sha256=nepMViUslMYzE5zvxraXloRyOjt_C3ZH-uK7gOQE0R8,3510
1235
+ pyrogram/raw/functions/stats/get_message_stats.py,sha256=QxFXBczfId8WdZaOd_mtwtrgjwzAnu7z7Zp2MC0lAbg,2758
1236
+ pyrogram/raw/functions/stats/load_async_graph.py,sha256=Ptf1TC7FZ7H9PtDgunI-BzNt-UdeOlZeJ3Y6jT8_DRM,2513
1237
+ pyrogram/raw/functions/stickers/__init__.py,sha256=Sp_zmgr-yZ3k8Jfu0Jtb1txdSIbDdGeGZ04p3YD-Fuw,1562
1238
+ pyrogram/raw/functions/stickers/add_sticker_to_set.py,sha256=4uSM8YVCIYyqBgzTSYSgj3OFVFJWFdkGe_Wn6LzubnU,2625
1239
+ pyrogram/raw/functions/stickers/change_sticker.py,sha256=UH-jCvS7bhJ61qLLxTGUU5JwZwKmVFYYTVKhukPdmAg,3535
1240
+ pyrogram/raw/functions/stickers/change_sticker_position.py,sha256=eIqWQ3rf-MydFFbrtSO4rLgeX3INJDThwqnzdTNdFg0,2524
1241
+ pyrogram/raw/functions/stickers/check_short_name.py,sha256=i7s0J6DU_wB3bF2K9lwE4t__iL3LovDnc95KNfjj9Ks,2161
1242
+ pyrogram/raw/functions/stickers/create_sticker_set.py,sha256=hhVgBGOGkw2GJ6EcGtGwdrrWiQTNMpEYYLhj2mnPkCo,5247
1243
+ pyrogram/raw/functions/stickers/delete_sticker_set.py,sha256=uVNrtrSagA8vOIMRNyx0zip0uO9PaWScCFV5WCUlVjw,2254
1244
+ pyrogram/raw/functions/stickers/remove_sticker_from_set.py,sha256=h1DRkvmTBabwY3_HxFblBa-ZeGYEy8ktcja75jvIppw,2293
1245
+ pyrogram/raw/functions/stickers/rename_sticker_set.py,sha256=8S_Yse4yhYXBdFF-ITHrXLVZW7ccGwDj1qIh21XnmCo,2510
1246
+ pyrogram/raw/functions/stickers/set_sticker_set_thumb.py,sha256=s6jBC7v4zLRFS1RuisIW3co5NHJFpw9f39-UmdXd8bI,3286
1247
+ pyrogram/raw/functions/stickers/suggest_short_name.py,sha256=5k4bNBTt3HIlddcad5IE3EwyFoWQszaOn7cQqH7Mbh4,2198
1248
+ pyrogram/raw/functions/updates/__init__.py,sha256=-WBdfnQmtqi6uM_4PIRircq269Vm9NzcJPPEjQtpNJo,1191
1249
+ pyrogram/raw/functions/updates/get_channel_difference.py,sha256=q4_wBVLmrEzdRSY2UVpXINeLPJecsEueN6yWt_D_fpM,3290
1250
+ pyrogram/raw/functions/updates/get_difference.py,sha256=l0W4X_QYFy9W7Qn6y6soxjOhDdEYtzbC4x_7voHMNb4,3035
1251
+ pyrogram/raw/functions/updates/get_state.py,sha256=fmobatbbSqemP4tJkHDBGnuN8DNXTEc-1mKSY1NGq4o,1986
1252
+ pyrogram/raw/functions/upload/__init__.py,sha256=u7fpYVTtU57STIW5c4RBBhDw2ipiskwmrXQYKs7LMXQ,1393
1253
+ pyrogram/raw/functions/upload/get_cdn_file.py,sha256=ju1XiyniPFIyf6842Hyh8g0uG8aMWcsPwUWZhSUdmdw,2604
1254
+ pyrogram/raw/functions/upload/get_cdn_file_hashes.py,sha256=KMBC3wvuvlAWK8GzcXXiNDNtRbthiRs2VAKGKpdW6W0,2424
1255
+ pyrogram/raw/functions/upload/get_file.py,sha256=O65vuiTEktCmG8KslIAzznJZrF1yMSFbn_bowTdMlL8,3293
1256
+ pyrogram/raw/functions/upload/get_file_hashes.py,sha256=RcsYoSU3FErB0xKCBeisk5ZkEBXrsCHS8rcVwTWIn80,2486
1257
+ pyrogram/raw/functions/upload/get_web_file.py,sha256=jwiiIxHZKM4zWdZnSYLT5bXkc-5QtvOBCdTDBxRhcYw,2687
1258
+ pyrogram/raw/functions/upload/reupload_cdn_file.py,sha256=ukelnHPmGQfxbO3v0uKQLnUUKeBTuiQgyhV7jAnygHM,2479
1259
+ pyrogram/raw/functions/upload/save_big_file_part.py,sha256=lnLb5A-noKbi7MgHHJOHGXFq-GzuAlJTNkm55QaOivM,2875
1260
+ pyrogram/raw/functions/upload/save_file_part.py,sha256=gu004lHCzWbr385uQXiGC1PAS3paOK2VNT1FkbzlRPg,2564
1261
+ pyrogram/raw/functions/users/__init__.py,sha256=JrivCCwWaLrbuHevwQLUfpwQ-QeRZN0cTCaS5q0lJo4,1189
1262
+ pyrogram/raw/functions/users/get_full_user.py,sha256=L98XvRIVjTvP7GYiMMPChULowcUWvVoyKG3XBtz2CpI,2183
1263
+ pyrogram/raw/functions/users/get_users.py,sha256=VQEV4-gwy8xxX_H5w7Z_Yw1xLD1eNRz1DHWTbfoay6E,2179
1264
+ pyrogram/raw/functions/users/set_secure_value_errors.py,sha256=TAQQgCIOd2ZwxrtcSgiG67RpO4M8E7qqGP7_Kq3jSTg,2489
1265
+ pyrogram/raw/types/__init__.py,sha256=GZ5GnF695po6Z6unm8BnE7kmsCeWjre6XhAOG9_Zf4A,56152
1266
+ pyrogram/raw/types/access_point_rule.py,sha256=Y7UHyIy3Wfa0ev-Zel5w8vh0RWrzcWGuWd4V48rsSmo,2704
1267
+ pyrogram/raw/types/account_days_ttl.py,sha256=yYFAPJE5QG6FRstKHIWrGdp-DUKHjZZM9fp2dlBsVUA,2329
1268
+ pyrogram/raw/types/app_web_view_result_url.py,sha256=OkhSec9TH7kImgkuc8mjTdF2Zx0u8neYxU5hm3cZK14,2345
1269
+ pyrogram/raw/types/attach_menu_bot.py,sha256=nLLzxP3iqRNL8uSyC2K4jyrUyON-3wGaIfvxcS6AtnE,4075
1270
+ pyrogram/raw/types/attach_menu_bot_icon.py,sha256=RPII8Xkg1B3gAZkLnrb5kTSBIqmrIX4M0UjJKR1WbCc,2923
1271
+ pyrogram/raw/types/attach_menu_bot_icon_color.py,sha256=SObevOXjmezAKkW3FLjNuAbCli7YDEl9ZZBQFdPP3I4,2362
1272
+ pyrogram/raw/types/attach_menu_bots.py,sha256=oS8uJI-EE7SUgUz0TeRR4fwmOCV0bAOBulmt-O_ZGM4,2886
1273
+ pyrogram/raw/types/attach_menu_bots_bot.py,sha256=6RwzB1k5pJJsytzgeyJNUTteFSo8O31cKPtZMXCKKGY,2675
1274
+ pyrogram/raw/types/attach_menu_bots_not_modified.py,sha256=lZfESOHT5rc8hsBq7ccRvbfgylJzKHDocC1VBG_IGsk,2234
1275
+ pyrogram/raw/types/attach_menu_peer_type_bot_pm.py,sha256=2qUc740NnKO6pRdSS_ameM-_X_czF-ZwnzKmQ5mk_kI,2020
1276
+ pyrogram/raw/types/attach_menu_peer_type_broadcast.py,sha256=jKPNVPtlgjyOPfSXNJ7NoavnJx7vvyi2y6eArZwUPXg,2036
1277
+ pyrogram/raw/types/attach_menu_peer_type_chat.py,sha256=86LRySTAOjV0ODA0SFLsTb4DYeW63aMlcFkzkeZucRE,2014
1278
+ pyrogram/raw/types/attach_menu_peer_type_pm.py,sha256=FU74aELf_04sucO-Kq_c_M0h_tViD4LoeStj7rxLGQc,2008
1279
+ pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py,sha256=oyEH6h14fZw4f_amzLXJJXkK1eVraVFtMRxLLKFXzWk,2036
1280
+ pyrogram/raw/types/authorization.py,sha256=M_p5ieStNBe2iIehnkheLLkd6UvLcyw74NFOnGeMf3w,6710
1281
+ pyrogram/raw/types/auto_download_settings.py,sha256=kZzCgfE-DTjw45cu_IFc90qTgKyK7F11TcIj01DRNTw,4611
1282
+ pyrogram/raw/types/auto_save_exception.py,sha256=lcZbN5S18ZFPowQIHf0rG-7qKJaMTUBVAvyHII2T-7o,2492
1283
+ pyrogram/raw/types/auto_save_settings.py,sha256=D5TRSF2XM_a-I_ASX-RXz-MfyChfDgu9Ea-bd6KoxUw,2962
1284
+ pyrogram/raw/types/available_reaction.py,sha256=B3PD25rbEYHrfofF8x77vgvIG8xEZqCxGI9coFIEDKQ,5709
1285
+ pyrogram/raw/types/bad_msg_notification.py,sha256=G8SPlNimHFHPBH82foh_M_U4EZTVjz7ih1XmEugprbI,2718
1286
+ pyrogram/raw/types/bad_server_salt.py,sha256=Z_H1Go1-7MwU49JM_dNpRlOn9QCH9Oykw5gXgEiWI5s,2991
1287
+ pyrogram/raw/types/bank_card_open_url.py,sha256=hg5QS5sKoFsWL1yf7WepzldxsRp-qzeq78Gai2fyTcg,2307
1288
+ pyrogram/raw/types/base_theme_arctic.py,sha256=m_TTYQj18jnU1O2lW92KldyGEupdWTjJRjT23UBIw9w,1979
1289
+ pyrogram/raw/types/base_theme_classic.py,sha256=vf13Cp5R8GFf7rZHTREzNkFR8DOBQxR6P6ea0WVyCes,1983
1290
+ pyrogram/raw/types/base_theme_day.py,sha256=0B8mNNMzDFrvdvOgVT10V9PkJRk9gYObCAPJjSMwhVc,1967
1291
+ pyrogram/raw/types/base_theme_night.py,sha256=KTJE41PDOWQdK61zvn53IjrC_NLyHEFwn9WhiBKk6-I,1975
1292
+ pyrogram/raw/types/base_theme_tinted.py,sha256=TBpj7irntx2He8iHMMaimGP_8arFuhvbyaUokT_0GMM,1979
1293
+ pyrogram/raw/types/bind_auth_key_inner.py,sha256=XLQO74QoZWHyJzY5kU9mmV4zXtxYh7aXH8-F2cYi8xM,3288
1294
+ pyrogram/raw/types/bot_app.py,sha256=u92WXeIgO-xf1MsTR-yHDO-26hdlDLQ_kx6jZss8vCI,3944
1295
+ pyrogram/raw/types/bot_app_not_modified.py,sha256=jWkPZzwjOT9iN3lZ8HFr9uxZUkuOyC-kefQeVFUS6uE,1984
1296
+ pyrogram/raw/types/bot_command.py,sha256=5nuhJ6mEqn3EyWEfY47o5ubZwSsMGx5dY3i_QKSwp8M,2584
1297
+ pyrogram/raw/types/bot_command_scope_chat_admins.py,sha256=DB3749p6xABZJ79yNy7_2_PVcMSVqvoenUQenGDAnB4,2025
1298
+ pyrogram/raw/types/bot_command_scope_chats.py,sha256=GXKuzMGYsTmZe_NDm6azN5pEDnoSQqI1-Z-YrI61FwY,2005
1299
+ pyrogram/raw/types/bot_command_scope_default.py,sha256=icchwRkxGJDFclh9VvC-bENo5aTK2P1cRnAXEy1FBo0,2013
1300
+ pyrogram/raw/types/bot_command_scope_peer.py,sha256=46Etrwtsf5EP21jQNh5ERsblt6PRe8WK7rwFMQHqmm8,2204
1301
+ pyrogram/raw/types/bot_command_scope_peer_admins.py,sha256=3Zj10MPIWLcMaZwLE8sZhd4Nds4qd52KRJUyVtGbZu8,2228
1302
+ pyrogram/raw/types/bot_command_scope_peer_user.py,sha256=zwHvZ3gNh-5BFWZneFF_8UFKpwUtQ4xCDgwqyh-uU3s,2495
1303
+ pyrogram/raw/types/bot_command_scope_users.py,sha256=L6ClmpEjSro0ILuhefyWb6bfgb9LItLACEd4RVsuFCM,2005
1304
+ pyrogram/raw/types/bot_info.py,sha256=DFIGMEiE9CT6NhLcf5UJU0MVy41bj6dEBoxKP3EG8Dg,4814
1305
+ pyrogram/raw/types/bot_inline_media_result.py,sha256=U5hJetUQP3QI6oX_ySVEfz9S0iM1rj4cSEfdUZ_Cmts,4328
1306
+ pyrogram/raw/types/bot_inline_message_media_auto.py,sha256=3A_EExldthqnIaGVTyifPRzueeGBUFDj3D9s3vsEb9k,3220
1307
+ pyrogram/raw/types/bot_inline_message_media_contact.py,sha256=MAfzC0ExZjIxdVXimqehrdQbJZhNWe7b_r-DQvra_Ks,3471
1308
+ pyrogram/raw/types/bot_inline_message_media_geo.py,sha256=jnFTMg9lAAQmpfPGjb5sUzqwnFBW5eSgyILsF5m4-GM,4119
1309
+ pyrogram/raw/types/bot_inline_message_media_invoice.py,sha256=EjqwmBnJcstmV2HxfDe4cO39HOoaMoaxwz5F8Ft9mj8,4576
1310
+ pyrogram/raw/types/bot_inline_message_media_venue.py,sha256=qWeGyYkowlxADCLKNNOpvNw2YzEy90hgr8kton4XvkA,3871
1311
+ pyrogram/raw/types/bot_inline_message_text.py,sha256=mo2rJPiSQ8TyA0oX1xKEf_rZE9OeVcHsRJzUhzv97hI,3494
1312
+ pyrogram/raw/types/bot_inline_result.py,sha256=2D2kqOz7N9B1lc_jep6PkmQDFnzonONylQiuLGMUxa8,4665
1313
+ pyrogram/raw/types/bot_menu_button.py,sha256=nsFfRh1qI4uIHAfo6CKdVtWqx1ZofiVWOcetQsU7hnc,2502
1314
+ pyrogram/raw/types/bot_menu_button_commands.py,sha256=Gtb3eVO1FxziNbACBhwTAcsT9fNWrL1wtY8iNeDF50k,2212
1315
+ pyrogram/raw/types/bot_menu_button_default.py,sha256=FkKt7XvUpj-epHu30gfIfz8RRWpGoSCUGHLPlXFDoTA,2208
1316
+ pyrogram/raw/types/cdn_config.py,sha256=2Thv-yt4hsxzAag3g9ilG9OWq6SBDm0L-CLRSLS5OVo,2456
1317
+ pyrogram/raw/types/cdn_public_key.py,sha256=W8wetBMfBr30az7FQp8lK22-jNwOTLUfu7AIKsjMMgA,2366
1318
+ pyrogram/raw/types/channel.py,sha256=x4Um8RE1hQSRa76DmJuK75jwrAd5PH-wjR3dDRQaZIA,12591
1319
+ pyrogram/raw/types/channel_admin_log_event.py,sha256=Z1xF8DWD-ljg_gohaAOuEWn1WwsFEEW7cy3zLsZ_U-s,2887
1320
+ pyrogram/raw/types/channel_admin_log_event_action_change_about.py,sha256=5oimiYKHzZLRCl5JiI-Y7gVYSD2s4QoL5IVcyjfATS8,2514
1321
+ pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py,sha256=5Y25jFSb8WR8XJ0dLI7MEBtKSJwWbakqSIV7KUHrzaI,2720
1322
+ pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py,sha256=_Z0rD86AohZ9JA4-0BhHpHZCT4nfqvy1GoxfjIoEvTE,2538
1323
+ pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py,sha256=xGgCWp00Rg79GjPoyGnwTdFUtKs2p-P7YtGmsB9fwUk,2542
1324
+ pyrogram/raw/types/channel_admin_log_event_action_change_location.py,sha256=NT67RIbgyZBtC8vnvrEUIgDKZGTs3T7MYiJKJTclxXY,2694
1325
+ pyrogram/raw/types/channel_admin_log_event_action_change_photo.py,sha256=i51bV0j8hxDAn6xW2QPagbVk_4071wiCo3KFlHlkIJc,2604
1326
+ pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py,sha256=fwjSSPYtQc9qyfdU_SOvTkvUZqQWRD1LlMmmeptH1OQ,2794
1327
+ pyrogram/raw/types/channel_admin_log_event_action_change_title.py,sha256=i1Ad6EqVxGuGn6yXpLkN9JsnpbYARMfzG6na3-vSt9c,2514
1328
+ pyrogram/raw/types/channel_admin_log_event_action_change_username.py,sha256=lEPLEGqhJgBWiaoZuTF-jGdK6OWKlO7FdVcWnsvQ0cA,2526
1329
+ pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py,sha256=l8Ei3nZmIw8qxWiU86FmXL2M6l6cV6YYO14ziQyqvEs,2610
1330
+ pyrogram/raw/types/channel_admin_log_event_action_create_topic.py,sha256=GLq8Cbl4dR9eMWTlBicRM42dd2kFSwj6DqtDBBNEj9s,2300
1331
+ pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py,sha256=rorKYliJ3E5eJTgR-GqK0nv1frNpLrMeAXsWXLfjhmg,2868
1332
+ pyrogram/raw/types/channel_admin_log_event_action_delete_message.py,sha256=lr5KCplt4y7puN9YHycpIbx_vJW3sU6k1AX-Vc_Jzjg,2314
1333
+ pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py,sha256=qGQiJv9VD-ZnJMUEsv90T5cAv5UB42KO0qSddyl7-ms,2300
1334
+ pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py,sha256=kVYQ3EQj8EpSnm0xMvNz3csKswTpZRyqVaflkhpmRg4,2327
1335
+ pyrogram/raw/types/channel_admin_log_event_action_edit_message.py,sha256=8T96QbazPjFjGzMQoacBPwkRUfgzimBXbLUsdtZ5nIw,2656
1336
+ pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py,sha256=7z96xE0mhg6smC7ndtN19xEsIF0_ntzPjZHNiiNcPeY,2636
1337
+ pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py,sha256=az8iPT3Klp6wsxLito27gz_nmDp4eyAuLDuhU89npFs,2377
1338
+ pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py,sha256=in7NWEIntQ7P6R6DX_yCI5BHzOIzb5D5Ro4lUPsbLzU,2754
1339
+ pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py,sha256=ZlkoxukZOdhNjUj8BPsRK_GaoAlh98kAggpBM8ZCne4,2377
1340
+ pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py,sha256=ngHlplN10t-9Jhffb3AtYmoQ_55-ns7XTlVjhUnypAg,2410
1341
+ pyrogram/raw/types/channel_admin_log_event_action_participant_join.py,sha256=cuwAUete_Wlhds8hGKxI3F9xDJKbyU_rmC_4XUejjmE,2100
1342
+ pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py,sha256=Bas15EWkI-Npg5FDS92zJ9hP9wRS9hRYf9bHJrdqau8,2746
1343
+ pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py,sha256=XX5unbZRfy5FtlGvR_5Yj7FROTOYodu8RkmqJgrFPPE,2650
1344
+ pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py,sha256=l1qo_6L6RlxhfnU-eJ09Pd5-rwrQXhQ_cDTgcQyT8Ag,2104
1345
+ pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py,sha256=-nN38QFh2Rs7W9GPadVWGrJMuuXFd0EReXcJO8PyOHw,2410
1346
+ pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py,sha256=LEqCRGtdeue7I14Q7qPJHJRXARaKxlT3-niE3j-toWo,2860
1347
+ pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py,sha256=nnsFF0RxE_aYfGKcnW8Rv5ylj2s1cPkcxwY2cmyVSO0,2852
1348
+ pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py,sha256=k1nTSmCS4Gq8xHojVp8e6M5T8965EjXlmqDHMAJ48mA,2418
1349
+ pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py,sha256=XWg3CRVLG20awwLQm9h2TJSMsoLptfT_0goDSz8nP0o,2418
1350
+ pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py,sha256=_Wm9BAdw5-xCaAE6E5ax9-2voNndNvDYigL3afplPag,3005
1351
+ pyrogram/raw/types/channel_admin_log_event_action_send_message.py,sha256=QjKGqHOszOtNXbR0lkIcVgKFQXSug1Exz_Tz7DZjUaI,2306
1352
+ pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py,sha256=SPHKphyEHLogv-00jdjqBEvFY_uAmfFvACiJ816lZyM,2319
1353
+ pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py,sha256=Wonfo_D3tU0DoyWiV3xSPV6IpmIezH48BuzqhWzO1tw,2294
1354
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py,sha256=Z8KSPlnc-C3nT4_aMQxOscKEmYbtzBCeFRQpJeXgqcA,2279
1355
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py,sha256=tu-hOchpv09LTdTXXQAdmNN4-i1rWqB-4wMQN33f3e0,2265
1356
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py,sha256=HNNV7_WxCfe7G3vvsnj0KGfpjx6eHmxPqT0wmGN-xLk,2320
1357
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py,sha256=D3xVgvcaJTzo-oex8VA8BY23wHkJ98vF3FaK-H-jRqU,2275
1358
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py,sha256=WWUq5u1fS2dhxGf_Aiz0ZYplX7P15RWOLqCWiuv3JxE,2287
1359
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py,sha256=t0kArzKual12L-9w_w5kc0GJFriFkaOcvQnyj_47tXE,2311
1360
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py,sha256=wLQFvHgtbQEvKxHUwTf178UhzHivdhpZnf1AK0P4dVY,2287
1361
+ pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py,sha256=IfKhASh1LO09a-xEoHUwZNWuGdv19_lJPxiYiTDmrR8,2530
1362
+ pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py,sha256=5oscFJcEI_MpvG2Dwq9xHnUUh6pBi_F_75hdyQiTZfs,2310
1363
+ pyrogram/raw/types/channel_admin_log_events_filter.py,sha256=lqiqtJ3NyirAqvmE6W8FdrkeHCDaCE_HYOuCNKnFIZI,6648
1364
+ pyrogram/raw/types/channel_forbidden.py,sha256=tC5WQi-9mSjiDkhz7LdlEAQbOmr-wlmnANbQcThvya8,3591
1365
+ pyrogram/raw/types/channel_full.py,sha256=ophnSl5XARmonsS6Sia4EUYf0hRWQHJ0i60AHKJ4Vr0,21188
1366
+ pyrogram/raw/types/channel_location.py,sha256=46Mq44WarollzA8U1DjqmWP8PZ0LeL91I3jpBop20sQ,2445
1367
+ pyrogram/raw/types/channel_location_empty.py,sha256=8t4hyhmyZAxK9xAL9n06DTE4b0zbbDYZsZnWcHcjs24,2005
1368
+ pyrogram/raw/types/channel_messages_filter.py,sha256=4FuZjCFS77_Q4ISVrW12gJLw1CN5h0oVwHjcxF0ItlI,2699
1369
+ pyrogram/raw/types/channel_messages_filter_empty.py,sha256=E6QJp1Q__F76MJhhY6a2sYT1BZUUWvcDfkDqI7z6kqo,2035
1370
+ pyrogram/raw/types/channel_participant.py,sha256=EVrxUBtc1SNmu7nHdKO4NmxvuoJlhJhZq-yk3dRKtKY,2365
1371
+ pyrogram/raw/types/channel_participant_admin.py,sha256=VwA2WVKAAmBltRCMhqmVC1XWAQkHh8LYWdkxpFE6ilE,4333
1372
+ pyrogram/raw/types/channel_participant_banned.py,sha256=WCrGjNoaXDTH25hog2dIO8HmhwuZNFIzUGV98nyOSD0,3281
1373
+ pyrogram/raw/types/channel_participant_creator.py,sha256=vdin11ExxXPiwBkq09fjlpoESnbAmqCuNgsWwhvC9go,2936
1374
+ pyrogram/raw/types/channel_participant_left.py,sha256=c6UH9K8ikH_pV6kkCU5ZB58JlsPZrwx6mmsvRHNHyic,2199
1375
+ pyrogram/raw/types/channel_participant_self.py,sha256=5OH1_QjcEA-VFjFhnPhu9u3zRDghysPVdIOWMIwWjz4,2977
1376
+ pyrogram/raw/types/channel_participants_admins.py,sha256=FyHfojCdFW99gW7YL_vAXDi51MvA2UsFT_dJuuL50Xw,2035
1377
+ pyrogram/raw/types/channel_participants_banned.py,sha256=XLfSVttDgubyomIO6vB8RDjuidWm7BjanQWWUyZnQvg,2150
1378
+ pyrogram/raw/types/channel_participants_bots.py,sha256=qlSW9fZz3ejw9vnEUjnXxWS_u2r30NsyEv0ad2pPHxE,2027
1379
+ pyrogram/raw/types/channel_participants_contacts.py,sha256=AUiUEvlUs_6PThDBwgZXUKkYSmzIFvYzEsTjHfuBFKU,2158
1380
+ pyrogram/raw/types/channel_participants_kicked.py,sha256=xotd2XIAWRFW8UTYFJpADb7dcsEPACKZqJX1yIDCkj8,2150
1381
+ pyrogram/raw/types/channel_participants_mentions.py,sha256=JRpDFZ8177h1dUVKcWd9L5ggy3jli4ipZYjNZTvIbmM,2762
1382
+ pyrogram/raw/types/channel_participants_recent.py,sha256=I3YX_e0CLxsBWSoLMMv13DgkIwmpWja96A4Cl7xtJhA,2035
1383
+ pyrogram/raw/types/channel_participants_search.py,sha256=aoziWwY9VtEHAJVGdZEu4mT86FYtwWUtS2njlaS-fp0,2148
1384
+ pyrogram/raw/types/chat.py,sha256=JPShJGOuuHWMTaNvcXPp-ZzvLaraWR9kDsNOInSjAjc,6664
1385
+ pyrogram/raw/types/chat_admin_rights.py,sha256=z3JwoqcWELL4E33CIT5LK11SCwCKj7BkwBjKoLLmzFw,5640
1386
+ pyrogram/raw/types/chat_admin_with_invites.py,sha256=1WC9Nn6hG3qmlxXS8X1CnvzI4Wo4ziW6hnbVmwEGqzQ,2809
1387
+ pyrogram/raw/types/chat_banned_rights.py,sha256=g9Q-iF6yHE1q778CRZ4JfU-zvkRT-cvrAvahxpCnank,8389
1388
+ pyrogram/raw/types/chat_empty.py,sha256=Ipqg9ntIw6GKwn5H4izrcjqfXrnGM05qcJnlKwGKVRc,2079
1389
+ pyrogram/raw/types/chat_forbidden.py,sha256=7XwgPeIh4qmcMqe2Cu872_J15AuQfBlrnBvsyWVfhNw,2293
1390
+ pyrogram/raw/types/chat_full.py,sha256=S9kGrrMwqzBYCF8RkzMG-_U3ybh67IogkaSwemgWu60,9951
1391
+ pyrogram/raw/types/chat_invite.py,sha256=3Aats58eWSMMwQS5Bri3q0qoBZz0InMRiy5Ed_E1KsQ,5192
1392
+ pyrogram/raw/types/chat_invite_already.py,sha256=3ufpMKSUjFg84DFxz-dWrWHkzJSDlozZXJldTF0SjlA,2379
1393
+ pyrogram/raw/types/chat_invite_exported.py,sha256=fIw67xt_V-MbXN-7L6EXE52RVa3ZqQGHqoEzdU_Tyoo,6062
1394
+ pyrogram/raw/types/chat_invite_importer.py,sha256=ki-qvNELZbM4AUo7fIBWLMjDO2zlZuvuQZwV5SK6qlw,3786
1395
+ pyrogram/raw/types/chat_invite_peek.py,sha256=l3SDhHWQHhAu4hOpzrbcp7Qi9C4dFzuJwlW0ya5KG60,2585
1396
+ pyrogram/raw/types/chat_invite_public_join_requests.py,sha256=l6KwMuEy1XReD-Jjway4CpCmYHM0eG-Ib7AelPHI6Nk,2249
1397
+ pyrogram/raw/types/chat_onlines.py,sha256=i3341WKiSrP65RRwH7YRmNYquau0gVJ9EOfV-_IHc8s,2339
1398
+ pyrogram/raw/types/chat_participant.py,sha256=8-vYb-a-K9sIaYyVGDnwfwLntwyrqFu4_VO_EZ8dbFs,2598
1399
+ pyrogram/raw/types/chat_participant_admin.py,sha256=CeWcb-7zbDXotEbLpca_iWSy5raGoz4JPqukpSYMF5g,2618
1400
+ pyrogram/raw/types/chat_participant_creator.py,sha256=hDuGhR2Dm9cU86P-iCvOGtzsYhkO82wLyyjlZzHZUjU,2187
1401
+ pyrogram/raw/types/chat_participants.py,sha256=pcA9WXjzGiz6w152gd5z4KElwAGtsSpLw5nv7dUSMeo,2750
1402
+ pyrogram/raw/types/chat_participants_forbidden.py,sha256=m0B_01ktyPhdQ_rTtlGs443FF4aeW7XN4zMJP667P2o,2804
1403
+ pyrogram/raw/types/chat_photo.py,sha256=yPBfs-gX2P-SsPE7y-gL0J7zvYM-gel55dbn8eCcGro,3122
1404
+ pyrogram/raw/types/chat_photo_empty.py,sha256=dLoGW7_YCKIashfLFgJtR_S4CbxXbYJiww0vl-BSjPU,1975
1405
+ pyrogram/raw/types/chat_reactions_all.py,sha256=KUkm6ncZPsTH350o2zlnaEy0D_7olBGV2-gBGDPBIeQ,2297
1406
+ pyrogram/raw/types/chat_reactions_none.py,sha256=fuDE3lxx-OEzQdZJyCBGibRc5gtpEuM18inAk9bwMQs,1991
1407
+ pyrogram/raw/types/chat_reactions_some.py,sha256=yIRWsiFTTXBV0C1wNPxiKJSQt8Y5mfzEQeVlkHe7RlY,2257
1408
+ pyrogram/raw/types/client_dh_inner_data.py,sha256=7s2OVNP9lDuq8eDT4sZsNe7Bdc5Dl94YYcadpNGdITc,2842
1409
+ pyrogram/raw/types/code_settings.py,sha256=8YP5dj1Spp880rTbeySpXJf0yYRgv-vGiuOYSMny2cI,4902
1410
+ pyrogram/raw/types/config.py,sha256=5ErMwQnGf473OxePJkYevLMTXqDEmuNWDBv84OEToPE,19235
1411
+ pyrogram/raw/types/contact.py,sha256=OKR2v8UEuvhdXAOzhucD4Xh5p4mnzZUndYv24UxVolE,2322
1412
+ pyrogram/raw/types/contact_status.py,sha256=TwindZhDU0GUvRu2yqvMULIladMy7rDFc9kr-ZfdxB8,2625
1413
+ pyrogram/raw/types/data_json.py,sha256=Nft3syCdvycJ0yyouOge4qfC_kMD23nQenjyELOx94Y,2331
1414
+ pyrogram/raw/types/dc_option.py,sha256=IfKx3WleDLf-6qaMr8B-mSei5nn02Jq_0Q3yQfkn0wQ,4562
1415
+ pyrogram/raw/types/default_history_ttl.py,sha256=N9b3CR9Z2iIMLH0E5w5U-d3yH_gR8goeK2eOa3wGmT4,2370
1416
+ pyrogram/raw/types/destroy_auth_key_fail.py,sha256=46N-XFbs--X73ej7b4g35RhVDneevmu9P56i8VMQ3po,2197
1417
+ pyrogram/raw/types/destroy_auth_key_none.py,sha256=WqffdzCSp6doARai9P_nSJ9olLX6-wiyetNgXjGjLJA,2197
1418
+ pyrogram/raw/types/destroy_auth_key_ok.py,sha256=jcw0AEcR9FHksuxG5fLGNeRzA9FF9uX5F25VTW6-xJo,2189
1419
+ pyrogram/raw/types/destroy_session_none.py,sha256=lhoJ-hxIvcLuOXV7_LbBJ1VGuD2OVAfNiaonjjRNELs,2398
1420
+ pyrogram/raw/types/destroy_session_ok.py,sha256=uwqiObhhvVDas3zyypaT8Svpa_0ent15e41_LSnbttI,2390
1421
+ pyrogram/raw/types/dh_gen_fail.py,sha256=_iBA8q_BsHjrC9hiTsK-CUZfOOYcPGE_hyuoAXDQp9g,2906
1422
+ pyrogram/raw/types/dh_gen_ok.py,sha256=sbTEl-nKSOlVDSGUtRUonC-9EAy6VRZ3SWtw05xFLtk,2898
1423
+ pyrogram/raw/types/dh_gen_retry.py,sha256=zhtlhD8_jiSljzI1Ypc_Vl7CsjlJk7U77Qr0wbY7GLw,2910
1424
+ pyrogram/raw/types/dialog.py,sha256=S5ehu8jsKv0kY3UiJn-_plBzyhrnwSBdgnohHKvyCds,6524
1425
+ pyrogram/raw/types/dialog_filter.py,sha256=4bXkBchY1c19CNhBAoUfyEGR0gbkYSzpsNw191f6ppk,6358
1426
+ pyrogram/raw/types/dialog_filter_chatlist.py,sha256=iwWezbFAnXrzDSAE88r1LJ_UVVXBaANa7XiLecIKe14,4000
1427
+ pyrogram/raw/types/dialog_filter_default.py,sha256=LYbT1ywGVgp0YobKRujv3U9XklarcMEGJee1E9vNCTo,2207
1428
+ pyrogram/raw/types/dialog_filter_suggested.py,sha256=DNnMOtq_8UDF0ABIdx7oYwXm11yWe8zvbNMahXZ4YR0,2718
1429
+ pyrogram/raw/types/dialog_folder.py,sha256=sIxRiDEOFmjKSrDMo0HgPXRBs6rayuSi5V3KjkXXKXY,4534
1430
+ pyrogram/raw/types/dialog_peer.py,sha256=gyU8fRBQoT1l7hB3Jg28h0NkJ96_XE82JAcVDUu76a4,2356
1431
+ pyrogram/raw/types/dialog_peer_folder.py,sha256=yvqdiJZu4tZ2k0FAkiC51eadM3CE_gg4xUh3dj_KI0I,2386
1432
+ pyrogram/raw/types/document.py,sha256=_ST7c33UpuWMLEYgb6eGf5YRoDXSFwNMpjyZncnj9zw,5113
1433
+ pyrogram/raw/types/document_attribute_animated.py,sha256=e8IQk2L8BjpaUtdIN3HyjjDZQ3py9IOX5Rbc5HDvpAc,2027
1434
+ pyrogram/raw/types/document_attribute_audio.py,sha256=2FkL37DY-JGZDFoN9pXfBa5t3CSwMZM3roAVNhvKB-I,3632
1435
+ pyrogram/raw/types/document_attribute_custom_emoji.py,sha256=RWtB-_g9K9Glbl9VqAAqCsLMXaTz6McNCiz6JhqSUVY,3079
1436
+ pyrogram/raw/types/document_attribute_filename.py,sha256=NdtO5pgyVT2RkjoOXznugU7EdD_32XawzrkjLDhfCaA,2214
1437
+ pyrogram/raw/types/document_attribute_has_stickers.py,sha256=P7e1eREjHviLj7pOpkgwzLOQQe-hKxZRs0dwXkZng1g,2039
1438
+ pyrogram/raw/types/document_attribute_image_size.py,sha256=EG1dvF-wl7VWwk23V-hUoxjdF27TqIDGEO7iN5SAtng,2312
1439
+ pyrogram/raw/types/document_attribute_sticker.py,sha256=1uYX2skIXmbyOhxX03dse1Vw_govka-cauf5VOKmXZc,3253
1440
+ pyrogram/raw/types/document_attribute_video.py,sha256=tkGLvmMKypTZ11OU2inqAIfZuB2guGljEy9x89tRLwg,3253
1441
+ pyrogram/raw/types/document_empty.py,sha256=lBXDQYcfKc8cod51k23z70iB_yELhjttVuTUHkmTPyI,2422
1442
+ pyrogram/raw/types/draft_message.py,sha256=C30VISwx1JGiatCeGCarg-RAmS6uhCehEEtnMPePFUo,3616
1443
+ pyrogram/raw/types/draft_message_empty.py,sha256=JzKmAk8vtaJTI4o-NX47S8HMhRWjQIXnQCmEt6vWs8A,2333
1444
+ pyrogram/raw/types/email_verification_apple.py,sha256=MOdsdSfQHFCVb212MvzmQNPbLBESFU6OG7qi1wa1BkM,2166
1445
+ pyrogram/raw/types/email_verification_code.py,sha256=jAKGa4-5CkPER9SSwo2r5Qa1L4kxuiG3Sbhwd1vcVWo,2153
1446
+ pyrogram/raw/types/email_verification_google.py,sha256=QW3KtFCzqYBAzG7cnKHuFhDcRaBL_vrlReGltBdj838,2170
1447
+ pyrogram/raw/types/email_verify_purpose_login_change.py,sha256=bPQQiQ5tzlFF3OQ8spJI3Hv109D8TnKfzMGBo2J7n4A,2044
1448
+ pyrogram/raw/types/email_verify_purpose_login_setup.py,sha256=k9wjKf8vWZWf3LBYURJPLEJi13Y4EQ2c0ui-VUyhjxk,2542
1449
+ pyrogram/raw/types/email_verify_purpose_passport.py,sha256=6tRk_CdwqLyACmdLwEcklmogavtPBVdHcFXSx8wVx0Q,2032
1450
+ pyrogram/raw/types/emoji_group.py,sha256=wvne38CbukBmtadI-XeZZMqlL10LByoNmHBvVkdWSLE,2660
1451
+ pyrogram/raw/types/emoji_keyword.py,sha256=di4LfaD4RmW8f2NgUp2Lt-UJCwJygHQFuFfFypdv_pM,2413
1452
+ pyrogram/raw/types/emoji_keyword_deleted.py,sha256=Jvwq7MUXNHA2nR_ytHwgGnXjmzpHEz08JMIeZPobESE,2441
1453
+ pyrogram/raw/types/emoji_keywords_difference.py,sha256=7EowHZ_Dxr5MluJT6oBrrLUpW3oUB-_roSdtWk1NyXc,3271
1454
+ pyrogram/raw/types/emoji_language.py,sha256=Z4jpu-bmCwh4bWdnK1Mc28T6wmvCpLmoew2IKMx1QQk,2380
1455
+ pyrogram/raw/types/emoji_list.py,sha256=ouKd1QthVGSYpBqgKCkRVENkc19SxUMxGS0bac0b-Oo,2706
1456
+ pyrogram/raw/types/emoji_list_not_modified.py,sha256=95TDgx5Rr1lISOPIFWY4RvkvQzM1L1hHTu8gZwHAnFM,2306
1457
+ pyrogram/raw/types/emoji_status.py,sha256=vawLuR0_CEVQ-B8wvcoXSneQ4JcwZGWjgG5ZiBaK9eo,2175
1458
+ pyrogram/raw/types/emoji_status_empty.py,sha256=5kTdVjX1U_jG6aqRfA9fNmj357Cdvmu0kZIE6UIpTZE,1985
1459
+ pyrogram/raw/types/emoji_status_until.py,sha256=OoyVzEkXNQaSgYEaghix0_5eNwqfbGjIDpighF2-L-U,2395
1460
+ pyrogram/raw/types/emoji_url.py,sha256=a9tqX_FBm2Lemyx_Ghb1wHCFaJ2IlpkiQ4pW4n-d2EI,2287
1461
+ pyrogram/raw/types/encrypted_chat.py,sha256=KxW9GfnfmmT3EZbs4JMfgXB3WxTNe2606i9d-uqUZHE,3831
1462
+ pyrogram/raw/types/encrypted_chat_discarded.py,sha256=V3fObBCvlGsaZXPqEnmhtfHUMf0Cq9YayxC2lKrE67I,2770
1463
+ pyrogram/raw/types/encrypted_chat_empty.py,sha256=ubAoQ7Meqei9QnKAJSeVilq-ph44RWgDONJ0UgR5SUk,2370
1464
+ pyrogram/raw/types/encrypted_chat_requested.py,sha256=DIgFKwu9BvT_H3dg0TxlLXpNCOdERQtfDb4aBOj3ios,3974
1465
+ pyrogram/raw/types/encrypted_chat_waiting.py,sha256=ZGQucmaeqQMy1czB0dw5An0N7mLmQQA9KLA8NvQ9u2w,3340
1466
+ pyrogram/raw/types/encrypted_file.py,sha256=IRiDFv2hP3cdP80UNOL1OuKHmR46syA-WRa5SGFhsss,3257
1467
+ pyrogram/raw/types/encrypted_file_empty.py,sha256=9umvYqbDov8L658IHc97zrTlqKD9Tu1sqvnNAyFEkPU,2207
1468
+ pyrogram/raw/types/encrypted_message.py,sha256=8qWARYGTZHhafqd7q5_xHEtU6q6e-RzQ7FlbAczqHrM,3056
1469
+ pyrogram/raw/types/encrypted_message_service.py,sha256=NR3Y_vngSmP4qwzEqKCpLOuhdZFQjXB5VyHRJwFpe5M,2818
1470
+ pyrogram/raw/types/exported_chatlist_invite.py,sha256=Jjz_97S6mxxRUDrSmQleIuk6SWumnmA5mih6LDlxL7Y,2876
1471
+ pyrogram/raw/types/exported_contact_token.py,sha256=_kbak_yGri2LP-JZNp7c6ZrbWIL8NdFl4IJc4wDGgh4,2572
1472
+ pyrogram/raw/types/exported_message_link.py,sha256=e4X7vBLbIyvCTDUnCMQ2bTqdzBOUSxy1GgfCQSXfZ5Q,2546
1473
+ pyrogram/raw/types/file_hash.py,sha256=y4tVdfpsvM2cl9DjxPgs-C_SF9iTJwbh8Vd_nmGndx0,2781
1474
+ pyrogram/raw/types/folder.py,sha256=4p14LCmB-fVfIV6okHhfCBiGZ0YV6EDdPfyrOUI_Lv8,3983
1475
+ pyrogram/raw/types/folder_peer.py,sha256=gUeD-2-ywCnVL7eqjlZSNOqwohNATNmsENvt8T-SdW0,2379
1476
+ pyrogram/raw/types/forum_topic.py,sha256=ufQgxToquuiOVXCclNKSwCCRP3D-dSsKb6buttGtUis,7364
1477
+ pyrogram/raw/types/forum_topic_deleted.py,sha256=KivqrU7T532168lnKZ_hXEcpj0NqE9BMhIB48DhmzqQ,2112
1478
+ pyrogram/raw/types/game.py,sha256=9dq0hsMsZd50tQOmoS_73odYB67zguqEG2aZrxPCdq0,3740
1479
+ pyrogram/raw/types/geo_point.py,sha256=kCHORJO_JJHMaAE3p0YyS3Xm3hxvyIrQhPMu-fQVu2M,3070
1480
+ pyrogram/raw/types/geo_point_empty.py,sha256=wV5DLs_eD338azM1IObaz7rsogQyFTmLsZ6OLhMiSQI,1970
1481
+ pyrogram/raw/types/global_privacy_settings.py,sha256=DLs0jgWV4Wf9Fd-fOw5Bqm4WBecXr6RrFaC1vIdGkwE,2977
1482
+ pyrogram/raw/types/group_call.py,sha256=djUV33EJsjY8uwykbbcDmXUly0MoSZXvfY932X6PHFk,8290
1483
+ pyrogram/raw/types/group_call_discarded.py,sha256=pc8jMn6px-kXGmVaTVCLOaxlFBpvl2zexAeOHelEPf0,2604
1484
+ pyrogram/raw/types/group_call_participant.py,sha256=2S0Sqo9RCmhV0fR3InhgcDifNZ3z5X0G9K4hq0Vz1zk,8200
1485
+ pyrogram/raw/types/group_call_participant_video.py,sha256=J8BZScLI-gMyJaSf9D79cXqk0YsGtINLzpNwGzmubcQ,3410
1486
+ pyrogram/raw/types/group_call_participant_video_source_group.py,sha256=8-3a8Mv2Kh7EDubt9ayINy3bEZJV7RGoyIxGaNRZUR8,2535
1487
+ pyrogram/raw/types/group_call_stream_channel.py,sha256=x5a0nHVyUGkXj6CGEtgMhD7_wF6CNFkPWLDy2jW0C8Y,2702
1488
+ pyrogram/raw/types/high_score.py,sha256=Y_QM_0-skctqR3m_P-g5Imue2VRlrTxR-FNwxn9yiYg,2511
1489
+ pyrogram/raw/types/http_wait.py,sha256=z2h8caRfeHfw-P6fETq4E2iQaz1ruBRbO8BDvk4UIuA,2611
1490
+ pyrogram/raw/types/imported_contact.py,sha256=K10taF2HPwnfOE7Knux2p6pDorgYrYnvuiFC0a9eTeU,2398
1491
+ pyrogram/raw/types/inline_bot_switch_pm.py,sha256=SBAOx7Bv_4p5JTlY0_Jy_Ox2fG1ctqX-vdi_LUWNTJY,2389
1492
+ pyrogram/raw/types/inline_bot_web_view.py,sha256=97AThR9CWpOFGdoD3Ql8dnjV1IK2iF43BihLGQIrUec,2312
1493
+ pyrogram/raw/types/inline_query_peer_type_bot_pm.py,sha256=xNtNOapncQipw5pQrKTuU45ap0v3pd7sDIrqRwLXDCI,2023
1494
+ pyrogram/raw/types/inline_query_peer_type_broadcast.py,sha256=kbFddivBKyvtfNG-Eo5tl2P6isUFEnbc4NW0f3AxbB4,2041
1495
+ pyrogram/raw/types/inline_query_peer_type_chat.py,sha256=rt3PcTxx0Euj20SQOIGm9pqvr9pM_Dw98j_07KXrP4I,2021
1496
+ pyrogram/raw/types/inline_query_peer_type_megagroup.py,sha256=dPtuEZouJ6qweI4q5rzG5kamGqndIRsMuaxOxfou7CQ,2041
1497
+ pyrogram/raw/types/inline_query_peer_type_pm.py,sha256=2Hd0mCt61E9Weox6Pfudw1nqkHb70rWTwe3MAUifu-8,2013
1498
+ pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py,sha256=KIV8oYdexZk9-RWUAxU3IyQ2ZOZPth4SfYnPXa1Opp4,2041
1499
+ pyrogram/raw/types/input_app_event.py,sha256=-Thyg9YVeRo5mMtQOZhAFZLkj8SMT4izXfxAWUi0Uew,2765
1500
+ pyrogram/raw/types/input_bot_app_id.py,sha256=fV1B_Puyz7Q5Fr_33f5p8wFDmtS2jdWRrvgHtgHT35E,2359
1501
+ pyrogram/raw/types/input_bot_app_short_name.py,sha256=1GBxkXaOiZl0H_iAA9e_Q_CvnrMv-6rwk6qmEO3hXXg,2465
1502
+ pyrogram/raw/types/input_bot_inline_message_game.py,sha256=OZoRtxKC7FPGRYHKDOTc9AhmoL7Oozr2QL1_JyygD-Q,2528
1503
+ pyrogram/raw/types/input_bot_inline_message_id.py,sha256=J5jfWMWxYm0x-x10IAKvw6XFGw_KymCSzmsTUEyLLFg,2611
1504
+ pyrogram/raw/types/input_bot_inline_message_id64.py,sha256=4KUizjzieOnQWqZcTYNydF5-tPdVulDQpAsMnRlrKM4,2846
1505
+ pyrogram/raw/types/input_bot_inline_message_media_auto.py,sha256=qe1r-syogoecySAKoeHWnvGNLCm1KgdyV1EUz2dtLb0,3245
1506
+ pyrogram/raw/types/input_bot_inline_message_media_contact.py,sha256=Yi3hTOsTo_mGs04MSl4uC1L86OhVRMvlzxUXeen6fAI,3496
1507
+ pyrogram/raw/types/input_bot_inline_message_media_geo.py,sha256=EpA3VpNkGGbfiNkzvki0u-JrYjnzz3mKry_ba_OTQGE,4220
1508
+ pyrogram/raw/types/input_bot_inline_message_media_invoice.py,sha256=tDx8Gl_02Kqv3Zedy2q75vSv9EftyZVv6m1nnfWFjKI,4490
1509
+ pyrogram/raw/types/input_bot_inline_message_media_venue.py,sha256=eEaK5eyWiRksFuLQw__gycO1GcVhcDegiP_x67S5Ars,3970
1510
+ pyrogram/raw/types/input_bot_inline_message_text.py,sha256=qOLUofxXhdDmi7-J0IYhEluXKyfzKiNZ0dWQYnC0Utw,3519
1511
+ pyrogram/raw/types/input_bot_inline_result.py,sha256=OHUp7UNhEMc5wHuXFr6dYhwSGzXwrMtCAR7fpA0-kyo,4750
1512
+ pyrogram/raw/types/input_bot_inline_result_document.py,sha256=rLD8y3lgkMEp_ND3_41TYr9P6phABggF9yJ13b4hPdU,3846
1513
+ pyrogram/raw/types/input_bot_inline_result_game.py,sha256=HhnOyuGzSsaBt0NuvuBgSredIlwbb7tkc6-8LL2_41c,2763
1514
+ pyrogram/raw/types/input_bot_inline_result_photo.py,sha256=MAP_Hyu81e2tDv7-iYRIqciGsobqGZlwWuQ0kBTjGa0,2976
1515
+ pyrogram/raw/types/input_channel.py,sha256=iCfI8grYHYTdmFipKMhwf_fR8x3jTDj2tex_mWgyrJ0,2428
1516
+ pyrogram/raw/types/input_channel_empty.py,sha256=nib9Ye9CM8oO2B9S2bLo3U4KJBX7Mse1cDTACDLpdx0,1990
1517
+ pyrogram/raw/types/input_channel_from_message.py,sha256=OS0q-wPhZcHSeLIodGbgT3mSFkuG1_J70MzdRCaKBFc,2674
1518
+ pyrogram/raw/types/input_chat_photo.py,sha256=uP5wlM04bDdc9qka0-1Kw8FrsljMFMJL6gUDN4Nbhe8,2169
1519
+ pyrogram/raw/types/input_chat_photo_empty.py,sha256=N0l-K769asasGsGutp3j7EzCQucEXhi0PeozMrZfVkM,2000
1520
+ pyrogram/raw/types/input_chat_uploaded_photo.py,sha256=iXoTegusl5uQElj5pGaJZPWkKD88FCB2YdkvPts_Ztk,3852
1521
+ pyrogram/raw/types/input_chatlist_dialog_filter.py,sha256=32Q-p4XohH4IWIE4v7R1d9NEwS-lps-JtVwPq6CvK4Y,2212
1522
+ pyrogram/raw/types/input_check_password_empty.py,sha256=Ubu1ApEOChihdTXSXvrtBouNuaEuZ7f6dD8y1hQ9kJo,2023
1523
+ pyrogram/raw/types/input_check_password_srp.py,sha256=jI66z0E32edkpTWNyd7rpfcieOABQqa8EUgaR99QZ68,2515
1524
+ pyrogram/raw/types/input_client_proxy.py,sha256=IhlgP58aaxZwxMsrL_2VREkAUE_PJhqKocW1ff8vl0M,2350
1525
+ pyrogram/raw/types/input_dialog_peer.py,sha256=GvWfrKfCKXOnKPrhZoqPB2LmRCoN2O0GTKPSnBRUL5w,2188
1526
+ pyrogram/raw/types/input_dialog_peer_folder.py,sha256=MkgZ9jmNF08Hr5EX2l41qgasJwm4sFgHbGW28bRF8b0,2198
1527
+ pyrogram/raw/types/input_document.py,sha256=IiRkM7qJggC8pWr8fn-onk45n3ttvxg_Gc8ZQJldZVU,2641
1528
+ pyrogram/raw/types/input_document_empty.py,sha256=yxm8XdlkEfahLD2SsF7O8WlZ8UBPLPgH3OZ0-1j-n1Q,1995
1529
+ pyrogram/raw/types/input_document_file_location.py,sha256=XKqPvJFzrcaQ03BRU_AZTiCfYgk-itKiZbKzhscSDQo,2936
1530
+ pyrogram/raw/types/input_encrypted_chat.py,sha256=SVmCPZWYhO1j7XvbYi6_YJkt5tt2cAvrTX7vg08slzk,2428
1531
+ pyrogram/raw/types/input_encrypted_file.py,sha256=QPOae2ouAILF5EXbh1yZHRBIIawCsLTQ_AKVDlchPpI,2386
1532
+ pyrogram/raw/types/input_encrypted_file_big_uploaded.py,sha256=T1m3muvgMNuA4ziSGKIh0DfwTPDwr_5Ru55v3gaGJUY,2663
1533
+ pyrogram/raw/types/input_encrypted_file_empty.py,sha256=w46yvkV38VK6GSru3JwvtRdtE91zRtEnVN3hyBioqoc,2020
1534
+ pyrogram/raw/types/input_encrypted_file_location.py,sha256=aMf0S4eLglS2sdKveW-_ZcJ5CooKe9iU6IwaHI15vDg,2417
1535
+ pyrogram/raw/types/input_encrypted_file_uploaded.py,sha256=pXxyNyifnMG_ZYM7RUmZR-0K0Sn-Sr0e4-5X6ZsWOzQ,2912
1536
+ pyrogram/raw/types/input_file.py,sha256=Y10QBm_W03hGs34yX0SOqhcAF_4TbydDeUVMZoFQqW0,2734
1537
+ pyrogram/raw/types/input_file_big.py,sha256=Hxujb9CHOQVrBxzIIDV5NiFi4ZzFfZc38Xc7lsN1sI0,2485
1538
+ pyrogram/raw/types/input_file_location.py,sha256=VwOWGTdJR4O5tWm_9WKVorz-oYMMfZO7DDyD6NrSBig,2906
1539
+ pyrogram/raw/types/input_folder_peer.py,sha256=aLLsrWKdm5-iyn-AxO5gGy57PVN99zIPUBeszXouYVQ,2424
1540
+ pyrogram/raw/types/input_game_id.py,sha256=A9t_5tLa_tNC3L60uPVL6QE4g0SiQ5EfDLbH8_hT81M,2347
1541
+ pyrogram/raw/types/input_game_short_name.py,sha256=Sl3BMhDmUKjHXZhLDgPlufAudi-5WeJDAAaD2Ifqjb4,2455
1542
+ pyrogram/raw/types/input_geo_point.py,sha256=FHkDDpIOtsz-SyKvFKQ2e7c0XQVYzgSgWoTNS76EjP0,2838
1543
+ pyrogram/raw/types/input_geo_point_empty.py,sha256=an5lYC2VxjGdZmP69cbQZNG8ecIVLb-10Qp6DxFQiVw,1995
1544
+ pyrogram/raw/types/input_group_call.py,sha256=h5QPZXbqDwlM15G1DqfbeVLiaS7zfOv56ZpCuJkkMSI,2366
1545
+ pyrogram/raw/types/input_group_call_stream.py,sha256=a7_0UI7plt5brAl-B3mAMCLLkyIK6PYurai3a8unyJM,3582
1546
+ pyrogram/raw/types/input_invoice_message.py,sha256=uqVOGPsrGwNvtd_WO7qasJ3X_c4dNePERLmREQLg_0c,2410
1547
+ pyrogram/raw/types/input_invoice_slug.py,sha256=CQZD2UJl5EXn3L7v43p5vsrZ_Mo7Y1OuglMcH5Algak,2128
1548
+ pyrogram/raw/types/input_keyboard_button_url_auth.py,sha256=nea-ZcHM87KoQma3D-3Eo7Phe14tIknX4GY_W3uiWO0,3407
1549
+ pyrogram/raw/types/input_keyboard_button_user_profile.py,sha256=srXN0BcOUOLM_DJyKmAqy8cbhB964UXmdG-OPEyoG6s,2463
1550
+ pyrogram/raw/types/input_media_contact.py,sha256=DXYQYA8EYsjlVelsCt9CEBGBd4JeNt9LZHvhwRB5ji0,2877
1551
+ pyrogram/raw/types/input_media_dice.py,sha256=PN5WyugWhTG-c3iaQ2RzAMxUIr8f6CvQm5wKcmOMqos,2154
1552
+ pyrogram/raw/types/input_media_document.py,sha256=j8EhQA9hBacB10w9GUF9lgelmNQaVZftHh0j6akfD-M,3281
1553
+ pyrogram/raw/types/input_media_document_external.py,sha256=Kj7OlzgKHJL2Fspo_zyWJQsthJOe9DLF0b4uvAsPSf0,2891
1554
+ pyrogram/raw/types/input_media_empty.py,sha256=VGwQSA7e1hmmrTfffGUGJ5gbM6nGOotiX4EdA0GQJ_0,1980
1555
+ pyrogram/raw/types/input_media_game.py,sha256=Xj1tDeRyQpk-Wz4xQV7fHcxPO8Dat1ea_1UTUQdu8xc,2161
1556
+ pyrogram/raw/types/input_media_geo_live.py,sha256=mYmO70rx2hKX62mQ3OtU8rq6xF65rKnUAbH_uBTcyLw,3929
1557
+ pyrogram/raw/types/input_media_geo_point.py,sha256=w-3tBPlikIj2tvnX8Pw2wslniAirrbsT6QXABr76RPg,2256
1558
+ pyrogram/raw/types/input_media_invoice.py,sha256=bi_io7BQkM4bZU1WFkmUVW5j_w4e4htUTth6X3udhEw,4853
1559
+ pyrogram/raw/types/input_media_photo.py,sha256=SdX0EnVvAII5aBDDUdDTYr-3bX5I5Lh_yReEz7J1pgM,2903
1560
+ pyrogram/raw/types/input_media_photo_external.py,sha256=uYXp2QqbGyVj0_ZZrTk6R_wsJ4y8fnbsxzWX-0DWTi0,2879
1561
+ pyrogram/raw/types/input_media_poll.py,sha256=A9skRMTQ7PSafVn4zhqCmofmseQ46jA9BZSO7IyI_WI,3669
1562
+ pyrogram/raw/types/input_media_uploaded_document.py,sha256=6kS5wW5H_dRViJfA5-WEqSSO2qVNYiTbyirqVA-Wl7I,5063
1563
+ pyrogram/raw/types/input_media_uploaded_photo.py,sha256=4Qpw_UyKeY0WXrbVeEb5In-kxTXqHvTutQnCPkVdYa0,3430
1564
+ pyrogram/raw/types/input_media_venue.py,sha256=RqBi4fIgN7TwdQ5Bsbexjypic_Smv6CJSZNISD08W3E,3351
1565
+ pyrogram/raw/types/input_message_callback_query.py,sha256=vKOnT24KE4kAMzkg_5Cp3c0j_yBOiuiJ6VvRFsfNr4c,2378
1566
+ pyrogram/raw/types/input_message_entity_mention_name.py,sha256=znhRymOhtS-gj5sWw9vcHYZ8idF1Oz7c3Nmxp_HcYY8,2687
1567
+ pyrogram/raw/types/input_message_id.py,sha256=406wLw1B6-AbZmp8CauanzMRCB-OwopNs31JvhyG1ZM,2104
1568
+ pyrogram/raw/types/input_message_pinned.py,sha256=SXhUTNH6lkU9Te8IhgKnIXQCuW7BbHbtHBAKxWmaqRU,1994
1569
+ pyrogram/raw/types/input_message_reply_to.py,sha256=Z1axE2oGkITe9AUHDdHjxR1-itUGPngoWalWKMQUyg4,2124
1570
+ pyrogram/raw/types/input_messages_filter_chat_photos.py,sha256=f5eZINZrV1SPHX6eZmC7u4YFOmF8aAXwbsrwK7hAC0Q,2040
1571
+ pyrogram/raw/types/input_messages_filter_contacts.py,sha256=1uSg1-X2EU04zkKbU1SbhIrLjRl-sSBe0sIXxN5xBUA,2032
1572
+ pyrogram/raw/types/input_messages_filter_document.py,sha256=6aCQxgP7Od-PXalnmG_VeWlln697r6cpuoiZ-IMxI4Y,2032
1573
+ pyrogram/raw/types/input_messages_filter_empty.py,sha256=0ZMpQQfTHcYCusSRHSSnDGVfbwx6z6KlYHA_1_0PnhY,2020
1574
+ pyrogram/raw/types/input_messages_filter_geo.py,sha256=nGBEvWAWyRmhSmc0i8aAOwHMc9RIUZCw9ROuFlAwYwo,2012
1575
+ pyrogram/raw/types/input_messages_filter_gif.py,sha256=uSXw8_mkS1QwhwUzaZg7dsKXG2h6PgGrZ6cgg8zQhns,2012
1576
+ pyrogram/raw/types/input_messages_filter_music.py,sha256=Xik7xPjZUDdvcZA5VDRhfI4uTCEO4a_8a-5Xe4ODNyk,2020
1577
+ pyrogram/raw/types/input_messages_filter_my_mentions.py,sha256=AKEKm5yeDzVo4sBpFiEngMQWKJpjGcyymMDjTm3Y8hk,2040
1578
+ pyrogram/raw/types/input_messages_filter_phone_calls.py,sha256=bEmnL5lwGLxrCw4b-ROrbX76eOfuyFoDtlkaGn9kPoo,2296
1579
+ pyrogram/raw/types/input_messages_filter_photo_video.py,sha256=sa6dilPZ1VEgwu9lGu7bnCf41xMY85iEBf5pGo4CzIg,2040
1580
+ pyrogram/raw/types/input_messages_filter_photos.py,sha256=PJi4FAvahpZW0Q3KClLBrWO4WHsV9EwxapuL9TG1KhU,2024
1581
+ pyrogram/raw/types/input_messages_filter_pinned.py,sha256=UYcFeZmhkX8SH0RS6C6QJlFMDbBwuL7N-RW5CxukmG0,2024
1582
+ pyrogram/raw/types/input_messages_filter_round_video.py,sha256=r7M5bDkZjQX0TRd3pv4ImUIHNIgLtlY6TOigMiunVJs,2040
1583
+ pyrogram/raw/types/input_messages_filter_round_voice.py,sha256=a7a0wnAOfYqcXa1rz0Yw2-xEf00DJl6KzbCHAjdh0rA,2040
1584
+ pyrogram/raw/types/input_messages_filter_url.py,sha256=bSN6Ax8PiFPgCau7-ff8Q4-seSsW2FFClVuxeHMra5M,2012
1585
+ pyrogram/raw/types/input_messages_filter_video.py,sha256=d-BLzRyUrDpiWQKwGAw6FIkSUbUr20f64gjG3dWwpwI,2020
1586
+ pyrogram/raw/types/input_messages_filter_voice.py,sha256=efnPAJ67eaILJvQIL0VPGo1SI_JX6viZMs3ky7Q1oAE,2020
1587
+ pyrogram/raw/types/input_notify_broadcasts.py,sha256=ZHzXgKZTibDHZQm2Z_zDyOIO67T5CU-klogKS3Z0VYg,2009
1588
+ pyrogram/raw/types/input_notify_chats.py,sha256=o2tz6Lbl3VUqMWmtI6H0_XL-wALpqeZL7niZYwEZGJ8,1989
1589
+ pyrogram/raw/types/input_notify_forum_topic.py,sha256=3fcLlyakqfh5ynFDCav6aB4wP7Fn2dmQFHLWnmcJv4s,2457
1590
+ pyrogram/raw/types/input_notify_peer.py,sha256=ILJF6qVtpc8ChSdyu01IT8bmmBn0b6ClTt_bYEZrYxE,2188
1591
+ pyrogram/raw/types/input_notify_users.py,sha256=cM5Jf2lDo1eHzxv28LotLG7-omXthgDNFSLQEACeZxQ,1989
1592
+ pyrogram/raw/types/input_payment_credentials.py,sha256=8aPaY6KATJo4SvHPgMQv9guThMDF52ALlm1VkNwQb1Q,2509
1593
+ pyrogram/raw/types/input_payment_credentials_apple_pay.py,sha256=4MQLTUQFyoLX_24N-uiXbXiXkabGh9eMPA34Qh_SI0I,2326
1594
+ pyrogram/raw/types/input_payment_credentials_google_pay.py,sha256=MfHSkIlfPiP_Xsmk-zU_iJOc_fmWnJmbLnL71dEXYjk,2341
1595
+ pyrogram/raw/types/input_payment_credentials_saved.py,sha256=_gk_oeI5uU9yihII_KfRDMLvRRYp3n7IkC6BzsCkFnA,2431
1596
+ pyrogram/raw/types/input_peer_channel.py,sha256=OvQjTUvJXc1c7Rss7RPkZeSsOL428qnSfVD1h8mJRcI,2441
1597
+ pyrogram/raw/types/input_peer_channel_from_message.py,sha256=GhGOxucxMsk-xGezugZTiqrSFrHX2oWXzcg-OpERH7w,2687
1598
+ pyrogram/raw/types/input_peer_chat.py,sha256=HvI5X4WelPC3ro9Q9bcjDa4ZH5Z3UKKrRAevxG5jCHk,2145
1599
+ pyrogram/raw/types/input_peer_empty.py,sha256=yUCKKaoEQ9cc8qmKm1gGCtmtB4JVcchf-aDOy86RbjY,1975
1600
+ pyrogram/raw/types/input_peer_notify_settings.py,sha256=gXENJs6GVB4_gTkwtkaOw80Vrs1UDfhrXLIQ0U_Ymws,3679
1601
+ pyrogram/raw/types/input_peer_photo_file_location.py,sha256=Pj1TJkh0Mvoweh1_mjkw5JHo_-0MnBI272ghYIciFkA,2740
1602
+ pyrogram/raw/types/input_peer_self.py,sha256=ivfJrFlsADJGWBEETnKBevGYf01csjCsk9UF_-9RGIY,1971
1603
+ pyrogram/raw/types/input_peer_user.py,sha256=i-0JZ2dm8rMFwpSUhc26St2zWjML_PtW72RxgmZaV1A,2402
1604
+ pyrogram/raw/types/input_peer_user_from_message.py,sha256=HMlUv4OjxFju0QeJ6AcuY6ScQMNYwc0b7pK5_wawNw8,2648
1605
+ pyrogram/raw/types/input_phone_call.py,sha256=D9rY6FTYs57XNuUKhYqWPzPzyi2EmLmTdsJTN6JRw8Q,2366
1606
+ pyrogram/raw/types/input_phone_contact.py,sha256=k7OyDj7socLleay4NY7YGZdSgu5364DqiCf3YAZd8hs,2857
1607
+ pyrogram/raw/types/input_photo.py,sha256=NN4M6bZD6Kbrh2Gm8Hndd57IhgK67qmtWZ6UNMXc4FA,2626
1608
+ pyrogram/raw/types/input_photo_empty.py,sha256=BKOU-cKA8eiZzHLo-2Tksp6QClrKdX_eYp6FDT0PBvA,1980
1609
+ pyrogram/raw/types/input_photo_file_location.py,sha256=gldSxCI4zeciSobZBuUamoSFjHQ9B6u3Irrd5zGEcv0,2924
1610
+ pyrogram/raw/types/input_photo_legacy_file_location.py,sha256=wda24RNpC8MhQagV1dV6xjzi2REwURhiR8SigaTEWpw,3383
1611
+ pyrogram/raw/types/input_privacy_key_added_by_phone.py,sha256=dmckSevH_pV2z9No6kh2UufkdLJhIt61l8Vx2uyUSok,2033
1612
+ pyrogram/raw/types/input_privacy_key_chat_invite.py,sha256=MmpXTXnFXWQZ5WrXbU29JmnX3nF1TuCXoUoYTl2iPnw,2025
1613
+ pyrogram/raw/types/input_privacy_key_forwards.py,sha256=bdL8JW4svN3hOQOkD4CCBix_jSOjrWh4j7LUaoyI-Jk,2017
1614
+ pyrogram/raw/types/input_privacy_key_phone_call.py,sha256=OPxtWXMfGjILlxYMq_4VIceXWHtuz3afGQbzpOyQUZo,2021
1615
+ pyrogram/raw/types/input_privacy_key_phone_number.py,sha256=aq1DIwQjsqI0egplcnCFoRv5Rx6n1T85s9gjQ8vK8ac,2027
1616
+ pyrogram/raw/types/input_privacy_key_phone_p2_p.py,sha256=iQUkeaiTYp2R5b2R-Av5IDvToPIv5o3j1ZKwecJJsg4,2017
1617
+ pyrogram/raw/types/input_privacy_key_profile_photo.py,sha256=-LZew6aBG4sHtihNFFR3N13LWvgZxo2s2oD5KraCh5A,2033
1618
+ pyrogram/raw/types/input_privacy_key_status_timestamp.py,sha256=zncJr3dgpasBWIeazb9JwqxxLKLec1irxmZUYHH4jzA,2045
1619
+ pyrogram/raw/types/input_privacy_key_voice_messages.py,sha256=NpW2-9KM-j5snYgOYXAJqzlrxSVcmU1NlDRG3uWGzJg,2037
1620
+ pyrogram/raw/types/input_privacy_value_allow_all.py,sha256=47AuX7N3tF2YZZ1i9VORoAJXY2wWi_vfOBD6B2SPvg4,2026
1621
+ pyrogram/raw/types/input_privacy_value_allow_chat_participants.py,sha256=RVVSCtU6iFA7qbxkdUy0D9l7MWJnDljKbz0dS5LbTho,2274
1622
+ pyrogram/raw/types/input_privacy_value_allow_contacts.py,sha256=x3pTQcwEjuLytb6WwRfqCqOS_Kv0MfX_3NKzr1YAv0o,2044
1623
+ pyrogram/raw/types/input_privacy_value_allow_users.py,sha256=Pr3NLqpYoSp4i0luF3tai7FqFf3L2umf8gtXk84KWRs,2268
1624
+ pyrogram/raw/types/input_privacy_value_disallow_all.py,sha256=Y5X6MyjQeOjb6217VfWZsXHP5EcRUYW-bBvHp98i8Rk,2038
1625
+ pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py,sha256=9biC8-x9-GZLgu8EDkwh5WLnc06U5lD3996bj1dbQgM,2286
1626
+ pyrogram/raw/types/input_privacy_value_disallow_contacts.py,sha256=9uGI1mVGc2bg6zDVQQJlWxiYmR65lYMaViQCwqiFLCI,2056
1627
+ pyrogram/raw/types/input_privacy_value_disallow_users.py,sha256=g8doUyABb9dUcEP7Hn8Lq9UKm34XIHccSu4Aypq18A0,2280
1628
+ pyrogram/raw/types/input_report_reason_child_abuse.py,sha256=I9haymrcS1-xLsvtuy8nNrJjUiJkW_FLRYTEtFeZAKQ,2030
1629
+ pyrogram/raw/types/input_report_reason_copyright.py,sha256=qXTSiqagkpeHw-tCNZ4dCOaKLYxAyKxE35cz3uEgbG4,2026
1630
+ pyrogram/raw/types/input_report_reason_fake.py,sha256=ZvOS-mD872f8MB2gr4Bk1zf04cPWbGHEbb9eTUm-3a4,2006
1631
+ pyrogram/raw/types/input_report_reason_geo_irrelevant.py,sha256=uEKA7ScAGVXh8u52_VTHZ-j3mxN3prL-BlJPsNxHqXU,2042
1632
+ pyrogram/raw/types/input_report_reason_illegal_drugs.py,sha256=R0WxwN9P0sJsjqvRfqODo1GW9J7LI6NBIjdGLB-b5Us,2036
1633
+ pyrogram/raw/types/input_report_reason_other.py,sha256=CplrBxu3MFkf-OnIuweLIswDHsjjO3fyDXwSIzb0Vy4,2010
1634
+ pyrogram/raw/types/input_report_reason_personal_details.py,sha256=lPX8B7JuI4fOX53_ib26Nl5xcMHmTWC07Y2Bkfx1K88,2050
1635
+ pyrogram/raw/types/input_report_reason_pornography.py,sha256=4Y2_BKJP5j3Ytgk9EXPNtI9_XStyqnTuTuusB7SmUpg,2034
1636
+ pyrogram/raw/types/input_report_reason_spam.py,sha256=uN7owxPzKGe65XMUdhoE7O-ELGZFsAlT9yBr3e7jVYM,2006
1637
+ pyrogram/raw/types/input_report_reason_violence.py,sha256=nOnnzusd_x9enhGtRNUIcy1bPUMyAh6ian1TGJUJrMs,2022
1638
+ pyrogram/raw/types/input_secure_file.py,sha256=RVxlOrDCmQyQQKhaQIn0z3SntOIZuQu47Ec8VNWK-Z4,2371
1639
+ pyrogram/raw/types/input_secure_file_location.py,sha256=yHhzqPtgrmPVgflv2C1sMtc4xJysSwBXzHwiMy7GM0g,2405
1640
+ pyrogram/raw/types/input_secure_file_uploaded.py,sha256=wmrOoMA4C-_-VfKmJ9MznDIzwKgghFnloAbhfkh2loM,3050
1641
+ pyrogram/raw/types/input_secure_value.py,sha256=wGsKoGyP19oPosUF5NSVbRExwaZcNPbyEEPljr5BxBs,5597
1642
+ pyrogram/raw/types/input_single_media.py,sha256=fxKb2raR9ZSzM6ecXReE7c-1bmb_SIMyDXRVsmLrXDk,3187
1643
+ pyrogram/raw/types/input_sticker_set_animated_emoji.py,sha256=kLRytwZv8KyVdEq2M1IQjoEgr_0qH6D9nrdR4YbdZNA,2035
1644
+ pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py,sha256=rksc703rVyMAqCie8ZZ44Por6DOb8HY3hYoe3Etvvkc,2075
1645
+ pyrogram/raw/types/input_sticker_set_dice.py,sha256=ZwaKgT8nfnuCkjM9HW2S7eTuiYWTSaTdcIBikt0c11M,2179
1646
+ pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py,sha256=Es2EucrERLdPb4gYHes2HoJ7UTi2bcC3AoyVzCZQphw,2065
1647
+ pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py,sha256=EMF329AMWy2zkfwOsd00fmiNJ9esealsX6jPWvT_PGM,2073
1648
+ pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py,sha256=Mlb8FHarBesueSoruXGi3K_9Y0jOUfMlj3kYmzPLXLo,2071
1649
+ pyrogram/raw/types/input_sticker_set_empty.py,sha256=jTyQCwKL7C9LbayUoWSWgkPhtebDPKlULC0YPovy22g,2005
1650
+ pyrogram/raw/types/input_sticker_set_id.py,sha256=7uhuxXgHFA7eFNGZh1BVXHMWlPjb99-cNhiVJbE4nsQ,2379
1651
+ pyrogram/raw/types/input_sticker_set_item.py,sha256=i5O0BfeuAtA9F-vh6YUvsZXzvPdAzDPyJDb6HRLp_B4,3374
1652
+ pyrogram/raw/types/input_sticker_set_premium_gifts.py,sha256=zkEcmS9vBa95if7LXHCG7Dm9Qqd4bXwFvejviKqB3Rs,2033
1653
+ pyrogram/raw/types/input_sticker_set_short_name.py,sha256=QXOEZ-s5EXNO-6ZodAbvzmlu64drOTfWCOzYCcd3BT0,2217
1654
+ pyrogram/raw/types/input_sticker_set_thumb.py,sha256=O3Ivh-ZzOt9FlYoyI-v5SL-1xrAS7NtFsh69cpJoTZ8,2560
1655
+ pyrogram/raw/types/input_stickered_media_document.py,sha256=vkiYiYnqc45KIQgrWZJELpf1_adEV9A1TcLhl5lwxtE,2236
1656
+ pyrogram/raw/types/input_stickered_media_photo.py,sha256=OCcASNuqBNbh1PKiJSQc8D0thH6nFBjm43Pw5Z9WK2w,2214
1657
+ pyrogram/raw/types/input_store_payment_gift_premium.py,sha256=glAOG319nJKuVMskY7BtvY13ReGiUczVvyNES19uJ84,2713
1658
+ pyrogram/raw/types/input_store_payment_premium_subscription.py,sha256=TtRqTlLkz2d0ELlGntn5lORpP49w8ztw6AWOU_w47UQ,2610
1659
+ pyrogram/raw/types/input_takeout_file_location.py,sha256=v799gEMi0yPONMSUN2I7EPMEB7BVl-etQzGX4aP2xyU,2023
1660
+ pyrogram/raw/types/input_theme.py,sha256=wRTt0H-l2FIrpDDseAKj10AfoW-B2Zgg2B8553QnaWg,2346
1661
+ pyrogram/raw/types/input_theme_settings.py,sha256=WezYkpGz8-QeRnNQ01NSEofHsS5xv4wFaFonmO0ciVA,5043
1662
+ pyrogram/raw/types/input_theme_slug.py,sha256=SkdN30u7AZzjbypOdBpTHr5LHl0p_RvrIYExx5ihedQ,2118
1663
+ pyrogram/raw/types/input_user.py,sha256=vLG6nrEx1UDGC42qL4t_YXAIFHCgVB6MUNM-gVmGGwk,2386
1664
+ pyrogram/raw/types/input_user_empty.py,sha256=PCy41USqWtyX3e_i5BsidzPb9zpZITxKCXy2FOQm1PM,1975
1665
+ pyrogram/raw/types/input_user_from_message.py,sha256=EPzhLh4yz7TsTX493PkpwImBgVRsXW6yfm9uovkSFbc,2632
1666
+ pyrogram/raw/types/input_user_self.py,sha256=KpQV5PTyQUtTFJIz4rAcEsFjC9cd24XXRjehPTUZhCg,1971
1667
+ pyrogram/raw/types/input_wall_paper.py,sha256=04qerOj9z7z9YRggvuPLX4ijV18N6RFjhSdyTNvLmuQ,2366
1668
+ pyrogram/raw/types/input_wall_paper_no_file.py,sha256=vN0YaAez59fE6M_dlAPbyCJ0iZ4Dk74WsOci1HfwunE,2133
1669
+ pyrogram/raw/types/input_wall_paper_slug.py,sha256=CXJtibSMOn0cRma5Vw9BRtpUM52jsgVPnvYngL_ROVc,2138
1670
+ pyrogram/raw/types/input_web_document.py,sha256=wr-INk1rT-bjWYwUyxYcZ4VDMasE1stKqTQ4y-_wD4Q,2906
1671
+ pyrogram/raw/types/input_web_file_audio_album_thumb_location.py,sha256=Azw6D3VCKL3RACHh_kcc49FJBjjt-O2IwQ_FamJLoS4,3532
1672
+ pyrogram/raw/types/input_web_file_geo_point_location.py,sha256=QR2crOhend2eAoFDDs7b6avFS9wRSJQK6Ba6_XqrFSQ,3282
1673
+ pyrogram/raw/types/input_web_file_location.py,sha256=GcyWFYpm3-UTx1jGipz-kE0XAm7FWlE2J1eanGYd2SU,2400
1674
+ pyrogram/raw/types/invoice.py,sha256=NlCT0WxRvukvi9SbXc9xiuYET-oM26DLTNfXw-jcGbA,6967
1675
+ pyrogram/raw/types/ip_port.py,sha256=pcXpisYDNabIEgvLKAUfHYM9Y4EYkUfsSbq0cLtteSs,2275
1676
+ pyrogram/raw/types/ip_port_secret.py,sha256=LNHfiJJMQT1U98EdcObIbEu9eqeCnY2phEnHBov9zo8,2507
1677
+ pyrogram/raw/types/json_array.py,sha256=rfmJiVjJ5jeEP6Kq2our_0xsio453KTBOoNz1Zi1d6g,2189
1678
+ pyrogram/raw/types/json_bool.py,sha256=2xURCstx3hNaxsw-3qInjguSMe4T2gHaZK5AwngzP3M,2098
1679
+ pyrogram/raw/types/json_null.py,sha256=Q3thsriD4odlA6geUG6RbgpbOjwCbDcIOrX8Ojan910,1951
1680
+ pyrogram/raw/types/json_number.py,sha256=qXTt1t14EJo2tU3FouoHTHbyt20eK6QdN1PEhabc9dw,2125
1681
+ pyrogram/raw/types/json_object.py,sha256=q5A6vbg7xTkTgeNLeyvlnqfy3-3Z6ljKG9CPpSgH_Kc,2217
1682
+ pyrogram/raw/types/json_object_value.py,sha256=RFcQDmIf8s2h3ytdBlYu0ZZvhu1fnEI9VBhdeNtPx3A,2377
1683
+ pyrogram/raw/types/json_string.py,sha256=7MHwy6ub-6ixnzB_FogtmiiSfAj07qp_QaIPfpCqglo,2110
1684
+ pyrogram/raw/types/keyboard_button.py,sha256=NJ-6Z2zV4XJF2uZxNzOh886QTGzE_5vc7uSK3bY0dMY,2122
1685
+ pyrogram/raw/types/keyboard_button_buy.py,sha256=GCLd1uuvAkDp0hOBJrADG6KnucNL4ypKkKJORnkfoXQ,2134
1686
+ pyrogram/raw/types/keyboard_button_callback.py,sha256=0qS6XzXmoVggaShANyKJWBr9d2T3zIfFNuok4jyZxAQ,2746
1687
+ pyrogram/raw/types/keyboard_button_game.py,sha256=0rF2e_a5zIp-Q9TRCBC0hhfbWS6TPwjFm43igXDqz-Q,2138
1688
+ pyrogram/raw/types/keyboard_button_request_geo_location.py,sha256=2GEx2T6RVKGLCOXNEvIYzhPOdTh-HzhH1_ieVmn3ErM,2194
1689
+ pyrogram/raw/types/keyboard_button_request_peer.py,sha256=pCiWu9m3RLk0Opr2f9ZjRZfuVjN5vrHg1EF9ICybw-4,2719
1690
+ pyrogram/raw/types/keyboard_button_request_phone.py,sha256=ElAvYS6RonO_97WZkB0oEPp8939sAGvg3mOJ5JF783U,2170
1691
+ pyrogram/raw/types/keyboard_button_request_poll.py,sha256=8iw4zn4Rde8L0I0KviuDW4_I3Pis481Vl2PjI9e1HmM,2550
1692
+ pyrogram/raw/types/keyboard_button_row.py,sha256=Wv7-tv5D2ZIyZ27h8K0zIWxXMEn0O9qDCnOUV0RtPYM,2267
1693
+ pyrogram/raw/types/keyboard_button_simple_web_view.py,sha256=ZnjeGAyDyn5jM5YYSjUInItw0F6T6OE4ByFoDJbb9lk,2354
1694
+ pyrogram/raw/types/keyboard_button_switch_inline.py,sha256=TQgH7X2kEumKS1b9s9KmIr-V7lKi6AdtRKhatxjnAHI,3225
1695
+ pyrogram/raw/types/keyboard_button_url.py,sha256=gGHcEYCBeb0mcq_olzOGQ3PNklZDZLZIhngWnqtiKlE,2314
1696
+ pyrogram/raw/types/keyboard_button_url_auth.py,sha256=WUXy-EuveQPNjs88i5mmBliLIqeA8BGaoQ5pKfcW-Mc,2998
1697
+ pyrogram/raw/types/keyboard_button_user_profile.py,sha256=Ek6-i0OpFIXFPhcqkZEQnXUxUR3pX38dm5neWhD-mfY,2387
1698
+ pyrogram/raw/types/keyboard_button_web_view.py,sha256=jAsT1nK-LjQKichxAnnkhq4_QaCUSllGvBD8Dx160GU,2330
1699
+ pyrogram/raw/types/labeled_price.py,sha256=Y8E_zOeMGc6Ptgqm5Otsu3gXrN6gQoBL7OxXsk_OXDs,2333
1700
+ pyrogram/raw/types/lang_pack_difference.py,sha256=_gkaYG99-Q1TvMTeVWWD45_CjZYDyjtzhlUdQ4NhpkA,3227
1701
+ pyrogram/raw/types/lang_pack_language.py,sha256=y01SJWuCoClRNw8dgEZjUa806fkASoS75wxqR8IRZpQ,5222
1702
+ pyrogram/raw/types/lang_pack_string.py,sha256=tsGsTTRMzvMfl9lolre_3jl0-K8v92rMLPymu9ML5n0,2514
1703
+ pyrogram/raw/types/lang_pack_string_deleted.py,sha256=FHm_i7jl6NtKuIGhBRItDfAXcimhLtMOxpFOM_BQEYg,2344
1704
+ pyrogram/raw/types/lang_pack_string_pluralized.py,sha256=LtUVA_V0tvCYp004hwejadaE0uE8wBti8KRqO76_T7o,4665
1705
+ pyrogram/raw/types/mask_coords.py,sha256=J1tNC-rbfazSLsWgu6QimRENhOUozhaVBufGAJhFCzE,2635
1706
+ pyrogram/raw/types/message.py,sha256=MHekq9JWMId0eAm7Y3eiNfBJ06PpInFXzD2GlNh711E,12715
1707
+ pyrogram/raw/types/message_action_bot_allowed.py,sha256=ZU0QCeRbloG2tJZwVDsL90dNm_Slhw6REJVmGA-Y4e8,3061
1708
+ pyrogram/raw/types/message_action_channel_create.py,sha256=HPGX-HajnDEQEv7tdCPoeNvezRyGqkxvWrHsT50IQms,2178
1709
+ pyrogram/raw/types/message_action_channel_migrate_from.py,sha256=nLaVLvjp9bE9Ly9t2nYYatkvLbuYFMbtNHKdZeSU9bU,2419
1710
+ pyrogram/raw/types/message_action_chat_add_user.py,sha256=9O_IEJTum8PPYlesHkAdxXUy2dUZJi6QgB9bekehPpA,2215
1711
+ pyrogram/raw/types/message_action_chat_create.py,sha256=JaMtjcf_A4l987WK2A1E5s9Oj-_dFmeEfT-Y6T7Wimg,2409
1712
+ pyrogram/raw/types/message_action_chat_delete_photo.py,sha256=A_tuo9U1huBkUPpeiU4qFYoEOCQ3yGdruxte8MkVFGo,2035
1713
+ pyrogram/raw/types/message_action_chat_delete_user.py,sha256=ERG4lCyl8alTRqT3S4PIVVbpyEfZeuUMLYDr87ddmZE,2205
1714
+ pyrogram/raw/types/message_action_chat_edit_photo.py,sha256=eJ8jpOmK8w4TFLCVKmFd3K5_W4u5zd9y5F_wnWpJRHA,2223
1715
+ pyrogram/raw/types/message_action_chat_edit_title.py,sha256=-u5tTAL400PsT7rXFQMAsegRZn5g7inXnS1q9lrZ1Y4,2178
1716
+ pyrogram/raw/types/message_action_chat_joined_by_link.py,sha256=K3-N08bMV0vlhjRWlN0CRC_cpTHHKns25wcHl8XeUCU,2238
1717
+ pyrogram/raw/types/message_action_chat_joined_by_request.py,sha256=6d4jvMTl-pcOJcZsJZMklq0wojx_N1uj8jg_e1RSe1c,2051
1718
+ pyrogram/raw/types/message_action_chat_migrate_to.py,sha256=U6usyFJ2BK5nAKBm1I8zpAxWgcClRBad8U3u42_9BSc,2228
1719
+ pyrogram/raw/types/message_action_contact_sign_up.py,sha256=Xk-eqoWDVWI1gHSb9P2dD63BgRy_DChOGgnSv8tufjw,2027
1720
+ pyrogram/raw/types/message_action_custom_action.py,sha256=xRChaIq3S56ICycCt4FuLm78OV2ghI15_qLNcT8AM8c,2192
1721
+ pyrogram/raw/types/message_action_empty.py,sha256=1SJ0usND2aLOhjGkW0zkW-1neYF97nIBQ_vIYxqhmM4,1995
1722
+ pyrogram/raw/types/message_action_game_score.py,sha256=75zzl8Ai23lz3wKjmIUks1mIVaSOS9CKwIy2DyID8K8,2385
1723
+ pyrogram/raw/types/message_action_geo_proximity_reached.py,sha256=X3Su77fnXhd_1mT74mpbpapafBgaSSk61bzeXwOQHXc,2727
1724
+ pyrogram/raw/types/message_action_gift_premium.py,sha256=ih_Q1a8u4Ph2fQcozqFwCT_c8hPcVxXK5AHvXG2KcRc,3574
1725
+ pyrogram/raw/types/message_action_group_call.py,sha256=mfg5sFoso59B4OsCAZ8lqEd9_TeIIi1urri3zQt1RGI,2668
1726
+ pyrogram/raw/types/message_action_group_call_scheduled.py,sha256=iHCKCPunYIseJXoWcxjyNSH-WF9qBERJuriwn8JzdsE,2542
1727
+ pyrogram/raw/types/message_action_history_clear.py,sha256=nt8XU-Y7ER3Hx1WaHIpatg3b4SspEXzmKvWElZtsryg,2023
1728
+ pyrogram/raw/types/message_action_invite_to_group_call.py,sha256=XMYJ7jJO35K1XeP7SjGfUzGLTGKskF0uIMcyfaludTk,2509
1729
+ pyrogram/raw/types/message_action_payment_sent.py,sha256=Wt0oZSaMGhe3ZzT2ZkZY_o2ex269r5Zg1ZPyzrY4EQU,3599
1730
+ pyrogram/raw/types/message_action_payment_sent_me.py,sha256=MTpio1wcsKZumohWa9YJ7pOrDKlFTQ28ylFuaMPKOIU,4621
1731
+ pyrogram/raw/types/message_action_phone_call.py,sha256=D-Tlys_P2_wTAqBZ3SothxBu14cCG-LAE_fDuNi2FmM,3345
1732
+ pyrogram/raw/types/message_action_pin_message.py,sha256=A0iuYzmiLUSxg_Fluq8simOLaYWCN-DEvawglhVJMVs,2015
1733
+ pyrogram/raw/types/message_action_requested_peer.py,sha256=n_mmF3ZHyZz5vNiBn8L8_zhJ_1V2RdslkyU5nzfjtLo,2446
1734
+ pyrogram/raw/types/message_action_screenshot_taken.py,sha256=gIGCRp__mj8MztPOV_QdqE7fdeMrhPFgpt5-3ym96-4,2035
1735
+ pyrogram/raw/types/message_action_secure_values_sent.py,sha256=Er00kg0cHoaH-T7TFzwdVoxv924w1KaHEEADr1_ZVZo,2297
1736
+ pyrogram/raw/types/message_action_secure_values_sent_me.py,sha256=HZDslEC7o2K89EUVD57n4y9SLm_4oSBJ1PsF6MiDYF4,2679
1737
+ pyrogram/raw/types/message_action_set_chat_theme.py,sha256=0AJXY_jaJ0WaJsuTric5lYws_TgCBrQceFZ5n7gRm0g,2201
1738
+ pyrogram/raw/types/message_action_set_chat_wall_paper.py,sha256=7VX615HPh2SaDY5FrAc09TcoebBnKyBmPhSYZl-2-qg,2287
1739
+ pyrogram/raw/types/message_action_set_messages_ttl.py,sha256=RQ0mzZnZwWFiElBVRI9Fz8FhjabsqS44Yo59dbYNsw4,2729
1740
+ pyrogram/raw/types/message_action_set_same_chat_wall_paper.py,sha256=nOMiDqTT0BOU8H-1EvPqEqjO2nsZ02aHcCOhJCZ1GLE,2303
1741
+ pyrogram/raw/types/message_action_suggest_profile_photo.py,sha256=_0wHetLwtqMmcya1g6RzWMJQiOkVCw9fpxcL4Outzd0,2247
1742
+ pyrogram/raw/types/message_action_topic_create.py,sha256=UhaFrtCJcAFAPuj-5NA_NCwX2XhKSyta-HUoHaP65J4,2905
1743
+ pyrogram/raw/types/message_action_topic_edit.py,sha256=eAbEsXJITnUv4n2LcRGWvHU9ll1fkM4-cAkOZMefoZE,3532
1744
+ pyrogram/raw/types/message_action_web_view_data_sent.py,sha256=rAWHUQXFZJvJO5hDLDoClHkkKqGahLrKzGMECzwYb2k,2177
1745
+ pyrogram/raw/types/message_action_web_view_data_sent_me.py,sha256=XFgjyu6gKVljFR__VMFQnvJq8T5E4-8cI9CK1e1j6Ec,2374
1746
+ pyrogram/raw/types/message_empty.py,sha256=kDYCEVzmhiJJwjpWZih7UGl_k-dpufcCkbK1ymtL2y0,2552
1747
+ pyrogram/raw/types/message_entity_bank_card.py,sha256=4fHUS4mw8bMozlaEge179jheCAwfwzM5ouNvHp6eMsw,2378
1748
+ pyrogram/raw/types/message_entity_blockquote.py,sha256=faBVcLIsqtrIYd-sAsLFveWdIlh80MeQe0h_AZGMU7Q,2384
1749
+ pyrogram/raw/types/message_entity_bold.py,sha256=6Bcr-8yC6alZMzpdQZP0CCDxtYEpQbNDyr9jNTG6QKM,2362
1750
+ pyrogram/raw/types/message_entity_bot_command.py,sha256=YumY90zUE-2NvCmlzLoM6OtlzN4WaUIB08zrCpAZGKs,2386
1751
+ pyrogram/raw/types/message_entity_cashtag.py,sha256=37waTeeVpmso-lES7bFtJPZMA1atdcju71VXq2ULXHo,2374
1752
+ pyrogram/raw/types/message_entity_code.py,sha256=pihAKiuaN4z_YcqX0T98RGlanmECtt8gi0gh7frBL94,2362
1753
+ pyrogram/raw/types/message_entity_custom_emoji.py,sha256=H3slIEGdrENceAjiy8kSwz9--ynm-K5DiLGRs5_jpJk,2647
1754
+ pyrogram/raw/types/message_entity_email.py,sha256=aShBP_QhFfKndrPKhE55LoItfCWGqDXxkHwSTKYvNDg,2366
1755
+ pyrogram/raw/types/message_entity_hashtag.py,sha256=5Ik8bdpFFq75QvaIL4wdWBbE0NHMaVD9n0z29kuAxzg,2374
1756
+ pyrogram/raw/types/message_entity_italic.py,sha256=pH_FfroKJNPyQ-p735gwvgVhuv2nXPw-fvYnwBkXAMc,2370
1757
+ pyrogram/raw/types/message_entity_mention.py,sha256=cAwMFn6x_G55k4jDBsjWINfiPmzC6Q7VKGFRC2wUXP8,2374
1758
+ pyrogram/raw/types/message_entity_mention_name.py,sha256=-KHYke3pC0BGMGDuk_ReEaAPHNY-pb58kTNNfBgn0zs,2611
1759
+ pyrogram/raw/types/message_entity_phone.py,sha256=-nR_hEeb0xTEvERcatNYRuwMDC-gG5jdLfA5bV4luMY,2366
1760
+ pyrogram/raw/types/message_entity_pre.py,sha256=wH1ORyNAZWXpGVz8E9z9WJ2e00Aw-sS7m0j2HEpuhZI,2583
1761
+ pyrogram/raw/types/message_entity_spoiler.py,sha256=hI1_BYqwv6C-p05ohqnf4kPxN2iM4AaeBVwWcz5cWJg,2374
1762
+ pyrogram/raw/types/message_entity_strike.py,sha256=YJN_kiC8B6n2fPgNKsN52wGpxlijvIxFtI8kGXXHb0w,2370
1763
+ pyrogram/raw/types/message_entity_text_url.py,sha256=9J4m4PjVnKZwFOWp6j4R-KuYJ3s3yQOyUeF1ZOI292E,2554
1764
+ pyrogram/raw/types/message_entity_underline.py,sha256=aJWaScHAs-Fp3JpfKbFhv0qJpiYC5SbHbPm83kGxkpw,2382
1765
+ pyrogram/raw/types/message_entity_unknown.py,sha256=zV5asFeb_kNRKWZWyDrNyVv25YGbi89I9fW3eKdJhQg,2374
1766
+ pyrogram/raw/types/message_entity_url.py,sha256=_tKF74yAO5HkzsPHRsBddkKcJVeSk0m4pzl0i8TQZ1s,2358
1767
+ pyrogram/raw/types/message_extended_media.py,sha256=OPETmWXR3R4uWjMDeysFE6YHv15lxis3zpZz9zEGbow,2234
1768
+ pyrogram/raw/types/message_extended_media_preview.py,sha256=dus2NsoLXjjhyqQN5c7xYBxz95d0VwK-6pidMuV9xmk,3529
1769
+ pyrogram/raw/types/message_fwd_header.py,sha256=iuCOvxtqcXL95r6zJJUtdHrBr5I0ivut4BrWJIZdOrU,5501
1770
+ pyrogram/raw/types/message_interaction_counters.py,sha256=II8BW4WdpWXfceBw3SBTNZNpfU0IKswIF6IP7mZ9I2o,2629
1771
+ pyrogram/raw/types/message_media_contact.py,sha256=3PP2VwFo-JrQQ7y5SARWGwnxEiX0cIqmpr16k5RodR0,3393
1772
+ pyrogram/raw/types/message_media_dice.py,sha256=eavbqSzO5LDR7dgn51rCcS-sTFq0az2PXEFWKjfPq_k,2649
1773
+ pyrogram/raw/types/message_media_document.py,sha256=3m5ZIjkR_JtUAYJDkde5d909Y5_AbpsLjH9VN0_nPuw,3702
1774
+ pyrogram/raw/types/message_media_empty.py,sha256=HdCcqQT40zh9fwExseJ37AsO_eERVtMH1lFx881vBbo,2275
1775
+ pyrogram/raw/types/message_media_game.py,sha256=wuBf1RicjT5NBJ-iZb5r9zir-LIHz7Z8QKvRcy3fH6s,2454
1776
+ pyrogram/raw/types/message_media_geo.py,sha256=DTPpxCSGh9HHy1RFqw_4oJJ5id3Lva3_y3L8bEsMbkM,2457
1777
+ pyrogram/raw/types/message_media_geo_live.py,sha256=bg-E-jB1bVpgPloFmV9FWLWBoV72C6Cve4DzQ9_douM,3725
1778
+ pyrogram/raw/types/message_media_invoice.py,sha256=baCgcKMXWjcVsOjT_ajGvqKFAQCJ7aFckOM_Ga9vH8s,5586
1779
+ pyrogram/raw/types/message_media_photo.py,sha256=5iGyhWczQzIsykCmNUd2yFqwm4mL4o_uY6L30iYJt-8,3360
1780
+ pyrogram/raw/types/message_media_poll.py,sha256=z23fhNt9WDNfTe3jn-pXyEE8aZOjXHZsho9MpNslmA4,2739
1781
+ pyrogram/raw/types/message_media_unsupported.py,sha256=-P0XE_04_7jizxZHsd6DY_CrgLyAG1FxJvads-5xPNY,2299
1782
+ pyrogram/raw/types/message_media_venue.py,sha256=yioZt6-dEu7_dedwR2IKD3GH_YsEwzZQ32uIdHuYT4g,3572
1783
+ pyrogram/raw/types/message_media_web_page.py,sha256=QcHZCsj2QafX1YDSHH7pZTvr73lf8t9nOmECxw9jWVc,2505
1784
+ pyrogram/raw/types/message_peer_reaction.py,sha256=QwB93vlP58P3WU_Ax9wMOrDgzFOY2WP7zjcAjBI1NkE,3222
1785
+ pyrogram/raw/types/message_range.py,sha256=ttznQJMUm6UvW9Nw5bEnGYPHPyrPYPLZIKWJrmtqVS0,2546
1786
+ pyrogram/raw/types/message_reactions.py,sha256=8C98OjCzZbvP32g4PVVlZRZQV1rxpGj-3a_HFFbig0I,3439
1787
+ pyrogram/raw/types/message_replies.py,sha256=HnCu0Krlkq9azdKAKubFZ7v6T-qj70ax6bMsxhheEpk,4451
1788
+ pyrogram/raw/types/message_reply_header.py,sha256=-HAOcqFptqv1QpOS2w8Fy-OpC2RH8Bpm_LPz2pM-8BQ,3938
1789
+ pyrogram/raw/types/message_service.py,sha256=MUM4i31hPvYBomkqNyR_9GlxLdUhd_b1aiW-6au91AA,5782
1790
+ pyrogram/raw/types/message_user_vote.py,sha256=Zh8KGrt7c0RseIseYh6cKLmvQnM5pc6vsKU5JkNscwE,2558
1791
+ pyrogram/raw/types/message_user_vote_input_option.py,sha256=5BFBEP_Q8fKOUCd0RaZ3krjAFAsT1WYy9u11DU72-TQ,2394
1792
+ pyrogram/raw/types/message_user_vote_multiple.py,sha256=QCiW6RJ18gYSt-bCNDem5hsTHFhQfi4Vk0-ui1Jg2Bg,2639
1793
+ pyrogram/raw/types/message_views.py,sha256=EH86cHaBoDl3XwR3e8cCTkRdKgNoEh7C4Pg-QPaJZm0,3169
1794
+ pyrogram/raw/types/msg_detailed_info.py,sha256=KiOIwFWS-MrtEXJ7cHi2eLpYFCaOZ-hYfmlS8UWQPQ4,2834
1795
+ pyrogram/raw/types/msg_new_detailed_info.py,sha256=3cjYIls-_Y4mTEGGqBGyygxaQ8ju4OGEXUVRbiCUUys,2634
1796
+ pyrogram/raw/types/msg_resend_ans_req.py,sha256=bUY8q9KPtbA--bjigLg3AHAVsMHU_SfqhF0YE2ZZ7mE,2196
1797
+ pyrogram/raw/types/msg_resend_req.py,sha256=3JOHNIlQ6PqzV10x-FK5mw8elEiBP_u6J5urbmtuMU4,2184
1798
+ pyrogram/raw/types/msgs_ack.py,sha256=h3av269EKz1JaJkNCVCbjNJdbCw7vbXJBa3MaRpScq4,2159
1799
+ pyrogram/raw/types/msgs_all_info.py,sha256=Zxa_k38M7Sq6agQMnmryax1oGMqIup4a8sarqG4nINA,2368
1800
+ pyrogram/raw/types/msgs_state_info.py,sha256=9RmVu3HQwnbsAhespw0LVvgVmmvgy9Jlpw2lTz9-RrI,2365
1801
+ pyrogram/raw/types/msgs_state_req.py,sha256=KITi2VlXHhwO3genW7Z4uv17XfCVnkL4s4GcXRk89dE,2184
1802
+ pyrogram/raw/types/nearest_dc.py,sha256=eEZ1OqGPqnJAgIO8OKMCl07o18pMOEzuY1G3-vQ3luU,2788
1803
+ pyrogram/raw/types/new_session_created.py,sha256=JImsswuawRNSimbrMPgYM6BjiIbLeRH5h8CuGOBDUAo,2703
1804
+ pyrogram/raw/types/notification_sound_default.py,sha256=M4kRlj5NadD462kO1pXQQgWZi3iC2AciQd2ECOYieWM,2023
1805
+ pyrogram/raw/types/notification_sound_local.py,sha256=qc2zqfsN1Jf0o2_e9UdFz8uom0bEigRjcGG9xRY5B4s,2355
1806
+ pyrogram/raw/types/notification_sound_none.py,sha256=MPxh_zcCTF9rNKh_0nitDwOb88KPkl4yRwHejkFMZ0I,2011
1807
+ pyrogram/raw/types/notification_sound_ringtone.py,sha256=ZIXEtOxBQQLZozMtrgIcnyWxjp4ZbqrKfshPUVT-Pi4,2156
1808
+ pyrogram/raw/types/notify_broadcasts.py,sha256=qoI2NbnI2DiQZMWEVeZ8ZR8yE404MQpM_w9likMZnOk,1984
1809
+ pyrogram/raw/types/notify_chats.py,sha256=kL9GqH1OGz8ZuaSh_QJMNOMbA4ErH1Zsu9NzVa_jQko,1964
1810
+ pyrogram/raw/types/notify_forum_topic.py,sha256=48EU2UjT4kUe1M-o-EL-jntXCCrX1CEs0au21LPLmWM,2412
1811
+ pyrogram/raw/types/notify_peer.py,sha256=ICBihzJT47jH4xSzDCeXLg6yOfiWZ4MH0vopyCT6M5k,2143
1812
+ pyrogram/raw/types/notify_users.py,sha256=sU3jWWF8hFZXPS0tGroLAL6x1GHl0elmPpt1aRKjnuI,1964
1813
+ pyrogram/raw/types/page.py,sha256=2Bjw_15BKp6gRc1-VTqjjWSkGdS33Fzjjbf6zxnX8Q4,4034
1814
+ pyrogram/raw/types/page_block_anchor.py,sha256=13-HS4LnCBvSugWhJU30HiosiKoX22lmWfGMtItQ7M8,2121
1815
+ pyrogram/raw/types/page_block_audio.py,sha256=WrpZ7bXzGELIz7MxItWvJY2w5rzZLAV7C4hn3Jeu3Sg,2443
1816
+ pyrogram/raw/types/page_block_author_date.py,sha256=Fj_GR-H7zkSKKogiXX5jUp85WMRndjYXScBrlKb3F1o,2493
1817
+ pyrogram/raw/types/page_block_blockquote.py,sha256=FW88U5geL-XKVT_Sx4RvzgVRUSNGsaWa3SLCz37YKNg,2467
1818
+ pyrogram/raw/types/page_block_channel.py,sha256=Q-dNATWv_F0_dsQ7wzUNlYQt_9wWLWWcU764KYEcOms,2193
1819
+ pyrogram/raw/types/page_block_collage.py,sha256=yPqdmTHbjN0lzPmeEBG7MQumUOhvgwuJducZ0t7U1qI,2502
1820
+ pyrogram/raw/types/page_block_cover.py,sha256=zVLvhKxfpyUX8VvzoMh61BR3rnAVfuS66sYRMo3CGjE,2187
1821
+ pyrogram/raw/types/page_block_details.py,sha256=jZClO9W30qDEkTlvJbbtUI2bkUvILcCv2gmxjgRuDNA,2766
1822
+ pyrogram/raw/types/page_block_divider.py,sha256=2-TsMoP-VW77C1gr4F6zu2ede_S9GDcVhQyrKKYZTBo,1983
1823
+ pyrogram/raw/types/page_block_embed.py,sha256=AjpBTGUBsVmnSber94jEZKfEYNEmhgQ9IgL8ps31rR0,4659
1824
+ pyrogram/raw/types/page_block_embed_post.py,sha256=vmO9yCiOIiF3_NOAlhoYW6l6hJ1tT0ASyWTVkT3JOQk,3638
1825
+ pyrogram/raw/types/page_block_footer.py,sha256=71Q8WG27-qHmAbRd-MeqSSOgCEI2XFYBpqt8s4pR5_I,2178
1826
+ pyrogram/raw/types/page_block_header.py,sha256=ZbmjIrWGMVQUSJmSMvK4vo8mZg5CkzDQwwAE0MvjAPI,2178
1827
+ pyrogram/raw/types/page_block_kicker.py,sha256=GAVpLbQIJ6lmLWg4Js5WqAi6vYbhvxWdkvrYKuqVEzI,2178
1828
+ pyrogram/raw/types/page_block_list.py,sha256=P1GDUFb1oo-cuQhHJtX0bxGYtvDJcPimOYsBvR8-cXA,2217
1829
+ pyrogram/raw/types/page_block_map.py,sha256=ZTTSnQ6xnNjgaISZjDXHXunv-k8DZIw3hsJqFWaTiwI,2961
1830
+ pyrogram/raw/types/page_block_ordered_list.py,sha256=E54x2i5WtrWAgG6lN8ZNCOW60YdWCrKs4ODGpbd_ppY,2273
1831
+ pyrogram/raw/types/page_block_paragraph.py,sha256=cF0wb3WyUaF4xYZ6prHL4ekp3fyLYldW7UlD5mvaqRg,2190
1832
+ pyrogram/raw/types/page_block_photo.py,sha256=1q-1S26rmYcuLAnTctJ4xNBuAZ_5mAmgczxEKtqMsAk,3234
1833
+ pyrogram/raw/types/page_block_preformatted.py,sha256=pXaVqd2nKZrRM2eiBH5rF5lGJTYuLRfbRLjVEyd0MP4,2427
1834
+ pyrogram/raw/types/page_block_pullquote.py,sha256=kZDAssXkUB4p6whxC4Q8MVCArM_fHRNgT76FOTqec28,2463
1835
+ pyrogram/raw/types/page_block_related_articles.py,sha256=PtoQ57QoehPjal3E_AvKM4vPz809lbhebDfcqlCBmuM,2567
1836
+ pyrogram/raw/types/page_block_slideshow.py,sha256=pFhONHalrwjn6HuCp6DCxtt-4QCa381A2KOGBCGUik4,2508
1837
+ pyrogram/raw/types/page_block_subheader.py,sha256=KZcmzvUXF34YRmLaS9krhfVhPKTn06d_PieAdz-kFR8,2190
1838
+ pyrogram/raw/types/page_block_subtitle.py,sha256=nNOgV3ShKJthiJvSeNwQStHh8W0CHnMjaZqQBUIdvK8,2186
1839
+ pyrogram/raw/types/page_block_table.py,sha256=vjeCxqHMHzIV44tiJpn_4mIpq6lgelo3j9PB4gLYd44,3055
1840
+ pyrogram/raw/types/page_block_title.py,sha256=uFfosM6Ny8BB2XA3rmXnWo2mJqHqUP0mj6eoOubvVVg,2174
1841
+ pyrogram/raw/types/page_block_unsupported.py,sha256=4j5KYIjsWFyk9ik78UrAwK8txE6l4oA0P6oM4_dnBiU,1999
1842
+ pyrogram/raw/types/page_block_video.py,sha256=0fYWgF0k7DeIN1KovvceAZd1WVdJ_QClxNMk7hGkb-w,3004
1843
+ pyrogram/raw/types/page_caption.py,sha256=VyclLopPnf2KZK0ZhhY1JA_MJRmoYpQ_ASjhxZ3AxZs,2428
1844
+ pyrogram/raw/types/page_list_item_blocks.py,sha256=UDY5BI8V_h_Y3ArFyO_uLcyy4YHhey9awJZYEb8ERTs,2237
1845
+ pyrogram/raw/types/page_list_item_text.py,sha256=776a5w0tsGk9M40TmqJiOn-cfOqbafwQShNM28jUGXc,2185
1846
+ pyrogram/raw/types/page_list_ordered_item_blocks.py,sha256=-GJViNiy1hUYU1Cq-RAQ_tWsohk5imFGwvKOXIH7EJY,2452
1847
+ pyrogram/raw/types/page_list_ordered_item_text.py,sha256=t3nKsKCSyCSaxiaNEWxUcWmKmAGrqBnzyWSgEQWz9c0,2400
1848
+ pyrogram/raw/types/page_related_article.py,sha256=MPxNd0kIXZh0tkABp11625d8JIbDlGQs2xwwy6Cl5jA,4412
1849
+ pyrogram/raw/types/page_table_cell.py,sha256=85qmmCfJr0XDOj-gpjZWmbLp1Xdl8FMV_fEK3zsnzdA,4643
1850
+ pyrogram/raw/types/page_table_row.py,sha256=FvAwExzRcPM6tCvJ_KWxFvaqqKtArqaEr596WmpDGPc,2220
1851
+ pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py,sha256=LbzUTnFtWiomUokVOlcknwVVVbSKsmrURR4aD91PiKM,2863
1852
+ pyrogram/raw/types/password_kdf_algo_unknown.py,sha256=IWJ91BAZ3Qbd9wCPFWMCJg7ikkzgpglcAt6k8NdDrfo,2013
1853
+ pyrogram/raw/types/payment_charge.py,sha256=mqC4TInansZMzCCTIJoNqji1kOsuSTahFafE8i7HxFM,2414
1854
+ pyrogram/raw/types/payment_form_method.py,sha256=Avx8o_W14r443FuaMVRJO4WgRdudN7A3qKuB5oYSZ5Q,2326
1855
+ pyrogram/raw/types/payment_requested_info.py,sha256=9D6DIyXFVB5wb4i2M1fS2UMhaFlnQFoikAEPVdXt8QM,3602
1856
+ pyrogram/raw/types/payment_saved_credentials_card.py,sha256=VOG_BRf77PquR3rPY0Ba3HQcKH3zjTt-F3DiqVTFbSs,2363
1857
+ pyrogram/raw/types/peer_blocked.py,sha256=83djO8IDlJCgcvVI_jmJhVb22-lrCUxQNQ4DBsRHT10,2366
1858
+ pyrogram/raw/types/peer_channel.py,sha256=lRuTcekewDOgADXppJt3z9ndqoz2SzoBpEVzvzDIr3s,2380
1859
+ pyrogram/raw/types/peer_chat.py,sha256=mEDBsxTOn-7HXa7Z7yb2uxZhkqGO6bNy8D63pZd9xKY,2341
1860
+ pyrogram/raw/types/peer_located.py,sha256=Tq4RmqC_nhoEHXG3QGyg5tgXkoNaO1nKzldKFSsFoXA,2593
1861
+ pyrogram/raw/types/peer_notify_settings.py,sha256=593f0fUH1rwQpcna69oeTBQO-zXVEpvv9v2_Ga7vCFc,4953
1862
+ pyrogram/raw/types/peer_self_located.py,sha256=YgatBDbyX6wOBeBPYP_-2JOyESt-ZP2F7nmOeVNPovk,2152
1863
+ pyrogram/raw/types/peer_settings.py,sha256=IrNTMXTxmQTiMTJXjoZu1FRChksLUEr8p2QizlmTAbs,6386
1864
+ pyrogram/raw/types/peer_user.py,sha256=CqHC3a_oEA-4Eh8kzwAKRhzY6GCSmVSQqO5nVOi76q4,2341
1865
+ pyrogram/raw/types/phone_call.py,sha256=Cu0msUt8eZIJj95yO-egTRDwEPnRu3eIbHdOJnqap4M,5084
1866
+ pyrogram/raw/types/phone_call_accepted.py,sha256=H8dhtTirq4PshpSKmHVdziUeUhP1AhQOIB-W7rG1ass,3871
1867
+ pyrogram/raw/types/phone_call_discard_reason_busy.py,sha256=Uu10mxxuOh_m_afdO14LFxzlNsT-uCmXXP5rZbWRbfQ,2036
1868
+ pyrogram/raw/types/phone_call_discard_reason_disconnect.py,sha256=FN2fIlwsroN0NyjmGtxCe_LJjVqm-RNblqqJ7DijIdw,2060
1869
+ pyrogram/raw/types/phone_call_discard_reason_hangup.py,sha256=5LGPT9iisSs5hdJ_TRl3MRcU5hV_5IGDRhSb4MjgzjU,2044
1870
+ pyrogram/raw/types/phone_call_discard_reason_missed.py,sha256=bCDBLqqnOvp5diLKk6yYddHjc5Ij0-l82UvEvt1qQuM,2044
1871
+ pyrogram/raw/types/phone_call_discarded.py,sha256=C5Gbqah_l-xOaIQdSZIJc9YWdiGlO88g_z4H2fDqGz8,3877
1872
+ pyrogram/raw/types/phone_call_empty.py,sha256=L2cTYeiugH3e1_0Z5RNmxfnWUFMBPg0fne-5YX9We_E,2104
1873
+ pyrogram/raw/types/phone_call_protocol.py,sha256=oB-xvAdzYid5KogYUH4k94Nr9SC8ZJjmRY50h8mLk5U,3390
1874
+ pyrogram/raw/types/phone_call_requested.py,sha256=dOYL5LSDj5glwHX2oQPb0uD8radFFWLT0k-FNiT0mYA,3920
1875
+ pyrogram/raw/types/phone_call_waiting.py,sha256=fqJxY5qfMYRK92wb2pV_N53cuQIuyi75bj7AscfH7iU,4119
1876
+ pyrogram/raw/types/phone_connection.py,sha256=30FzbxJn2ehISxArpaEhH_RZlM5QtC2OTKSOcq6Z1V4,3167
1877
+ pyrogram/raw/types/phone_connection_webrtc.py,sha256=Hq-9delA92DvPmXxL9D5Z5QukoPJFP8X7a4We7FLF0U,3664
1878
+ pyrogram/raw/types/photo.py,sha256=BCA4o0wC1GbE2cDtvzRW4mVw6rfhyPHbHKHMhmUVrTM,4128
1879
+ pyrogram/raw/types/photo_cached_size.py,sha256=aFeYKyzsaLfAYx0u4vMmqZvXx10IoumaXdjOoJuPOuI,2646
1880
+ pyrogram/raw/types/photo_empty.py,sha256=n15BeEuyfGeORYUpVvmQfZqrHtQ2FPgxsl2C5dpu358,2084
1881
+ pyrogram/raw/types/photo_path_size.py,sha256=IrO1y03PvKqxOMSaESMZsVQQ3QOZbN6-A3nr7PuCUi0,2312
1882
+ pyrogram/raw/types/photo_size.py,sha256=ZoI4xUMG2k0bCZOZ4eUMrsNI-VUTAvYB-V9XdLf9RsU,2616
1883
+ pyrogram/raw/types/photo_size_empty.py,sha256=447xBVVhi4pprlihE-VO_VNxTpeX_Ds1Nk0mLNuW38E,2115
1884
+ pyrogram/raw/types/photo_size_progressive.py,sha256=VizrdG0V9ONYKYdrdvr35SGOP4VzosXGzt8PBorKBCk,2709
1885
+ pyrogram/raw/types/photo_stripped_size.py,sha256=TGa3LPi7S4q-AdNTD5fgUuhIbLh5NBcd7fl6S3BXR5o,2328
1886
+ pyrogram/raw/types/poll.py,sha256=HFHwy7laJVm5fSUoDy1o99a3f90KaKfNtmc8lQ4tsAk,4634
1887
+ pyrogram/raw/types/poll_answer.py,sha256=afGnaLI77qOndbBdwtPeOymyYr8j75XnyOGWJXXpiHQ,2310
1888
+ pyrogram/raw/types/poll_answer_voters.py,sha256=kDustQfvXzoHPAkLWfxSNHUvibOZY9XMyJP9o8pNycM,2930
1889
+ pyrogram/raw/types/poll_results.py,sha256=x6ze-r3HiY_QeZXaTPcqd5pdxyA0y5C7Ro50ekuWvMo,4558
1890
+ pyrogram/raw/types/pong.py,sha256=ZNmjns9rSHIpe9-tZMOfR70kUJi6SyRFOX8MGWU0VFA,2537
1891
+ pyrogram/raw/types/popular_contact.py,sha256=RzgMSlCE6XFV5AJ0BY-W_7yUBpa4GKqPNVmvmy_2Ldo,2408
1892
+ pyrogram/raw/types/post_address.py,sha256=lC9ETSKgLKP-Q1-QWA5oJc5RPUOe8UbQOcrijaW8QeE,3322
1893
+ pyrogram/raw/types/pq_inner_data.py,sha256=z-xkUVafInsNYwlFAFX9FMUOJrUOzRZxqwbEuB2OD-g,3145
1894
+ pyrogram/raw/types/pq_inner_data_dc.py,sha256=pYHquhW4fs8kI54qOqfk34V1X9Zs9Rlo7mcTO5Jw7ms,3326
1895
+ pyrogram/raw/types/pq_inner_data_temp.py,sha256=cxzqtOwGFlxXTVEwyMc3vQkwQl-CRBDvs2wNGCQO1sg,3406
1896
+ pyrogram/raw/types/pq_inner_data_temp_dc.py,sha256=85uNpMhRYlcqdCtVlPCF9cBxwnxuIc0WvQBnLtPkqk0,3587
1897
+ pyrogram/raw/types/premium_gift_option.py,sha256=lqYnpq3xDU7Ycpt2Ot-WguAgR0AW6u4GRSEQu2vkZT4,3297
1898
+ pyrogram/raw/types/premium_subscription_option.py,sha256=va4xRSHH4khn7IHDhHERNCxERaglamhZlvZNUcLAdRY,4408
1899
+ pyrogram/raw/types/privacy_key_added_by_phone.py,sha256=oS1JOw9GzEnWUi3qF53kxbtO7DIUmpQAD7uIGi8JNLw,2008
1900
+ pyrogram/raw/types/privacy_key_chat_invite.py,sha256=sqeIg4vR-E8cUaldw9MF2jX750Tr70-2uDHPCQZZqjE,2000
1901
+ pyrogram/raw/types/privacy_key_forwards.py,sha256=qSN4JXJuLm9nuP30gqvZKNE1YmmjdmsEqbQzCyA3qWM,1992
1902
+ pyrogram/raw/types/privacy_key_phone_call.py,sha256=vfS1R1mw0zICgI5Pt9VF5Sox3EDJteHMAf_RoFaUU5k,1996
1903
+ pyrogram/raw/types/privacy_key_phone_number.py,sha256=VPYreeeJk0R8YhX4FbldxO-JavWCoOyralS4rjavNpk,2004
1904
+ pyrogram/raw/types/privacy_key_phone_p2_p.py,sha256=-RB15cQb_-iuqJIFFDto5mQmRNJx2iK6kozV0nsUhTA,1992
1905
+ pyrogram/raw/types/privacy_key_profile_photo.py,sha256=3ob6USWwHHjwXghqxJjgjzi8XI_gHX3N9h5bEw6ufoE,2008
1906
+ pyrogram/raw/types/privacy_key_status_timestamp.py,sha256=GJ8JT4iA7vlmzjEe2JvDTzmVaHmkPBspUMrMpo9NZC4,2020
1907
+ pyrogram/raw/types/privacy_key_voice_messages.py,sha256=tLe4gfXDa5t71txp1eSCk0XADzIVZefpWRnGBYoo_Pw,2010
1908
+ pyrogram/raw/types/privacy_value_allow_all.py,sha256=Jl-SBmwuuk5LYD4-neDOzYDKqXktb--3WbRxwO_ZQPc,2001
1909
+ pyrogram/raw/types/privacy_value_allow_chat_participants.py,sha256=fyRAfOkpUs31EoewVBzh5x8--s7mWPTNPvS9EkgTEGY,2249
1910
+ pyrogram/raw/types/privacy_value_allow_contacts.py,sha256=qopSIOR5JkDi1MgmX8S6d54Tciol4t1_TTIPYdpEAiM,2021
1911
+ pyrogram/raw/types/privacy_value_allow_users.py,sha256=7iU-ECrvB6YUjvTdWT9JwkLKWJP9XxbVcGTU3ftkhLs,2205
1912
+ pyrogram/raw/types/privacy_value_disallow_all.py,sha256=0ss1ftqkiRF5WPx3pk_56uXg_XxtjroKCIx6-3pNbWM,2013
1913
+ pyrogram/raw/types/privacy_value_disallow_chat_participants.py,sha256=-1Pz0_AxEzzFdZKytKgA7U7AgjVQVE_hLKUvYasGajE,2261
1914
+ pyrogram/raw/types/privacy_value_disallow_contacts.py,sha256=1wHbPAOApaKkd2ifs7VXikdnMD2PT5DNiAx9h1lejQo,2033
1915
+ pyrogram/raw/types/privacy_value_disallow_users.py,sha256=i1CfOphwG2v-j5DPc7ObuB64kWJsylkVcjCa1RgdNH4,2217
1916
+ pyrogram/raw/types/reaction_count.py,sha256=QOyF16IzKutQeQrHPAzGA8_mZX6TvxvJYJkf2Jcpqmc,2888
1917
+ pyrogram/raw/types/reaction_custom_emoji.py,sha256=eXP4mDKinZ-wfy171AVJt2Gl6OMMg4SrNAXzYTKfcB0,2204
1918
+ pyrogram/raw/types/reaction_emoji.py,sha256=SBAg0qmE-7IskgNgcG0jsdNqRBYQETmBzaeV0miBkG0,2148
1919
+ pyrogram/raw/types/reaction_empty.py,sha256=8dJ97YK1X43-G5BW-w_BbjHAixqMtXihEVR3WpNwfwA,1970
1920
+ pyrogram/raw/types/read_participant_date.py,sha256=kZNxNt-lYlgVU_cxUI_QTwW-m9CnwteZ2d0ydRwEyug,2589
1921
+ pyrogram/raw/types/received_notify_message.py,sha256=NE7RBvjdFz39z7uJsv3vfKgDJZ50St3KwQ_V2RgD_vQ,2550
1922
+ pyrogram/raw/types/recent_me_url_chat.py,sha256=M4BzaV0EyCOn2p8eqdb6EhiYmApr-YyOcMu-rzGY3vA,2335
1923
+ pyrogram/raw/types/recent_me_url_chat_invite.py,sha256=-nXI62Wace-yHZWs1IyBMUPTEif8osiwiTK6btvxu7A,2455
1924
+ pyrogram/raw/types/recent_me_url_sticker_set.py,sha256=XaE4A7yfekIO24YDpcNaiJJ4yhSqi-7U_gRAGrIt9yA,2411
1925
+ pyrogram/raw/types/recent_me_url_unknown.py,sha256=M_ZIGIaVeMYsjk9h3eyUyc9xp3hqQoMpHFDTvLqQddY,2126
1926
+ pyrogram/raw/types/recent_me_url_user.py,sha256=FztTBE8vQCEDDf5y7TOINwoBp9ELJgl5-2DxdUrNMJE,2335
1927
+ pyrogram/raw/types/reply_inline_markup.py,sha256=JCkCvxi_eneEoHQI6qeF7ni4yysCFBxA8BNGcGxMiUM,2246
1928
+ pyrogram/raw/types/reply_keyboard_force_reply.py,sha256=IyvLiGnjJo1FAW6vgFgVnNVYA0aBu0qv3u01_KQfJdA,3010
1929
+ pyrogram/raw/types/reply_keyboard_hide.py,sha256=nyKQ9ZmEC6rjAXWAPy0hAf2gISpoCueUn-OGvlIuJh8,2272
1930
+ pyrogram/raw/types/reply_keyboard_markup.py,sha256=yA9_fCTp71CkVo9mqgANGfHbgZQbnqkh4iXW10dtUfg,3850
1931
+ pyrogram/raw/types/request_peer_type_broadcast.py,sha256=AM27tBuYL7Dy6n56ZWSk2GmRY2v_wAdqrMVAr5RnPEE,3842
1932
+ pyrogram/raw/types/request_peer_type_chat.py,sha256=Ab7LT9owMrWB-wi4CYEuzn_EcFvf3fpBBf6byvJ0_2w,4511
1933
+ pyrogram/raw/types/request_peer_type_user.py,sha256=j9krNrSccQKGX7itp0takMv2MxCj1R_drGFUAZ8Oosc,2699
1934
+ pyrogram/raw/types/res_pq.py,sha256=vnzKSsrJm8LZinjuV7VljQkaI7NghKYqqkxTAIBw_iE,3224
1935
+ pyrogram/raw/types/restriction_reason.py,sha256=_j-asiDZThRhX9ECck8F8PPFTg7Kl8w5FynAHXxNMJg,2569
1936
+ pyrogram/raw/types/rpc_answer_dropped.py,sha256=F7RTcGKJtcPykAnrR-q0bEgH-M46TancJu8i3R9ReAQ,2758
1937
+ pyrogram/raw/types/rpc_answer_dropped_running.py,sha256=jE3sJrlbV-PckBjC_rPGY9jHKnhzpaQfvPzFtXHyfns,2212
1938
+ pyrogram/raw/types/rpc_answer_unknown.py,sha256=3DaMMdEl4rf24qvF9GZbimlZyEwtiRiA50-0JePVaTU,2184
1939
+ pyrogram/raw/types/rpc_error.py,sha256=7R7OJj_ndhvw-GQciyyxd5-DQWxodxVCIsiKpkmcke4,2418
1940
+ pyrogram/raw/types/rpc_result.py,sha256=3XA-OW5udlUid4AVUSenZaEhvz_gMghRs-19DA-sfIk,2403
1941
+ pyrogram/raw/types/saved_phone_contact.py,sha256=oWaw4lHAzBPlX7TTkRTrj3nWgRJosjDO7Bojy089YEo,3010
1942
+ pyrogram/raw/types/search_result_position.py,sha256=hnZ5UckCXJMdHczgi9DNuTt77CuoXeoF8j2ZjirF8dY,2573
1943
+ pyrogram/raw/types/search_results_calendar_period.py,sha256=JW-5s85JDlaxFjd8m7WNpTTWe5kJ1F6xpSr5Z9SMi3Y,2879
1944
+ pyrogram/raw/types/secure_credentials_encrypted.py,sha256=Y13R-0nLfDrtyW2Fghm9LSJ2Um50B0afh60XqGXDKjY,2581
1945
+ pyrogram/raw/types/secure_data.py,sha256=egyk8_t29X5OhV-mSh6wP0DBKPjTrAqMfXT7ALaa0GA,2546
1946
+ pyrogram/raw/types/secure_file.py,sha256=Y0ppKbH2gbDsZcpKBGahi0kkLNdifO-_4wsd_E2P0uw,3374
1947
+ pyrogram/raw/types/secure_file_empty.py,sha256=N_V34zFecznJDSggnFdWy4xXXH-2ahQke3ZhcpkLz9o,1980
1948
+ pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py,sha256=skWofcFBPUD56ah3FycvfdX_EdTy4pVtRQ8BnvhIKLA,2262
1949
+ pyrogram/raw/types/secure_password_kdf_algo_sha512.py,sha256=7VM5n9-FWsNZ2JXJrf_n6ZN0daxHlFk87H2mCkKtx-I,2182
1950
+ pyrogram/raw/types/secure_password_kdf_algo_unknown.py,sha256=C7OSoBpLES9YFGMXccF1EcVTG8jz352Zi9jDKQc2tKc,2039
1951
+ pyrogram/raw/types/secure_plain_email.py,sha256=a1rz57ls77HAE_2CkJ1IbOktOMpane6ymx7-dDMcOOI,2140
1952
+ pyrogram/raw/types/secure_plain_phone.py,sha256=Jt-bKyAh9ic_UE6fVqvmjyKkb1AvoTL7xXnppKUaiy8,2140
1953
+ pyrogram/raw/types/secure_required_type.py,sha256=gD4HpEpvA60LNsoYs4Iiq0DIBHbk0-EJ51bkaH24lVU,3307
1954
+ pyrogram/raw/types/secure_required_type_one_of.py,sha256=fqoUUj0PXNpRWt_rPQjzjXFAPqbAqSRiZwWEMQjI__M,2288
1955
+ pyrogram/raw/types/secure_secret_settings.py,sha256=f_3k-i8QDJ8q-gcDhsCzzGU8hL1iaexI30ewe65l3wc,2897
1956
+ pyrogram/raw/types/secure_value.py,sha256=WiP-J9Ld_kzS86BPPVfOBzT90a41Ri8ny8b_34tFyhI,5944
1957
+ pyrogram/raw/types/secure_value_error.py,sha256=m4AvgWw0w4-IO_10vzL9MPN_6XzkooY7608gxCMlGAM,2596
1958
+ pyrogram/raw/types/secure_value_error_data.py,sha256=ulPOybe6HZ1fTSQhrJa9O0-K_0w9k14eMWI_M-Bw1Ow,2855
1959
+ pyrogram/raw/types/secure_value_error_file.py,sha256=RDM1b3Cw61OrYjJrG7zziI34uB_QrLqinvDkj_UIOJc,2657
1960
+ pyrogram/raw/types/secure_value_error_files.py,sha256=CdkjHBcy5mrdyc8guSrWgK2ZgD70OKa7f05ntTDCZpo,2701
1961
+ pyrogram/raw/types/secure_value_error_front_side.py,sha256=gjmGpdZG2Me7WsohdbsqRHKbR2He-U-lOZyk8lhcmRc,2673
1962
+ pyrogram/raw/types/secure_value_error_reverse_side.py,sha256=AY3u9P7Hz0ipx-g05uvZJ8oMyfvHqLyiaousLrMs4n4,2685
1963
+ pyrogram/raw/types/secure_value_error_selfie.py,sha256=_xU7Ea-j1tiYpuR-Ka38mTeJvszA7OeJdzK0hsdGM2E,2665
1964
+ pyrogram/raw/types/secure_value_error_translation_file.py,sha256=I83FwT5srT6yDEVfmdJYwOp1Cdjvjpwjr7lEKe7zDFs,2701
1965
+ pyrogram/raw/types/secure_value_error_translation_files.py,sha256=paVsAgp16X0yvKwyyKE5OM1msHM_2Tzgoo8Z7_bBM4c,2745
1966
+ pyrogram/raw/types/secure_value_hash.py,sha256=6UClobmqwC79evTiLIQ3ZWYh6fIQ-0kqITlWV0-W2Xs,2402
1967
+ pyrogram/raw/types/secure_value_type_address.py,sha256=pyH2NS_NxJ-X9v7VDj0j8xNyQXNmbbc08YNij-PXMEI,2013
1968
+ pyrogram/raw/types/secure_value_type_bank_statement.py,sha256=7LqtjpUOL9aFpVdNn5m2jhslLPg2L1tKavQLQ3KunOo,2037
1969
+ pyrogram/raw/types/secure_value_type_driver_license.py,sha256=Ju3kdY8o9N0Sb0hTJp5z7apf3ACzJzItGUGfx5pWuOc,2035
1970
+ pyrogram/raw/types/secure_value_type_email.py,sha256=VYYV_JI6scZoH4X8mte6EMdfv5xedIHqUwKetlqTK_0,2005
1971
+ pyrogram/raw/types/secure_value_type_identity_card.py,sha256=C91LwTW29DSxLbswNNN0Vpf-uR6ppkXpcpJS4cWJKGo,2033
1972
+ pyrogram/raw/types/secure_value_type_internal_passport.py,sha256=1DtgeYWXXOEvLTQId3L1Wqino2U26f_VUimV4UgGsBY,2049
1973
+ pyrogram/raw/types/secure_value_type_passport.py,sha256=cJNqQBUhhWSLvotzFlJWxIQqhaZctk4FtjFs2hJ2dRI,2017
1974
+ pyrogram/raw/types/secure_value_type_passport_registration.py,sha256=bG_VOKBvj_-CHEgmVedGm2L-hXkqNyYRQOIgS42Y6Yg,2065
1975
+ pyrogram/raw/types/secure_value_type_personal_details.py,sha256=T0AYeDOVyFsjn4H_g8DRbTHnOh9C6sBdEz2b4hFtQGw,2045
1976
+ pyrogram/raw/types/secure_value_type_phone.py,sha256=peROTio03enUjiMFJfPxfq9q-1QxuwjNDljWP_S9Vsg,2005
1977
+ pyrogram/raw/types/secure_value_type_rental_agreement.py,sha256=P1Z9cO0e3a1EkZ9OMaOgkKcNixSbogrofSWAHlGCDOc,2045
1978
+ pyrogram/raw/types/secure_value_type_temporary_registration.py,sha256=6dZ1Dy3DC9Bmpalufa2Cq2VV0SuKhQNUe2AuSfr-OUU,2069
1979
+ pyrogram/raw/types/secure_value_type_utility_bill.py,sha256=FPDEoF0c7T0ystBNhWV8NZXhA1Tm52MtIAvOyausMOU,2029
1980
+ pyrogram/raw/types/send_as_peer.py,sha256=TAhBLFa4IZhwl0LgJ7bkeDqDE7lA7v-eZlDl_XHxeqs,2536
1981
+ pyrogram/raw/types/send_message_cancel_action.py,sha256=2OhTLGdSKiLIiivgFvk2QAC4EhbkQO1brmJOVhgR1SM,2019
1982
+ pyrogram/raw/types/send_message_choose_contact_action.py,sha256=DP_LbDhWtuk7fkROWDZl9ispevMnlLb1X-JAZ2J0_Jk,2047
1983
+ pyrogram/raw/types/send_message_choose_sticker_action.py,sha256=3QTylB3Ax4Kak5aoih8kf_z02w-Tt0_vdryU_Etgmr8,2047
1984
+ pyrogram/raw/types/send_message_emoji_interaction.py,sha256=Lcp8KDRbxvsXe57OfVAyIu9NTOouvErfR_iITp6aojU,2731
1985
+ pyrogram/raw/types/send_message_emoji_interaction_seen.py,sha256=kHQNDjt8nXv4KkHzX4jnvJV-KO_J5r4N7_nKw8zOoj4,2229
1986
+ pyrogram/raw/types/send_message_game_play_action.py,sha256=ADPcSQVKF8GvNIRMj3UhkI6hZe9mRCloBygVIYnZmCo,2027
1987
+ pyrogram/raw/types/send_message_geo_location_action.py,sha256=I86UBWMzJoVvbi1QfssMkgBKvxseMwSesdD5RXv2LXQ,2039
1988
+ pyrogram/raw/types/send_message_history_import_action.py,sha256=EvAmsxF0s9M4vxrlNQnwd-xR-UJrHKTuosMHQmLwVgo,2227
1989
+ pyrogram/raw/types/send_message_record_audio_action.py,sha256=oNXZOfmYffIFfDKovv6Hb0lFJu_wyBAQFhwQEmdK5Bs,2039
1990
+ pyrogram/raw/types/send_message_record_round_action.py,sha256=7rDpNFT9XaEjaYY8gPn_1HdtCbAot2eKQM3SBNdMpzw,2039
1991
+ pyrogram/raw/types/send_message_record_video_action.py,sha256=9oBwpW55xAywxwdxp2AzQhahoZasMlvVmMYGhuQwTqI,2039
1992
+ pyrogram/raw/types/send_message_typing_action.py,sha256=L94WaBRGIo99yIiFwxmz3PzlLndkEfXbFpd1CP20Btk,2019
1993
+ pyrogram/raw/types/send_message_upload_audio_action.py,sha256=hUk2cjv7mZ8Debk1mc6paUBWEOIQA5xQDA9Da7dhd04,2219
1994
+ pyrogram/raw/types/send_message_upload_document_action.py,sha256=IVdQ5bM71FOZh88pQiCRuH2wGYUuHTI676jx0NjQhqs,2231
1995
+ pyrogram/raw/types/send_message_upload_photo_action.py,sha256=uwUmejiyO5a51Jh50_YXsjctClxrq9KfkFlrzpGduuc,2219
1996
+ pyrogram/raw/types/send_message_upload_round_action.py,sha256=f2Mc1hAu-L_BR9crTA-UQfdJKpwC77Te760BkLYB86M,2219
1997
+ pyrogram/raw/types/send_message_upload_video_action.py,sha256=KmGIvEB1vX9qF_EVlsBOsacBWCGmsubvQquOfv-kzQc,2219
1998
+ pyrogram/raw/types/server_dh_inner_data.py,sha256=539S_pSlyLVVoE3Y8Maja1WuMzcp_EQodg5NNJnUdNo,3256
1999
+ pyrogram/raw/types/server_dh_params_fail.py,sha256=eJuKHdIbO_7faTbh5-Yb2QPmjEpvMOr60lcMxGih3zo,2918
2000
+ pyrogram/raw/types/server_dh_params_ok.py,sha256=rgsuyX16SDkzc7MkBO279UOBcejZnklM_QbcQ-51jME,2917
2001
+ pyrogram/raw/types/shipping_option.py,sha256=Gy-WO-TlK0UdG28IU-GPELXmOfNl5niDQREQHagSctw,2604
2002
+ pyrogram/raw/types/simple_web_view_result_url.py,sha256=i4WKIsgbul3gKN7bui3AApRUJx1nIYfPFrvxozQzsqA,2363
2003
+ pyrogram/raw/types/speaking_in_group_call_action.py,sha256=018r0RW2jHpr6V9nZck1bOblHhypsWWWZKPdHqew2qA,2027
2004
+ pyrogram/raw/types/sponsored_message.py,sha256=-yRQ5aEM_LRcYeXRq1Juf4ie8qg6IBDY7SPeDZOtZtM,6685
2005
+ pyrogram/raw/types/stats_abs_value_and_prev.py,sha256=c7h_x5BiWS_pVV2MFSTTr8kevFD3Ay-Ydrf78Hc3QIM,2434
2006
+ pyrogram/raw/types/stats_date_range_days.py,sha256=RgXvZWIKRPVoAF573N4-VqJt1knKGbZjRj97NLI6NWY,2407
2007
+ pyrogram/raw/types/stats_graph.py,sha256=3J_V-G25IhzRX3NhIZr2eGKlJ6az2eGiyOPgIEIRLuA,2817
2008
+ pyrogram/raw/types/stats_graph_async.py,sha256=k2JMXDGbmN6D27B6b-hk0HfKx6fT2TDfl1l-10lsIlc,2335
2009
+ pyrogram/raw/types/stats_graph_error.py,sha256=s0ZlSaCCYI67_fwLXzswYBh3sEKnSTkw2yop3BgfWp0,2335
2010
+ pyrogram/raw/types/stats_group_top_admin.py,sha256=JVFarAl_yseIYwo0XLOWUDgRUHrYKLuPbeKYves2rbo,2810
2011
+ pyrogram/raw/types/stats_group_top_inviter.py,sha256=cqifILIiSxelvOxKjRzegEj1CvDRulc_klks0DfdwHM,2438
2012
+ pyrogram/raw/types/stats_group_top_poster.py,sha256=Yo0xB7pxOiNnfGge7XjzhfgLcHdUChj4HMkdJIrPcvk,2642
2013
+ pyrogram/raw/types/stats_percent_value.py,sha256=WqJtjHNUdv03AqQOWrisReadTUYZ0lGO2A8Sijjrl0A,2365
2014
+ pyrogram/raw/types/stats_url.py,sha256=ODJ2_oW2uSAOBnQRv1O7m8pdYT-wgrHcnYQDUCjiwBQ,2083
2015
+ pyrogram/raw/types/sticker_keyword.py,sha256=lHfuOKgaHWV7J6RazMDeK-YuashgR64BrGWdKPnsxD0,2446
2016
+ pyrogram/raw/types/sticker_pack.py,sha256=a_duraebgela8NjNkB2w8jlPCJAgYKN_y2X_EiyQou0,2422
2017
+ pyrogram/raw/types/sticker_set.py,sha256=UV8pVEaZuIiRnoeM7ivALzjUmpDki_dJs9UARzP4sQ4,7071
2018
+ pyrogram/raw/types/sticker_set_covered.py,sha256=hGM3YRt9zlrqXaP_GR5sOCBm4NnnjbuH74YWAyM4pHs,2660
2019
+ pyrogram/raw/types/sticker_set_full_covered.py,sha256=x751Lh1jrkt7TaTFz-ccbbdsDLoVDVBVAV3LSqzlW-0,3351
2020
+ pyrogram/raw/types/sticker_set_multi_covered.py,sha256=QHk-catr439jkvEXLS7mRMSt0WrkPzTEjfhlVaRdt8A,2711
2021
+ pyrogram/raw/types/sticker_set_no_covered.py,sha256=fDJjFFuM7QGLBFbXOJE7qqsaWNJnjw_o4-IiZ1mxCdw,2413
2022
+ pyrogram/raw/types/text_anchor.py,sha256=MD7qQOnm2puh_MNNV9stvu8htW-t9aRiE2-3Y02Pi-Y,2346
2023
+ pyrogram/raw/types/text_bold.py,sha256=_SDiV1KSwXeNfuzNxtX4HrE34Xw3HOuP8prUHIrpfn0,2149
2024
+ pyrogram/raw/types/text_concat.py,sha256=p9RSCR2GNUJ1AV-13MhTRMjRURxwE0gPDb5pipK06-U,2188
2025
+ pyrogram/raw/types/text_email.py,sha256=1TTWh5sffHPZITag4EDJoOS8Na63lHhrtOQgUg6BKgQ,2351
2026
+ pyrogram/raw/types/text_empty.py,sha256=C6T4oeboPhk-nbhOnuirylRersTGJlsKrCoouNYvSnA,1954
2027
+ pyrogram/raw/types/text_fixed.py,sha256=aXuy1Ei9zg70L-9D8TBOhr8B47HBg7At6BSg_Psutyk,2153
2028
+ pyrogram/raw/types/text_image.py,sha256=3CwXyisX2QlL-6XK9TPJ0Ug-YBDkvEJJ9T-AflUk7sQ,2490
2029
+ pyrogram/raw/types/text_italic.py,sha256=3vTHxii0yzyP-vNdBOpJfoyxTWiotwpS-WSpMv0YvBY,2157
2030
+ pyrogram/raw/types/text_marked.py,sha256=3i0IttoiyDptemMWUtSLwNX1hcnLp5C2YJvEdSi-mW0,2155
2031
+ pyrogram/raw/types/text_phone.py,sha256=lNC1OIS0vEhHE1uFz0veHtcKigAua-MYFZT5pQ3bPGk,2351
2032
+ pyrogram/raw/types/text_plain.py,sha256=tSjVMOSYJ94JRDgX8WVGdw7WAgWnSEj-eBPybZ7Kgrw,2096
2033
+ pyrogram/raw/types/text_strike.py,sha256=fqlQXY-pr3SR_UMkexLOYAtdF2yfSOjf4LVBEhMFwAw,2157
2034
+ pyrogram/raw/types/text_subscript.py,sha256=l-0kxVd3DsOxgKhH-u0rAdEUT2ERNvNNcCDFXS1QT-Q,2169
2035
+ pyrogram/raw/types/text_superscript.py,sha256=MO-K4c4OUxgWxIPQ2i5n_3odpzZ5QdvVL60XJWSBpLI,2177
2036
+ pyrogram/raw/types/text_underline.py,sha256=LfD9KAYEMtImjGcPibNy-jfCNKv6eSWWLeHfr-AeshQ,2169
2037
+ pyrogram/raw/types/text_url.py,sha256=cIDfp0ACYiALlzkZlQUv2kCHd3ceMfJOZ4QCOmzHEY8,2573
2038
+ pyrogram/raw/types/text_with_entities.py,sha256=lhKKFGBvMsm5DEJ31M_89nlt_-cbtbjJ5vvJigJNw3U,2456
2039
+ pyrogram/raw/types/theme.py,sha256=cf51nf70sB34-P8n7ppFGzQ1tv1D8IPV3sFwxFtgoUQ,5594
2040
+ pyrogram/raw/types/theme_settings.py,sha256=o5Gs9VmoUk-oo-Hhb1bEBApweJ7fnlHg9uPSekw8ToI,4409
2041
+ pyrogram/raw/types/top_peer.py,sha256=M-ZERGGXs_U9aAY6eehy6_cVT1SrqrzJM-dUnb6FScg,2350
2042
+ pyrogram/raw/types/top_peer_category_bots_inline.py,sha256=DiWx3wtIuIG1bNgofAVsFtVLDOUjWwh412rRp77v1fg,2025
2043
+ pyrogram/raw/types/top_peer_category_bots_pm.py,sha256=cna4dIsPoY4ddUFItwXeanOgg9WVxnSEsOrqnQO3tcM,2009
2044
+ pyrogram/raw/types/top_peer_category_channels.py,sha256=KKyZ_XjNfZv4i8xGSNIICbms9ERAB32VHTV-qo8A4VI,2017
2045
+ pyrogram/raw/types/top_peer_category_correspondents.py,sha256=r94YxgM-TuXjzl4c7cdkMBZgvMx7eliOhA4NXVkuTFA,2039
2046
+ pyrogram/raw/types/top_peer_category_forward_chats.py,sha256=Yt17rknyE6JUlJQibf4hGR2eOqS1_MDceEu2RhsN9w8,2033
2047
+ pyrogram/raw/types/top_peer_category_forward_users.py,sha256=PmUjnaGlftipsooSEEjZQNjB3qOW6mZDALh6PtGvmN8,2033
2048
+ pyrogram/raw/types/top_peer_category_groups.py,sha256=3b_nG6TInr2R0IBqNnU_pjiTEa51gjNXc6Fl-k_7TMw,2009
2049
+ pyrogram/raw/types/top_peer_category_peers.py,sha256=LrDCpFLlXaT8Iud19EvrNhb1gVTBSUit9yu34f9lwH0,2746
2050
+ pyrogram/raw/types/top_peer_category_phone_calls.py,sha256=5QARgyvkf5JCymFASjbxUMlOwQNiuREodmF6nVVYmtE,2025
2051
+ pyrogram/raw/types/update_attach_menu_bots.py,sha256=WxwizKTQYV4y0_BedBb0A8lXIQ1wsmrwCz7XnwHd8e0,1996
2052
+ pyrogram/raw/types/update_auto_save_settings.py,sha256=PvUjOGBds1_OehrgoPaYWVl_31c1lEaxVigKimAjoAg,2004
2053
+ pyrogram/raw/types/update_bot_callback_query.py,sha256=4dqUxMd6P0L2qH-E3oH2pbPfXk-BMeGb4kl7m_9-5LE,3975
2054
+ pyrogram/raw/types/update_bot_chat_invite_requester.py,sha256=lInvMJyvFIlOJWML9tkfsYPd9LktBhHZMBaTc__p0wU,3307
2055
+ pyrogram/raw/types/update_bot_commands.py,sha256=WTjefw8xTkT5QGWyIBacMEA9a5ZorManTjvpQpsEu2A,2691
2056
+ pyrogram/raw/types/update_bot_inline_query.py,sha256=7am0rjEF9QZ90cv0xCWrRtratHO6mltoG0ATktxRJJ4,3736
2057
+ pyrogram/raw/types/update_bot_inline_send.py,sha256=0O2FB7bot71EfAjvDjw7Mv6T0OkDluneEoUj5ew_Yv8,3449
2058
+ pyrogram/raw/types/update_bot_menu_button.py,sha256=KGG_2eUerPea6Ah6VjEvyhXE51ZlU9omsTCFc9IgQ44,2441
2059
+ pyrogram/raw/types/update_bot_precheckout_query.py,sha256=cl601QTG_Tuevu8Jt-Kf_m4QwvLWS2u9b7X22GysHsQ,4117
2060
+ pyrogram/raw/types/update_bot_shipping_query.py,sha256=4O82hOqUxqNq3koiO5lPZrx5C0ZCZZ7L42Vu82pNRm8,2991
2061
+ pyrogram/raw/types/update_bot_stopped.py,sha256=IacmcUBZ5jmr98wJIxSuQnFSwKTIB3Mp8uwHSUo2rdw,2739
2062
+ pyrogram/raw/types/update_bot_webhook_json.py,sha256=nwY3RKSioTwkvrq4ruhJ-TdWuPBU1Hjn3nm0tS-VnOE,2195
2063
+ pyrogram/raw/types/update_bot_webhook_json_query.py,sha256=RucXu5GXKrD1JiJAPxvJPOZBUCt_1DZefa3m165KYB0,2663
2064
+ pyrogram/raw/types/update_channel.py,sha256=VmpJcUlSO1mWv6dj41zY3WcKmgOlB5UbgazIRA1jIFI,2169
2065
+ pyrogram/raw/types/update_channel_available_messages.py,sha256=sgk-6ifJlmXDF5Tq7aznHSJHxq-UeNsm2-GWU8uSznE,2536
2066
+ pyrogram/raw/types/update_channel_message_forwards.py,sha256=yg-Ltg4GI1t18vxJUvTiV2r1EmP1dzFJ3lmFsxJMCV8,2629
2067
+ pyrogram/raw/types/update_channel_message_views.py,sha256=DVDKyHfboaRgx4qnvXJx_YdewwiaKt2SZZn6MWmYpus,2590
2068
+ pyrogram/raw/types/update_channel_participant.py,sha256=ToXhZoMuGzJs-PrUDyfyFaCV09PX3JEmnAV-ukykMVs,4986
2069
+ pyrogram/raw/types/update_channel_pinned_topic.py,sha256=0vTorhpRDs0lKFa1UhO7IlOHrQ-ygivtnU9RyET46ro,2743
2070
+ pyrogram/raw/types/update_channel_pinned_topics.py,sha256=TBkA3G68Lq7s2oQL3BTROiNuJmW-GnA3MQBolOaO4uU,2653
2071
+ pyrogram/raw/types/update_channel_read_messages_contents.py,sha256=ybBfvGnmkcdEhjk1YA26xkzAeI5taBnFotpH5MBXVrA,2972
2072
+ pyrogram/raw/types/update_channel_too_long.py,sha256=imtImjhgF3fvl_SkZIZUSPtNqSsDWPnbNS3-JK0ETkg,2576
2073
+ pyrogram/raw/types/update_channel_user_typing.py,sha256=1Z5rnbLVtySn52GaDjy8es1EFy7AAMMt8KpDrNYkzFk,3222
2074
+ pyrogram/raw/types/update_channel_web_page.py,sha256=hZdGeT7-1cBxOw4e3UHCJgInW1qGyybu71D6Yw51oR0,2884
2075
+ pyrogram/raw/types/update_chat.py,sha256=xGA4pFqGFcolq9rF2KHm_nPEmHVZAasyt7BL2Uc8Byk,2130
2076
+ pyrogram/raw/types/update_chat_default_banned_rights.py,sha256=ksmbAnbwcqAfjJo9FqbsAdhQbmfKpSEtE5cDtQuhgkc,2864
2077
+ pyrogram/raw/types/update_chat_participant.py,sha256=RscBO9mv34GAcO4YNmu02KBtJlgkO5AJ-NpqAJTAUnQ,4611
2078
+ pyrogram/raw/types/update_chat_participant_add.py,sha256=iCjwCpSN-BgzbPbriCxqzHbYxdTrkgiOIRiUcOOXasw,3064
2079
+ pyrogram/raw/types/update_chat_participant_admin.py,sha256=W9r9a2k9pZ4fwbwjZEkOXrSetfEPFSELWhS_fRmlWdU,2854
2080
+ pyrogram/raw/types/update_chat_participant_delete.py,sha256=RoCBewMndq82hQMXxEAqG6ZjHanV-dUMaX-Y6hfMFd8,2637
2081
+ pyrogram/raw/types/update_chat_participants.py,sha256=lgDX3EmkQQZk3vjUD3mjJjui9LOTYt5SYbdLe6nRz4Y,2305
2082
+ pyrogram/raw/types/update_chat_user_typing.py,sha256=Ys3KH7c3VF3D2j8GV1B4ZTsd-Twsp0erRRTjipFibvw,2727
2083
+ pyrogram/raw/types/update_config.py,sha256=ToLJCAJpYZxpzBD8ANdQOnaGyIv8QaIoxpOxzPJ4z0s,1964
2084
+ pyrogram/raw/types/update_contacts_reset.py,sha256=CMnQfQKrMCOZ1GeGfVr8Vt9C0ckloH03wvMcJtRh93o,1992
2085
+ pyrogram/raw/types/update_dc_options.py,sha256=6pdlwuos2tmXuJ0nPsFzjnyUtXUbI2KB3ZqWC3uMCUw,2251
2086
+ pyrogram/raw/types/update_delete_channel_messages.py,sha256=4U1JxAr-UsIEeh0tEAfN2Nw-iDsIImYDwsYF7Avi9uw,2910
2087
+ pyrogram/raw/types/update_delete_messages.py,sha256=oXbKwGtSu2iEPOZSu0iu1jWHIt02E8T4obwXqah_w1g,2634
2088
+ pyrogram/raw/types/update_delete_scheduled_messages.py,sha256=ViDKSWcAoa3uUo_IlFBkF0qpQjkYjzrfT3h4OlkfLBI,2482
2089
+ pyrogram/raw/types/update_dialog_filter.py,sha256=6rw3VlwXnJWVWJZ9WBRIBbP27iCmhEfNrFSI87-gfnA,2596
2090
+ pyrogram/raw/types/update_dialog_filter_order.py,sha256=jXNq1TngSnQt6U-K-5peUWHCOz53rYkOepOZtGaqMLk,2201
2091
+ pyrogram/raw/types/update_dialog_filters.py,sha256=PHsCd8odSpIKEhY6WDehmFhP4f8ULwaA1rjAIDSmHsA,1992
2092
+ pyrogram/raw/types/update_dialog_pinned.py,sha256=eetPrSQDyRVzjee0_MZESF0iiias-2GMD0IabgtPloA,2898
2093
+ pyrogram/raw/types/update_dialog_unread_mark.py,sha256=DVdm-YG3c4YCI2zCOm0TQnfURomNJbRbJe-3iQXWFFw,2514
2094
+ pyrogram/raw/types/update_draft_message.py,sha256=R7MFloFgJdJBwNAEwPfbuvY1870K6P86qP-K5fVq46A,2898
2095
+ pyrogram/raw/types/update_edit_channel_message.py,sha256=cxSuA4fjFkdnM5b3gFo_Ua3qInfP6gRnrs9Yca-xflI,2652
2096
+ pyrogram/raw/types/update_edit_message.py,sha256=gElTagHEZmowEKW8YVUNPpCMd2H8G9aEP5guvmqICe8,2624
2097
+ pyrogram/raw/types/update_encrypted_chat_typing.py,sha256=l0V_u5M2ilGjtbCAH_X3xPQMJ7Kzsj8p3lA55uRknyE,2187
2098
+ pyrogram/raw/types/update_encrypted_messages_read.py,sha256=Q6FPQkQqMYNk2vaYunzX9zIiwmAnBfMXX2z9E_Qndko,2613
2099
+ pyrogram/raw/types/update_encryption.py,sha256=zU-qURl9m90GdJDm8bLc9PyFq9cNFZ1z6oo1lqBYLSo,2390
2100
+ pyrogram/raw/types/update_faved_stickers.py,sha256=OTXA7YlgrGdbmTYzpNq6znjXboFcicVVMBdnl33kPBQ,1992
2101
+ pyrogram/raw/types/update_folder_peers.py,sha256=r1qJsTEQPGPcgdATwwZ-vhfhStsf_rJCoueUasWI3Zw,2703
2102
+ pyrogram/raw/types/update_geo_live_viewed.py,sha256=3QEWp-bqff9rywSSrzq7vf-kQQH9m6cSGjRYNrfYoj8,2384
2103
+ pyrogram/raw/types/update_group_call.py,sha256=XT3PBZmuUQ7XCoEwzJgW9LnmbI_nFb00gvcdcXy-NUY,2400
2104
+ pyrogram/raw/types/update_group_call_connection.py,sha256=4bFxD8h8whxx1mgs7MVVENte0Z70s4_5WEECC4hDPoQ,2588
2105
+ pyrogram/raw/types/update_group_call_participants.py,sha256=WoRW50E1EWKkLXP4m2zeD4oUguf-xLyyVVv1JZGATg4,2853
2106
+ pyrogram/raw/types/update_group_invite_privacy_forbidden.py,sha256=NBwxh767Jjw1vLRT5KrJpc2Y9DwvoqdDUpChrEWd4_8,2222
2107
+ pyrogram/raw/types/update_inline_bot_callback_query.py,sha256=7pxyDSVfeYmQmQtZfGzdHUd3RbKSUG6QcIUAsW7HivI,3884
2108
+ pyrogram/raw/types/update_lang_pack.py,sha256=0G-ab3paLqiB1UrPmhiKAOCBjwtgLnCorP72LrQJ4xk,2265
2109
+ pyrogram/raw/types/update_lang_pack_too_long.py,sha256=iEGeFjDejhL6gWbpAByyL1PJi1hGjHUZw-8j9jCR414,2187
2110
+ pyrogram/raw/types/update_login_token.py,sha256=Cnj_VJdrS5o8abXQYtdKqEERCBAKS7prGlJRQhCyNQw,1980
2111
+ pyrogram/raw/types/update_message_extended_media.py,sha256=hcvKkdmaQS78s24rt87LRCKpAAFcPcCmNDbXaG9uyZo,2796
2112
+ pyrogram/raw/types/update_message_id.py,sha256=RB9_o4OHAaK7TgQ8nOsnTk7m11lyZ5kbXi3eeEdJikE,2341
2113
+ pyrogram/raw/types/update_message_poll.py,sha256=aGh9xDzC3NerXpCGklhl7k585btfULq7tDjDRsQO01c,2871
2114
+ pyrogram/raw/types/update_message_poll_vote.py,sha256=oFoazBqQOte7b27p6o_CBwVftmjC3WN3pjQUs9GU6QI,2834
2115
+ pyrogram/raw/types/update_message_reactions.py,sha256=NqwnK-sldNeEwSn0XisqayO42cX4xVS_uSvkt7PRIb0,3175
2116
+ pyrogram/raw/types/update_move_sticker_set_to_top.py,sha256=0v27eNK5VCDMjj2sR27n4zYRtBK6u2WE_qLk91UVZt4,2769
2117
+ pyrogram/raw/types/update_new_channel_message.py,sha256=7nAbcrCPwzy250Cn6AkuhLN7iGhdWJptP79qLQymbQI,2648
2118
+ pyrogram/raw/types/update_new_encrypted_message.py,sha256=iH3mnmfxdXc1XQwdDd76claCRIRe-5BgBXLp5AJozRM,2456
2119
+ pyrogram/raw/types/update_new_message.py,sha256=zjySygnQQxvtin2rylOqRucetqjfG6wC_-tMeJDtg1k,2620
2120
+ pyrogram/raw/types/update_new_scheduled_message.py,sha256=i3HDw1xDyjctg979FwNk430vbDC56iyKSFXf-xkQm7s,2238
2121
+ pyrogram/raw/types/update_new_sticker_set.py,sha256=SBFWr6zmJxLhgUFvTFkclWloD_Z2QjFb-KZo23LOXtM,2289
2122
+ pyrogram/raw/types/update_notify_settings.py,sha256=bIz-c5rlWQtbAOs3K0DiXzDGwPwJkSE7vA74s7u-Quw,2588
2123
+ pyrogram/raw/types/update_peer_blocked.py,sha256=aNFVoMWAwwV9VWBo1kr4NuR4VgyZeadw-BYKTRjGWPo,2406
2124
+ pyrogram/raw/types/update_peer_history_ttl.py,sha256=9pUf15C_SuJL7KKAJoI9BByNYh9rdoZg-DpSUeR_2Aw,2635
2125
+ pyrogram/raw/types/update_peer_located.py,sha256=m-7E-w3-1-jdt4-0OJYMOTplqKd_1eUOwSTJYX28iMw,2226
2126
+ pyrogram/raw/types/update_peer_settings.py,sha256=8eT4In4YLnRBgz-4d6aeD9LOMMrcmLnKB0A4XOF8dqw,2469
2127
+ pyrogram/raw/types/update_pending_join_requests.py,sha256=qSrOj57lCSfwLFZd3fvBYo2QRb3I0o-4W2jL2eGr6_c,2849
2128
+ pyrogram/raw/types/update_phone_call.py,sha256=3t0mM2jN5gaM3qexvIxNBfDQpfasyg7s-qNKIz3f36w,2233
2129
+ pyrogram/raw/types/update_phone_call_signaling_data.py,sha256=agWDT2ho6oFenQIUVd91ywwsE_DHNLlJS3cSmN7LaaE,2446
2130
+ pyrogram/raw/types/update_pinned_channel_messages.py,sha256=4mbLjeHajikM4_DMVH0qBttV7-ZAI4eiyUGLixMJLKk,3213
2131
+ pyrogram/raw/types/update_pinned_dialogs.py,sha256=MnS8z3DwrIv2PUk1HyLsx0coJxCvh3C1dJa-KnA4f8g,2826
2132
+ pyrogram/raw/types/update_pinned_messages.py,sha256=pzaK0hSRwUlV6Ev2_x_aA5t354EGM-0dtElAsRbuBQI,3167
2133
+ pyrogram/raw/types/update_privacy.py,sha256=VztTAQ7i7qHGfKv1efTPhp76WXc9S48duf-G7KoINzc,2455
2134
+ pyrogram/raw/types/update_pts_changed.py,sha256=MmkSck10MQ9JwGZ1bddeOuMGrdnPxnd-TA6VCx_YZq4,1980
2135
+ pyrogram/raw/types/update_read_channel_discussion_inbox.py,sha256=MD8LebrI8a4A7HUB1CLWxFKBCQ33LHsz-uyceDkXR9A,3680
2136
+ pyrogram/raw/types/update_read_channel_discussion_outbox.py,sha256=DQYA-EbrnHa8bU_3fNU40LOStVsrvlY2a3eCMRuzik4,2748
2137
+ pyrogram/raw/types/update_read_channel_inbox.py,sha256=Vu5vVEpc6wNOUDlb9zsi7VDAaHh2rGTSweX5T5gkKVo,3358
2138
+ pyrogram/raw/types/update_read_channel_outbox.py,sha256=YxXidOddOamAByMwO7VoLL0DJrOfRNe3jslWbt8vmDA,2418
2139
+ pyrogram/raw/types/update_read_featured_emoji_stickers.py,sha256=QMF1kwVWi37bMl7jVp81AQ59tnEh4-CGLsKagZWgdKM,2040
2140
+ pyrogram/raw/types/update_read_featured_stickers.py,sha256=-IaUchh2pvvMP2nyFb5UAI3IO-Kx0dCYyhUF6OedFsQ,2020
2141
+ pyrogram/raw/types/update_read_history_inbox.py,sha256=OVF3sd7BEQQeojOj7l-SwQ12l3pYzjYl5W0w1v056EE,3576
2142
+ pyrogram/raw/types/update_read_history_outbox.py,sha256=Mv6HDGaCs5xsHcSrE9EPomOGa4D01WJMLYOxaoL1U1Y,2818
2143
+ pyrogram/raw/types/update_read_messages_contents.py,sha256=33uJRFrTm6rV0pLy2LXaur9iPEaa0veSeM7ofluYw9I,2658
2144
+ pyrogram/raw/types/update_recent_emoji_statuses.py,sha256=t7PU6upYheI0MMNruhNeEfo51idB8D7oGbCcW3ZPzJ8,2016
2145
+ pyrogram/raw/types/update_recent_reactions.py,sha256=UI8512QZM6Upl9Ifrp0oJBbcX9YX3MqeRdElYSVM65M,2000
2146
+ pyrogram/raw/types/update_recent_stickers.py,sha256=U7R5skN9mOKcNU3-Kj4_tMaEeLML9ydyzrcN7aSQhjc,1996
2147
+ pyrogram/raw/types/update_saved_gifs.py,sha256=lHpPx9WWhC50vVmWV0nNSTNtY_eb78y22HqHhwHrBOg,1976
2148
+ pyrogram/raw/types/update_saved_ringtones.py,sha256=02rp3DgOKbgEEz6ZBxrlKzdQvb-A7QTffAnYxfZXBzc,1996
2149
+ pyrogram/raw/types/update_service_notification.py,sha256=qPhwMowAwr0uYNWmgoYDI494L_-5iXUfgY2qMfYbFHw,3674
2150
+ pyrogram/raw/types/update_short.py,sha256=j3M4x1Ra9p-RIojTDHycsLCAm7PI_XqBJNVAF0r9vEM,5802
2151
+ pyrogram/raw/types/update_short_chat_message.py,sha256=pSQrw8-vbs01HD1GEeNKtJnS8yCnIIcdqUN0rKluSR4,10243
2152
+ pyrogram/raw/types/update_short_message.py,sha256=JCA7AxsDFadTnfOzTAMkgFaPsu_--iQpQ_6FVG6GgoY,10006
2153
+ pyrogram/raw/types/update_short_sent_message.py,sha256=04y-sK7hnz8GQrTk-l2dSUVa2b34Dvgpqd9Rzyt_C_E,7778
2154
+ pyrogram/raw/types/update_sticker_sets.py,sha256=4vLL1ABOgEMsDsg4J0EbFq14q5f65zM1xDWpfa-BNes,2489
2155
+ pyrogram/raw/types/update_sticker_sets_order.py,sha256=mzUCyo-mGXc6xGwxBAcT3KydXDpeaa70ESkC_x5BIcI,2750
2156
+ pyrogram/raw/types/update_theme.py,sha256=pnAb1MJHTPCG1n7SdcBp8-NLseG8q9Ota0Q2u6zAehg,2156
2157
+ pyrogram/raw/types/update_transcribed_audio.py,sha256=U_79Af1zTyUn9XbEeyQMjDL5lAiO8slvH1yB8Yi3Zzo,3195
2158
+ pyrogram/raw/types/update_user.py,sha256=FLk9xGldZ4fLG3pfXMuovyGyW-8xB5iJKnt1jpq2YpY,2130
2159
+ pyrogram/raw/types/update_user_emoji_status.py,sha256=gqlJPXCp443SdWqysg5EqmgrFvsE1LsF9rM-8p8153I,2504
2160
+ pyrogram/raw/types/update_user_name.py,sha256=r4q3KSGiuB02g-_vYFqKH2b6CGzWSBsA9UXCe180tpg,2936
2161
+ pyrogram/raw/types/update_user_phone.py,sha256=qz4rvzi7x7IeWLutrZs9iS8Zl7EwA9nhO_WmJFbecTU,2346
2162
+ pyrogram/raw/types/update_user_status.py,sha256=P-_EgUrgAm5y7EYFJ-vnGCY7wKCAxIk1zllC595beWM,2426
2163
+ pyrogram/raw/types/update_user_typing.py,sha256=T1hIOJovqXdzsHn7UJDZxnK7d5GIhOh5d5DyKrO176g,2454
2164
+ pyrogram/raw/types/update_web_page.py,sha256=HbVlHRA5nb1dQa3mwMQu3161DtMYGu8NfTwTVkXFpGE,2608
2165
+ pyrogram/raw/types/update_web_view_result_sent.py,sha256=BkXGBsH8KQKRUpeNh8_Xye6JRTExwEC8hACOauYfvTQ,2191
2166
+ pyrogram/raw/types/updates_combined.py,sha256=-sowFT2htlS-ziJ6t40dXCHUouEYS27UAMZVYo8FZEk,6789
2167
+ pyrogram/raw/types/updates_t.py,sha256=2-X8E-KQlwLBqB0BmKYvAGHWErotH5Py70hG7qHU4Mg,6521
2168
+ pyrogram/raw/types/updates_too_long.py,sha256=hgA-Fu_5UBTQiM0sUqmn3R3ZHfZug2YXrxsUa0LeSOM,5414
2169
+ pyrogram/raw/types/url_auth_result_accepted.py,sha256=McN8rn5cP4vWMBOjpVAJjpMGO2z72MA-jzhdNUB94uA,2383
2170
+ pyrogram/raw/types/url_auth_result_default.py,sha256=HflqKHnc3C3BDGJMEpRTXcXwz55TMkGVrxEW7MKbQB4,2246
2171
+ pyrogram/raw/types/url_auth_result_request.py,sha256=BgKxSe3D_XPMHG-ffkTWU4nhLzUx2qHhpO2bs4iShT0,3056
2172
+ pyrogram/raw/types/user.py,sha256=h9oHLJeqEOEXdPw20J7L-8qTzcdHnB4ldulKxGOBQI4,13966
2173
+ pyrogram/raw/types/user_empty.py,sha256=piZyTwmHVNLMZrwqjnicZ8ktzIaLmiWOi0_7ePfgVzs,2419
2174
+ pyrogram/raw/types/user_full.py,sha256=84tJ9joPFT6Z1WjDlXLyMdR6ZkPhrdUbLF0qNUfrsVo,12871
2175
+ pyrogram/raw/types/user_profile_photo.py,sha256=Cr4S1TIazBOr-INaE9L5AlwmTJLf0Ir4OzKrkLAEMAA,3433
2176
+ pyrogram/raw/types/user_profile_photo_empty.py,sha256=NbAJ-513_Fxmo-U9hiUEcOXBRPkRctyomxcAzBvbQy4,2010
2177
+ pyrogram/raw/types/user_status_empty.py,sha256=WEgfWFPr9DoZLIjlP1yz7zQv7SaRFfyggS4BP81nQpk,1978
2178
+ pyrogram/raw/types/user_status_last_month.py,sha256=rLvVNJPTRAKunafupTN9NHrCkc6e5w-CRpgVWrQ3QCA,1996
2179
+ pyrogram/raw/types/user_status_last_week.py,sha256=M1GcixVBQrx53tGhPVGvGwHiK7kXvqgDqB1yG3eOJqE,1990
2180
+ pyrogram/raw/types/user_status_offline.py,sha256=sncceTA9ksYARvhtsxEYLY1Rs_ibpFAoF9t_VAgOXtg,2182
2181
+ pyrogram/raw/types/user_status_online.py,sha256=vB8WkMq21gwyJkIaCp_gtDPfEC5CYOUMHwFQncFnvHE,2155
2182
+ pyrogram/raw/types/user_status_recently.py,sha256=WAWNA3vruMZjHJQ9nW_JVuncx2OhOatQDD8YQoAuZ7k,1992
2183
+ pyrogram/raw/types/username.py,sha256=YclvjY_l3nvc6Xqz2l6DR8R5kpHtm93Kh-1BrBhMCkU,2707
2184
+ pyrogram/raw/types/video_size.py,sha256=Fdc1EH4gx72UycNwh2mh-uHlC2rdKvgUG-jPV1Dhyjo,3129
2185
+ pyrogram/raw/types/video_size_emoji_markup.py,sha256=lEUyBnJWxMRd1hBDgjuEjy0yYT0infGO_NPpQcXMvIM,2530
2186
+ pyrogram/raw/types/video_size_sticker_markup.py,sha256=srABHJGNJg8XcnItAZWujtKPRH4yu4HQVr5__rfpnHc,2882
2187
+ pyrogram/raw/types/wall_paper.py,sha256=3YVhibj8CUTj90ToCSs1lxCOyrzjLa1GjaLSx95Pq6M,4657
2188
+ pyrogram/raw/types/wall_paper_no_file.py,sha256=Z-WyQAva8nbTSsq9suRGRMWGf_iPeeunWaKaaykdHCI,3419
2189
+ pyrogram/raw/types/wall_paper_settings.py,sha256=6ovpzEpvaZ9qZafjzVtnFqmKWFHxFOMYhOasNFcX9Hs,5408
2190
+ pyrogram/raw/types/web_authorization.py,sha256=lIiku26mxK4PkGkEpFENEKIg6B5KbPt2OZa34U4l2lM,3892
2191
+ pyrogram/raw/types/web_document.py,sha256=lhvmcynQCUp2u3xDu36uonnhHyduTJuwg3fPL5VREyg,3138
2192
+ pyrogram/raw/types/web_document_no_proxy.py,sha256=UaKGB9xoUvIDTxlpnyFhbAVQu-cCFl1nGJv07YUxFUk,2909
2193
+ pyrogram/raw/types/web_page.py,sha256=UMyZXzrx4ym8Le_gg5wmdXJGwyd9e2_rpc2ZTLkoJsI,8698
2194
+ pyrogram/raw/types/web_page_attribute_theme.py,sha256=FtIl3aHsv5ZOqYoBu8Cy6k-gnTkZjr3OqoJCQG9_fig,2943
2195
+ pyrogram/raw/types/web_page_empty.py,sha256=4QE1LsFc9Dlfc4IGJR0cV2cV1uYIj8rXm-sCDAdtO40,2297
2196
+ pyrogram/raw/types/web_page_not_modified.py,sha256=4mZqC8pQu-rc9RZ0ABLOcKuoEMH2oiv56UQwCf3EvcY,2678
2197
+ pyrogram/raw/types/web_page_pending.py,sha256=a1LdcmcudZGY2WM-wIGQ8WWJispVMr-Us0oYq6P0EO8,2496
2198
+ pyrogram/raw/types/web_view_message_sent.py,sha256=VgaNlqyuRTD_pbvsufBeXxGbbhtgTJCMl06_VIKhD4k,2694
2199
+ pyrogram/raw/types/web_view_result_url.py,sha256=v23z-en1oFJfX0Ja_sO0GhcmnkoVERo3gpI5ebdmhd4,2555
2200
+ pyrogram/raw/types/account/__init__.py,sha256=qeet_5CGyKBfbt1EAuNENCe36M3Y6O1oilYUomMc6qk,2416
2201
+ pyrogram/raw/types/account/authorization_form.py,sha256=oAw9GymlAO7aR4u1aCc8g6-aGyhWkePvVhEfbmeeWoY,3993
2202
+ pyrogram/raw/types/account/authorizations.py,sha256=Mpdie3MvU214UkRJ4OnUU_8yP9q_WR96UNllbjTLFjo,2889
2203
+ pyrogram/raw/types/account/auto_download_settings.py,sha256=QFQItjW6gyMRytES_YBjqthedp8SmTv1YMwnGcBsvPg,3085
2204
+ pyrogram/raw/types/account/auto_save_settings.py,sha256=EgtJGCd412Mjhuoai98Afo5QRvjtCUsi9ifROskcT1o,4199
2205
+ pyrogram/raw/types/account/content_settings.py,sha256=YtfZzw_8Zfu67kytNRWZ4EHoOm4ooG2nuMXKRV38IoQ,2950
2206
+ pyrogram/raw/types/account/email_verified.py,sha256=cB349PnTl433IH0rfwQSs3ao4dHzAsmKNIlYRwuaehE,2345
2207
+ pyrogram/raw/types/account/email_verified_login.py,sha256=4hSaGQonKhSTCXUAaAcp0chwYLmovEjm_fXK1tdzNbU,2676
2208
+ pyrogram/raw/types/account/emoji_statuses.py,sha256=pVYxjStdfVERueoMYxAFvXFX31LGvplzGIqT6CSsn4I,2713
2209
+ pyrogram/raw/types/account/emoji_statuses_not_modified.py,sha256=D9s29FMreopru_I_3iTGt5z0gW5zmhxWj0TY5nUX40w,2294
2210
+ pyrogram/raw/types/account/password.py,sha256=qly3Rr1CmIPRqcBBfCW3hsjR6LGITqZtg1mkaG4hFxY,7290
2211
+ pyrogram/raw/types/account/password_input_settings.py,sha256=h8tmsT5OoK9UjuOwpsPNm510NWc8RYmw-0eEHw4-WRQ,4296
2212
+ pyrogram/raw/types/account/password_settings.py,sha256=qcI7NvayNSAQMNFCgi0FE8Qu3WVJLigCW4Sbu2QNkSQ,3137
2213
+ pyrogram/raw/types/account/privacy_rules.py,sha256=yhvssL1v6vQ03pTlsnqTUADJmL62dUoHiCAEOuSUq1Y,2984
2214
+ pyrogram/raw/types/account/reset_password_failed_wait.py,sha256=sEczynYODG7EYkNL0Xn3U_GHOKbZpKkuvv-Bn26Zk3g,2440
2215
+ pyrogram/raw/types/account/reset_password_ok.py,sha256=1yw3zfHvYwzTua050uSOaVQh41_Hm-3S4ORh2tStJ_E,2210
2216
+ pyrogram/raw/types/account/reset_password_requested_wait.py,sha256=BEN2o-RHnAqZSEs-X4ys-R5oV8p7atU9qxpeTnS6sQI,2452
2217
+ pyrogram/raw/types/account/saved_ringtone.py,sha256=AL5vKCE0Jtk-MKl2bN6G4AbB-lW5dbRn-TdQhiMHBNo,2195
2218
+ pyrogram/raw/types/account/saved_ringtone_converted.py,sha256=AMl5X4xcBJHutNP-AB0vrfjWgMjx-9Y_gyUSsuuo7ik,2466
2219
+ pyrogram/raw/types/account/saved_ringtones.py,sha256=Kpz5-CQSa8_mWpmGfcvJjJrwyND73jd9fSbMycy6tP8,2665
2220
+ pyrogram/raw/types/account/saved_ringtones_not_modified.py,sha256=0ZWuzHLV8p45DRBL1jHBDmCyDMyOIqNJT9iNPxZlLnA,2249
2221
+ pyrogram/raw/types/account/sent_email_code.py,sha256=4xOLA9uqmIr6_lctv4FCB8bMXxK-TCxYlgnJnAxgkO8,2634
2222
+ pyrogram/raw/types/account/takeout.py,sha256=DUZEuQkT2BzXXGKrhgzcNfZG46Jn6aw-fWsZWUqfJrk,2300
2223
+ pyrogram/raw/types/account/themes.py,sha256=-SqttUtc-ozqI51-7Qr5nLovbkJ8voNMAo8X7XxdlDs,2613
2224
+ pyrogram/raw/types/account/themes_not_modified.py,sha256=tWMtT7YgD055YppnnuYC0D0TlWXu62GIuVZU1nWaCNg,2236
2225
+ pyrogram/raw/types/account/tmp_password.py,sha256=YPWAYwbqNXDRWkBbvYQ9z5r8s0-Z_fxGKHkjhNb9JFw,2656
2226
+ pyrogram/raw/types/account/wall_papers.py,sha256=rcl1a5fn6SYvx46kUf83He7PVVsVVo7l2mEQpjdG0fY,2654
2227
+ pyrogram/raw/types/account/wall_papers_not_modified.py,sha256=xLnxyqSXMhrax2OIp5j7cOiQYZzcid2e-LbS4xKWkcA,2225
2228
+ pyrogram/raw/types/account/web_authorizations.py,sha256=vVQq3iruhGkj8vWpIBp38jvjpv50kXW-utPD_mXdCbo,2827
2229
+ pyrogram/raw/types/auth/__init__.py,sha256=og6bcy7Wu6OIaMG8huvk2pirBVS7Ms1asCjwqBVv5Wg,2319
2230
+ pyrogram/raw/types/auth/authorization.py,sha256=zJv3qDzOoFm73-AfxLY0S1f0cCa8lamPD52Y5G2k1fE,4493
2231
+ pyrogram/raw/types/auth/authorization_sign_up_required.py,sha256=8DPrLRhe1vUzMH6dMoiwnidLvgraPQPL_Kc-wYWAzls,3020
2232
+ pyrogram/raw/types/auth/code_type_call.py,sha256=zHeH_6c329PH3w1oxkzqfiBh02QmFXdk9jTWaeOjnsM,1976
2233
+ pyrogram/raw/types/auth/code_type_flash_call.py,sha256=OmelP6tSut3Pi8ZMBeD2cm2LLjh5Jsc6x2HUXHpmiYA,1996
2234
+ pyrogram/raw/types/auth/code_type_fragment_sms.py,sha256=-ay4Y5sK48kIUsOZNX8t2IUG18Xyx-nYsYLNRADqHFM,2002
2235
+ pyrogram/raw/types/auth/code_type_missed_call.py,sha256=IruDOi4JiUW47We6A9T6CbJICYcPDqK4jz72Wx94FqQ,2000
2236
+ pyrogram/raw/types/auth/code_type_sms.py,sha256=m9r89EF4X3O7dH8gG9g34ciIioxFi1fqKsm-L8_ctjk,1972
2237
+ pyrogram/raw/types/auth/exported_authorization.py,sha256=CeFUGKVOyDxa2XgjbCA-tIJATEEkaO91g5UW0keC-zg,2561
2238
+ pyrogram/raw/types/auth/logged_out.py,sha256=g8OfPfTuZDLzAqzqo4QlFs_-DxewQ5JXL1JZU0yzg_0,2645
2239
+ pyrogram/raw/types/auth/login_token.py,sha256=lXTO1QoaBrvl5twzYGhdpqIapUGaHPN6YPMHwMaQeXk,2580
2240
+ pyrogram/raw/types/auth/login_token_migrate_to.py,sha256=rd_5LPDCQP9HhKq797WIca6byCPt3JczXc13844UT0I,2596
2241
+ pyrogram/raw/types/auth/login_token_success.py,sha256=yLEXukKCiM7TcMZKdeR9LIQnrVNZbVsiM47UNaTGvMQ,2558
2242
+ pyrogram/raw/types/auth/password_recovery.py,sha256=MMmhWAykJMK9M5p6TI62ANTGJy3_1dNs2BbL27BboDk,2435
2243
+ pyrogram/raw/types/auth/sent_code.py,sha256=JTXh5B3mJbb7Vz2krM6IbB3iyhd1eQ-oz1udd4n5eQw,3760
2244
+ pyrogram/raw/types/auth/sent_code_success.py,sha256=bH3Xg3MNHhBWep-2opSU9IbvHdUVmP1Q1kgu8kAoR9A,2688
2245
+ pyrogram/raw/types/auth/sent_code_type_app.py,sha256=Qc6ewcwVEYILcvhiELY7fmtqCDUpN8JHRiRx6OMacjc,2154
2246
+ pyrogram/raw/types/auth/sent_code_type_call.py,sha256=n6qea20LiHpUhhOJ7yRccus89s5kTDiBqtJUgPStU-E,2158
2247
+ pyrogram/raw/types/auth/sent_code_type_email_code.py,sha256=5_czIMxAMHZ9kmj3SUMAbbJ3Wy3SCruwE9_C2xaO0gw,4312
2248
+ pyrogram/raw/types/auth/sent_code_type_firebase_sms.py,sha256=btlahFm9QHz76qQJGcJWNb85cAIjFqMUd83WI_aeD7M,3395
2249
+ pyrogram/raw/types/auth/sent_code_type_flash_call.py,sha256=phYDWtOQc-StMKxWSpG_UGoJcgxEH8i_MQ4KlNdUxr0,2185
2250
+ pyrogram/raw/types/auth/sent_code_type_fragment_sms.py,sha256=08woaTNTjN4fcwWBCWIK-JdY2ihvcLVuoYlyTPiJFIo,2366
2251
+ pyrogram/raw/types/auth/sent_code_type_missed_call.py,sha256=uuXvdZTNilzjFlzZNfF_2H040m_gT91-B8sSZmoHJv0,2389
2252
+ pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py,sha256=GQYfh9iv_8l60d_9C2Ul9XrLwIxwvP1mTx2gu3KpkbM,2827
2253
+ pyrogram/raw/types/auth/sent_code_type_sms.py,sha256=CKHMbpUHbGUZyWDDdjT9KFFsxknMJ6P_GSoGthOZeE8,2154
2254
+ pyrogram/raw/types/bots/__init__.py,sha256=Hry3YTadAObxjrv0kkCpJYSkFPA3Yi4p3lH61PappNI,1090
2255
+ pyrogram/raw/types/bots/bot_info.py,sha256=3YZUF54ogiWh1OAUwIXlflej2_94lGyxVtxe5hvJ388,2746
2256
+ pyrogram/raw/types/channels/__init__.py,sha256=S1KRS0MwV8trH59MthEzupL3AsYcWTWt34AEhRBPf8s,1330
2257
+ pyrogram/raw/types/channels/admin_log_results.py,sha256=WHEdX6CxQkzK-RUlDZe4iqw4O1yvT4JPOpFVu-1REZE,3016
2258
+ pyrogram/raw/types/channels/channel_participant.py,sha256=Et9k-hx2OYElIqsPisaAvvHZNVIMU8NpS1u053ZaIa8,3049
2259
+ pyrogram/raw/types/channels/channel_participants.py,sha256=LsDvR_KiZ4dxHnEtdM83XeTjOLPX0p6LPSnR7kMAqOc,3286
2260
+ pyrogram/raw/types/channels/channel_participants_not_modified.py,sha256=rbmKkk3UpvXFpAuZEjX3vKAvOYcPht4rLucxc5BUHPY,2275
2261
+ pyrogram/raw/types/channels/send_as_peers.py,sha256=6OcEWr0I1x92nFPJ63hxnk2irdh4u4bcmUuMV4T9-_c,2945
2262
+ pyrogram/raw/types/chatlists/__init__.py,sha256=LxWhtgpWf8ewzK8pB38Y3CaDv8gJb87JheBwliWcgEE,1316
2263
+ pyrogram/raw/types/chatlists/chatlist_invite.py,sha256=QTyWmtJcxhTdEDL1JLCfs5m6-A-n6NaNc7VFrVQf63E,3579
2264
+ pyrogram/raw/types/chatlists/chatlist_invite_already.py,sha256=sNcrq6vND5Rvytt4GPppYY5Yhs4pTeZ2Rgb-efV_FQw,3618
2265
+ pyrogram/raw/types/chatlists/chatlist_updates.py,sha256=3j7j7MF-Yyhi0opyTZ9CfEt3RRhMJ53TRRDJ8Wo0QvY,3025
2266
+ pyrogram/raw/types/chatlists/exported_chatlist_invite.py,sha256=Z9ImWVN-bNlXksqxZ2DBFvTVgXI8oFsy9-r_21NQh5A,2807
2267
+ pyrogram/raw/types/chatlists/exported_invites.py,sha256=zNY59ELXD-cLiC2NHJKOiFgE6ODbRUDr9Ua6zU8gY8c,3043
2268
+ pyrogram/raw/types/contacts/__init__.py,sha256=Qa2gWvHAIXf0W0ixPW2rVpLk0ZaFK1qetq-I8_TV9dE,1465
2269
+ pyrogram/raw/types/contacts/blocked.py,sha256=O2vC8pfA4QUPVhc3N-tJ3b9Wt0YkI_REL8sXL9LK2SM,2946
2270
+ pyrogram/raw/types/contacts/blocked_slice.py,sha256=HhK3Vd3eUbT09M9zTC5by7Yx8fMLbFgrDKiwV9gNOqw,3168
2271
+ pyrogram/raw/types/contacts/contacts.py,sha256=7_bY4GYWECASfF9Tk4sdUfTQW0cIW_LyITy1R_-Ctjo,2940
2272
+ pyrogram/raw/types/contacts/contacts_not_modified.py,sha256=9lZUyb568dUN_y8gK15uvD5HjNr6Te06Me46hAghl3o,2216
2273
+ pyrogram/raw/types/contacts/found.py,sha256=ReSAQvw5bUEAtcoQiAZ6K3Hil2l-MD2x5LQlz_mSusE,3212
2274
+ pyrogram/raw/types/contacts/imported_contacts.py,sha256=6k2MG1nSYdEWqV93dWuwS9kBhIyKTLs2gck3EYRs7Bk,3476
2275
+ pyrogram/raw/types/contacts/resolved_peer.py,sha256=R7NHitN9bNGPLHpET8UnCjZg4wA2Bu7BDBcAvdZPYCA,2936
2276
+ pyrogram/raw/types/contacts/top_peers.py,sha256=q1MJNLhQ01namJuw_YzL-S2tPmOkvTqfttGI_OuAmlw,3017
2277
+ pyrogram/raw/types/contacts/top_peers_disabled.py,sha256=WyJThw2ZHtYXSKUZNcw-mhmds3LFgUYdw5TtAdvILqo,2204
2278
+ pyrogram/raw/types/contacts/top_peers_not_modified.py,sha256=EyejJ8P-Brbsp-crAu2zd84TB__5jBL5EL35CDUYL3E,2216
2279
+ pyrogram/raw/types/help/__init__.py,sha256=aWHXZcdduuNewTKWJ9vJiYaOUFVrxo8pWFZs3bdqhIw,2155
2280
+ pyrogram/raw/types/help/app_config.py,sha256=qfqtR-FHft_z9kmBD8RfR3rXBO4qPl-p9YH0llN97bY,2578
2281
+ pyrogram/raw/types/help/app_config_not_modified.py,sha256=BkDWeS-ztrSwHdrlQVlBtbD3Wy2rK4I2GULLHHFMmlE,2210
2282
+ pyrogram/raw/types/help/app_update.py,sha256=wuDbk43j_o0POgnhKaYkPWmb2sJUotMxmjtOnVu0cic,4585
2283
+ pyrogram/raw/types/help/config_simple.py,sha256=b7trCS_X1O066Z0ZJrgjn3U745LsIbIBWYsM7lhaan8,2647
2284
+ pyrogram/raw/types/help/countries_list.py,sha256=-xUX6AiuPPTYxcEqOXwy1cqy7jExt6Cglf6jxjmoesk,2663
2285
+ pyrogram/raw/types/help/countries_list_not_modified.py,sha256=8kI42e6liJPD7F_cLzvXrXiRz2P2gTbtsMU7DXhJh-M,2234
2286
+ pyrogram/raw/types/help/country.py,sha256=c_PlEnygW40SzxnzH08O6VeSL7LVkbR2LDdoDYGXAj4,3385
2287
+ pyrogram/raw/types/help/country_code.py,sha256=sMxM8Le4B_ufkFdBhfcIwojtIsM1ZdcVYdEhuAvh92Y,3078
2288
+ pyrogram/raw/types/help/deep_link_info.py,sha256=GDr7i7AgMR0hB_yiHrDLcRcqTiZIdmLZB1UGlQfXhFo,3173
2289
+ pyrogram/raw/types/help/deep_link_info_empty.py,sha256=8tV7df6s8tgamVWn8fyEaQd4yBwl4hMv3-Mm1S15mDg,2204
2290
+ pyrogram/raw/types/help/invite_text.py,sha256=8zXExIgspNUtNPsniO-fi52tE1iU2lepFY2HSxxZQ_c,2341
2291
+ pyrogram/raw/types/help/no_app_update.py,sha256=f6QHrCfwumYq76pLEnA269nJBzBz2ozxOfJofSeojG8,2174
2292
+ pyrogram/raw/types/help/passport_config.py,sha256=j77Tg6Ovp6tpQ2cbMCS9G5KR7PyovN1Euk-XAXjRHdI,2685
2293
+ pyrogram/raw/types/help/passport_config_not_modified.py,sha256=zbAAf-jAgtdDwNdhH9eNfSjhQ7E1QGN-MLxoxXMu1Rk,2240
2294
+ pyrogram/raw/types/help/premium_promo.py,sha256=WC8lDH3rjClJ_NGbgg7U-hXPQiixd5YzPfsW71Cz9x8,4068
2295
+ pyrogram/raw/types/help/promo_data.py,sha256=Iej3Iy1-ABrHv6GdVzHJuHCSArEJQH4i_27UYQYSZIU,4190
2296
+ pyrogram/raw/types/help/promo_data_empty.py,sha256=iqBqcWioWgKCrVuDyegmdyFAWYguzU5NoUhrDeLtT4M,2357
2297
+ pyrogram/raw/types/help/recent_me_urls.py,sha256=uk0aR7Mq6DYx8ksGCeiqKOqqcPL8sHfyNe7We5KAt2A,2937
2298
+ pyrogram/raw/types/help/support.py,sha256=9U9QoGxKdMjcJGcUEBpp_QRg4mVWY3Ducmo0_z802Vc,2598
2299
+ pyrogram/raw/types/help/support_name.py,sha256=wT9TMwCnyS5uer0vShwB6pk5Rmyg7CCVkL95OSq29hE,2320
2300
+ pyrogram/raw/types/help/terms_of_service.py,sha256=CCcurvHnivzkHZYZDJp2esDaGadQviMnVMpkkeMMODE,3444
2301
+ pyrogram/raw/types/help/terms_of_service_update.py,sha256=a8G-F19Me0gSiZ84nIiF3d-eRFYKCaVECv2FpiamQBo,2801
2302
+ pyrogram/raw/types/help/terms_of_service_update_empty.py,sha256=T_eglOyUbQ7Mh85wNDQ-kOw4zmSNX3ZHwiDoZwW8ALs,2423
2303
+ pyrogram/raw/types/help/user_info.py,sha256=dTaF11AWeq_yo-R7J7kORK1qbUIDwE8P6TT2Lid11jw,3080
2304
+ pyrogram/raw/types/help/user_info_empty.py,sha256=ikhWVv94u91wZLWaoxM8n9ErRjxiZQBDcxPSbHCgk-E,2211
2305
+ pyrogram/raw/types/messages/__init__.py,sha256=v9kp_VD6nJI8CJRxkB9j6-VqVrraMRrtnQaoGC5k1Uw,4518
2306
+ pyrogram/raw/types/messages/affected_found_messages.py,sha256=aBLOM2QDrf0-kSXbvcQ5HfqrjdUszx8YWgYH4IUDSrE,3095
2307
+ pyrogram/raw/types/messages/affected_history.py,sha256=bFaVu-bHaF_a0aPYgmknnnw4B-lJhtW41Wg6l62LQIM,2983
2308
+ pyrogram/raw/types/messages/affected_messages.py,sha256=Nqayg_kB3v6HjIElJYmyfj7MhXRQ-zk7lra7c_HuKpc,2697
2309
+ pyrogram/raw/types/messages/all_stickers.py,sha256=ORCGUx2aqudFGy9K15pYHbbUOdfWsqD6rFSxZnf4M8w,2689
2310
+ pyrogram/raw/types/messages/all_stickers_not_modified.py,sha256=aa7nhZ8j-JV6lfjW7CHP1OrasjITo2HVm3bhzLYRcnE,2310
2311
+ pyrogram/raw/types/messages/archived_stickers.py,sha256=buh1aVHEcNpbBnjjIaD5TjD40kV2opQJ1WkGJJEbxO8,2677
2312
+ pyrogram/raw/types/messages/available_reactions.py,sha256=De5gCRg4I63oY6gmcwig-Cw5ilTzIzwAUJb6i0kuvlc,2725
2313
+ pyrogram/raw/types/messages/available_reactions_not_modified.py,sha256=g5vtXjwPQzVFIEzQVW9gzAv9j00bguUAcKmwwN3Ujsk,2276
2314
+ pyrogram/raw/types/messages/bot_app.py,sha256=aukC9ApaMN2nalr1Cwvq5_4bLBFLv1_wOu88TJjVK10,3047
2315
+ pyrogram/raw/types/messages/bot_callback_answer.py,sha256=bHj1PfpXInCBK2qGgf9_remijPg1tg-ax-C8x5PN4DU,3978
2316
+ pyrogram/raw/types/messages/bot_results.py,sha256=4OH-pxi89_xlIyNpKjxlb__XXG140y2Q9K0SSHxIAa0,4965
2317
+ pyrogram/raw/types/messages/channel_messages.py,sha256=tRjIBH1CzSUWLsg0-m7I1ju5p0pP6qWSmHJlKj7026c,4883
2318
+ pyrogram/raw/types/messages/chat_admins_with_invites.py,sha256=Mv9QA4PGBPYjJnkpoJJpILzAkEQF-e7KcaWs2Igz1AE,2794
2319
+ pyrogram/raw/types/messages/chat_full.py,sha256=cS3k7wsE0CDt5B5DAuDfcwKFBDXkfAbrenUdpAxbyjg,2975
2320
+ pyrogram/raw/types/messages/chat_invite_importers.py,sha256=c08mXZIhWwx3CcyC0VQdVHwVC6YuUiD4_ZfeHtfHb9U,3005
2321
+ pyrogram/raw/types/messages/chats.py,sha256=o9EbWBqYFTNovJMdzgpsRal57u2GK3jlyjCDeinnJNg,2598
2322
+ pyrogram/raw/types/messages/chats_slice.py,sha256=HJAjMiF_p9zYLhxMawWtfTm3mfBwUA9gi1zWtOSmmUo,2818
2323
+ pyrogram/raw/types/messages/checked_history_import_peer.py,sha256=lYEjB9fQ9hFUWRxxRolOZszFF6AEkjsfn47atRNsxUY,2477
2324
+ pyrogram/raw/types/messages/dh_config.py,sha256=AVPIQRGaKljZ_yAyCFVfLrBsmd8uQ60-4OTCgCLS_kk,2878
2325
+ pyrogram/raw/types/messages/dh_config_not_modified.py,sha256=NhYfls-XJcIdJaAqXJ4FXDDSdiumhO__0INhpOqDBlk,2377
2326
+ pyrogram/raw/types/messages/dialogs.py,sha256=_lx0uTGo8g73KGXFqVAaldFRwjlncyOIjmQLGJ-7_nY,3228
2327
+ pyrogram/raw/types/messages/dialogs_not_modified.py,sha256=YzWa3nFIDTxhfdVICM049wEI9JquhFh06OuwokBkuMs,2363
2328
+ pyrogram/raw/types/messages/dialogs_slice.py,sha256=z4BmjN-zrW_6OHkY79cX0gzV-uwTgvl4wHiy9SeOW50,3448
2329
+ pyrogram/raw/types/messages/discussion_message.py,sha256=H3kfj4-7j5AbYSp9LB_XQvJlPGLf-iHE9PrBb518YjY,4663
2330
+ pyrogram/raw/types/messages/emoji_groups.py,sha256=L7Apf15sdKJrUQnCaiOoBbDDB0tgvC00AJ4aml_hBUw,2719
2331
+ pyrogram/raw/types/messages/emoji_groups_not_modified.py,sha256=gUibCvxG1dnApnFsuLOlQfgjVJZereHsO2NVTfTCCK0,2325
2332
+ pyrogram/raw/types/messages/exported_chat_invite.py,sha256=_8smJmpQt9x3KiEsl9RI8edfsgsNi6Pefuh-HtLKPKU,2795
2333
+ pyrogram/raw/types/messages/exported_chat_invite_replaced.py,sha256=NxH5inZnQlPx5CXexSiuyY5ILJrKkPwpcgPsE5DIn34,3167
2334
+ pyrogram/raw/types/messages/exported_chat_invites.py,sha256=356jKxLm3v5vt1bp628hxBuIoe9lwMJOnkTnw8Qowlg,2987
2335
+ pyrogram/raw/types/messages/faved_stickers.py,sha256=ODnW38xX-6JmEGZHQM4orhT4Xl20Q9Ib5NYoYBSOFDA,2942
2336
+ pyrogram/raw/types/messages/faved_stickers_not_modified.py,sha256=wCzDY0QJTxg7M20j2OwZHpFiLyD3zYAOFvAXT9XY4f0,2246
2337
+ pyrogram/raw/types/messages/featured_stickers.py,sha256=F0mDRbSssoz5nYMl-rC-W2B8zLIN9KK6WN3JQ5K6eIE,3526
2338
+ pyrogram/raw/types/messages/featured_stickers_not_modified.py,sha256=S_QK9azhXaKMMsRfesR6C7m9rFyAoTHfVWloBJMeN8M,2508
2339
+ pyrogram/raw/types/messages/forum_topics.py,sha256=TtmbGwr6VGvCBcrU06EbBHaWserPVO9YHTpW6kC7MuM,4111
2340
+ pyrogram/raw/types/messages/found_sticker_sets.py,sha256=CyPOVZcprFhnhiOhQ205aQINouemUrcGIHYDnsKu2BQ,2669
2341
+ pyrogram/raw/types/messages/found_sticker_sets_not_modified.py,sha256=euBkMMbmD7gnh9GmdmHGAmargKN_2XydfttNBxdoowo,2260
2342
+ pyrogram/raw/types/messages/high_scores.py,sha256=UTqgt4fmnywwHgDSDKX1E78tl_nIU60dtqqM9iJFzEE,2738
2343
+ pyrogram/raw/types/messages/history_import.py,sha256=t2ku8SSEpncetAc_YaPOXgdaS-oBDOPbqDejiU7gMkM,2332
2344
+ pyrogram/raw/types/messages/history_import_parsed.py,sha256=YaJSsPmnTaMG5qCzEqiKHDk8UqUBJsFhDTgQ4_3KHYg,3057
2345
+ pyrogram/raw/types/messages/inactive_chats.py,sha256=rjKmihg0MxrDXRy45NoybLjmcIGZgNG6_Ky4gFVuNqg,2920
2346
+ pyrogram/raw/types/messages/message_edit_data.py,sha256=OP6s5qk3dfJIb4hxkwWJjei154leNJoVELk-5pZKuV8,2479
2347
+ pyrogram/raw/types/messages/message_reactions_list.py,sha256=Y6SbuGFukNZ5VYujUePcZaIW0161iNUj-7MiOKBmdDw,3741
2348
+ pyrogram/raw/types/messages/message_views.py,sha256=rLqY4Wyp04ogk57SQcLamE7kzU3c92NhLafCHIeMD8I,2965
2349
+ pyrogram/raw/types/messages/messages.py,sha256=QsVxJPUkBvgpoh_oVUvtOJfB19Ddk_j0n5VwyCnAMfE,3390
2350
+ pyrogram/raw/types/messages/messages_not_modified.py,sha256=wdwRg5jfiUe2lOrGteyBg87txOpo27nrGo8_d1ji7dY,2812
2351
+ pyrogram/raw/types/messages/messages_slice.py,sha256=8xGI89hnTqqtqjn02RvfILAw77XbsNC8xgViR-AGh8w,4799
2352
+ pyrogram/raw/types/messages/peer_dialogs.py,sha256=IwAEZvCD3kWjvrwuASY2pLHg7kOEkrmp7PaqfPatitQ,3566
2353
+ pyrogram/raw/types/messages/peer_settings.py,sha256=74rR6WTrPSQkBrVK6QbtSVbeUJR-DMF6KWH1K9ScyTs,2969
2354
+ pyrogram/raw/types/messages/reactions.py,sha256=PL7vdrtxCG0uqZl5mNeU-cnULvYJNgIP2YJFaUe4GaA,2682
2355
+ pyrogram/raw/types/messages/reactions_not_modified.py,sha256=5FdsoleNdBTfBH0-FwhMhz_wyG92nxY-_55mZLS7obo,2266
2356
+ pyrogram/raw/types/messages/recent_stickers.py,sha256=l4ZKiHNwnYLPiYE8wquQdo605q71cp9beoTJPWwFe24,3188
2357
+ pyrogram/raw/types/messages/recent_stickers_not_modified.py,sha256=bWIMNusOCQjgIKh1bWPO2qIqXmGrB34nG9acT2Zy4aA,2250
2358
+ pyrogram/raw/types/messages/saved_gifs.py,sha256=fK-z_U_kNu3cLVQNk6vWBF6wykfhVdODRdmMcA6xfmg,2593
2359
+ pyrogram/raw/types/messages/saved_gifs_not_modified.py,sha256=7uN9NR8Fa-cWVbJi2LdWWKfOHM24IxBFYiRBjhxzbic,2222
2360
+ pyrogram/raw/types/messages/search_counter.py,sha256=LVcjb1OTudxYnDK5cSZ7GdazuJsZmDqU9vAnxufKcOM,2956
2361
+ pyrogram/raw/types/messages/search_results_calendar.py,sha256=2296ujjLIwWWyxA3KG7VlV63VnRchYxCplL1RmJJJ6I,4857
2362
+ pyrogram/raw/types/messages/search_results_positions.py,sha256=ues0IqH3JnQIHxYOf0WfwXRzsZLDJs3Bs8Q921eU2gE,2774
2363
+ pyrogram/raw/types/messages/sent_encrypted_file.py,sha256=WBVNREfu2FPDdw2rWzxw3pM6UKBeUGVE7NVzejeJY5A,2714
2364
+ pyrogram/raw/types/messages/sent_encrypted_message.py,sha256=NLLVt4s0Ssxn6yrQ9D-OPNmCWU1PScD0dh2bkHAuTJQ,2460
2365
+ pyrogram/raw/types/messages/sponsored_messages.py,sha256=AmLaAR8rUjH8UE2VqyKCJ8KxEa2etvASb2z71VJdL-Y,3526
2366
+ pyrogram/raw/types/messages/sponsored_messages_empty.py,sha256=YBJ1fSMB1oK4zxdtFvLrW7BFLn2vPNiTKOQm_obGnaE,2246
2367
+ pyrogram/raw/types/messages/sticker_set.py,sha256=k62etXuergH4fIFDOR0h2XGPytqVF5q4OlFPzaUO7o4,3586
2368
+ pyrogram/raw/types/messages/sticker_set_install_result_archive.py,sha256=Vwv1bc_AmkofhXSs1tL4nvARGv9ZK5iFcCIx3ZF0Jus,2538
2369
+ pyrogram/raw/types/messages/sticker_set_install_result_success.py,sha256=wHooT-C81IC7qGwjTZtH-Dtix8xnaXtm2Wvgxah3zG0,2281
2370
+ pyrogram/raw/types/messages/sticker_set_not_modified.py,sha256=OnlGb7wNp4Vm2wkZQqG913ZnYUNPb8e_40cXvLKVnx8,2502
2371
+ pyrogram/raw/types/messages/stickers.py,sha256=r042LKKlY_PCB7jeWnvmUg9w8HwmcG89WHYMdCM56tM,2623
2372
+ pyrogram/raw/types/messages/stickers_not_modified.py,sha256=9ru9xTDhFq_IaWOTOMptrUC36dp3H6_VtCMebK7nTNg,2216
2373
+ pyrogram/raw/types/messages/transcribed_audio.py,sha256=aeuEZiGFSfzFlm_iJLWqHEsxUZDBQkVUVdI8_53Bcns,2972
2374
+ pyrogram/raw/types/messages/translate_result.py,sha256=fGBmS29WKbKBt0RqHPhUBwGp60fmAT3gBi4SD8kFa5Y,2479
2375
+ pyrogram/raw/types/messages/votes_list.py,sha256=bxO9yyROlwdM4nX9L9IgyOoFCpWvBIoloCnsNlbaSbg,3360
2376
+ pyrogram/raw/types/payments/__init__.py,sha256=nhSGsadlGMD4Zz91ByIZyOnIVKptdRwxEJ5q0yGhXhw,1433
2377
+ pyrogram/raw/types/payments/bank_card_data.py,sha256=hjSJpRPzC6j6gmt9hW16dsbLuKiRZeZd1plQbIJGxQ8,2688
2378
+ pyrogram/raw/types/payments/exported_invoice.py,sha256=OWzeHEZs6_KNT-XQQ2_P2UEibXe3kVMWUl9sYFxx1iE,2342
2379
+ pyrogram/raw/types/payments/payment_form.py,sha256=-LEwhCR1BmZiOWjeMicpKgKXSSbs8usbSFltMWedngo,7894
2380
+ pyrogram/raw/types/payments/payment_receipt.py,sha256=cqG5p5pB-k5YFhj7L08uI9dE70lXZjBfUBGXXIuRHVY,6393
2381
+ pyrogram/raw/types/payments/payment_result.py,sha256=Qyv2mnjNKlW0q_xhrE4fPFFmBjLF5JAe_gSmFI_HSGU,2423
2382
+ pyrogram/raw/types/payments/payment_verification_needed.py,sha256=InMunaa_uWzWGbJl8JFh7Jwh2TQJMLyYqR1lWq6V52o,2382
2383
+ pyrogram/raw/types/payments/saved_info.py,sha256=dmqZIhltPH3I2pVYbS067LnOo3kEpl8OY2QdrUlUZvA,3082
2384
+ pyrogram/raw/types/payments/validated_requested_info.py,sha256=VsF4pbfses7tfVDVel7ZSgP0IyqD8iO_YJ2WrRH6y9k,3144
2385
+ pyrogram/raw/types/phone/__init__.py,sha256=l6wKXBP2fkcKZyMzG_ZCcRQj8FVGUceLg0a6s37AGF0,1408
2386
+ pyrogram/raw/types/phone/exported_group_call_invite.py,sha256=H4qjZ34WAC4YcoM52pwLSIrrXUiB_Pekx_VxKr9koaI,2390
2387
+ pyrogram/raw/types/phone/group_call.py,sha256=6pt09hMCFnB7XZHXG9yiiocN1WkkXFFXFz4-ILd-yfY,3651
2388
+ pyrogram/raw/types/phone/group_call_stream_channels.py,sha256=Ay2gIfEwiCm4h9UmRqP8PUtQckVvvcFlYPZIKU_un18,2566
2389
+ pyrogram/raw/types/phone/group_call_stream_rtmp_url.py,sha256=FPXzkC2GCxsMGChPASo3nhBukFwvLW6CJ_e0dCW6gWg,2560
2390
+ pyrogram/raw/types/phone/group_participants.py,sha256=IRzKbuiMCqFV-NPPkmNSJSy1DSnn3NMXf43hB5r3MjU,3750
2391
+ pyrogram/raw/types/phone/join_as_peers.py,sha256=lgwxLiCufHFOTbBjg2ion7w6qmWb5uxk1Y-Nq8xoB5Q,2921
2392
+ pyrogram/raw/types/phone/phone_call.py,sha256=eQM5d22i6IyOgS0nxn7P1Drdy2vKVyibObJb_i15S7g,2746
2393
+ pyrogram/raw/types/photos/__init__.py,sha256=Iw-xJ4UAcni_E_JSxdlPmP8hDUYudf_QlMEjBEENiUc,1150
2394
+ pyrogram/raw/types/photos/photo.py,sha256=unb9dkJ7InCj00fsBYnX_L3MvAyh-WcpRCBPH9j6MCg,2699
2395
+ pyrogram/raw/types/photos/photos.py,sha256=pxCZxt3sgvDoM7NtYvF8pjIND3K_Utz9ZSu-DARzpoQ,2646
2396
+ pyrogram/raw/types/photos/photos_slice.py,sha256=njS4gIr3E0Uv3U1yp-CuFpLn16d0qqq6cndKNFsYNIE,2866
2397
+ pyrogram/raw/types/stats/__init__.py,sha256=n0dmja00IGX6vQpohSI12rVVYk6rF7684SeRIWddciY,1188
2398
+ pyrogram/raw/types/stats/broadcast_stats.py,sha256=Up1jHnFJlXRsH7oX0QGQvh6uK3mJLGvil3FcZaywFfY,7920
2399
+ pyrogram/raw/types/stats/megagroup_stats.py,sha256=r8vj_6iGwuKYIuVMuhXDk6jPGI_2X0Ls1i-XhZUn4lI,7986
2400
+ pyrogram/raw/types/stats/message_stats.py,sha256=sV6i1hmGBsq_oaA03pLtQRzithnPSFoDqh309WwWJvc,2457
2401
+ pyrogram/raw/types/stickers/__init__.py,sha256=rJAWW6hP7i77jeDfwwOYCJieasOL-AcZtrMu3RHlQQw,1113
2402
+ pyrogram/raw/types/stickers/suggested_short_name.py,sha256=0ZcTsJCLhxQnOS0PC6POVUBxuD3-oV9cAZyw7mNF1KA,2423
2403
+ pyrogram/raw/types/storage/__init__.py,sha256=_-10EeDoMTokFhfued9NjWMwPHNCEdBPwkSh3QSf4UE,1380
2404
+ pyrogram/raw/types/storage/file_gif.py,sha256=GEe1Nc2R9I-o3pm-s-Re9eir8PNJSGS1zC71nOMnAzY,1962
2405
+ pyrogram/raw/types/storage/file_jpeg.py,sha256=FxOA8PEi2NRX7uHrQyqJVlIW2OxBQTXIsQKbpKw7dJc,1962
2406
+ pyrogram/raw/types/storage/file_mov.py,sha256=CRJDZp5r8kLsqInkcCLWQrx_sssanT7boXWAtIH0PjY,1962
2407
+ pyrogram/raw/types/storage/file_mp3.py,sha256=jRwzMLyXxv1-nfZmjdGs4dDlO8INU6Q-Uy94b6h6nAA,1962
2408
+ pyrogram/raw/types/storage/file_mp4.py,sha256=CTGwDqdkVUf1sHAIFKD3iLVzS-AOKenSqSTf1Y-pFjE,1962
2409
+ pyrogram/raw/types/storage/file_partial.py,sha256=CfIAHSOJ5Bt_xhGHriQAuIsI07frkUlEkBO54mAIMQs,1978
2410
+ pyrogram/raw/types/storage/file_pdf.py,sha256=qNK6byo0Pe99XKY5xsvbTnk8gXBz9pccRjW3ZjMDj-I,1962
2411
+ pyrogram/raw/types/storage/file_png.py,sha256=D249n2A__aQ0t5kZsr6EKru4mnNLXYpinuKCzNyVcE8,1960
2412
+ pyrogram/raw/types/storage/file_unknown.py,sha256=Edu12NUXs3FVlhWeYtUZ9Hq_hKYnyepJ04fGsS_-ld8,1978
2413
+ pyrogram/raw/types/storage/file_webp.py,sha256=nTO8JAyY2HGCW5w5UTkfprVPjqoyMY54fmS-zc62mq0,1966
2414
+ pyrogram/raw/types/updates/__init__.py,sha256=GNnXGXLp4Kqln_FQ836fu8x-P1PyHDOsOp881Yqg1Ug,1440
2415
+ pyrogram/raw/types/updates/channel_difference.py,sha256=MoNgFI-vWhTBXA3Na7oKSVnNg3eEc9RnTeLC95xEqaM,4229
2416
+ pyrogram/raw/types/updates/channel_difference_empty.py,sha256=xXPUeEXRo_-Emp8lq7HXgH-wKfIyU5U-UeUqyWoPYJ4,3050
2417
+ pyrogram/raw/types/updates/channel_difference_too_long.py,sha256=MPSzRVDU2vpOYpGsj_3W8-K-H2ZhzmwMuJkHz3dZvV8,3954
2418
+ pyrogram/raw/types/updates/difference.py,sha256=Mee8s2TcjSYCCBEJpgAJ2ChAbTqm1RmmQatFt5ICihE,4066
2419
+ pyrogram/raw/types/updates/difference_empty.py,sha256=0Vd-3poMuXztesP-L7xYrHa07KCyuVHMf-bn2Y7oqho,2527
2420
+ pyrogram/raw/types/updates/difference_slice.py,sha256=S5zPa_tVrQ8QyboDjPvQnT3FIIdfhlBpO7l2By2Wc8Y,4207
2421
+ pyrogram/raw/types/updates/difference_too_long.py,sha256=JiA3sq5MLrh1_EAcqfC4PbixCkIschWrpGDcq-aYM5g,2344
2422
+ pyrogram/raw/types/updates/state.py,sha256=jB8Dx4TPrzJfubaEBAuugfqTZ5uN5Yt1xibmHyLqyNA,3104
2423
+ pyrogram/raw/types/upload/__init__.py,sha256=iNxzKIQDseu2sDMAzIrfolSgUeIBLPlhhjFcoql4Lo4,1250
2424
+ pyrogram/raw/types/upload/cdn_file.py,sha256=vjKneaw4507hELexUNqgWR7GJnQTwJcLCLCabJRqP98,2312
2425
+ pyrogram/raw/types/upload/cdn_file_reupload_needed.py,sha256=nZDkG5q82okwqX73xWwbdqS4CS-wUPKn2SEanRCIMk4,2440
2426
+ pyrogram/raw/types/upload/file.py,sha256=e71hOg119_6P1qRhj9w8bo7004QIndfS1A0I6qrDSK0,2770
2427
+ pyrogram/raw/types/upload/file_cdn_redirect.py,sha256=9gmVlyw1TQweueqmQEcBXSLZuO0Gaf0G-hdWSGTU5GE,3465
2428
+ pyrogram/raw/types/upload/web_file.py,sha256=sYDD2ehz8Q_mnO3HbormAtgNxLgFaNYllsN_KDbbwiw,3260
2429
+ pyrogram/raw/types/users/__init__.py,sha256=X0MPB9bLJmIaChEGfjqRMhAY26yNnpC-S4P-oCFnm2U,1092
2430
+ pyrogram/raw/types/users/user_full.py,sha256=URjuJOj_-4NLjRCu33EgQz9WsVr-iqMtZLwn3ZVi1Fo,2929
2431
+ pyrogram/session/__init__.py,sha256=eFtgBm9MjBOzLv_0j8YH6ROR7vUhtLLxMtUXlYSMS7w,871
2432
+ pyrogram/session/auth.py,sha256=SP4cAss2PkdPRMTADOLiClK3-UKhTV4MAWWDhlFUBZ8,11446
2433
+ pyrogram/session/session.py,sha256=3MPLNDKpdDFkkoQdyesDBsnlBPhgWdo2npoQ65uczDM,13419
2434
+ pyrogram/session/internals/__init__.py,sha256=S4Was2IuEOUSbUsQrHcGa-8EASzl8ji0dUK9U4NiuVM,917
2435
+ pyrogram/session/internals/data_center.py,sha256=sVLZxfs1B5GjOB3zJate4TbpPRddVMxSvbHOLu-8PX8,2452
2436
+ pyrogram/session/internals/msg_factory.py,sha256=pg9cf4jqeC5WSxYxWh1ElQ5QMtjs-DVnwtoEZR4L2QY,1374
2437
+ pyrogram/session/internals/msg_id.py,sha256=8UEMAFfUp23dtrkl1XFYQSrj-o6posTLmfiSbAdSfY4,1156
2438
+ pyrogram/session/internals/seq_no.py,sha256=W_FEzXij273pvE8tKZQEBF664qPPK8PI2pvhUB84Ouc,1162
2439
+ pyrogram/storage/__init__.py,sha256=w0Tnny0QfGFq5d3nbF23GmvZQihHRyNQ3Aovzwqu4kQ,928
2440
+ pyrogram/storage/file_storage.py,sha256=5IVtvoOXO_yKhx5clcJ5m-Tb1fPnBId36cTxc1UuiSM,1959
2441
+ pyrogram/storage/memory_storage.py,sha256=Ol6shK6wBveAddSRCz7wsawDm3UvVfOQiJeR3Mbdt1U,2750
2442
+ pyrogram/storage/sqlite_storage.py,sha256=LI14_ij1iYYFkHtB0ktRLBhF1Dp3dTOGhQb8vqqBUJ4,6224
2443
+ pyrogram/storage/storage.py,sha256=kZ8hGYPby4TNr9HrDpQ682ujngUDSI6pbzLL_R1lMQc,2781
2444
+ pyrogram/types/__init__.py,sha256=A9nTGUWe18ZnKlGqRFEjAVvJFvYk_7LWA0qQ9VYx5NU,1109
2445
+ pyrogram/types/list.py,sha256=M6fzHa8huT5glCmbVjEDGQ2bQSr6cEkJogY68icpTn4,1093
2446
+ pyrogram/types/object.py,sha256=w87fklQbg9fd83kw05N44ncZJeyF7ePu2Mqz_VF8VjE,3862
2447
+ pyrogram/types/update.py,sha256=1Oom1pSr5gl6Yf0Syek3ke0KGVddUQ4tYHTw44ZTb3c,1002
2448
+ pyrogram/types/authorization/__init__.py,sha256=gEoJATQxucLD8YZaBQa4ay9vrl7yBOcT_kIcEyZukvQ,938
2449
+ pyrogram/types/authorization/sent_code.py,sha256=XSZrk8LZqcxLFgRNO5uQlubSbWoItO_sH4mY0ay6hRk,2288
2450
+ pyrogram/types/authorization/terms_of_service.py,sha256=FcA84H4Vt502yOPO9SOP_QtcI0JTAV2zw-TbFJPBH60,1930
2451
+ pyrogram/types/bots_and_keyboards/__init__.py,sha256=eBjK5doz_qWDaRtj_7bf1SqiVixNRrLez1RqPOZa9Gw,2830
2452
+ pyrogram/types/bots_and_keyboards/bot_command.py,sha256=NP6aLIa3ZQMWmNLMRF94JL1xxKOyVPijgwExDF4Rmxw,1738
2453
+ pyrogram/types/bots_and_keyboards/bot_command_scope.py,sha256=62sSsmNXBuGL4sKdMnrpPFDnZWtvaLNQyJAv2KSDes0,2788
2454
+ pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py,sha256=XzgAkl3xRo-FU-dQHYHKf1yxbVYIoVu2ndOMxQ8dkfA,1293
2455
+ pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py,sha256=mOSVHajP1qdLL9v9hdRWz80BPJGB_nUgsamLld7oXo8,1258
2456
+ pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py,sha256=GgM-tIbRnSfkPd3BR5q0htyx5MJJzXvqv4CBlXecLR0,1249
2457
+ pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py,sha256=0eMMtnwAGq6KXwq7XzYpxg-oS5FO8_5WB-mKOoxKAbY,1562
2458
+ pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py,sha256=b_UecRe9y4cz7gFAjXuyLljavyq9jlSF6EkBBhnkbHY,1639
2459
+ pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py,sha256=Jgt0GwFQR_5XywZnsoS4asTQ88BbWKhLhzqh9Rxn4OA,1817
2460
+ pyrogram/types/bots_and_keyboards/bot_command_scope_default.py,sha256=Wv5c08SZfD7xBDa7Q3MZWeidMlHoYpJtXAZh5WkXyNU,1308
2461
+ pyrogram/types/bots_and_keyboards/callback_game.py,sha256=rvWwPUMRIguPQ1UEDCEav81vE9yYpXV8lVIcdaLyC5I,1029
2462
+ pyrogram/types/bots_and_keyboards/callback_query.py,sha256=ykLxQ70879n8sJd5HjwwxcyX-UCuMszO0ONLG6Ai68k,12797
2463
+ pyrogram/types/bots_and_keyboards/force_reply.py,sha256=e--OW7JxrUGIIhcX62p2iBWkUpIGzQOyQCyqrJaFQKk,2383
2464
+ pyrogram/types/bots_and_keyboards/game_high_score.py,sha256=UxMohtN-vUoTY-TYQkSrJb2MCrveu0XRG0j_7xHLdHQ,2216
2465
+ pyrogram/types/bots_and_keyboards/inline_keyboard_button.py,sha256=oCmwxTrg919UMA_DZYzW0y7wID7j-Y5SuvVizaqU1fQ,8633
2466
+ pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py,sha256=bHhAc-xqvMFE1dfMzBIbdIIDZxlMYdlIj2Pm10RKq_Y,2460
2467
+ pyrogram/types/bots_and_keyboards/keyboard_button.py,sha256=vxzlE0yfjbbdu0qs-a28lJVtulLfhdVoAVmvMHGWx4I,3514
2468
+ pyrogram/types/bots_and_keyboards/login_url.py,sha256=Mw0cpN6n2emrowv_jYEvUKkna1vdHZ2OCd6h7Z2xI0Q,3712
2469
+ pyrogram/types/bots_and_keyboards/menu_button.py,sha256=G_PKC2kVkF6R3EhEyIUt5cjoE-4YmcjGi-nNT-Huuxk,1603
2470
+ pyrogram/types/bots_and_keyboards/menu_button_commands.py,sha256=rvKGTYpVbntf9ehG4xQ3eZRP1_XZxx3BvlgFsnLGczw,1209
2471
+ pyrogram/types/bots_and_keyboards/menu_button_default.py,sha256=pNCQlKmhTtFUiTRPMTwUgioyjUkMu6K716kADOmQox0,1212
2472
+ pyrogram/types/bots_and_keyboards/menu_button_web_app.py,sha256=2FmzeQJieKekNPjzSY7RocLWX2dpySTP_mcZTxUgCxI,1809
2473
+ pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py,sha256=LuxXS3PTgRXFqTQtPdz2gD98WkTOjhPspZ77e44mdfA,4575
2474
+ pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py,sha256=33MwLIRUS1JOtzWz-wKMIY1y9TrOzEK9xe8eLDC2Rl4,2339
2475
+ pyrogram/types/bots_and_keyboards/sent_web_app_message.py,sha256=ZTCnPZeMasOqvl960cRKg_qLcjEaoOoDmfc6rGa4iaE,1564
2476
+ pyrogram/types/bots_and_keyboards/web_app_info.py,sha256=A2QpOTxR3uTuEuEbNz9GaOXWx293OIVWrHFmOQ_0ZpY,1313
2477
+ pyrogram/types/inline_mode/__init__.py,sha256=FxaqeA9C5eA9ciosaFnEYsmACCopqHYzcz383Wg6jAA,2755
2478
+ pyrogram/types/inline_mode/chosen_inline_result.py,sha256=hm6PH5ayJWWkAEBEXuds_KcaRh5oHDCPgq14stP83qY,3662
2479
+ pyrogram/types/inline_mode/inline_query.py,sha256=k66FlNbIQWRY68lHuYKxZRDFZQ704aTuMBqxksys7Ag,7298
2480
+ pyrogram/types/inline_mode/inline_query_result.py,sha256=45SvOdJwNYCeTdf8h8j6oxuWG_vEQJO-GJM1wjFQjHI,2411
2481
+ pyrogram/types/inline_mode/inline_query_result_animation.py,sha256=zvkCtdvfqPkam3_uH5UKZIjutDQAT0Y8oJr7OKnJ6Gw,5776
2482
+ pyrogram/types/inline_mode/inline_query_result_article.py,sha256=fRm0nYvw8QM1cs52W6DtcdcNocvSG7QT9Q-We-rhZzE,3304
2483
+ pyrogram/types/inline_mode/inline_query_result_audio.py,sha256=oalfZaAO1eRNHMJx98CyuCmDfHKD0dexZm8ez_fU__8,4505
2484
+ pyrogram/types/inline_mode/inline_query_result_cached_animation.py,sha256=2kVHhA033R7HL1HEbni8LDWTsUYwLB1q2Gw69V9N9GQ,4245
2485
+ pyrogram/types/inline_mode/inline_query_result_cached_audio.py,sha256=ox6sd7wogeEchXAZyLny48GmoM-cxvoRb4V6k46snw4,4029
2486
+ pyrogram/types/inline_mode/inline_query_result_cached_document.py,sha256=dBYs-vZYac_uKW7tPTaKzIaHsBm6-qV9PBPqIZY8GlU,4388
2487
+ pyrogram/types/inline_mode/inline_query_result_cached_photo.py,sha256=8ZbKFWZKNylh1hT2olMv5Gyk1bzA_cNfiEhjCeyPgQU,4312
2488
+ pyrogram/types/inline_mode/inline_query_result_cached_sticker.py,sha256=Qn3ojDH_Syr5Ugt4RFDJ9HcXIBGAsplGaWJOgu7IHHY,3031
2489
+ pyrogram/types/inline_mode/inline_query_result_cached_video.py,sha256=ydHT4TAe_2qUUlQlLIAoVM8LU-vWrIBqVyjoCkKEIRw,4394
2490
+ pyrogram/types/inline_mode/inline_query_result_cached_voice.py,sha256=3144P4_gTOavyT--e6PUXrxVrpx3rtla3FsVd_eUQdU,4202
2491
+ pyrogram/types/inline_mode/inline_query_result_contact.py,sha256=515OfnkYPQzOS_jMvRfrDl436ms1-F3QTKpALHUbhXQ,4132
2492
+ pyrogram/types/inline_mode/inline_query_result_document.py,sha256=WnxRJJV10VoMLz14pCgiay3lTJ4faYsh7_Bp2kj1kIk,5240
2493
+ pyrogram/types/inline_mode/inline_query_result_location.py,sha256=ky178Jjm_30DHiesypXEwGMmPn-etx-7m_Sfk9--CI8,4619
2494
+ pyrogram/types/inline_mode/inline_query_result_photo.py,sha256=1nI3_ACZsJpRa5N__-GWA8GzeMjYLfalPHj8Q4wwdfA,5261
2495
+ pyrogram/types/inline_mode/inline_query_result_venue.py,sha256=uCJXgU4ir40GIosVbSuys1GnIUbqoCnT9Capii4dn-8,4754
2496
+ pyrogram/types/inline_mode/inline_query_result_video.py,sha256=U3DDN9bqCXsKuClqRhZcG8k3WYxo4XpYoyOYQu4BdzI,5474
2497
+ pyrogram/types/inline_mode/inline_query_result_voice.py,sha256=bvw6mWfGcMpIFiJCX_LFeJRgifrkAZOIDHhgvkks1wQ,4360
2498
+ pyrogram/types/input_media/__init__.py,sha256=BCDQSZQJb8jZ-y8QqbGNknJuTWpd1-d6c0_C5myaX80,1314
2499
+ pyrogram/types/input_media/input_media.py,sha256=Fdy9eM49uE1hZgZrZX94lvNTB8bQINmWKlB16Kv3t9U,1638
2500
+ pyrogram/types/input_media/input_media_animation.py,sha256=pAw3B595ZmFWmdnJ_MvfGsPBR6ekBDYrL3os--c_-1o,3428
2501
+ pyrogram/types/input_media/input_media_audio.py,sha256=JqzPIRejDAogRtkhdcrt7Pl0V0u2x5AWNSr2PtBiTIY,3282
2502
+ pyrogram/types/input_media/input_media_document.py,sha256=3yd4W36Gl_rht6AGDKfmgqiUvh19ywuyroKZ6B4NDYM,2771
2503
+ pyrogram/types/input_media/input_media_photo.py,sha256=x2vTGd0GU5APLNTHd33AOVIWkxCOU7LK6eVruVbQdpE,2685
2504
+ pyrogram/types/input_media/input_media_video.py,sha256=5_ykPUCRZKWGZ4RpO6VOQrZyTGPJ_qvPM4qYS_k5FNM,3620
2505
+ pyrogram/types/input_media/input_phone_contact.py,sha256=2bbSIhMjEXWgcfeOfz53mIPwqqP9f1zWE1zRfbph9Yo,1737
2506
+ pyrogram/types/input_message_content/__init__.py,sha256=vmwDEVdpZp1nvp67yzc8_P9NGT0P_FLWiXtIENe9-ZI,1006
2507
+ pyrogram/types/input_message_content/input_message_content.py,sha256=rtkinfhcHQdo51AWuER5uuLf8srWhOjszGU8gBJlLTg,1413
2508
+ pyrogram/types/input_message_content/input_text_message_content.py,sha256=OsTd6vFLIAWKEfIKqZtj4cYgtgtD9W4hMhUSj1BZ2eM,2638
2509
+ pyrogram/types/messages_and_media/__init__.py,sha256=X1O8y8lbKEs_EFVnctno2mR60Ccw0ByLS348ykPfgZ0,1836
2510
+ pyrogram/types/messages_and_media/animation.py,sha256=oV4kiR1xEF6NR789pMwhbwzpWcEEnkHZzgybEocQT1w,4044
2511
+ pyrogram/types/messages_and_media/audio.py,sha256=hzjwteB8tdVG2zUtVEpTMgxPgd1bo8MO7jqAVc53Y_c,4069
2512
+ pyrogram/types/messages_and_media/contact.py,sha256=aLWR0NrRva5XBOll2j4OHV4MC4FP00njo50QJgppQkc,2207
2513
+ pyrogram/types/messages_and_media/dice.py,sha256=QizhLYoiobEO-7OjyfHxpTlySAVF6fAxffgtcALMzYI,1587
2514
+ pyrogram/types/messages_and_media/document.py,sha256=qwQcClccgDPasmob2CzGdmalV7gfMmwOBdGuV4TWMus,3409
2515
+ pyrogram/types/messages_and_media/game.py,sha256=Bg4RQcepQKHAsNJOU_gWqcKUiCWAyohTAYWRvJ7HSmM,3044
2516
+ pyrogram/types/messages_and_media/location.py,sha256=IYwxV-4iv1sPQiil3wimLhf6mYl-pwfb5d_MzCc_R-Y,1660
2517
+ pyrogram/types/messages_and_media/message.py,sha256=KsO3dbuak4bhFnflez3Kzw8mgjAQhNzv2QJ4Irg5XFQ,144519
2518
+ pyrogram/types/messages_and_media/message_entity.py,sha256=nMhl8n690ItTUTd7RjGrnSzWwKCjnFUpMEq1sDcXaAQ,4352
2519
+ pyrogram/types/messages_and_media/message_reactions.py,sha256=ckBrBlFujQdiKCWqV9uUZ2kInU4jMz7AztK67uYmN5A,1800
2520
+ pyrogram/types/messages_and_media/photo.py,sha256=NcQiePNa7fDT4Kvhpxtz9W-lNMfP-d0zpAvXXqWTork,4309
2521
+ pyrogram/types/messages_and_media/poll.py,sha256=nLaLRaKpF0nARe4tcSIVWhXIdSG6Q0klT1FAaSowP9g,7037
2522
+ pyrogram/types/messages_and_media/poll_option.py,sha256=Cc5q8FMd6sq5u4n2kA5ThWt640qGJGBdoYJtSHlj9lM,1532
2523
+ pyrogram/types/messages_and_media/reaction.py,sha256=H9KwyjEYyYCZQV8VyP3M4pW9JiU7an5JkoeaOq7bUfI,2617
2524
+ pyrogram/types/messages_and_media/sticker.py,sha256=niXemA51ocYI40fZQ6q_GlAyzsZIcuX787JP_F4Gf9I,6909
2525
+ pyrogram/types/messages_and_media/stripped_thumbnail.py,sha256=9GpKuySE66njHsJ9YRapMLyKxHKy9_p1lBfEHNDV16c,1431
2526
+ pyrogram/types/messages_and_media/thumbnail.py,sha256=WbeaCJoGxe84U9XGRKksATCr-BFhDor50pdQL8mdprs,3755
2527
+ pyrogram/types/messages_and_media/venue.py,sha256=e2TmAVi2wCsYkD5hiH6HgZmQyU_QvLtGl5456BKN8ls,2291
2528
+ pyrogram/types/messages_and_media/video.py,sha256=vzVvdPJqYOy33F_altJ8n4IteBvadSj3ZUxJTNXfbdk,4389
2529
+ pyrogram/types/messages_and_media/video_note.py,sha256=mF0hWg-JByhuiaPZmsCm8YGX9cU3u7j2GR_ZgZKyO3o,3601
2530
+ pyrogram/types/messages_and_media/voice.py,sha256=iAB72niSAg0zDxXpGf-kRKoRIZkpMv5m5bRHzVx0u2Y,3204
2531
+ pyrogram/types/messages_and_media/web_app_data.py,sha256=VNWWbX2sj6GprDoiY_mguKUEsB356Ni9dWU2abhwESM,1565
2532
+ pyrogram/types/messages_and_media/web_page.py,sha256=OwTMrzrcnRfo83-jkOkrz3lfacil2-bIlB32pEq0BOM,6351
2533
+ pyrogram/types/user_and_chats/__init__.py,sha256=b70jBnvVfXz7VEi_Cwf1zZgoMzZWRFReg2IGuHvlTEo,2297
2534
+ pyrogram/types/user_and_chats/chat.py,sha256=kHU5LN-G2pFWZxXtTNO5B8OM8fLGJHALO-tGrBai0lo,32559
2535
+ pyrogram/types/user_and_chats/chat_admin_with_invite_links.py,sha256=b6vybS7eG30AZyBKIXcbAN1TXpt7btlBM7t8vj8evjE,2236
2536
+ pyrogram/types/user_and_chats/chat_event.py,sha256=I3867two-_pcKpi_8WUylmKjirkqxiP9BI8AailuTjs,19835
2537
+ pyrogram/types/user_and_chats/chat_event_filter.py,sha256=uL4GSmho5BgyZY0KH-NhSPNcH13ycooE5SjnbBgarLM,5514
2538
+ pyrogram/types/user_and_chats/chat_invite_link.py,sha256=p2rC9YJZjJn5aCRQWh0exXzPT80STDnROvd8Ap5KM24,4579
2539
+ pyrogram/types/user_and_chats/chat_join_request.py,sha256=AE3UCA94-kabYJlzWDFOM1nQQkWam1w3LYHnxFdcgiA,4245
2540
+ pyrogram/types/user_and_chats/chat_joiner.py,sha256=tlcUTDybVgDZWOA4mQ56nxbyaqNXAIeC03jzXyizh80,2564
2541
+ pyrogram/types/user_and_chats/chat_member.py,sha256=MpsKHTy7KGy1El15CX0zm3ZpibWaEiiCPY-LcnWjE4s,9444
2542
+ pyrogram/types/user_and_chats/chat_member_updated.py,sha256=b72Io0DgOGfbxCtuCMzXd0dFgelfyCNxbNAeOBfFbgE,3674
2543
+ pyrogram/types/user_and_chats/chat_permissions.py,sha256=OHmxRjsghBrEEKJrh0Sdt-Txjn2UJquCiGhkV7JltyY,4382
2544
+ pyrogram/types/user_and_chats/chat_photo.py,sha256=ulop7zzN5vF9gHeGi7BVxeKMVLYo98SAFcwQs_g_mKc,3967
2545
+ pyrogram/types/user_and_chats/chat_preview.py,sha256=ycY6sCcT32gGELn3G5F4yOnyBOT0z7tJDK0FhfE5YhY,2592
2546
+ pyrogram/types/user_and_chats/chat_privileges.py,sha256=2RaESpZOWtysdt_yMdJ_Pmggk_-Sr8NsY_nihqmUxk8,4951
2547
+ pyrogram/types/user_and_chats/chat_reactions.py,sha256=xtJ--vCq1oDfap52ubajju-fo7Zin-YCtnKw8UKIzjo,2356
2548
+ pyrogram/types/user_and_chats/dialog.py,sha256=1aJDPA9iTf5pBh84jv31eKL1OgcTkc3XlMUzf_k3uo0,2682
2549
+ pyrogram/types/user_and_chats/emoji_status.py,sha256=KxY1uxEg6bm3ZtTyN9olTDVVDj99F51r53IVOtZ4kMw,2422
2550
+ pyrogram/types/user_and_chats/invite_link_importer.py,sha256=_haqcrW3FqNmLSIivRrbdr1JYj4ulu2LAW6Qp6rN0NI,1951
2551
+ pyrogram/types/user_and_chats/restriction.py,sha256=gxDlgdGzdx2Eza32MjKeEk7wxr1rB5XYt-hIHZkkCi0,1663
2552
+ pyrogram/types/user_and_chats/user.py,sha256=b1ZQVsVjThpnKM4UNTacmGr0sxuECl_4iuTSgMlwp2o,12836
2553
+ pyrogram/types/user_and_chats/video_chat_ended.py,sha256=J5xTIAMSGDz8_z-EGrKwkoJZC5tCobTY12djOi5xHpc,1346
2554
+ pyrogram/types/user_and_chats/video_chat_members_invited.py,sha256=9QhonApJd1XjOeJu9fqx2_u6nIOTZhfXZw_tX9XXxd8,1610
2555
+ pyrogram/types/user_and_chats/video_chat_scheduled.py,sha256=rUvDXF8r-2MfsAZKAcaWb_UZt5VoHebPjeJXWRDHGSo,1531
2556
+ pyrogram/types/user_and_chats/video_chat_started.py,sha256=WOAuM_CnkRA-W_Iedx0fIHB9RJ-AsvJIiSF05HzLRdA,1043
2557
+ pyromt-2.0.106.dist-info/licenses/COPYING,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
2558
+ pyromt-2.0.106.dist-info/licenses/COPYING.lesser,sha256=pWgb-bBdsU2Gd2kwAXxketnm5W_2u8_fIeWEgojfrxs,7651
2559
+ pyromt-2.0.106.dist-info/licenses/NOTICE,sha256=QL3iJdeVh_ZqRZZchyruQic5bYUWdx3yl0OkSUC2PQc,774
2560
+ pyromt-2.0.106.dist-info/METADATA,sha256=yVzQ9djNiAVgMejqi_7_kN9zkCrNwxXZ31tt-vWn5e0,4562
2561
+ pyromt-2.0.106.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
2562
+ pyromt-2.0.106.dist-info/top_level.txt,sha256=vS2-tKX7dJ1uKjistE5CoOVbv4yqglA95SK0KFEDwl0,9
2563
+ pyromt-2.0.106.dist-info/RECORD,,