PyroAsync 2.2.11__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.
- pyroasync-2.2.11.dist-info/METADATA +118 -0
- pyroasync-2.2.11.dist-info/RECORD +3223 -0
- pyroasync-2.2.11.dist-info/WHEEL +5 -0
- pyroasync-2.2.11.dist-info/licenses/COPYING +674 -0
- pyroasync-2.2.11.dist-info/licenses/COPYING.lesser +165 -0
- pyroasync-2.2.11.dist-info/licenses/NOTICE +17 -0
- pyroasync-2.2.11.dist-info/top_level.txt +1 -0
- pyrogram/__init__.py +44 -0
- pyrogram/client.py +1045 -0
- pyrogram/connection/__init__.py +19 -0
- pyrogram/connection/connection.py +87 -0
- pyrogram/connection/transport/__init__.py +19 -0
- pyrogram/connection/transport/tcp/__init__.py +24 -0
- pyrogram/connection/transport/tcp/tcp.py +125 -0
- pyrogram/connection/transport/tcp/tcp_abridged.py +57 -0
- pyrogram/connection/transport/tcp/tcp_abridged_o.py +86 -0
- pyrogram/connection/transport/tcp/tcp_full.py +64 -0
- pyrogram/connection/transport/tcp/tcp_intermediate.py +45 -0
- pyrogram/connection/transport/tcp/tcp_intermediate_o.py +79 -0
- pyrogram/crypto/__init__.py +17 -0
- pyrogram/crypto/aes.py +130 -0
- pyrogram/crypto/mtproto.py +127 -0
- pyrogram/crypto/prime.py +82 -0
- pyrogram/crypto/rsa.py +259 -0
- pyrogram/dispatcher.py +259 -0
- pyrogram/emoji.py +4019 -0
- pyrogram/enums/__init__.py +51 -0
- pyrogram/enums/auto_name.py +27 -0
- pyrogram/enums/chat_action.py +72 -0
- pyrogram/enums/chat_event_action.py +136 -0
- pyrogram/enums/chat_member_status.py +43 -0
- pyrogram/enums/chat_members_filter.py +42 -0
- pyrogram/enums/chat_type.py +40 -0
- pyrogram/enums/message_entity_type.py +84 -0
- pyrogram/enums/message_media_type.py +70 -0
- pyrogram/enums/message_service_type.py +100 -0
- pyrogram/enums/messages_filter.py +75 -0
- pyrogram/enums/next_code_type.py +39 -0
- pyrogram/enums/parse_mode.py +37 -0
- pyrogram/enums/poll_type.py +31 -0
- pyrogram/enums/sent_code_type.py +45 -0
- pyrogram/enums/stories_privacy.py +40 -0
- pyrogram/enums/user_status.py +43 -0
- pyrogram/errors/__init__.py +65 -0
- pyrogram/errors/exceptions/__init__.py +26 -0
- pyrogram/errors/exceptions/all.py +537 -0
- pyrogram/errors/exceptions/bad_request_400.py +2632 -0
- pyrogram/errors/exceptions/flood_420.py +63 -0
- pyrogram/errors/exceptions/forbidden_403.py +308 -0
- pyrogram/errors/exceptions/internal_server_error_500.py +343 -0
- pyrogram/errors/exceptions/not_acceptable_406.py +112 -0
- pyrogram/errors/exceptions/see_other_303.py +63 -0
- pyrogram/errors/exceptions/service_unavailable_503.py +49 -0
- pyrogram/errors/exceptions/unauthorized_401.py +91 -0
- pyrogram/errors/rpc_error.py +103 -0
- pyrogram/file_id.py +481 -0
- pyrogram/filters.py +929 -0
- pyrogram/handlers/__init__.py +30 -0
- pyrogram/handlers/callback_query_handler.py +49 -0
- pyrogram/handlers/chat_join_request_handler.py +49 -0
- pyrogram/handlers/chat_member_updated_handler.py +49 -0
- pyrogram/handlers/chosen_inline_result_handler.py +50 -0
- pyrogram/handlers/deleted_messages_handler.py +61 -0
- pyrogram/handlers/disconnect_handler.py +43 -0
- pyrogram/handlers/edited_message_handler.py +49 -0
- pyrogram/handlers/handler.py +43 -0
- pyrogram/handlers/inline_query_handler.py +49 -0
- pyrogram/handlers/message_handler.py +49 -0
- pyrogram/handlers/poll_handler.py +50 -0
- pyrogram/handlers/raw_update_handler.py +67 -0
- pyrogram/handlers/user_status_handler.py +47 -0
- pyrogram/methods/__init__.py +47 -0
- pyrogram/methods/advanced/__init__.py +29 -0
- pyrogram/methods/advanced/invoke.py +89 -0
- pyrogram/methods/advanced/resolve_peer.py +125 -0
- pyrogram/methods/advanced/save_file.py +230 -0
- pyrogram/methods/auth/__init__.py +53 -0
- pyrogram/methods/auth/accept_terms_of_service.py +44 -0
- pyrogram/methods/auth/check_password.py +60 -0
- pyrogram/methods/auth/connect.py +51 -0
- pyrogram/methods/auth/disconnect.py +40 -0
- pyrogram/methods/auth/get_password_hint.py +38 -0
- pyrogram/methods/auth/initialize.py +49 -0
- pyrogram/methods/auth/log_out.py +51 -0
- pyrogram/methods/auth/recover_password.py +57 -0
- pyrogram/methods/auth/resend_code.py +64 -0
- pyrogram/methods/auth/send_code.py +79 -0
- pyrogram/methods/auth/send_recovery_code.py +43 -0
- pyrogram/methods/auth/sign_in.py +80 -0
- pyrogram/methods/auth/sign_in_bot.py +79 -0
- pyrogram/methods/auth/sign_up.py +73 -0
- pyrogram/methods/auth/terminate.py +54 -0
- pyrogram/methods/bots/__init__.py +59 -0
- pyrogram/methods/bots/answer_callback_query.py +81 -0
- pyrogram/methods/bots/answer_inline_query.py +112 -0
- pyrogram/methods/bots/answer_web_app_query.py +53 -0
- pyrogram/methods/bots/delete_bot_commands.py +62 -0
- pyrogram/methods/bots/get_bot_commands.py +67 -0
- pyrogram/methods/bots/get_bot_default_privileges.py +59 -0
- pyrogram/methods/bots/get_bot_info.py +49 -0
- pyrogram/methods/bots/get_chat_menu_button.py +66 -0
- pyrogram/methods/bots/get_game_high_scores.py +72 -0
- pyrogram/methods/bots/get_inline_bot_results.py +92 -0
- pyrogram/methods/bots/request_callback_answer.py +77 -0
- pyrogram/methods/bots/send_game.py +109 -0
- pyrogram/methods/bots/send_inline_bot_result.py +85 -0
- pyrogram/methods/bots/set_bot_commands.py +73 -0
- pyrogram/methods/bots/set_bot_default_privileges.py +81 -0
- pyrogram/methods/bots/set_bot_info.py +61 -0
- pyrogram/methods/bots/set_chat_menu_button.py +56 -0
- pyrogram/methods/bots/set_game_score.py +100 -0
- pyrogram/methods/chats/__init__.py +125 -0
- pyrogram/methods/chats/add_chat_members.py +90 -0
- pyrogram/methods/chats/archive_chats.py +71 -0
- pyrogram/methods/chats/ban_chat_member.py +111 -0
- pyrogram/methods/chats/close_forum_topic.py +57 -0
- pyrogram/methods/chats/close_general_topic.py +53 -0
- pyrogram/methods/chats/create_channel.py +56 -0
- pyrogram/methods/chats/create_forum_topic.py +68 -0
- pyrogram/methods/chats/create_group.py +67 -0
- pyrogram/methods/chats/create_supergroup.py +60 -0
- pyrogram/methods/chats/delete_channel.py +52 -0
- pyrogram/methods/chats/delete_chat_photo.py +70 -0
- pyrogram/methods/chats/delete_forum_topic.py +60 -0
- pyrogram/methods/chats/delete_supergroup.py +52 -0
- pyrogram/methods/chats/delete_user_history.py +55 -0
- pyrogram/methods/chats/edit_forum_topic.py +66 -0
- pyrogram/methods/chats/edit_general_topic.py +57 -0
- pyrogram/methods/chats/get_chat.py +87 -0
- pyrogram/methods/chats/get_chat_event_log.py +109 -0
- pyrogram/methods/chats/get_chat_member.py +92 -0
- pyrogram/methods/chats/get_chat_members.py +158 -0
- pyrogram/methods/chats/get_chat_members_count.py +69 -0
- pyrogram/methods/chats/get_chat_online_count.py +51 -0
- pyrogram/methods/chats/get_dialogs.py +104 -0
- pyrogram/methods/chats/get_dialogs_count.py +63 -0
- pyrogram/methods/chats/get_forum_topics.py +68 -0
- pyrogram/methods/chats/get_forum_topics_by_id.py +90 -0
- pyrogram/methods/chats/get_nearby_chats.py +78 -0
- pyrogram/methods/chats/get_send_as_chats.py +65 -0
- pyrogram/methods/chats/hide_general_topic.py +53 -0
- pyrogram/methods/chats/join_chat.py +74 -0
- pyrogram/methods/chats/leave_chat.py +77 -0
- pyrogram/methods/chats/mark_chat_unread.py +47 -0
- pyrogram/methods/chats/pin_chat_message.py +81 -0
- pyrogram/methods/chats/promote_chat_member.py +102 -0
- pyrogram/methods/chats/reopen_forum_topic.py +57 -0
- pyrogram/methods/chats/reopen_general_topic.py +53 -0
- pyrogram/methods/chats/restrict_chat_member.py +100 -0
- pyrogram/methods/chats/set_administrator_title.py +85 -0
- pyrogram/methods/chats/set_chat_description.py +66 -0
- pyrogram/methods/chats/set_chat_permissions.py +88 -0
- pyrogram/methods/chats/set_chat_photo.py +121 -0
- pyrogram/methods/chats/set_chat_protected_content.py +53 -0
- pyrogram/methods/chats/set_chat_title.py +78 -0
- pyrogram/methods/chats/set_chat_username.py +68 -0
- pyrogram/methods/chats/set_send_as_chat.py +57 -0
- pyrogram/methods/chats/set_slow_mode.py +63 -0
- pyrogram/methods/chats/unarchive_chats.py +71 -0
- pyrogram/methods/chats/unban_chat_member.py +64 -0
- pyrogram/methods/chats/unhide_general_topic.py +53 -0
- pyrogram/methods/chats/unpin_all_chat_messages.py +55 -0
- pyrogram/methods/chats/unpin_chat_message.py +61 -0
- pyrogram/methods/contacts/__init__.py +33 -0
- pyrogram/methods/contacts/add_contact.py +78 -0
- pyrogram/methods/contacts/delete_contacts.py +66 -0
- pyrogram/methods/contacts/get_contacts.py +47 -0
- pyrogram/methods/contacts/get_contacts_count.py +41 -0
- pyrogram/methods/contacts/import_contacts.py +58 -0
- pyrogram/methods/decorators/__init__.py +47 -0
- pyrogram/methods/decorators/on_callback_query.py +61 -0
- pyrogram/methods/decorators/on_chat_join_request.py +60 -0
- pyrogram/methods/decorators/on_chat_member_updated.py +60 -0
- pyrogram/methods/decorators/on_chosen_inline_result.py +61 -0
- pyrogram/methods/decorators/on_deleted_messages.py +61 -0
- pyrogram/methods/decorators/on_disconnect.py +43 -0
- pyrogram/methods/decorators/on_edited_message.py +61 -0
- pyrogram/methods/decorators/on_inline_query.py +61 -0
- pyrogram/methods/decorators/on_message.py +61 -0
- pyrogram/methods/decorators/on_poll.py +61 -0
- pyrogram/methods/decorators/on_raw_update.py +55 -0
- pyrogram/methods/decorators/on_user_status.py +59 -0
- pyrogram/methods/invite_links/__init__.py +58 -0
- pyrogram/methods/invite_links/approve_all_chat_join_requests.py +55 -0
- pyrogram/methods/invite_links/approve_chat_join_request.py +57 -0
- pyrogram/methods/invite_links/create_chat_invite_link.py +87 -0
- pyrogram/methods/invite_links/decline_all_chat_join_requests.py +55 -0
- pyrogram/methods/invite_links/decline_chat_join_request.py +57 -0
- pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
- pyrogram/methods/invite_links/delete_chat_invite_link.py +52 -0
- pyrogram/methods/invite_links/edit_chat_invite_link.py +92 -0
- pyrogram/methods/invite_links/export_chat_invite_link.py +65 -0
- pyrogram/methods/invite_links/get_chat_admin_invite_links.py +100 -0
- pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
- pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +56 -0
- pyrogram/methods/invite_links/get_chat_invite_link.py +56 -0
- pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +87 -0
- pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +56 -0
- pyrogram/methods/invite_links/get_chat_join_requests.py +88 -0
- pyrogram/methods/invite_links/revoke_chat_invite_link.py +68 -0
- pyrogram/methods/messages/__init__.py +119 -0
- pyrogram/methods/messages/copy_media_group.py +149 -0
- pyrogram/methods/messages/copy_message.py +127 -0
- pyrogram/methods/messages/delete_messages.py +84 -0
- pyrogram/methods/messages/download_media.py +187 -0
- pyrogram/methods/messages/edit_inline_caption.py +65 -0
- pyrogram/methods/messages/edit_inline_media.py +244 -0
- pyrogram/methods/messages/edit_inline_reply_markup.py +69 -0
- pyrogram/methods/messages/edit_inline_text.py +88 -0
- pyrogram/methods/messages/edit_message_caption.py +76 -0
- pyrogram/methods/messages/edit_message_media.py +287 -0
- pyrogram/methods/messages/edit_message_reply_markup.py +77 -0
- pyrogram/methods/messages/edit_message_text.py +98 -0
- pyrogram/methods/messages/forward_messages.py +121 -0
- pyrogram/methods/messages/get_chat_history.py +133 -0
- pyrogram/methods/messages/get_chat_history_count.py +72 -0
- pyrogram/methods/messages/get_custom_emoji_stickers.py +55 -0
- pyrogram/methods/messages/get_discussion_message.py +65 -0
- pyrogram/methods/messages/get_discussion_replies.py +86 -0
- pyrogram/methods/messages/get_discussion_replies_count.py +62 -0
- pyrogram/methods/messages/get_media_group.py +73 -0
- pyrogram/methods/messages/get_messages.py +119 -0
- pyrogram/methods/messages/inline_session.py +64 -0
- pyrogram/methods/messages/read_chat_history.py +73 -0
- pyrogram/methods/messages/retract_vote.py +61 -0
- pyrogram/methods/messages/search_global.py +117 -0
- pyrogram/methods/messages/search_global_count.py +62 -0
- pyrogram/methods/messages/search_messages.py +151 -0
- pyrogram/methods/messages/search_messages_count.py +84 -0
- pyrogram/methods/messages/send_animation.py +288 -0
- pyrogram/methods/messages/send_audio.py +258 -0
- pyrogram/methods/messages/send_cached_media.py +147 -0
- pyrogram/methods/messages/send_chat_action.py +86 -0
- pyrogram/methods/messages/send_contact.py +131 -0
- pyrogram/methods/messages/send_dice.py +132 -0
- pyrogram/methods/messages/send_document.py +236 -0
- pyrogram/methods/messages/send_location.py +123 -0
- pyrogram/methods/messages/send_media_group.py +445 -0
- pyrogram/methods/messages/send_message.py +193 -0
- pyrogram/methods/messages/send_photo.py +221 -0
- pyrogram/methods/messages/send_poll.py +190 -0
- pyrogram/methods/messages/send_reaction.py +73 -0
- pyrogram/methods/messages/send_sticker.py +195 -0
- pyrogram/methods/messages/send_venue.py +147 -0
- pyrogram/methods/messages/send_video.py +331 -0
- pyrogram/methods/messages/send_video_note.py +219 -0
- pyrogram/methods/messages/send_voice.py +223 -0
- pyrogram/methods/messages/stop_poll.py +77 -0
- pyrogram/methods/messages/stream_media.py +106 -0
- pyrogram/methods/messages/vote_poll.py +69 -0
- pyrogram/methods/password/__init__.py +29 -0
- pyrogram/methods/password/change_cloud_password.py +82 -0
- pyrogram/methods/password/enable_cloud_password.py +88 -0
- pyrogram/methods/password/remove_cloud_password.py +64 -0
- pyrogram/methods/stickers/__init__.py +28 -0
- pyrogram/methods/stickers/add_sticker_to_set.py +85 -0
- pyrogram/methods/stickers/create_sticker_set.py +122 -0
- pyrogram/methods/stickers/get_sticker_set.py +54 -0
- pyrogram/methods/users/__init__.py +59 -0
- pyrogram/methods/users/block_user.py +54 -0
- pyrogram/methods/users/delete_profile_photos.py +63 -0
- pyrogram/methods/users/delete_stories.py +65 -0
- pyrogram/methods/users/edit_story.py +240 -0
- pyrogram/methods/users/export_story_link.py +66 -0
- pyrogram/methods/users/get_chat_photos.py +135 -0
- pyrogram/methods/users/get_chat_photos_count.py +74 -0
- pyrogram/methods/users/get_common_chats.py +67 -0
- pyrogram/methods/users/get_default_emoji_statuses.py +47 -0
- pyrogram/methods/users/get_me.py +49 -0
- pyrogram/methods/users/get_stories.py +76 -0
- pyrogram/methods/users/get_users.py +71 -0
- pyrogram/methods/users/send_story.py +256 -0
- pyrogram/methods/users/set_emoji_status.py +58 -0
- pyrogram/methods/users/set_profile_photo.py +75 -0
- pyrogram/methods/users/set_username.py +57 -0
- pyrogram/methods/users/unblock_user.py +54 -0
- pyrogram/methods/users/update_profile.py +72 -0
- pyrogram/methods/utilities/__init__.py +41 -0
- pyrogram/methods/utilities/add_handler.py +67 -0
- pyrogram/methods/utilities/compose.py +78 -0
- pyrogram/methods/utilities/export_session_string.py +40 -0
- pyrogram/methods/utilities/idle.py +87 -0
- pyrogram/methods/utilities/remove_handler.py +63 -0
- pyrogram/methods/utilities/restart.py +72 -0
- pyrogram/methods/utilities/run.py +86 -0
- pyrogram/methods/utilities/run_sync.py +43 -0
- pyrogram/methods/utilities/start.py +76 -0
- pyrogram/methods/utilities/stop.py +69 -0
- pyrogram/methods/utilities/stop_transmission.py +44 -0
- pyrogram/mime_types.py +1881 -0
- pyrogram/parser/__init__.py +19 -0
- pyrogram/parser/html.py +243 -0
- pyrogram/parser/markdown.py +173 -0
- pyrogram/parser/parser.py +61 -0
- pyrogram/parser/utils.py +41 -0
- pyrogram/py.typed +0 -0
- pyrogram/raw/__init__.py +26 -0
- pyrogram/raw/all.py +2172 -0
- pyrogram/raw/base/__init__.py +388 -0
- pyrogram/raw/base/access_point_rule.py +53 -0
- pyrogram/raw/base/account/__init__.py +47 -0
- pyrogram/raw/base/account/authorization_form.py +63 -0
- pyrogram/raw/base/account/authorizations.py +63 -0
- pyrogram/raw/base/account/auto_download_settings.py +63 -0
- pyrogram/raw/base/account/auto_save_settings.py +63 -0
- pyrogram/raw/base/account/business_chat_links.py +63 -0
- pyrogram/raw/base/account/connected_bots.py +63 -0
- pyrogram/raw/base/account/content_settings.py +63 -0
- pyrogram/raw/base/account/email_verified.py +64 -0
- pyrogram/raw/base/account/emoji_statuses.py +67 -0
- pyrogram/raw/base/account/password.py +63 -0
- pyrogram/raw/base/account/password_input_settings.py +53 -0
- pyrogram/raw/base/account/password_settings.py +63 -0
- pyrogram/raw/base/account/privacy_rules.py +64 -0
- pyrogram/raw/base/account/reset_password_result.py +65 -0
- pyrogram/raw/base/account/resolved_business_chat_links.py +63 -0
- pyrogram/raw/base/account/saved_ringtone.py +64 -0
- pyrogram/raw/base/account/saved_ringtones.py +64 -0
- pyrogram/raw/base/account/sent_email_code.py +63 -0
- pyrogram/raw/base/account/takeout.py +63 -0
- pyrogram/raw/base/account/themes.py +65 -0
- pyrogram/raw/base/account/tmp_password.py +63 -0
- pyrogram/raw/base/account/wall_papers.py +64 -0
- pyrogram/raw/base/account/web_authorizations.py +63 -0
- pyrogram/raw/base/account_days_ttl.py +63 -0
- pyrogram/raw/base/attach_menu_bot.py +53 -0
- pyrogram/raw/base/attach_menu_bot_icon.py +53 -0
- pyrogram/raw/base/attach_menu_bot_icon_color.py +53 -0
- pyrogram/raw/base/attach_menu_bots.py +64 -0
- pyrogram/raw/base/attach_menu_bots_bot.py +63 -0
- pyrogram/raw/base/attach_menu_peer_type.py +57 -0
- pyrogram/raw/base/auth/__init__.py +32 -0
- pyrogram/raw/base/auth/authorization.py +70 -0
- pyrogram/raw/base/auth/code_type.py +57 -0
- pyrogram/raw/base/auth/exported_authorization.py +63 -0
- pyrogram/raw/base/auth/logged_out.py +63 -0
- pyrogram/raw/base/auth/login_token.py +66 -0
- pyrogram/raw/base/auth/password_recovery.py +63 -0
- pyrogram/raw/base/auth/sent_code.py +69 -0
- pyrogram/raw/base/auth/sent_code_type.py +63 -0
- pyrogram/raw/base/authorization.py +63 -0
- pyrogram/raw/base/auto_download_settings.py +53 -0
- pyrogram/raw/base/auto_save_exception.py +53 -0
- pyrogram/raw/base/auto_save_settings.py +53 -0
- pyrogram/raw/base/available_effect.py +53 -0
- pyrogram/raw/base/available_reaction.py +53 -0
- pyrogram/raw/base/bad_msg_notification.py +54 -0
- pyrogram/raw/base/bank_card_open_url.py +53 -0
- pyrogram/raw/base/base_theme.py +57 -0
- pyrogram/raw/base/bind_auth_key_inner.py +53 -0
- pyrogram/raw/base/birthday.py +53 -0
- pyrogram/raw/base/boost.py +53 -0
- pyrogram/raw/base/bot_app.py +54 -0
- pyrogram/raw/base/bot_app_settings.py +53 -0
- pyrogram/raw/base/bot_business_connection.py +53 -0
- pyrogram/raw/base/bot_command.py +63 -0
- pyrogram/raw/base/bot_command_scope.py +59 -0
- pyrogram/raw/base/bot_info.py +53 -0
- pyrogram/raw/base/bot_inline_message.py +59 -0
- pyrogram/raw/base/bot_inline_result.py +54 -0
- pyrogram/raw/base/bot_menu_button.py +65 -0
- pyrogram/raw/base/bot_preview_media.py +65 -0
- pyrogram/raw/base/bot_verification.py +53 -0
- pyrogram/raw/base/bot_verifier_settings.py +53 -0
- pyrogram/raw/base/bots/__init__.py +27 -0
- pyrogram/raw/base/bots/bot_info.py +63 -0
- pyrogram/raw/base/bots/popular_app_bots.py +63 -0
- pyrogram/raw/base/bots/preview_info.py +63 -0
- pyrogram/raw/base/broadcast_revenue_balances.py +53 -0
- pyrogram/raw/base/broadcast_revenue_transaction.py +55 -0
- pyrogram/raw/base/business_away_message.py +53 -0
- pyrogram/raw/base/business_away_message_schedule.py +55 -0
- pyrogram/raw/base/business_bot_recipients.py +53 -0
- pyrogram/raw/base/business_chat_link.py +64 -0
- pyrogram/raw/base/business_greeting_message.py +53 -0
- pyrogram/raw/base/business_intro.py +53 -0
- pyrogram/raw/base/business_location.py +53 -0
- pyrogram/raw/base/business_recipients.py +53 -0
- pyrogram/raw/base/business_weekly_open.py +53 -0
- pyrogram/raw/base/business_work_hours.py +53 -0
- pyrogram/raw/base/cdn_config.py +63 -0
- pyrogram/raw/base/cdn_public_key.py +53 -0
- pyrogram/raw/base/channel_admin_log_event.py +53 -0
- pyrogram/raw/base/channel_admin_log_event_action.py +102 -0
- pyrogram/raw/base/channel_admin_log_events_filter.py +53 -0
- pyrogram/raw/base/channel_location.py +54 -0
- pyrogram/raw/base/channel_messages_filter.py +54 -0
- pyrogram/raw/base/channel_participant.py +58 -0
- pyrogram/raw/base/channel_participants_filter.py +60 -0
- pyrogram/raw/base/channels/__init__.py +29 -0
- pyrogram/raw/base/channels/admin_log_results.py +63 -0
- pyrogram/raw/base/channels/channel_participant.py +63 -0
- pyrogram/raw/base/channels/channel_participants.py +64 -0
- pyrogram/raw/base/channels/send_as_peers.py +63 -0
- pyrogram/raw/base/channels/sponsored_message_report_result.py +65 -0
- pyrogram/raw/base/chat.py +57 -0
- pyrogram/raw/base/chat_admin_rights.py +53 -0
- pyrogram/raw/base/chat_admin_with_invites.py +53 -0
- pyrogram/raw/base/chat_banned_rights.py +53 -0
- pyrogram/raw/base/chat_full.py +54 -0
- pyrogram/raw/base/chat_invite.py +65 -0
- pyrogram/raw/base/chat_invite_importer.py +53 -0
- pyrogram/raw/base/chat_onlines.py +63 -0
- pyrogram/raw/base/chat_participant.py +55 -0
- pyrogram/raw/base/chat_participants.py +54 -0
- pyrogram/raw/base/chat_photo.py +54 -0
- pyrogram/raw/base/chat_reactions.py +55 -0
- pyrogram/raw/base/chatlists/__init__.py +28 -0
- pyrogram/raw/base/chatlists/chatlist_invite.py +64 -0
- pyrogram/raw/base/chatlists/chatlist_updates.py +63 -0
- pyrogram/raw/base/chatlists/exported_chatlist_invite.py +63 -0
- pyrogram/raw/base/chatlists/exported_invites.py +63 -0
- pyrogram/raw/base/client_dh_inner_data.py +53 -0
- pyrogram/raw/base/code_settings.py +53 -0
- pyrogram/raw/base/config.py +63 -0
- pyrogram/raw/base/connected_bot.py +53 -0
- pyrogram/raw/base/connected_bot_star_ref.py +53 -0
- pyrogram/raw/base/contact.py +53 -0
- pyrogram/raw/base/contact_birthday.py +53 -0
- pyrogram/raw/base/contact_status.py +63 -0
- pyrogram/raw/base/contacts/__init__.py +31 -0
- pyrogram/raw/base/contacts/blocked.py +64 -0
- pyrogram/raw/base/contacts/contact_birthdays.py +63 -0
- pyrogram/raw/base/contacts/contacts.py +64 -0
- pyrogram/raw/base/contacts/found.py +63 -0
- pyrogram/raw/base/contacts/imported_contacts.py +63 -0
- pyrogram/raw/base/contacts/resolved_peer.py +64 -0
- pyrogram/raw/base/contacts/top_peers.py +65 -0
- pyrogram/raw/base/data_json.py +65 -0
- pyrogram/raw/base/dc_option.py +53 -0
- pyrogram/raw/base/default_history_ttl.py +63 -0
- pyrogram/raw/base/destroy_auth_key_res.py +65 -0
- pyrogram/raw/base/destroy_session_res.py +64 -0
- pyrogram/raw/base/dialog.py +54 -0
- pyrogram/raw/base/dialog_filter.py +55 -0
- pyrogram/raw/base/dialog_filter_suggested.py +63 -0
- pyrogram/raw/base/dialog_peer.py +64 -0
- pyrogram/raw/base/document.py +67 -0
- pyrogram/raw/base/document_attribute.py +60 -0
- pyrogram/raw/base/draft_message.py +54 -0
- pyrogram/raw/base/email_verification.py +55 -0
- pyrogram/raw/base/email_verify_purpose.py +55 -0
- pyrogram/raw/base/emoji_group.py +55 -0
- pyrogram/raw/base/emoji_keyword.py +54 -0
- pyrogram/raw/base/emoji_keywords_difference.py +64 -0
- pyrogram/raw/base/emoji_language.py +63 -0
- pyrogram/raw/base/emoji_list.py +68 -0
- pyrogram/raw/base/emoji_status.py +56 -0
- pyrogram/raw/base/emoji_url.py +63 -0
- pyrogram/raw/base/encrypted_chat.py +68 -0
- pyrogram/raw/base/encrypted_file.py +64 -0
- pyrogram/raw/base/encrypted_message.py +54 -0
- pyrogram/raw/base/exported_chat_invite.py +64 -0
- pyrogram/raw/base/exported_chatlist_invite.py +63 -0
- pyrogram/raw/base/exported_contact_token.py +63 -0
- pyrogram/raw/base/exported_message_link.py +63 -0
- pyrogram/raw/base/exported_story_link.py +63 -0
- pyrogram/raw/base/fact_check.py +63 -0
- pyrogram/raw/base/file_hash.py +65 -0
- pyrogram/raw/base/folder.py +53 -0
- pyrogram/raw/base/folder_peer.py +53 -0
- pyrogram/raw/base/forum_topic.py +54 -0
- pyrogram/raw/base/found_story.py +53 -0
- pyrogram/raw/base/fragment/__init__.py +25 -0
- pyrogram/raw/base/fragment/collectible_info.py +63 -0
- pyrogram/raw/base/game.py +53 -0
- pyrogram/raw/base/geo_point.py +54 -0
- pyrogram/raw/base/geo_point_address.py +53 -0
- pyrogram/raw/base/global_privacy_settings.py +64 -0
- pyrogram/raw/base/group_call.py +54 -0
- pyrogram/raw/base/group_call_participant.py +53 -0
- pyrogram/raw/base/group_call_participant_video.py +53 -0
- pyrogram/raw/base/group_call_participant_video_source_group.py +53 -0
- pyrogram/raw/base/group_call_stream_channel.py +53 -0
- pyrogram/raw/base/help/__init__.py +45 -0
- pyrogram/raw/base/help/app_config.py +64 -0
- pyrogram/raw/base/help/app_update.py +64 -0
- pyrogram/raw/base/help/config_simple.py +53 -0
- pyrogram/raw/base/help/countries_list.py +64 -0
- pyrogram/raw/base/help/country.py +53 -0
- pyrogram/raw/base/help/country_code.py +53 -0
- pyrogram/raw/base/help/deep_link_info.py +64 -0
- pyrogram/raw/base/help/invite_text.py +63 -0
- pyrogram/raw/base/help/passport_config.py +64 -0
- pyrogram/raw/base/help/peer_color_option.py +53 -0
- pyrogram/raw/base/help/peer_color_set.py +54 -0
- pyrogram/raw/base/help/peer_colors.py +65 -0
- pyrogram/raw/base/help/premium_promo.py +63 -0
- pyrogram/raw/base/help/promo_data.py +64 -0
- pyrogram/raw/base/help/recent_me_urls.py +63 -0
- pyrogram/raw/base/help/support.py +63 -0
- pyrogram/raw/base/help/support_name.py +63 -0
- pyrogram/raw/base/help/terms_of_service.py +53 -0
- pyrogram/raw/base/help/terms_of_service_update.py +64 -0
- pyrogram/raw/base/help/timezones_list.py +64 -0
- pyrogram/raw/base/help/user_info.py +65 -0
- pyrogram/raw/base/high_score.py +53 -0
- pyrogram/raw/base/http_wait.py +53 -0
- pyrogram/raw/base/imported_contact.py +53 -0
- pyrogram/raw/base/inline_bot_switch_pm.py +53 -0
- pyrogram/raw/base/inline_bot_web_view.py +53 -0
- pyrogram/raw/base/inline_query_peer_type.py +58 -0
- pyrogram/raw/base/input_app_event.py +53 -0
- pyrogram/raw/base/input_bot_app.py +54 -0
- pyrogram/raw/base/input_bot_inline_message.py +60 -0
- pyrogram/raw/base/input_bot_inline_message_id.py +54 -0
- pyrogram/raw/base/input_bot_inline_result.py +56 -0
- pyrogram/raw/base/input_business_away_message.py +53 -0
- pyrogram/raw/base/input_business_bot_recipients.py +53 -0
- pyrogram/raw/base/input_business_chat_link.py +53 -0
- pyrogram/raw/base/input_business_greeting_message.py +53 -0
- pyrogram/raw/base/input_business_intro.py +53 -0
- pyrogram/raw/base/input_business_recipients.py +53 -0
- pyrogram/raw/base/input_channel.py +55 -0
- pyrogram/raw/base/input_chat_photo.py +55 -0
- pyrogram/raw/base/input_chatlist.py +53 -0
- pyrogram/raw/base/input_check_password_srp.py +54 -0
- pyrogram/raw/base/input_client_proxy.py +53 -0
- pyrogram/raw/base/input_collectible.py +54 -0
- pyrogram/raw/base/input_contact.py +53 -0
- pyrogram/raw/base/input_dialog_peer.py +54 -0
- pyrogram/raw/base/input_document.py +54 -0
- pyrogram/raw/base/input_encrypted_chat.py +53 -0
- pyrogram/raw/base/input_encrypted_file.py +56 -0
- pyrogram/raw/base/input_file.py +55 -0
- pyrogram/raw/base/input_file_location.py +62 -0
- pyrogram/raw/base/input_folder_peer.py +53 -0
- pyrogram/raw/base/input_game.py +54 -0
- pyrogram/raw/base/input_geo_point.py +54 -0
- pyrogram/raw/base/input_group_call.py +53 -0
- pyrogram/raw/base/input_invoice.py +60 -0
- pyrogram/raw/base/input_media.py +70 -0
- pyrogram/raw/base/input_message.py +56 -0
- pyrogram/raw/base/input_notify_peer.py +57 -0
- pyrogram/raw/base/input_payment_credentials.py +56 -0
- pyrogram/raw/base/input_peer.py +59 -0
- pyrogram/raw/base/input_peer_notify_settings.py +53 -0
- pyrogram/raw/base/input_phone_call.py +53 -0
- pyrogram/raw/base/input_photo.py +54 -0
- pyrogram/raw/base/input_privacy_key.py +64 -0
- pyrogram/raw/base/input_privacy_rule.py +64 -0
- pyrogram/raw/base/input_quick_reply_shortcut.py +54 -0
- pyrogram/raw/base/input_reply_to.py +54 -0
- pyrogram/raw/base/input_saved_star_gift.py +54 -0
- pyrogram/raw/base/input_secure_file.py +54 -0
- pyrogram/raw/base/input_secure_value.py +53 -0
- pyrogram/raw/base/input_single_media.py +53 -0
- pyrogram/raw/base/input_stars_transaction.py +53 -0
- pyrogram/raw/base/input_sticker_set.py +63 -0
- pyrogram/raw/base/input_sticker_set_item.py +53 -0
- pyrogram/raw/base/input_stickered_media.py +54 -0
- pyrogram/raw/base/input_store_payment_purpose.py +59 -0
- pyrogram/raw/base/input_theme.py +54 -0
- pyrogram/raw/base/input_theme_settings.py +53 -0
- pyrogram/raw/base/input_user.py +56 -0
- pyrogram/raw/base/input_wall_paper.py +55 -0
- pyrogram/raw/base/input_web_document.py +53 -0
- pyrogram/raw/base/input_web_file_location.py +55 -0
- pyrogram/raw/base/invoice.py +53 -0
- pyrogram/raw/base/ip_port.py +54 -0
- pyrogram/raw/base/json_object_value.py +53 -0
- pyrogram/raw/base/json_value.py +58 -0
- pyrogram/raw/base/keyboard_button.py +70 -0
- pyrogram/raw/base/keyboard_button_row.py +53 -0
- pyrogram/raw/base/labeled_price.py +53 -0
- pyrogram/raw/base/lang_pack_difference.py +64 -0
- pyrogram/raw/base/lang_pack_language.py +64 -0
- pyrogram/raw/base/lang_pack_string.py +65 -0
- pyrogram/raw/base/mask_coords.py +53 -0
- pyrogram/raw/base/media_area.py +61 -0
- pyrogram/raw/base/media_area_coordinates.py +53 -0
- pyrogram/raw/base/message.py +55 -0
- pyrogram/raw/base/message_action.py +100 -0
- pyrogram/raw/base/message_entity.py +73 -0
- pyrogram/raw/base/message_extended_media.py +54 -0
- pyrogram/raw/base/message_fwd_header.py +53 -0
- pyrogram/raw/base/message_media.py +80 -0
- pyrogram/raw/base/message_peer_reaction.py +53 -0
- pyrogram/raw/base/message_peer_vote.py +55 -0
- pyrogram/raw/base/message_range.py +63 -0
- pyrogram/raw/base/message_reactions.py +53 -0
- pyrogram/raw/base/message_reactor.py +53 -0
- pyrogram/raw/base/message_replies.py +53 -0
- pyrogram/raw/base/message_reply_header.py +54 -0
- pyrogram/raw/base/message_report_option.py +53 -0
- pyrogram/raw/base/message_views.py +53 -0
- pyrogram/raw/base/messages/__init__.py +84 -0
- pyrogram/raw/base/messages/affected_found_messages.py +63 -0
- pyrogram/raw/base/messages/affected_history.py +69 -0
- pyrogram/raw/base/messages/affected_messages.py +66 -0
- pyrogram/raw/base/messages/all_stickers.py +66 -0
- pyrogram/raw/base/messages/archived_stickers.py +63 -0
- pyrogram/raw/base/messages/available_effects.py +64 -0
- pyrogram/raw/base/messages/available_reactions.py +64 -0
- pyrogram/raw/base/messages/bot_app.py +63 -0
- pyrogram/raw/base/messages/bot_callback_answer.py +63 -0
- pyrogram/raw/base/messages/bot_prepared_inline_message.py +63 -0
- pyrogram/raw/base/messages/bot_results.py +63 -0
- pyrogram/raw/base/messages/chat_admins_with_invites.py +63 -0
- pyrogram/raw/base/messages/chat_full.py +64 -0
- pyrogram/raw/base/messages/chat_invite_importers.py +63 -0
- pyrogram/raw/base/messages/chats.py +71 -0
- pyrogram/raw/base/messages/checked_history_import_peer.py +63 -0
- pyrogram/raw/base/messages/dh_config.py +64 -0
- pyrogram/raw/base/messages/dialog_filters.py +63 -0
- pyrogram/raw/base/messages/dialogs.py +65 -0
- pyrogram/raw/base/messages/discussion_message.py +63 -0
- pyrogram/raw/base/messages/emoji_groups.py +67 -0
- pyrogram/raw/base/messages/exported_chat_invite.py +65 -0
- pyrogram/raw/base/messages/exported_chat_invites.py +63 -0
- pyrogram/raw/base/messages/faved_stickers.py +64 -0
- pyrogram/raw/base/messages/featured_stickers.py +66 -0
- pyrogram/raw/base/messages/forum_topics.py +64 -0
- pyrogram/raw/base/messages/found_sticker_sets.py +65 -0
- pyrogram/raw/base/messages/found_stickers.py +64 -0
- pyrogram/raw/base/messages/high_scores.py +64 -0
- pyrogram/raw/base/messages/history_import.py +63 -0
- pyrogram/raw/base/messages/history_import_parsed.py +63 -0
- pyrogram/raw/base/messages/inactive_chats.py +63 -0
- pyrogram/raw/base/messages/invited_users.py +65 -0
- pyrogram/raw/base/messages/message_edit_data.py +63 -0
- pyrogram/raw/base/messages/message_reactions_list.py +63 -0
- pyrogram/raw/base/messages/message_views.py +63 -0
- pyrogram/raw/base/messages/messages.py +80 -0
- pyrogram/raw/base/messages/my_stickers.py +63 -0
- pyrogram/raw/base/messages/peer_dialogs.py +64 -0
- pyrogram/raw/base/messages/peer_settings.py +63 -0
- pyrogram/raw/base/messages/prepared_inline_message.py +63 -0
- pyrogram/raw/base/messages/quick_replies.py +64 -0
- pyrogram/raw/base/messages/reactions.py +66 -0
- pyrogram/raw/base/messages/recent_stickers.py +64 -0
- pyrogram/raw/base/messages/saved_dialogs.py +66 -0
- pyrogram/raw/base/messages/saved_gifs.py +64 -0
- pyrogram/raw/base/messages/saved_reaction_tags.py +64 -0
- pyrogram/raw/base/messages/search_counter.py +63 -0
- pyrogram/raw/base/messages/search_results_calendar.py +63 -0
- pyrogram/raw/base/messages/search_results_positions.py +63 -0
- pyrogram/raw/base/messages/sent_encrypted_message.py +66 -0
- pyrogram/raw/base/messages/sponsored_messages.py +64 -0
- pyrogram/raw/base/messages/sticker_set.py +72 -0
- pyrogram/raw/base/messages/sticker_set_install_result.py +64 -0
- pyrogram/raw/base/messages/stickers.py +64 -0
- pyrogram/raw/base/messages/transcribed_audio.py +63 -0
- pyrogram/raw/base/messages/translated_text.py +63 -0
- pyrogram/raw/base/messages/votes_list.py +63 -0
- pyrogram/raw/base/messages/web_page.py +63 -0
- pyrogram/raw/base/messages/web_page_preview.py +63 -0
- pyrogram/raw/base/messages_filter.py +69 -0
- pyrogram/raw/base/missing_invitee.py +53 -0
- pyrogram/raw/base/msg_detailed_info.py +54 -0
- pyrogram/raw/base/msg_resend_req.py +54 -0
- pyrogram/raw/base/msgs_ack.py +53 -0
- pyrogram/raw/base/msgs_all_info.py +53 -0
- pyrogram/raw/base/msgs_state_info.py +53 -0
- pyrogram/raw/base/msgs_state_req.py +53 -0
- pyrogram/raw/base/my_boost.py +53 -0
- pyrogram/raw/base/nearest_dc.py +63 -0
- pyrogram/raw/base/new_session.py +53 -0
- pyrogram/raw/base/notification_sound.py +56 -0
- pyrogram/raw/base/notify_peer.py +57 -0
- pyrogram/raw/base/outbox_read_date.py +63 -0
- pyrogram/raw/base/page.py +53 -0
- pyrogram/raw/base/page_block.py +81 -0
- pyrogram/raw/base/page_caption.py +53 -0
- pyrogram/raw/base/page_list_item.py +54 -0
- pyrogram/raw/base/page_list_ordered_item.py +54 -0
- pyrogram/raw/base/page_related_article.py +53 -0
- pyrogram/raw/base/page_table_cell.py +53 -0
- pyrogram/raw/base/page_table_row.py +53 -0
- pyrogram/raw/base/password_kdf_algo.py +54 -0
- pyrogram/raw/base/payment_charge.py +53 -0
- pyrogram/raw/base/payment_form_method.py +53 -0
- pyrogram/raw/base/payment_requested_info.py +53 -0
- pyrogram/raw/base/payment_saved_credentials.py +53 -0
- pyrogram/raw/base/payments/__init__.py +44 -0
- pyrogram/raw/base/payments/bank_card_data.py +63 -0
- pyrogram/raw/base/payments/checked_gift_code.py +63 -0
- pyrogram/raw/base/payments/connected_star_ref_bots.py +66 -0
- pyrogram/raw/base/payments/exported_invoice.py +63 -0
- pyrogram/raw/base/payments/giveaway_info.py +64 -0
- pyrogram/raw/base/payments/payment_form.py +65 -0
- pyrogram/raw/base/payments/payment_receipt.py +64 -0
- pyrogram/raw/base/payments/payment_result.py +65 -0
- pyrogram/raw/base/payments/saved_info.py +63 -0
- pyrogram/raw/base/payments/saved_star_gifts.py +64 -0
- pyrogram/raw/base/payments/star_gift_upgrade_preview.py +63 -0
- pyrogram/raw/base/payments/star_gift_withdrawal_url.py +63 -0
- pyrogram/raw/base/payments/star_gifts.py +64 -0
- pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +63 -0
- pyrogram/raw/base/payments/stars_revenue_stats.py +63 -0
- pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +63 -0
- pyrogram/raw/base/payments/stars_status.py +66 -0
- pyrogram/raw/base/payments/suggested_star_ref_bots.py +63 -0
- pyrogram/raw/base/payments/unique_star_gift.py +63 -0
- pyrogram/raw/base/payments/validated_requested_info.py +63 -0
- pyrogram/raw/base/peer.py +65 -0
- pyrogram/raw/base/peer_blocked.py +53 -0
- pyrogram/raw/base/peer_color.py +53 -0
- pyrogram/raw/base/peer_located.py +54 -0
- pyrogram/raw/base/peer_notify_settings.py +63 -0
- pyrogram/raw/base/peer_settings.py +53 -0
- pyrogram/raw/base/peer_stories.py +53 -0
- pyrogram/raw/base/phone/__init__.py +31 -0
- pyrogram/raw/base/phone/exported_group_call_invite.py +63 -0
- pyrogram/raw/base/phone/group_call.py +63 -0
- pyrogram/raw/base/phone/group_call_stream_channels.py +63 -0
- pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +63 -0
- pyrogram/raw/base/phone/group_participants.py +63 -0
- pyrogram/raw/base/phone/join_as_peers.py +63 -0
- pyrogram/raw/base/phone/phone_call.py +66 -0
- pyrogram/raw/base/phone_call.py +58 -0
- pyrogram/raw/base/phone_call_discard_reason.py +57 -0
- pyrogram/raw/base/phone_call_protocol.py +53 -0
- pyrogram/raw/base/phone_connection.py +54 -0
- pyrogram/raw/base/photo.py +54 -0
- pyrogram/raw/base/photo_size.py +58 -0
- pyrogram/raw/base/photos/__init__.py +26 -0
- pyrogram/raw/base/photos/photo.py +65 -0
- pyrogram/raw/base/photos/photos.py +64 -0
- pyrogram/raw/base/poll.py +53 -0
- pyrogram/raw/base/poll_answer.py +53 -0
- pyrogram/raw/base/poll_answer_voters.py +53 -0
- pyrogram/raw/base/poll_results.py +53 -0
- pyrogram/raw/base/pong.py +64 -0
- pyrogram/raw/base/popular_contact.py +53 -0
- pyrogram/raw/base/post_address.py +53 -0
- pyrogram/raw/base/post_interaction_counters.py +54 -0
- pyrogram/raw/base/pq_inner_data.py +56 -0
- pyrogram/raw/base/premium/__init__.py +27 -0
- pyrogram/raw/base/premium/boosts_list.py +64 -0
- pyrogram/raw/base/premium/boosts_status.py +63 -0
- pyrogram/raw/base/premium/my_boosts.py +64 -0
- pyrogram/raw/base/premium_gift_code_option.py +63 -0
- pyrogram/raw/base/premium_gift_option.py +53 -0
- pyrogram/raw/base/premium_subscription_option.py +53 -0
- pyrogram/raw/base/prepaid_giveaway.py +54 -0
- pyrogram/raw/base/privacy_key.py +64 -0
- pyrogram/raw/base/privacy_rule.py +64 -0
- pyrogram/raw/base/public_forward.py +54 -0
- pyrogram/raw/base/quick_reply.py +53 -0
- pyrogram/raw/base/reaction.py +56 -0
- pyrogram/raw/base/reaction_count.py +53 -0
- pyrogram/raw/base/reaction_notifications_from.py +54 -0
- pyrogram/raw/base/reactions_notify_settings.py +64 -0
- pyrogram/raw/base/read_participant_date.py +63 -0
- pyrogram/raw/base/received_notify_message.py +63 -0
- pyrogram/raw/base/recent_me_url.py +57 -0
- pyrogram/raw/base/reply_markup.py +56 -0
- pyrogram/raw/base/report_reason.py +62 -0
- pyrogram/raw/base/report_result.py +66 -0
- pyrogram/raw/base/request_peer_type.py +55 -0
- pyrogram/raw/base/requested_peer.py +55 -0
- pyrogram/raw/base/res_pq.py +64 -0
- pyrogram/raw/base/restriction_reason.py +53 -0
- pyrogram/raw/base/rich_text.py +68 -0
- pyrogram/raw/base/rpc_drop_answer.py +65 -0
- pyrogram/raw/base/rpc_error.py +53 -0
- pyrogram/raw/base/rpc_result.py +53 -0
- pyrogram/raw/base/saved_contact.py +63 -0
- pyrogram/raw/base/saved_dialog.py +53 -0
- pyrogram/raw/base/saved_reaction_tag.py +53 -0
- pyrogram/raw/base/saved_star_gift.py +53 -0
- pyrogram/raw/base/search_results_calendar_period.py +53 -0
- pyrogram/raw/base/search_results_position.py +53 -0
- pyrogram/raw/base/secure_credentials_encrypted.py +53 -0
- pyrogram/raw/base/secure_data.py +53 -0
- pyrogram/raw/base/secure_file.py +54 -0
- pyrogram/raw/base/secure_password_kdf_algo.py +55 -0
- pyrogram/raw/base/secure_plain_data.py +54 -0
- pyrogram/raw/base/secure_required_type.py +54 -0
- pyrogram/raw/base/secure_secret_settings.py +53 -0
- pyrogram/raw/base/secure_value.py +65 -0
- pyrogram/raw/base/secure_value_error.py +61 -0
- pyrogram/raw/base/secure_value_hash.py +53 -0
- pyrogram/raw/base/secure_value_type.py +65 -0
- pyrogram/raw/base/send_as_peer.py +53 -0
- pyrogram/raw/base/send_message_action.py +70 -0
- pyrogram/raw/base/server_dh_inner_data.py +53 -0
- pyrogram/raw/base/server_dh_params.py +64 -0
- pyrogram/raw/base/set_client_dh_params_answer.py +65 -0
- pyrogram/raw/base/shipping_option.py +53 -0
- pyrogram/raw/base/sms_job.py +63 -0
- pyrogram/raw/base/smsjobs/__init__.py +26 -0
- pyrogram/raw/base/smsjobs/eligibility_to_join.py +63 -0
- pyrogram/raw/base/smsjobs/status.py +63 -0
- pyrogram/raw/base/sponsored_message.py +53 -0
- pyrogram/raw/base/sponsored_message_report_option.py +53 -0
- pyrogram/raw/base/star_gift.py +54 -0
- pyrogram/raw/base/star_gift_attribute.py +56 -0
- pyrogram/raw/base/star_ref_program.py +63 -0
- pyrogram/raw/base/stars_amount.py +53 -0
- pyrogram/raw/base/stars_gift_option.py +63 -0
- pyrogram/raw/base/stars_giveaway_option.py +63 -0
- pyrogram/raw/base/stars_giveaway_winners_option.py +53 -0
- pyrogram/raw/base/stars_revenue_status.py +53 -0
- pyrogram/raw/base/stars_subscription.py +53 -0
- pyrogram/raw/base/stars_subscription_pricing.py +53 -0
- pyrogram/raw/base/stars_topup_option.py +63 -0
- pyrogram/raw/base/stars_transaction.py +53 -0
- pyrogram/raw/base/stars_transaction_peer.py +60 -0
- pyrogram/raw/base/stats/__init__.py +32 -0
- pyrogram/raw/base/stats/broadcast_revenue_stats.py +63 -0
- pyrogram/raw/base/stats/broadcast_revenue_transactions.py +63 -0
- pyrogram/raw/base/stats/broadcast_revenue_withdrawal_url.py +63 -0
- pyrogram/raw/base/stats/broadcast_stats.py +63 -0
- pyrogram/raw/base/stats/megagroup_stats.py +63 -0
- pyrogram/raw/base/stats/message_stats.py +63 -0
- pyrogram/raw/base/stats/public_forwards.py +64 -0
- pyrogram/raw/base/stats/story_stats.py +63 -0
- pyrogram/raw/base/stats_abs_value_and_prev.py +53 -0
- pyrogram/raw/base/stats_date_range_days.py +53 -0
- pyrogram/raw/base/stats_graph.py +65 -0
- pyrogram/raw/base/stats_group_top_admin.py +53 -0
- pyrogram/raw/base/stats_group_top_inviter.py +53 -0
- pyrogram/raw/base/stats_group_top_poster.py +53 -0
- pyrogram/raw/base/stats_percent_value.py +53 -0
- pyrogram/raw/base/stats_url.py +53 -0
- pyrogram/raw/base/sticker_keyword.py +53 -0
- pyrogram/raw/base/sticker_pack.py +53 -0
- pyrogram/raw/base/sticker_set.py +53 -0
- pyrogram/raw/base/sticker_set_covered.py +66 -0
- pyrogram/raw/base/stickers/__init__.py +25 -0
- pyrogram/raw/base/stickers/suggested_short_name.py +63 -0
- pyrogram/raw/base/storage/__init__.py +25 -0
- pyrogram/raw/base/storage/file_type.py +62 -0
- pyrogram/raw/base/stories/__init__.py +31 -0
- pyrogram/raw/base/stories/all_stories.py +64 -0
- pyrogram/raw/base/stories/found_stories.py +63 -0
- pyrogram/raw/base/stories/peer_stories.py +63 -0
- pyrogram/raw/base/stories/stories.py +65 -0
- pyrogram/raw/base/stories/story_reactions_list.py +63 -0
- pyrogram/raw/base/stories/story_views.py +63 -0
- pyrogram/raw/base/stories/story_views_list.py +63 -0
- pyrogram/raw/base/stories_stealth_mode.py +53 -0
- pyrogram/raw/base/story_fwd_header.py +53 -0
- pyrogram/raw/base/story_item.py +55 -0
- pyrogram/raw/base/story_reaction.py +55 -0
- pyrogram/raw/base/story_view.py +55 -0
- pyrogram/raw/base/story_views.py +53 -0
- pyrogram/raw/base/text_with_entities.py +53 -0
- pyrogram/raw/base/theme.py +65 -0
- pyrogram/raw/base/theme_settings.py +53 -0
- pyrogram/raw/base/timezone.py +53 -0
- pyrogram/raw/base/top_peer.py +53 -0
- pyrogram/raw/base/top_peer_category.py +61 -0
- pyrogram/raw/base/top_peer_category_peers.py +53 -0
- pyrogram/raw/base/update.py +193 -0
- pyrogram/raw/base/updates/__init__.py +27 -0
- pyrogram/raw/base/updates/channel_difference.py +65 -0
- pyrogram/raw/base/updates/difference.py +66 -0
- pyrogram/raw/base/updates/state.py +63 -0
- pyrogram/raw/base/updates_t.py +175 -0
- pyrogram/raw/base/upload/__init__.py +27 -0
- pyrogram/raw/base/upload/cdn_file.py +64 -0
- pyrogram/raw/base/upload/file.py +64 -0
- pyrogram/raw/base/upload/web_file.py +63 -0
- pyrogram/raw/base/url_auth_result.py +66 -0
- pyrogram/raw/base/user.py +69 -0
- pyrogram/raw/base/user_full.py +53 -0
- pyrogram/raw/base/user_profile_photo.py +54 -0
- pyrogram/raw/base/user_status.py +58 -0
- pyrogram/raw/base/username.py +53 -0
- pyrogram/raw/base/users/__init__.py +26 -0
- pyrogram/raw/base/users/user_full.py +63 -0
- pyrogram/raw/base/users/users.py +64 -0
- pyrogram/raw/base/video_size.py +55 -0
- pyrogram/raw/base/wall_paper.py +66 -0
- pyrogram/raw/base/wall_paper_settings.py +53 -0
- pyrogram/raw/base/web_authorization.py +53 -0
- pyrogram/raw/base/web_document.py +54 -0
- pyrogram/raw/base/web_page.py +56 -0
- pyrogram/raw/base/web_page_attribute.py +56 -0
- pyrogram/raw/base/web_view_message_sent.py +63 -0
- pyrogram/raw/base/web_view_result.py +66 -0
- pyrogram/raw/core/__init__.py +31 -0
- pyrogram/raw/core/future_salt.py +53 -0
- pyrogram/raw/core/future_salts.py +63 -0
- pyrogram/raw/core/gzip_packed.py +62 -0
- pyrogram/raw/core/list.py +26 -0
- pyrogram/raw/core/message.py +56 -0
- pyrogram/raw/core/msg_container.py +53 -0
- pyrogram/raw/core/primitives/__init__.py +24 -0
- pyrogram/raw/core/primitives/bool.py +48 -0
- pyrogram/raw/core/primitives/bytes.py +55 -0
- pyrogram/raw/core/primitives/double.py +32 -0
- pyrogram/raw/core/primitives/int.py +45 -0
- pyrogram/raw/core/primitives/string.py +31 -0
- pyrogram/raw/core/primitives/vector.py +59 -0
- pyrogram/raw/core/tl_object.py +82 -0
- pyrogram/raw/functions/__init__.py +45 -0
- pyrogram/raw/functions/account/__init__.py +137 -0
- pyrogram/raw/functions/account/accept_authorization.py +104 -0
- pyrogram/raw/functions/account/cancel_password_email.py +67 -0
- pyrogram/raw/functions/account/change_authorization_settings.py +98 -0
- pyrogram/raw/functions/account/change_phone.py +88 -0
- pyrogram/raw/functions/account/check_username.py +72 -0
- pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +67 -0
- pyrogram/raw/functions/account/confirm_password_email.py +72 -0
- pyrogram/raw/functions/account/confirm_phone.py +80 -0
- pyrogram/raw/functions/account/create_business_chat_link.py +72 -0
- pyrogram/raw/functions/account/create_theme.py +102 -0
- pyrogram/raw/functions/account/decline_password_reset.py +67 -0
- pyrogram/raw/functions/account/delete_account.py +84 -0
- pyrogram/raw/functions/account/delete_auto_save_exceptions.py +67 -0
- pyrogram/raw/functions/account/delete_business_chat_link.py +72 -0
- pyrogram/raw/functions/account/delete_secure_value.py +72 -0
- pyrogram/raw/functions/account/disable_peer_connected_bot.py +72 -0
- pyrogram/raw/functions/account/edit_business_chat_link.py +80 -0
- pyrogram/raw/functions/account/finish_takeout_session.py +72 -0
- pyrogram/raw/functions/account/get_account_ttl.py +67 -0
- pyrogram/raw/functions/account/get_all_secure_values.py +67 -0
- pyrogram/raw/functions/account/get_authorization_form.py +88 -0
- pyrogram/raw/functions/account/get_authorizations.py +67 -0
- pyrogram/raw/functions/account/get_auto_download_settings.py +67 -0
- pyrogram/raw/functions/account/get_auto_save_settings.py +67 -0
- pyrogram/raw/functions/account/get_bot_business_connection.py +72 -0
- pyrogram/raw/functions/account/get_business_chat_links.py +67 -0
- pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +72 -0
- pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +72 -0
- pyrogram/raw/functions/account/get_chat_themes.py +72 -0
- pyrogram/raw/functions/account/get_collectible_emoji_statuses.py +72 -0
- pyrogram/raw/functions/account/get_connected_bots.py +67 -0
- pyrogram/raw/functions/account/get_contact_sign_up_notification.py +67 -0
- pyrogram/raw/functions/account/get_content_settings.py +67 -0
- pyrogram/raw/functions/account/get_default_background_emojis.py +72 -0
- pyrogram/raw/functions/account/get_default_emoji_statuses.py +72 -0
- pyrogram/raw/functions/account/get_default_group_photo_emojis.py +72 -0
- pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +72 -0
- pyrogram/raw/functions/account/get_global_privacy_settings.py +67 -0
- pyrogram/raw/functions/account/get_multi_wall_papers.py +72 -0
- pyrogram/raw/functions/account/get_notify_exceptions.py +88 -0
- pyrogram/raw/functions/account/get_notify_settings.py +72 -0
- pyrogram/raw/functions/account/get_password.py +67 -0
- pyrogram/raw/functions/account/get_password_settings.py +72 -0
- pyrogram/raw/functions/account/get_privacy.py +72 -0
- pyrogram/raw/functions/account/get_reactions_notify_settings.py +67 -0
- pyrogram/raw/functions/account/get_recent_emoji_statuses.py +72 -0
- pyrogram/raw/functions/account/get_saved_ringtones.py +72 -0
- pyrogram/raw/functions/account/get_secure_value.py +72 -0
- pyrogram/raw/functions/account/get_theme.py +80 -0
- pyrogram/raw/functions/account/get_themes.py +80 -0
- pyrogram/raw/functions/account/get_tmp_password.py +80 -0
- pyrogram/raw/functions/account/get_wall_paper.py +72 -0
- pyrogram/raw/functions/account/get_wall_papers.py +72 -0
- pyrogram/raw/functions/account/get_web_authorizations.py +67 -0
- pyrogram/raw/functions/account/init_takeout_session.py +111 -0
- pyrogram/raw/functions/account/install_theme.py +101 -0
- pyrogram/raw/functions/account/install_wall_paper.py +80 -0
- pyrogram/raw/functions/account/invalidate_sign_in_codes.py +72 -0
- pyrogram/raw/functions/account/register_device.py +112 -0
- pyrogram/raw/functions/account/reorder_usernames.py +72 -0
- pyrogram/raw/functions/account/report_peer.py +88 -0
- pyrogram/raw/functions/account/report_profile_photo.py +96 -0
- pyrogram/raw/functions/account/resend_password_email.py +67 -0
- pyrogram/raw/functions/account/reset_authorization.py +72 -0
- pyrogram/raw/functions/account/reset_notify_settings.py +67 -0
- pyrogram/raw/functions/account/reset_password.py +67 -0
- pyrogram/raw/functions/account/reset_wall_papers.py +67 -0
- pyrogram/raw/functions/account/reset_web_authorization.py +72 -0
- pyrogram/raw/functions/account/reset_web_authorizations.py +67 -0
- pyrogram/raw/functions/account/resolve_business_chat_link.py +72 -0
- pyrogram/raw/functions/account/save_auto_download_settings.py +86 -0
- pyrogram/raw/functions/account/save_auto_save_settings.py +102 -0
- pyrogram/raw/functions/account/save_ringtone.py +80 -0
- pyrogram/raw/functions/account/save_secure_value.py +80 -0
- pyrogram/raw/functions/account/save_theme.py +80 -0
- pyrogram/raw/functions/account/save_wall_paper.py +88 -0
- pyrogram/raw/functions/account/send_change_phone_code.py +80 -0
- pyrogram/raw/functions/account/send_confirm_phone_code.py +80 -0
- pyrogram/raw/functions/account/send_verify_email_code.py +80 -0
- pyrogram/raw/functions/account/send_verify_phone_code.py +80 -0
- pyrogram/raw/functions/account/set_account_ttl.py +72 -0
- pyrogram/raw/functions/account/set_authorization_ttl.py +72 -0
- pyrogram/raw/functions/account/set_contact_sign_up_notification.py +72 -0
- pyrogram/raw/functions/account/set_content_settings.py +72 -0
- pyrogram/raw/functions/account/set_global_privacy_settings.py +72 -0
- pyrogram/raw/functions/account/set_privacy.py +80 -0
- pyrogram/raw/functions/account/set_reactions_notify_settings.py +72 -0
- pyrogram/raw/functions/account/toggle_connected_bot_paused.py +80 -0
- pyrogram/raw/functions/account/toggle_sponsored_messages.py +72 -0
- pyrogram/raw/functions/account/toggle_username.py +80 -0
- pyrogram/raw/functions/account/unregister_device.py +88 -0
- pyrogram/raw/functions/account/update_birthday.py +76 -0
- pyrogram/raw/functions/account/update_business_away_message.py +76 -0
- pyrogram/raw/functions/account/update_business_greeting_message.py +76 -0
- pyrogram/raw/functions/account/update_business_intro.py +76 -0
- pyrogram/raw/functions/account/update_business_location.py +85 -0
- pyrogram/raw/functions/account/update_business_work_hours.py +76 -0
- pyrogram/raw/functions/account/update_color.py +90 -0
- pyrogram/raw/functions/account/update_connected_bot.py +94 -0
- pyrogram/raw/functions/account/update_device_locked.py +72 -0
- pyrogram/raw/functions/account/update_emoji_status.py +72 -0
- pyrogram/raw/functions/account/update_notify_settings.py +80 -0
- pyrogram/raw/functions/account/update_password_settings.py +80 -0
- pyrogram/raw/functions/account/update_personal_channel.py +72 -0
- pyrogram/raw/functions/account/update_profile.py +93 -0
- pyrogram/raw/functions/account/update_status.py +72 -0
- pyrogram/raw/functions/account/update_theme.py +120 -0
- pyrogram/raw/functions/account/update_username.py +72 -0
- pyrogram/raw/functions/account/upload_ringtone.py +88 -0
- pyrogram/raw/functions/account/upload_theme.py +100 -0
- pyrogram/raw/functions/account/upload_wall_paper.py +96 -0
- pyrogram/raw/functions/account/verify_email.py +80 -0
- pyrogram/raw/functions/account/verify_phone.py +88 -0
- pyrogram/raw/functions/auth/__init__.py +47 -0
- pyrogram/raw/functions/auth/accept_login_token.py +72 -0
- pyrogram/raw/functions/auth/bind_temp_auth_key.py +96 -0
- pyrogram/raw/functions/auth/cancel_code.py +80 -0
- pyrogram/raw/functions/auth/check_password.py +72 -0
- pyrogram/raw/functions/auth/check_recovery_password.py +72 -0
- pyrogram/raw/functions/auth/drop_temp_auth_keys.py +72 -0
- pyrogram/raw/functions/auth/export_authorization.py +72 -0
- pyrogram/raw/functions/auth/export_login_token.py +88 -0
- pyrogram/raw/functions/auth/import_authorization.py +80 -0
- pyrogram/raw/functions/auth/import_bot_authorization.py +96 -0
- pyrogram/raw/functions/auth/import_login_token.py +72 -0
- pyrogram/raw/functions/auth/import_web_token_authorization.py +88 -0
- pyrogram/raw/functions/auth/log_out.py +67 -0
- pyrogram/raw/functions/auth/recover_password.py +84 -0
- pyrogram/raw/functions/auth/report_missing_code.py +88 -0
- pyrogram/raw/functions/auth/request_firebase_sms.py +109 -0
- pyrogram/raw/functions/auth/request_password_recovery.py +67 -0
- pyrogram/raw/functions/auth/resend_code.py +91 -0
- pyrogram/raw/functions/auth/reset_authorizations.py +67 -0
- pyrogram/raw/functions/auth/reset_login_email.py +80 -0
- pyrogram/raw/functions/auth/send_code.py +96 -0
- pyrogram/raw/functions/auth/sign_in.py +101 -0
- pyrogram/raw/functions/auth/sign_up.py +104 -0
- pyrogram/raw/functions/bots/__init__.py +54 -0
- pyrogram/raw/functions/bots/add_preview_media.py +88 -0
- pyrogram/raw/functions/bots/allow_send_message.py +72 -0
- pyrogram/raw/functions/bots/answer_webhook_json_query.py +80 -0
- pyrogram/raw/functions/bots/can_send_message.py +72 -0
- pyrogram/raw/functions/bots/check_download_file_params.py +88 -0
- pyrogram/raw/functions/bots/delete_preview_media.py +88 -0
- pyrogram/raw/functions/bots/edit_preview_media.py +96 -0
- pyrogram/raw/functions/bots/get_admined_bots.py +67 -0
- pyrogram/raw/functions/bots/get_bot_commands.py +80 -0
- pyrogram/raw/functions/bots/get_bot_info.py +84 -0
- pyrogram/raw/functions/bots/get_bot_menu_button.py +72 -0
- pyrogram/raw/functions/bots/get_bot_recommendations.py +72 -0
- pyrogram/raw/functions/bots/get_popular_app_bots.py +80 -0
- pyrogram/raw/functions/bots/get_preview_info.py +80 -0
- pyrogram/raw/functions/bots/get_preview_medias.py +72 -0
- pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +88 -0
- pyrogram/raw/functions/bots/reorder_preview_medias.py +88 -0
- pyrogram/raw/functions/bots/reorder_usernames.py +80 -0
- pyrogram/raw/functions/bots/reset_bot_commands.py +80 -0
- pyrogram/raw/functions/bots/send_custom_request.py +80 -0
- pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +72 -0
- pyrogram/raw/functions/bots/set_bot_commands.py +88 -0
- pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +72 -0
- pyrogram/raw/functions/bots/set_bot_info.py +111 -0
- pyrogram/raw/functions/bots/set_bot_menu_button.py +80 -0
- pyrogram/raw/functions/bots/set_custom_verification.py +99 -0
- pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py +80 -0
- pyrogram/raw/functions/bots/toggle_username.py +88 -0
- pyrogram/raw/functions/bots/update_star_ref_program.py +91 -0
- pyrogram/raw/functions/bots/update_user_emoji_status.py +80 -0
- pyrogram/raw/functions/channels/__init__.py +85 -0
- pyrogram/raw/functions/channels/check_username.py +80 -0
- pyrogram/raw/functions/channels/convert_to_gigagroup.py +72 -0
- pyrogram/raw/functions/channels/create_channel.py +134 -0
- pyrogram/raw/functions/channels/create_forum_topic.py +118 -0
- pyrogram/raw/functions/channels/deactivate_all_usernames.py +72 -0
- pyrogram/raw/functions/channels/delete_channel.py +72 -0
- pyrogram/raw/functions/channels/delete_history.py +88 -0
- pyrogram/raw/functions/channels/delete_messages.py +80 -0
- pyrogram/raw/functions/channels/delete_participant_history.py +80 -0
- pyrogram/raw/functions/channels/delete_topic_history.py +80 -0
- pyrogram/raw/functions/channels/edit_admin.py +96 -0
- pyrogram/raw/functions/channels/edit_banned.py +88 -0
- pyrogram/raw/functions/channels/edit_creator.py +88 -0
- pyrogram/raw/functions/channels/edit_forum_topic.py +118 -0
- pyrogram/raw/functions/channels/edit_location.py +88 -0
- pyrogram/raw/functions/channels/edit_photo.py +80 -0
- pyrogram/raw/functions/channels/edit_title.py +80 -0
- pyrogram/raw/functions/channels/export_message_link.py +94 -0
- pyrogram/raw/functions/channels/get_admin_log.py +126 -0
- pyrogram/raw/functions/channels/get_admined_public_channels.py +84 -0
- pyrogram/raw/functions/channels/get_channel_recommendations.py +76 -0
- pyrogram/raw/functions/channels/get_channels.py +72 -0
- pyrogram/raw/functions/channels/get_forum_topics.py +115 -0
- pyrogram/raw/functions/channels/get_forum_topics_by_id.py +80 -0
- pyrogram/raw/functions/channels/get_full_channel.py +72 -0
- pyrogram/raw/functions/channels/get_groups_for_discussion.py +67 -0
- pyrogram/raw/functions/channels/get_inactive_channels.py +67 -0
- pyrogram/raw/functions/channels/get_left_channels.py +72 -0
- pyrogram/raw/functions/channels/get_messages.py +80 -0
- pyrogram/raw/functions/channels/get_participant.py +80 -0
- pyrogram/raw/functions/channels/get_participants.py +104 -0
- pyrogram/raw/functions/channels/get_send_as.py +72 -0
- pyrogram/raw/functions/channels/invite_to_channel.py +80 -0
- pyrogram/raw/functions/channels/join_channel.py +72 -0
- pyrogram/raw/functions/channels/leave_channel.py +72 -0
- pyrogram/raw/functions/channels/read_history.py +80 -0
- pyrogram/raw/functions/channels/read_message_contents.py +80 -0
- pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py +88 -0
- pyrogram/raw/functions/channels/reorder_usernames.py +80 -0
- pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +80 -0
- pyrogram/raw/functions/channels/report_spam.py +88 -0
- pyrogram/raw/functions/channels/restrict_sponsored_messages.py +80 -0
- pyrogram/raw/functions/channels/search_posts.py +104 -0
- pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +80 -0
- pyrogram/raw/functions/channels/set_discussion_group.py +80 -0
- pyrogram/raw/functions/channels/set_emoji_stickers.py +80 -0
- pyrogram/raw/functions/channels/set_stickers.py +80 -0
- pyrogram/raw/functions/channels/toggle_anti_spam.py +80 -0
- pyrogram/raw/functions/channels/toggle_forum.py +80 -0
- pyrogram/raw/functions/channels/toggle_join_request.py +80 -0
- pyrogram/raw/functions/channels/toggle_join_to_send.py +80 -0
- pyrogram/raw/functions/channels/toggle_participants_hidden.py +80 -0
- pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +80 -0
- pyrogram/raw/functions/channels/toggle_signatures.py +86 -0
- pyrogram/raw/functions/channels/toggle_slow_mode.py +80 -0
- pyrogram/raw/functions/channels/toggle_username.py +88 -0
- pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +80 -0
- pyrogram/raw/functions/channels/update_color.py +98 -0
- pyrogram/raw/functions/channels/update_emoji_status.py +80 -0
- pyrogram/raw/functions/channels/update_pinned_forum_topic.py +88 -0
- pyrogram/raw/functions/channels/update_username.py +80 -0
- pyrogram/raw/functions/chatlists/__init__.py +35 -0
- pyrogram/raw/functions/chatlists/check_chatlist_invite.py +72 -0
- pyrogram/raw/functions/chatlists/delete_exported_invite.py +80 -0
- pyrogram/raw/functions/chatlists/edit_exported_invite.py +101 -0
- pyrogram/raw/functions/chatlists/export_chatlist_invite.py +88 -0
- pyrogram/raw/functions/chatlists/get_chatlist_updates.py +72 -0
- pyrogram/raw/functions/chatlists/get_exported_invites.py +72 -0
- pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +72 -0
- pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +72 -0
- pyrogram/raw/functions/chatlists/join_chatlist_invite.py +80 -0
- pyrogram/raw/functions/chatlists/join_chatlist_updates.py +80 -0
- pyrogram/raw/functions/chatlists/leave_chatlist.py +80 -0
- pyrogram/raw/functions/contacts/__init__.py +50 -0
- pyrogram/raw/functions/contacts/accept_contact.py +72 -0
- pyrogram/raw/functions/contacts/add_contact.py +104 -0
- pyrogram/raw/functions/contacts/block.py +80 -0
- pyrogram/raw/functions/contacts/block_from_replies.py +92 -0
- pyrogram/raw/functions/contacts/delete_by_phones.py +72 -0
- pyrogram/raw/functions/contacts/delete_contacts.py +72 -0
- pyrogram/raw/functions/contacts/edit_close_friends.py +72 -0
- pyrogram/raw/functions/contacts/export_contact_token.py +67 -0
- pyrogram/raw/functions/contacts/get_birthdays.py +67 -0
- pyrogram/raw/functions/contacts/get_blocked.py +88 -0
- pyrogram/raw/functions/contacts/get_contact_i_ds.py +72 -0
- pyrogram/raw/functions/contacts/get_contacts.py +72 -0
- pyrogram/raw/functions/contacts/get_located.py +89 -0
- pyrogram/raw/functions/contacts/get_saved.py +67 -0
- pyrogram/raw/functions/contacts/get_statuses.py +67 -0
- pyrogram/raw/functions/contacts/get_top_peers.py +144 -0
- pyrogram/raw/functions/contacts/import_contact_token.py +72 -0
- pyrogram/raw/functions/contacts/import_contacts.py +72 -0
- pyrogram/raw/functions/contacts/reset_saved.py +67 -0
- pyrogram/raw/functions/contacts/reset_top_peer_rating.py +80 -0
- pyrogram/raw/functions/contacts/resolve_phone.py +72 -0
- pyrogram/raw/functions/contacts/resolve_username.py +83 -0
- pyrogram/raw/functions/contacts/search.py +80 -0
- pyrogram/raw/functions/contacts/set_blocked.py +88 -0
- pyrogram/raw/functions/contacts/toggle_top_peers.py +72 -0
- pyrogram/raw/functions/contacts/unblock.py +80 -0
- pyrogram/raw/functions/contest/__init__.py +25 -0
- pyrogram/raw/functions/contest/save_developer_info.py +104 -0
- pyrogram/raw/functions/destroy_auth_key.py +67 -0
- pyrogram/raw/functions/destroy_session.py +72 -0
- pyrogram/raw/functions/folders/__init__.py +25 -0
- pyrogram/raw/functions/folders/edit_peer_folders.py +72 -0
- pyrogram/raw/functions/fragment/__init__.py +25 -0
- pyrogram/raw/functions/fragment/get_collectible_info.py +72 -0
- pyrogram/raw/functions/get_future_salts.py +72 -0
- pyrogram/raw/functions/help/__init__.py +49 -0
- pyrogram/raw/functions/help/accept_terms_of_service.py +72 -0
- pyrogram/raw/functions/help/dismiss_suggestion.py +80 -0
- pyrogram/raw/functions/help/edit_user_info.py +88 -0
- pyrogram/raw/functions/help/get_app_config.py +72 -0
- pyrogram/raw/functions/help/get_app_update.py +72 -0
- pyrogram/raw/functions/help/get_cdn_config.py +67 -0
- pyrogram/raw/functions/help/get_config.py +67 -0
- pyrogram/raw/functions/help/get_countries_list.py +80 -0
- pyrogram/raw/functions/help/get_deep_link_info.py +72 -0
- pyrogram/raw/functions/help/get_invite_text.py +67 -0
- pyrogram/raw/functions/help/get_nearest_dc.py +67 -0
- pyrogram/raw/functions/help/get_passport_config.py +72 -0
- pyrogram/raw/functions/help/get_peer_colors.py +72 -0
- pyrogram/raw/functions/help/get_peer_profile_colors.py +72 -0
- pyrogram/raw/functions/help/get_premium_promo.py +67 -0
- pyrogram/raw/functions/help/get_promo_data.py +67 -0
- pyrogram/raw/functions/help/get_recent_me_urls.py +72 -0
- pyrogram/raw/functions/help/get_support.py +67 -0
- pyrogram/raw/functions/help/get_support_name.py +67 -0
- pyrogram/raw/functions/help/get_terms_of_service_update.py +67 -0
- pyrogram/raw/functions/help/get_timezones_list.py +72 -0
- pyrogram/raw/functions/help/get_user_info.py +72 -0
- pyrogram/raw/functions/help/hide_promo_data.py +72 -0
- pyrogram/raw/functions/help/save_app_log.py +72 -0
- pyrogram/raw/functions/help/set_bot_updates_status.py +80 -0
- pyrogram/raw/functions/init_connection.py +150 -0
- pyrogram/raw/functions/invoke_after_msg.py +80 -0
- pyrogram/raw/functions/invoke_after_msgs.py +80 -0
- pyrogram/raw/functions/invoke_with_apns_secret.py +88 -0
- pyrogram/raw/functions/invoke_with_business_connection.py +80 -0
- pyrogram/raw/functions/invoke_with_google_play_integrity.py +88 -0
- pyrogram/raw/functions/invoke_with_layer.py +80 -0
- pyrogram/raw/functions/invoke_with_messages_range.py +80 -0
- pyrogram/raw/functions/invoke_with_takeout.py +80 -0
- pyrogram/raw/functions/invoke_without_updates.py +72 -0
- pyrogram/raw/functions/langpack/__init__.py +29 -0
- pyrogram/raw/functions/langpack/get_difference.py +88 -0
- pyrogram/raw/functions/langpack/get_lang_pack.py +80 -0
- pyrogram/raw/functions/langpack/get_language.py +80 -0
- pyrogram/raw/functions/langpack/get_languages.py +72 -0
- pyrogram/raw/functions/langpack/get_strings.py +88 -0
- pyrogram/raw/functions/messages/__init__.py +249 -0
- pyrogram/raw/functions/messages/accept_encryption.py +88 -0
- pyrogram/raw/functions/messages/accept_url_auth.py +109 -0
- pyrogram/raw/functions/messages/add_chat_user.py +88 -0
- pyrogram/raw/functions/messages/check_chat_invite.py +72 -0
- pyrogram/raw/functions/messages/check_history_import.py +72 -0
- pyrogram/raw/functions/messages/check_history_import_peer.py +72 -0
- pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +72 -0
- pyrogram/raw/functions/messages/clear_all_drafts.py +67 -0
- pyrogram/raw/functions/messages/clear_recent_reactions.py +67 -0
- pyrogram/raw/functions/messages/clear_recent_stickers.py +72 -0
- pyrogram/raw/functions/messages/click_sponsored_message.py +94 -0
- pyrogram/raw/functions/messages/create_chat.py +91 -0
- pyrogram/raw/functions/messages/delete_chat.py +72 -0
- pyrogram/raw/functions/messages/delete_chat_user.py +88 -0
- pyrogram/raw/functions/messages/delete_exported_chat_invite.py +80 -0
- pyrogram/raw/functions/messages/delete_fact_check.py +80 -0
- pyrogram/raw/functions/messages/delete_history.py +112 -0
- pyrogram/raw/functions/messages/delete_messages.py +80 -0
- pyrogram/raw/functions/messages/delete_phone_call_history.py +72 -0
- pyrogram/raw/functions/messages/delete_quick_reply_messages.py +80 -0
- pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +72 -0
- pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +80 -0
- pyrogram/raw/functions/messages/delete_saved_history.py +100 -0
- pyrogram/raw/functions/messages/delete_scheduled_messages.py +80 -0
- pyrogram/raw/functions/messages/discard_encryption.py +80 -0
- pyrogram/raw/functions/messages/edit_chat_about.py +80 -0
- pyrogram/raw/functions/messages/edit_chat_admin.py +88 -0
- pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +80 -0
- pyrogram/raw/functions/messages/edit_chat_photo.py +80 -0
- pyrogram/raw/functions/messages/edit_chat_title.py +80 -0
- pyrogram/raw/functions/messages/edit_exported_chat_invite.py +124 -0
- pyrogram/raw/functions/messages/edit_fact_check.py +88 -0
- pyrogram/raw/functions/messages/edit_inline_bot_message.py +125 -0
- pyrogram/raw/functions/messages/edit_message.py +151 -0
- pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +80 -0
- pyrogram/raw/functions/messages/export_chat_invite.py +123 -0
- pyrogram/raw/functions/messages/fave_sticker.py +80 -0
- pyrogram/raw/functions/messages/forward_messages.py +187 -0
- pyrogram/raw/functions/messages/get_admins_with_invites.py +72 -0
- pyrogram/raw/functions/messages/get_all_drafts.py +67 -0
- pyrogram/raw/functions/messages/get_all_stickers.py +72 -0
- pyrogram/raw/functions/messages/get_archived_stickers.py +94 -0
- pyrogram/raw/functions/messages/get_attach_menu_bot.py +72 -0
- pyrogram/raw/functions/messages/get_attach_menu_bots.py +72 -0
- pyrogram/raw/functions/messages/get_attached_stickers.py +72 -0
- pyrogram/raw/functions/messages/get_available_effects.py +72 -0
- pyrogram/raw/functions/messages/get_available_reactions.py +72 -0
- pyrogram/raw/functions/messages/get_bot_app.py +80 -0
- pyrogram/raw/functions/messages/get_bot_callback_answer.py +107 -0
- pyrogram/raw/functions/messages/get_chat_invite_importers.py +128 -0
- pyrogram/raw/functions/messages/get_chats.py +72 -0
- pyrogram/raw/functions/messages/get_common_chats.py +88 -0
- pyrogram/raw/functions/messages/get_custom_emoji_documents.py +72 -0
- pyrogram/raw/functions/messages/get_default_history_ttl.py +67 -0
- pyrogram/raw/functions/messages/get_default_tag_reactions.py +72 -0
- pyrogram/raw/functions/messages/get_dh_config.py +80 -0
- pyrogram/raw/functions/messages/get_dialog_filters.py +67 -0
- pyrogram/raw/functions/messages/get_dialog_unread_marks.py +67 -0
- pyrogram/raw/functions/messages/get_dialogs.py +121 -0
- pyrogram/raw/functions/messages/get_discussion_message.py +80 -0
- pyrogram/raw/functions/messages/get_document_by_hash.py +88 -0
- pyrogram/raw/functions/messages/get_emoji_groups.py +72 -0
- pyrogram/raw/functions/messages/get_emoji_keywords.py +72 -0
- pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +80 -0
- pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +72 -0
- pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +72 -0
- pyrogram/raw/functions/messages/get_emoji_status_groups.py +72 -0
- pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +72 -0
- pyrogram/raw/functions/messages/get_emoji_stickers.py +72 -0
- pyrogram/raw/functions/messages/get_emoji_url.py +72 -0
- pyrogram/raw/functions/messages/get_exported_chat_invite.py +80 -0
- pyrogram/raw/functions/messages/get_exported_chat_invites.py +114 -0
- pyrogram/raw/functions/messages/get_extended_media.py +80 -0
- pyrogram/raw/functions/messages/get_fact_check.py +80 -0
- pyrogram/raw/functions/messages/get_faved_stickers.py +72 -0
- pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +72 -0
- pyrogram/raw/functions/messages/get_featured_stickers.py +72 -0
- pyrogram/raw/functions/messages/get_full_chat.py +72 -0
- pyrogram/raw/functions/messages/get_game_high_scores.py +88 -0
- pyrogram/raw/functions/messages/get_history.py +128 -0
- pyrogram/raw/functions/messages/get_inline_bot_results.py +108 -0
- pyrogram/raw/functions/messages/get_inline_game_high_scores.py +80 -0
- pyrogram/raw/functions/messages/get_mask_stickers.py +72 -0
- pyrogram/raw/functions/messages/get_message_edit_data.py +80 -0
- pyrogram/raw/functions/messages/get_message_reactions_list.py +109 -0
- pyrogram/raw/functions/messages/get_message_read_participants.py +80 -0
- pyrogram/raw/functions/messages/get_messages.py +72 -0
- pyrogram/raw/functions/messages/get_messages_reactions.py +80 -0
- pyrogram/raw/functions/messages/get_messages_views.py +88 -0
- pyrogram/raw/functions/messages/get_my_stickers.py +80 -0
- pyrogram/raw/functions/messages/get_old_featured_stickers.py +88 -0
- pyrogram/raw/functions/messages/get_onlines.py +72 -0
- pyrogram/raw/functions/messages/get_outbox_read_date.py +80 -0
- pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +67 -0
- pyrogram/raw/functions/messages/get_peer_dialogs.py +72 -0
- pyrogram/raw/functions/messages/get_peer_settings.py +72 -0
- pyrogram/raw/functions/messages/get_pinned_dialogs.py +72 -0
- pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +67 -0
- pyrogram/raw/functions/messages/get_poll_results.py +80 -0
- pyrogram/raw/functions/messages/get_poll_votes.py +108 -0
- pyrogram/raw/functions/messages/get_prepared_inline_message.py +80 -0
- pyrogram/raw/functions/messages/get_quick_replies.py +72 -0
- pyrogram/raw/functions/messages/get_quick_reply_messages.py +92 -0
- pyrogram/raw/functions/messages/get_recent_locations.py +88 -0
- pyrogram/raw/functions/messages/get_recent_reactions.py +80 -0
- pyrogram/raw/functions/messages/get_recent_stickers.py +80 -0
- pyrogram/raw/functions/messages/get_replies.py +136 -0
- pyrogram/raw/functions/messages/get_saved_dialogs.py +112 -0
- pyrogram/raw/functions/messages/get_saved_gifs.py +72 -0
- pyrogram/raw/functions/messages/get_saved_history.py +128 -0
- pyrogram/raw/functions/messages/get_saved_reaction_tags.py +84 -0
- pyrogram/raw/functions/messages/get_scheduled_history.py +80 -0
- pyrogram/raw/functions/messages/get_scheduled_messages.py +80 -0
- pyrogram/raw/functions/messages/get_search_counters.py +101 -0
- pyrogram/raw/functions/messages/get_search_results_calendar.py +108 -0
- pyrogram/raw/functions/messages/get_search_results_positions.py +108 -0
- pyrogram/raw/functions/messages/get_split_ranges.py +67 -0
- pyrogram/raw/functions/messages/get_sponsored_messages.py +72 -0
- pyrogram/raw/functions/messages/get_sticker_set.py +80 -0
- pyrogram/raw/functions/messages/get_stickers.py +80 -0
- pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +67 -0
- pyrogram/raw/functions/messages/get_top_reactions.py +80 -0
- pyrogram/raw/functions/messages/get_unread_mentions.py +123 -0
- pyrogram/raw/functions/messages/get_unread_reactions.py +123 -0
- pyrogram/raw/functions/messages/get_web_page.py +80 -0
- pyrogram/raw/functions/messages/get_web_page_preview.py +84 -0
- pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +89 -0
- pyrogram/raw/functions/messages/hide_chat_join_request.py +88 -0
- pyrogram/raw/functions/messages/hide_peer_settings_bar.py +72 -0
- pyrogram/raw/functions/messages/import_chat_invite.py +72 -0
- pyrogram/raw/functions/messages/init_history_import.py +88 -0
- pyrogram/raw/functions/messages/install_sticker_set.py +80 -0
- pyrogram/raw/functions/messages/mark_dialog_unread.py +80 -0
- pyrogram/raw/functions/messages/migrate_chat.py +72 -0
- pyrogram/raw/functions/messages/prolong_web_view.py +116 -0
- pyrogram/raw/functions/messages/rate_transcribed_audio.py +96 -0
- pyrogram/raw/functions/messages/read_discussion.py +88 -0
- pyrogram/raw/functions/messages/read_encrypted_history.py +80 -0
- pyrogram/raw/functions/messages/read_featured_stickers.py +72 -0
- pyrogram/raw/functions/messages/read_history.py +80 -0
- pyrogram/raw/functions/messages/read_mentions.py +83 -0
- pyrogram/raw/functions/messages/read_message_contents.py +72 -0
- pyrogram/raw/functions/messages/read_reactions.py +83 -0
- pyrogram/raw/functions/messages/received_messages.py +72 -0
- pyrogram/raw/functions/messages/received_queue.py +72 -0
- pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +88 -0
- pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +80 -0
- pyrogram/raw/functions/messages/reorder_quick_replies.py +72 -0
- pyrogram/raw/functions/messages/reorder_sticker_sets.py +86 -0
- pyrogram/raw/functions/messages/report.py +96 -0
- pyrogram/raw/functions/messages/report_encrypted_spam.py +72 -0
- pyrogram/raw/functions/messages/report_messages_delivery.py +88 -0
- pyrogram/raw/functions/messages/report_reaction.py +88 -0
- pyrogram/raw/functions/messages/report_spam.py +72 -0
- pyrogram/raw/functions/messages/report_sponsored_message.py +88 -0
- pyrogram/raw/functions/messages/request_app_web_view.py +127 -0
- pyrogram/raw/functions/messages/request_encryption.py +88 -0
- pyrogram/raw/functions/messages/request_main_web_view.py +121 -0
- pyrogram/raw/functions/messages/request_simple_web_view.py +134 -0
- pyrogram/raw/functions/messages/request_url_auth.py +103 -0
- pyrogram/raw/functions/messages/request_web_view.py +162 -0
- pyrogram/raw/functions/messages/save_default_send_as.py +80 -0
- pyrogram/raw/functions/messages/save_draft.py +133 -0
- pyrogram/raw/functions/messages/save_gif.py +80 -0
- pyrogram/raw/functions/messages/save_prepared_inline_message.py +92 -0
- pyrogram/raw/functions/messages/save_recent_sticker.py +88 -0
- pyrogram/raw/functions/messages/search.py +193 -0
- pyrogram/raw/functions/messages/search_custom_emoji.py +80 -0
- pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +88 -0
- pyrogram/raw/functions/messages/search_global.py +157 -0
- pyrogram/raw/functions/messages/search_sent_media.py +88 -0
- pyrogram/raw/functions/messages/search_sticker_sets.py +88 -0
- pyrogram/raw/functions/messages/search_stickers.py +120 -0
- pyrogram/raw/functions/messages/send_bot_requested_peer.py +96 -0
- pyrogram/raw/functions/messages/send_encrypted.py +96 -0
- pyrogram/raw/functions/messages/send_encrypted_file.py +104 -0
- pyrogram/raw/functions/messages/send_encrypted_service.py +88 -0
- pyrogram/raw/functions/messages/send_inline_bot_result.py +161 -0
- pyrogram/raw/functions/messages/send_media.py +208 -0
- pyrogram/raw/functions/messages/send_message.py +206 -0
- pyrogram/raw/functions/messages/send_multi_media.py +172 -0
- pyrogram/raw/functions/messages/send_paid_reaction.py +107 -0
- pyrogram/raw/functions/messages/send_quick_reply_messages.py +96 -0
- pyrogram/raw/functions/messages/send_reaction.py +104 -0
- pyrogram/raw/functions/messages/send_scheduled_messages.py +80 -0
- pyrogram/raw/functions/messages/send_screenshot_notification.py +88 -0
- pyrogram/raw/functions/messages/send_vote.py +88 -0
- pyrogram/raw/functions/messages/send_web_view_data.py +96 -0
- pyrogram/raw/functions/messages/send_web_view_result_message.py +80 -0
- pyrogram/raw/functions/messages/set_bot_callback_answer.py +106 -0
- pyrogram/raw/functions/messages/set_bot_precheckout_results.py +89 -0
- pyrogram/raw/functions/messages/set_bot_shipping_results.py +93 -0
- pyrogram/raw/functions/messages/set_chat_available_reactions.py +100 -0
- pyrogram/raw/functions/messages/set_chat_theme.py +80 -0
- pyrogram/raw/functions/messages/set_chat_wall_paper.py +115 -0
- pyrogram/raw/functions/messages/set_default_history_ttl.py +72 -0
- pyrogram/raw/functions/messages/set_default_reaction.py +72 -0
- pyrogram/raw/functions/messages/set_encrypted_typing.py +80 -0
- pyrogram/raw/functions/messages/set_game_score.py +110 -0
- pyrogram/raw/functions/messages/set_history_ttl.py +80 -0
- pyrogram/raw/functions/messages/set_inline_bot_results.py +131 -0
- pyrogram/raw/functions/messages/set_inline_game_score.py +102 -0
- pyrogram/raw/functions/messages/set_typing.py +91 -0
- pyrogram/raw/functions/messages/start_bot.py +96 -0
- pyrogram/raw/functions/messages/start_history_import.py +80 -0
- pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +88 -0
- pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +72 -0
- pyrogram/raw/functions/messages/toggle_dialog_pin.py +80 -0
- pyrogram/raw/functions/messages/toggle_no_forwards.py +80 -0
- pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +88 -0
- pyrogram/raw/functions/messages/toggle_peer_translations.py +80 -0
- pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +80 -0
- pyrogram/raw/functions/messages/toggle_sticker_sets.py +92 -0
- pyrogram/raw/functions/messages/transcribe_audio.py +80 -0
- pyrogram/raw/functions/messages/translate_text.py +104 -0
- pyrogram/raw/functions/messages/uninstall_sticker_set.py +72 -0
- pyrogram/raw/functions/messages/unpin_all_messages.py +83 -0
- pyrogram/raw/functions/messages/update_dialog_filter.py +84 -0
- pyrogram/raw/functions/messages/update_dialog_filters_order.py +72 -0
- pyrogram/raw/functions/messages/update_pinned_message.py +100 -0
- pyrogram/raw/functions/messages/update_saved_reaction_tag.py +83 -0
- pyrogram/raw/functions/messages/upload_encrypted_file.py +80 -0
- pyrogram/raw/functions/messages/upload_imported_media.py +96 -0
- pyrogram/raw/functions/messages/upload_media.py +91 -0
- pyrogram/raw/functions/messages/view_sponsored_message.py +80 -0
- pyrogram/raw/functions/payments/__init__.py +71 -0
- pyrogram/raw/functions/payments/apply_gift_code.py +72 -0
- pyrogram/raw/functions/payments/assign_app_store_transaction.py +80 -0
- pyrogram/raw/functions/payments/assign_play_market_transaction.py +80 -0
- pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py +88 -0
- pyrogram/raw/functions/payments/can_purchase_premium.py +72 -0
- pyrogram/raw/functions/payments/change_stars_subscription.py +91 -0
- pyrogram/raw/functions/payments/check_gift_code.py +72 -0
- pyrogram/raw/functions/payments/clear_saved_info.py +78 -0
- pyrogram/raw/functions/payments/connect_star_ref_bot.py +80 -0
- pyrogram/raw/functions/payments/convert_star_gift.py +72 -0
- pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py +88 -0
- pyrogram/raw/functions/payments/export_invoice.py +72 -0
- pyrogram/raw/functions/payments/fulfill_stars_subscription.py +80 -0
- pyrogram/raw/functions/payments/get_bank_card_data.py +72 -0
- pyrogram/raw/functions/payments/get_connected_star_ref_bot.py +80 -0
- pyrogram/raw/functions/payments/get_connected_star_ref_bots.py +100 -0
- pyrogram/raw/functions/payments/get_giveaway_info.py +80 -0
- pyrogram/raw/functions/payments/get_payment_form.py +84 -0
- pyrogram/raw/functions/payments/get_payment_receipt.py +80 -0
- pyrogram/raw/functions/payments/get_premium_gift_code_options.py +76 -0
- pyrogram/raw/functions/payments/get_saved_info.py +67 -0
- pyrogram/raw/functions/payments/get_saved_star_gift.py +72 -0
- pyrogram/raw/functions/payments/get_saved_star_gifts.py +126 -0
- pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py +72 -0
- pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py +80 -0
- pyrogram/raw/functions/payments/get_star_gifts.py +72 -0
- pyrogram/raw/functions/payments/get_stars_gift_options.py +76 -0
- pyrogram/raw/functions/payments/get_stars_giveaway_options.py +67 -0
- pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +72 -0
- pyrogram/raw/functions/payments/get_stars_revenue_stats.py +80 -0
- pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +88 -0
- pyrogram/raw/functions/payments/get_stars_status.py +72 -0
- pyrogram/raw/functions/payments/get_stars_subscriptions.py +88 -0
- pyrogram/raw/functions/payments/get_stars_topup_options.py +67 -0
- pyrogram/raw/functions/payments/get_stars_transactions.py +117 -0
- pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +80 -0
- pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py +102 -0
- pyrogram/raw/functions/payments/get_unique_star_gift.py +72 -0
- pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +88 -0
- pyrogram/raw/functions/payments/refund_stars_charge.py +80 -0
- pyrogram/raw/functions/payments/save_star_gift.py +80 -0
- pyrogram/raw/functions/payments/send_payment_form.py +117 -0
- pyrogram/raw/functions/payments/send_stars_form.py +80 -0
- pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py +80 -0
- pyrogram/raw/functions/payments/transfer_star_gift.py +80 -0
- pyrogram/raw/functions/payments/upgrade_star_gift.py +80 -0
- pyrogram/raw/functions/payments/validate_requested_info.py +88 -0
- pyrogram/raw/functions/phone/__init__.py +56 -0
- pyrogram/raw/functions/phone/accept_call.py +88 -0
- pyrogram/raw/functions/phone/check_group_call.py +80 -0
- pyrogram/raw/functions/phone/confirm_call.py +96 -0
- pyrogram/raw/functions/phone/create_conference_call.py +80 -0
- pyrogram/raw/functions/phone/create_group_call.py +106 -0
- pyrogram/raw/functions/phone/discard_call.py +104 -0
- pyrogram/raw/functions/phone/discard_group_call.py +72 -0
- pyrogram/raw/functions/phone/edit_group_call_participant.py +136 -0
- pyrogram/raw/functions/phone/edit_group_call_title.py +80 -0
- pyrogram/raw/functions/phone/export_group_call_invite.py +80 -0
- pyrogram/raw/functions/phone/get_call_config.py +67 -0
- pyrogram/raw/functions/phone/get_group_call.py +80 -0
- pyrogram/raw/functions/phone/get_group_call_join_as.py +72 -0
- pyrogram/raw/functions/phone/get_group_call_stream_channels.py +72 -0
- pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +80 -0
- pyrogram/raw/functions/phone/get_group_participants.py +104 -0
- pyrogram/raw/functions/phone/invite_to_group_call.py +80 -0
- pyrogram/raw/functions/phone/join_group_call.py +120 -0
- pyrogram/raw/functions/phone/join_group_call_presentation.py +80 -0
- pyrogram/raw/functions/phone/leave_group_call.py +80 -0
- pyrogram/raw/functions/phone/leave_group_call_presentation.py +72 -0
- pyrogram/raw/functions/phone/received_call.py +72 -0
- pyrogram/raw/functions/phone/request_call.py +114 -0
- pyrogram/raw/functions/phone/save_call_debug.py +80 -0
- pyrogram/raw/functions/phone/save_call_log.py +80 -0
- pyrogram/raw/functions/phone/save_default_group_call_join_as.py +80 -0
- pyrogram/raw/functions/phone/send_signaling_data.py +80 -0
- pyrogram/raw/functions/phone/set_call_rating.py +96 -0
- pyrogram/raw/functions/phone/start_scheduled_group_call.py +72 -0
- pyrogram/raw/functions/phone/toggle_group_call_record.py +104 -0
- pyrogram/raw/functions/phone/toggle_group_call_settings.py +89 -0
- pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +80 -0
- pyrogram/raw/functions/photos/__init__.py +29 -0
- pyrogram/raw/functions/photos/delete_photos.py +72 -0
- pyrogram/raw/functions/photos/get_user_photos.py +96 -0
- pyrogram/raw/functions/photos/update_profile_photo.py +90 -0
- pyrogram/raw/functions/photos/upload_contact_profile_photo.py +125 -0
- pyrogram/raw/functions/photos/upload_profile_photo.py +121 -0
- pyrogram/raw/functions/ping.py +72 -0
- pyrogram/raw/functions/ping_delay_disconnect.py +80 -0
- pyrogram/raw/functions/premium/__init__.py +29 -0
- pyrogram/raw/functions/premium/apply_boost.py +84 -0
- pyrogram/raw/functions/premium/get_boosts_list.py +96 -0
- pyrogram/raw/functions/premium/get_boosts_status.py +72 -0
- pyrogram/raw/functions/premium/get_my_boosts.py +67 -0
- pyrogram/raw/functions/premium/get_user_boosts.py +80 -0
- pyrogram/raw/functions/req_dh_params.py +112 -0
- pyrogram/raw/functions/req_pq.py +72 -0
- pyrogram/raw/functions/req_pq_multi.py +72 -0
- pyrogram/raw/functions/rpc_drop_answer.py +72 -0
- pyrogram/raw/functions/set_client_dh_params.py +88 -0
- pyrogram/raw/functions/smsjobs/__init__.py +31 -0
- pyrogram/raw/functions/smsjobs/finish_job.py +83 -0
- pyrogram/raw/functions/smsjobs/get_sms_job.py +72 -0
- pyrogram/raw/functions/smsjobs/get_status.py +67 -0
- pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +67 -0
- pyrogram/raw/functions/smsjobs/join.py +67 -0
- pyrogram/raw/functions/smsjobs/leave.py +67 -0
- pyrogram/raw/functions/smsjobs/update_settings.py +72 -0
- pyrogram/raw/functions/stats/__init__.py +34 -0
- pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py +80 -0
- pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py +88 -0
- pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py +80 -0
- pyrogram/raw/functions/stats/get_broadcast_stats.py +80 -0
- pyrogram/raw/functions/stats/get_megagroup_stats.py +80 -0
- pyrogram/raw/functions/stats/get_message_public_forwards.py +96 -0
- pyrogram/raw/functions/stats/get_message_stats.py +88 -0
- pyrogram/raw/functions/stats/get_story_public_forwards.py +96 -0
- pyrogram/raw/functions/stats/get_story_stats.py +88 -0
- pyrogram/raw/functions/stats/load_async_graph.py +83 -0
- pyrogram/raw/functions/stickers/__init__.py +35 -0
- pyrogram/raw/functions/stickers/add_sticker_to_set.py +80 -0
- pyrogram/raw/functions/stickers/change_sticker.py +102 -0
- pyrogram/raw/functions/stickers/change_sticker_position.py +80 -0
- pyrogram/raw/functions/stickers/check_short_name.py +72 -0
- pyrogram/raw/functions/stickers/create_sticker_set.py +135 -0
- pyrogram/raw/functions/stickers/delete_sticker_set.py +72 -0
- pyrogram/raw/functions/stickers/remove_sticker_from_set.py +72 -0
- pyrogram/raw/functions/stickers/rename_sticker_set.py +80 -0
- pyrogram/raw/functions/stickers/replace_sticker.py +80 -0
- pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +93 -0
- pyrogram/raw/functions/stickers/suggest_short_name.py +72 -0
- pyrogram/raw/functions/stories/__init__.py +50 -0
- pyrogram/raw/functions/stories/activate_stealth_mode.py +78 -0
- pyrogram/raw/functions/stories/can_send_story.py +72 -0
- pyrogram/raw/functions/stories/delete_stories.py +80 -0
- pyrogram/raw/functions/stories/edit_story.py +131 -0
- pyrogram/raw/functions/stories/export_story_link.py +80 -0
- pyrogram/raw/functions/stories/get_all_read_peer_stories.py +67 -0
- pyrogram/raw/functions/stories/get_all_stories.py +87 -0
- pyrogram/raw/functions/stories/get_chats_to_send.py +67 -0
- pyrogram/raw/functions/stories/get_peer_max_i_ds.py +72 -0
- pyrogram/raw/functions/stories/get_peer_stories.py +72 -0
- pyrogram/raw/functions/stories/get_pinned_stories.py +88 -0
- pyrogram/raw/functions/stories/get_stories_archive.py +88 -0
- pyrogram/raw/functions/stories/get_stories_by_id.py +80 -0
- pyrogram/raw/functions/stories/get_stories_views.py +80 -0
- pyrogram/raw/functions/stories/get_story_reactions_list.py +115 -0
- pyrogram/raw/functions/stories/get_story_views_list.py +125 -0
- pyrogram/raw/functions/stories/increment_story_views.py +80 -0
- pyrogram/raw/functions/stories/read_stories.py +80 -0
- pyrogram/raw/functions/stories/report.py +96 -0
- pyrogram/raw/functions/stories/search_posts.py +111 -0
- pyrogram/raw/functions/stories/send_reaction.py +96 -0
- pyrogram/raw/functions/stories/send_story.py +173 -0
- pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +72 -0
- pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +80 -0
- pyrogram/raw/functions/stories/toggle_pinned.py +88 -0
- pyrogram/raw/functions/stories/toggle_pinned_to_top.py +80 -0
- pyrogram/raw/functions/updates/__init__.py +27 -0
- pyrogram/raw/functions/updates/get_channel_difference.py +104 -0
- pyrogram/raw/functions/updates/get_difference.py +117 -0
- pyrogram/raw/functions/updates/get_state.py +67 -0
- pyrogram/raw/functions/upload/__init__.py +32 -0
- pyrogram/raw/functions/upload/get_cdn_file.py +88 -0
- pyrogram/raw/functions/upload/get_cdn_file_hashes.py +80 -0
- pyrogram/raw/functions/upload/get_file.py +102 -0
- pyrogram/raw/functions/upload/get_file_hashes.py +80 -0
- pyrogram/raw/functions/upload/get_web_file.py +88 -0
- pyrogram/raw/functions/upload/reupload_cdn_file.py +80 -0
- pyrogram/raw/functions/upload/save_big_file_part.py +96 -0
- pyrogram/raw/functions/upload/save_file_part.py +88 -0
- pyrogram/raw/functions/users/__init__.py +28 -0
- pyrogram/raw/functions/users/get_full_user.py +72 -0
- pyrogram/raw/functions/users/get_is_premium_required_to_contact.py +72 -0
- pyrogram/raw/functions/users/get_users.py +72 -0
- pyrogram/raw/functions/users/set_secure_value_errors.py +80 -0
- pyrogram/raw/types/__init__.py +1172 -0
- pyrogram/raw/types/access_point_rule.py +88 -0
- pyrogram/raw/types/account/__init__.py +55 -0
- pyrogram/raw/types/account/authorization_form.py +116 -0
- pyrogram/raw/types/account/authorizations.py +89 -0
- pyrogram/raw/types/account/auto_download_settings.py +97 -0
- pyrogram/raw/types/account/auto_save_settings.py +121 -0
- pyrogram/raw/types/account/business_chat_links.py +97 -0
- pyrogram/raw/types/account/connected_bots.py +89 -0
- pyrogram/raw/types/account/content_settings.py +87 -0
- pyrogram/raw/types/account/email_verified.py +81 -0
- pyrogram/raw/types/account/email_verified_login.py +89 -0
- pyrogram/raw/types/account/emoji_statuses.py +92 -0
- pyrogram/raw/types/account/emoji_statuses_not_modified.py +79 -0
- pyrogram/raw/types/account/password.py +181 -0
- pyrogram/raw/types/account/password_input_settings.py +113 -0
- pyrogram/raw/types/account/password_settings.py +94 -0
- pyrogram/raw/types/account/privacy_rules.py +98 -0
- pyrogram/raw/types/account/reset_password_failed_wait.py +81 -0
- pyrogram/raw/types/account/reset_password_ok.py +76 -0
- pyrogram/raw/types/account/reset_password_requested_wait.py +81 -0
- pyrogram/raw/types/account/resolved_business_chat_links.py +117 -0
- pyrogram/raw/types/account/saved_ringtone.py +76 -0
- pyrogram/raw/types/account/saved_ringtone_converted.py +81 -0
- pyrogram/raw/types/account/saved_ringtones.py +89 -0
- pyrogram/raw/types/account/saved_ringtones_not_modified.py +76 -0
- pyrogram/raw/types/account/sent_email_code.py +89 -0
- pyrogram/raw/types/account/takeout.py +81 -0
- pyrogram/raw/types/account/themes.py +90 -0
- pyrogram/raw/types/account/themes_not_modified.py +77 -0
- pyrogram/raw/types/account/tmp_password.py +89 -0
- pyrogram/raw/types/account/wall_papers.py +89 -0
- pyrogram/raw/types/account/wall_papers_not_modified.py +76 -0
- pyrogram/raw/types/account/web_authorizations.py +89 -0
- pyrogram/raw/types/account_days_ttl.py +81 -0
- pyrogram/raw/types/attach_menu_bot.py +136 -0
- pyrogram/raw/types/attach_menu_bot_icon.py +92 -0
- pyrogram/raw/types/attach_menu_bot_icon_color.py +80 -0
- pyrogram/raw/types/attach_menu_bots.py +97 -0
- pyrogram/raw/types/attach_menu_bots_bot.py +89 -0
- pyrogram/raw/types/attach_menu_bots_not_modified.py +76 -0
- pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +67 -0
- pyrogram/raw/types/attach_menu_peer_type_broadcast.py +67 -0
- pyrogram/raw/types/attach_menu_peer_type_chat.py +67 -0
- pyrogram/raw/types/attach_menu_peer_type_pm.py +67 -0
- pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +67 -0
- pyrogram/raw/types/auth/__init__.py +50 -0
- pyrogram/raw/types/auth/authorization.py +122 -0
- pyrogram/raw/types/auth/authorization_sign_up_required.py +91 -0
- pyrogram/raw/types/auth/code_type_call.py +67 -0
- pyrogram/raw/types/auth/code_type_flash_call.py +67 -0
- pyrogram/raw/types/auth/code_type_fragment_sms.py +67 -0
- pyrogram/raw/types/auth/code_type_missed_call.py +67 -0
- pyrogram/raw/types/auth/code_type_sms.py +67 -0
- pyrogram/raw/types/auth/exported_authorization.py +89 -0
- pyrogram/raw/types/auth/logged_out.py +84 -0
- pyrogram/raw/types/auth/login_token.py +90 -0
- pyrogram/raw/types/auth/login_token_migrate_to.py +90 -0
- pyrogram/raw/types/auth/login_token_success.py +82 -0
- pyrogram/raw/types/auth/password_recovery.py +81 -0
- pyrogram/raw/types/auth/sent_code.py +115 -0
- pyrogram/raw/types/auth/sent_code_success.py +86 -0
- pyrogram/raw/types/auth/sent_code_type_app.py +72 -0
- pyrogram/raw/types/auth/sent_code_type_call.py +72 -0
- pyrogram/raw/types/auth/sent_code_type_email_code.py +112 -0
- pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +119 -0
- pyrogram/raw/types/auth/sent_code_type_flash_call.py +72 -0
- pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +80 -0
- pyrogram/raw/types/auth/sent_code_type_missed_call.py +80 -0
- pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +78 -0
- pyrogram/raw/types/auth/sent_code_type_sms.py +72 -0
- pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +75 -0
- pyrogram/raw/types/auth/sent_code_type_sms_word.py +75 -0
- pyrogram/raw/types/authorization.py +207 -0
- pyrogram/raw/types/auto_download_settings.py +144 -0
- pyrogram/raw/types/auto_save_exception.py +80 -0
- pyrogram/raw/types/auto_save_settings.py +87 -0
- pyrogram/raw/types/available_effect.py +114 -0
- pyrogram/raw/types/available_reaction.py +154 -0
- pyrogram/raw/types/bad_msg_notification.py +88 -0
- pyrogram/raw/types/bad_server_salt.py +96 -0
- pyrogram/raw/types/bank_card_open_url.py +80 -0
- pyrogram/raw/types/base_theme_arctic.py +67 -0
- pyrogram/raw/types/base_theme_classic.py +67 -0
- pyrogram/raw/types/base_theme_day.py +67 -0
- pyrogram/raw/types/base_theme_night.py +67 -0
- pyrogram/raw/types/base_theme_tinted.py +67 -0
- pyrogram/raw/types/bind_auth_key_inner.py +104 -0
- pyrogram/raw/types/birthday.py +91 -0
- pyrogram/raw/types/boost.py +153 -0
- pyrogram/raw/types/bot_app.py +132 -0
- pyrogram/raw/types/bot_app_not_modified.py +67 -0
- pyrogram/raw/types/bot_app_settings.py +111 -0
- pyrogram/raw/types/bot_business_connection.py +110 -0
- pyrogram/raw/types/bot_command.py +89 -0
- pyrogram/raw/types/bot_command_scope_chat_admins.py +67 -0
- pyrogram/raw/types/bot_command_scope_chats.py +67 -0
- pyrogram/raw/types/bot_command_scope_default.py +67 -0
- pyrogram/raw/types/bot_command_scope_peer.py +72 -0
- pyrogram/raw/types/bot_command_scope_peer_admins.py +72 -0
- pyrogram/raw/types/bot_command_scope_peer_user.py +80 -0
- pyrogram/raw/types/bot_command_scope_users.py +67 -0
- pyrogram/raw/types/bot_info.py +159 -0
- pyrogram/raw/types/bot_inline_media_result.py +128 -0
- pyrogram/raw/types/bot_inline_message_media_auto.py +100 -0
- pyrogram/raw/types/bot_inline_message_media_contact.py +108 -0
- pyrogram/raw/types/bot_inline_message_media_geo.py +111 -0
- pyrogram/raw/types/bot_inline_message_media_invoice.py +130 -0
- pyrogram/raw/types/bot_inline_message_media_venue.py +124 -0
- pyrogram/raw/types/bot_inline_message_media_web_page.py +132 -0
- pyrogram/raw/types/bot_inline_message_text.py +106 -0
- pyrogram/raw/types/bot_inline_result.py +137 -0
- pyrogram/raw/types/bot_menu_button.py +89 -0
- pyrogram/raw/types/bot_menu_button_commands.py +76 -0
- pyrogram/raw/types/bot_menu_button_default.py +76 -0
- pyrogram/raw/types/bot_preview_media.py +91 -0
- pyrogram/raw/types/bot_verification.py +88 -0
- pyrogram/raw/types/bot_verifier_settings.py +97 -0
- pyrogram/raw/types/bots/__init__.py +27 -0
- pyrogram/raw/types/bots/bot_info.py +97 -0
- pyrogram/raw/types/bots/popular_app_bots.py +92 -0
- pyrogram/raw/types/bots/preview_info.py +89 -0
- pyrogram/raw/types/broadcast_revenue_balances.py +96 -0
- pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py +88 -0
- pyrogram/raw/types/broadcast_revenue_transaction_refund.py +88 -0
- pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py +120 -0
- pyrogram/raw/types/business_away_message.py +96 -0
- pyrogram/raw/types/business_away_message_schedule_always.py +67 -0
- pyrogram/raw/types/business_away_message_schedule_custom.py +80 -0
- pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +67 -0
- pyrogram/raw/types/business_bot_recipients.py +116 -0
- pyrogram/raw/types/business_chat_link.py +119 -0
- pyrogram/raw/types/business_greeting_message.py +88 -0
- pyrogram/raw/types/business_intro.py +92 -0
- pyrogram/raw/types/business_location.py +84 -0
- pyrogram/raw/types/business_recipients.py +106 -0
- pyrogram/raw/types/business_weekly_open.py +80 -0
- pyrogram/raw/types/business_work_hours.py +88 -0
- pyrogram/raw/types/cdn_config.py +81 -0
- pyrogram/raw/types/cdn_public_key.py +80 -0
- pyrogram/raw/types/channel.py +389 -0
- pyrogram/raw/types/channel_admin_log_event.py +96 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_about.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_location.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_title.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_username.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +67 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +67 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +86 -0
- pyrogram/raw/types/channel_admin_log_event_action_send_message.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +72 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +80 -0
- pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +72 -0
- pyrogram/raw/types/channel_admin_log_events_filter.py +180 -0
- pyrogram/raw/types/channel_forbidden.py +111 -0
- pyrogram/raw/types/channel_full.py +581 -0
- pyrogram/raw/types/channel_location.py +80 -0
- pyrogram/raw/types/channel_location_empty.py +67 -0
- pyrogram/raw/types/channel_messages_filter.py +80 -0
- pyrogram/raw/types/channel_messages_filter_empty.py +67 -0
- pyrogram/raw/types/channel_participant.py +91 -0
- pyrogram/raw/types/channel_participant_admin.py +128 -0
- pyrogram/raw/types/channel_participant_banned.py +104 -0
- pyrogram/raw/types/channel_participant_creator.py +91 -0
- pyrogram/raw/types/channel_participant_left.py +72 -0
- pyrogram/raw/types/channel_participant_self.py +105 -0
- pyrogram/raw/types/channel_participants_admins.py +67 -0
- pyrogram/raw/types/channel_participants_banned.py +72 -0
- pyrogram/raw/types/channel_participants_bots.py +67 -0
- pyrogram/raw/types/channel_participants_contacts.py +72 -0
- pyrogram/raw/types/channel_participants_kicked.py +72 -0
- pyrogram/raw/types/channel_participants_mentions.py +84 -0
- pyrogram/raw/types/channel_participants_recent.py +67 -0
- pyrogram/raw/types/channel_participants_search.py +72 -0
- pyrogram/raw/types/channels/__init__.py +32 -0
- pyrogram/raw/types/channels/admin_log_results.py +97 -0
- pyrogram/raw/types/channels/channel_participant.py +97 -0
- pyrogram/raw/types/channels/channel_participants.py +105 -0
- pyrogram/raw/types/channels/channel_participants_not_modified.py +76 -0
- pyrogram/raw/types/channels/send_as_peers.py +97 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +76 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +89 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +76 -0
- pyrogram/raw/types/chat.py +180 -0
- pyrogram/raw/types/chat_admin_rights.py +156 -0
- pyrogram/raw/types/chat_admin_with_invites.py +88 -0
- pyrogram/raw/types/chat_banned_rights.py +194 -0
- pyrogram/raw/types/chat_empty.py +72 -0
- pyrogram/raw/types/chat_forbidden.py +80 -0
- pyrogram/raw/types/chat_full.py +240 -0
- pyrogram/raw/types/chat_invite.py +209 -0
- pyrogram/raw/types/chat_invite_already.py +81 -0
- pyrogram/raw/types/chat_invite_exported.py +190 -0
- pyrogram/raw/types/chat_invite_importer.py +112 -0
- pyrogram/raw/types/chat_invite_peek.py +89 -0
- pyrogram/raw/types/chat_invite_public_join_requests.py +76 -0
- pyrogram/raw/types/chat_onlines.py +81 -0
- pyrogram/raw/types/chat_participant.py +88 -0
- pyrogram/raw/types/chat_participant_admin.py +88 -0
- pyrogram/raw/types/chat_participant_creator.py +72 -0
- pyrogram/raw/types/chat_participants.py +88 -0
- pyrogram/raw/types/chat_participants_forbidden.py +84 -0
- pyrogram/raw/types/chat_photo.py +97 -0
- pyrogram/raw/types/chat_photo_empty.py +67 -0
- pyrogram/raw/types/chat_reactions_all.py +72 -0
- pyrogram/raw/types/chat_reactions_none.py +67 -0
- pyrogram/raw/types/chat_reactions_some.py +72 -0
- pyrogram/raw/types/chatlists/__init__.py +29 -0
- pyrogram/raw/types/chatlists/chatlist_invite.py +122 -0
- pyrogram/raw/types/chatlists/chatlist_invite_already.py +113 -0
- pyrogram/raw/types/chatlists/chatlist_updates.py +97 -0
- pyrogram/raw/types/chatlists/exported_chatlist_invite.py +89 -0
- pyrogram/raw/types/chatlists/exported_invites.py +97 -0
- pyrogram/raw/types/client_dh_inner_data.py +96 -0
- pyrogram/raw/types/code_settings.py +130 -0
- pyrogram/raw/types/config.py +453 -0
- pyrogram/raw/types/connected_bot.py +88 -0
- pyrogram/raw/types/connected_bot_star_ref.py +129 -0
- pyrogram/raw/types/contact.py +80 -0
- pyrogram/raw/types/contact_birthday.py +80 -0
- pyrogram/raw/types/contact_status.py +89 -0
- pyrogram/raw/types/contacts/__init__.py +35 -0
- pyrogram/raw/types/contacts/blocked.py +97 -0
- pyrogram/raw/types/contacts/blocked_slice.py +105 -0
- pyrogram/raw/types/contacts/contact_birthdays.py +89 -0
- pyrogram/raw/types/contacts/contacts.py +97 -0
- pyrogram/raw/types/contacts/contacts_not_modified.py +76 -0
- pyrogram/raw/types/contacts/found.py +105 -0
- pyrogram/raw/types/contacts/imported_contacts.py +105 -0
- pyrogram/raw/types/contacts/resolved_peer.py +98 -0
- pyrogram/raw/types/contacts/top_peers.py +97 -0
- pyrogram/raw/types/contacts/top_peers_disabled.py +76 -0
- pyrogram/raw/types/contacts/top_peers_not_modified.py +76 -0
- pyrogram/raw/types/data_json.py +83 -0
- pyrogram/raw/types/dc_option.py +135 -0
- pyrogram/raw/types/default_history_ttl.py +81 -0
- pyrogram/raw/types/destroy_auth_key_fail.py +76 -0
- pyrogram/raw/types/destroy_auth_key_none.py +76 -0
- pyrogram/raw/types/destroy_auth_key_ok.py +76 -0
- pyrogram/raw/types/destroy_session_none.py +81 -0
- pyrogram/raw/types/destroy_session_ok.py +81 -0
- pyrogram/raw/types/dh_gen_fail.py +97 -0
- pyrogram/raw/types/dh_gen_ok.py +97 -0
- pyrogram/raw/types/dh_gen_retry.py +97 -0
- pyrogram/raw/types/dialog.py +185 -0
- pyrogram/raw/types/dialog_filter.py +178 -0
- pyrogram/raw/types/dialog_filter_chatlist.py +128 -0
- pyrogram/raw/types/dialog_filter_default.py +67 -0
- pyrogram/raw/types/dialog_filter_suggested.py +89 -0
- pyrogram/raw/types/dialog_folder.py +128 -0
- pyrogram/raw/types/dialog_peer.py +81 -0
- pyrogram/raw/types/dialog_peer_folder.py +81 -0
- pyrogram/raw/types/document.py +162 -0
- pyrogram/raw/types/document_attribute_animated.py +67 -0
- pyrogram/raw/types/document_attribute_audio.py +107 -0
- pyrogram/raw/types/document_attribute_custom_emoji.py +94 -0
- pyrogram/raw/types/document_attribute_filename.py +72 -0
- pyrogram/raw/types/document_attribute_has_stickers.py +67 -0
- pyrogram/raw/types/document_attribute_image_size.py +80 -0
- pyrogram/raw/types/document_attribute_sticker.py +98 -0
- pyrogram/raw/types/document_attribute_video.py +135 -0
- pyrogram/raw/types/document_empty.py +84 -0
- pyrogram/raw/types/draft_message.py +133 -0
- pyrogram/raw/types/draft_message_empty.py +75 -0
- pyrogram/raw/types/email_verification_apple.py +72 -0
- pyrogram/raw/types/email_verification_code.py +72 -0
- pyrogram/raw/types/email_verification_google.py +72 -0
- pyrogram/raw/types/email_verify_purpose_login_change.py +67 -0
- pyrogram/raw/types/email_verify_purpose_login_setup.py +80 -0
- pyrogram/raw/types/email_verify_purpose_passport.py +67 -0
- pyrogram/raw/types/emoji_group.py +88 -0
- pyrogram/raw/types/emoji_group_greeting.py +88 -0
- pyrogram/raw/types/emoji_group_premium.py +80 -0
- pyrogram/raw/types/emoji_keyword.py +80 -0
- pyrogram/raw/types/emoji_keyword_deleted.py +80 -0
- pyrogram/raw/types/emoji_keywords_difference.py +106 -0
- pyrogram/raw/types/emoji_language.py +81 -0
- pyrogram/raw/types/emoji_list.py +93 -0
- pyrogram/raw/types/emoji_list_not_modified.py +80 -0
- pyrogram/raw/types/emoji_status.py +83 -0
- pyrogram/raw/types/emoji_status_collectible.py +147 -0
- pyrogram/raw/types/emoji_status_empty.py +67 -0
- pyrogram/raw/types/emoji_url.py +81 -0
- pyrogram/raw/types/encrypted_chat.py +130 -0
- pyrogram/raw/types/encrypted_chat_discarded.py +90 -0
- pyrogram/raw/types/encrypted_chat_empty.py +82 -0
- pyrogram/raw/types/encrypted_chat_requested.py +133 -0
- pyrogram/raw/types/encrypted_chat_waiting.py +114 -0
- pyrogram/raw/types/encrypted_file.py +113 -0
- pyrogram/raw/types/encrypted_file_empty.py +76 -0
- pyrogram/raw/types/encrypted_message.py +104 -0
- pyrogram/raw/types/encrypted_message_service.py +96 -0
- pyrogram/raw/types/exported_chatlist_invite.py +100 -0
- pyrogram/raw/types/exported_contact_token.py +89 -0
- pyrogram/raw/types/exported_message_link.py +89 -0
- pyrogram/raw/types/exported_story_link.py +81 -0
- pyrogram/raw/types/fact_check.py +108 -0
- pyrogram/raw/types/file_hash.py +99 -0
- pyrogram/raw/types/folder.py +110 -0
- pyrogram/raw/types/folder_peer.py +80 -0
- pyrogram/raw/types/forum_topic.py +211 -0
- pyrogram/raw/types/forum_topic_deleted.py +72 -0
- pyrogram/raw/types/found_story.py +80 -0
- pyrogram/raw/types/fragment/__init__.py +25 -0
- pyrogram/raw/types/fragment/collectible_info.py +121 -0
- pyrogram/raw/types/game.py +124 -0
- pyrogram/raw/types/geo_point.py +99 -0
- pyrogram/raw/types/geo_point_address.py +101 -0
- pyrogram/raw/types/geo_point_empty.py +67 -0
- pyrogram/raw/types/global_privacy_settings.py +106 -0
- pyrogram/raw/types/group_call.py +208 -0
- pyrogram/raw/types/group_call_discarded.py +88 -0
- pyrogram/raw/types/group_call_participant.py +206 -0
- pyrogram/raw/types/group_call_participant_video.py +97 -0
- pyrogram/raw/types/group_call_participant_video_source_group.py +80 -0
- pyrogram/raw/types/group_call_stream_channel.py +88 -0
- pyrogram/raw/types/help/__init__.py +56 -0
- pyrogram/raw/types/help/app_config.py +89 -0
- pyrogram/raw/types/help/app_config_not_modified.py +76 -0
- pyrogram/raw/types/help/app_update.py +142 -0
- pyrogram/raw/types/help/config_simple.py +88 -0
- pyrogram/raw/types/help/countries_list.py +89 -0
- pyrogram/raw/types/help/countries_list_not_modified.py +76 -0
- pyrogram/raw/types/help/country.py +105 -0
- pyrogram/raw/types/help/country_code.py +94 -0
- pyrogram/raw/types/help/deep_link_info.py +99 -0
- pyrogram/raw/types/help/deep_link_info_empty.py +76 -0
- pyrogram/raw/types/help/invite_text.py +81 -0
- pyrogram/raw/types/help/no_app_update.py +76 -0
- pyrogram/raw/types/help/passport_config.py +89 -0
- pyrogram/raw/types/help/passport_config_not_modified.py +76 -0
- pyrogram/raw/types/help/peer_color_option.py +118 -0
- pyrogram/raw/types/help/peer_color_profile_set.py +88 -0
- pyrogram/raw/types/help/peer_color_set.py +72 -0
- pyrogram/raw/types/help/peer_colors.py +90 -0
- pyrogram/raw/types/help/peer_colors_not_modified.py +77 -0
- pyrogram/raw/types/help/premium_promo.py +121 -0
- pyrogram/raw/types/help/promo_data.py +131 -0
- pyrogram/raw/types/help/promo_data_empty.py +81 -0
- pyrogram/raw/types/help/recent_me_urls.py +97 -0
- pyrogram/raw/types/help/support.py +89 -0
- pyrogram/raw/types/help/support_name.py +81 -0
- pyrogram/raw/types/help/terms_of_service.py +105 -0
- pyrogram/raw/types/help/terms_of_service_update.py +89 -0
- pyrogram/raw/types/help/terms_of_service_update_empty.py +81 -0
- pyrogram/raw/types/help/timezones_list.py +89 -0
- pyrogram/raw/types/help/timezones_list_not_modified.py +76 -0
- pyrogram/raw/types/help/user_info.py +106 -0
- pyrogram/raw/types/help/user_info_empty.py +77 -0
- pyrogram/raw/types/high_score.py +88 -0
- pyrogram/raw/types/http_wait.py +88 -0
- pyrogram/raw/types/imported_contact.py +80 -0
- pyrogram/raw/types/inline_bot_switch_pm.py +80 -0
- pyrogram/raw/types/inline_bot_web_view.py +80 -0
- pyrogram/raw/types/inline_query_peer_type_bot_pm.py +67 -0
- pyrogram/raw/types/inline_query_peer_type_broadcast.py +67 -0
- pyrogram/raw/types/inline_query_peer_type_chat.py +67 -0
- pyrogram/raw/types/inline_query_peer_type_megagroup.py +67 -0
- pyrogram/raw/types/inline_query_peer_type_pm.py +67 -0
- pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +67 -0
- pyrogram/raw/types/input_app_event.py +96 -0
- pyrogram/raw/types/input_bot_app_id.py +80 -0
- pyrogram/raw/types/input_bot_app_short_name.py +80 -0
- pyrogram/raw/types/input_bot_inline_message_game.py +76 -0
- pyrogram/raw/types/input_bot_inline_message_id.py +88 -0
- pyrogram/raw/types/input_bot_inline_message_id64.py +96 -0
- pyrogram/raw/types/input_bot_inline_message_media_auto.py +100 -0
- pyrogram/raw/types/input_bot_inline_message_media_contact.py +108 -0
- pyrogram/raw/types/input_bot_inline_message_media_geo.py +111 -0
- pyrogram/raw/types/input_bot_inline_message_media_invoice.py +134 -0
- pyrogram/raw/types/input_bot_inline_message_media_venue.py +124 -0
- pyrogram/raw/types/input_bot_inline_message_media_web_page.py +126 -0
- pyrogram/raw/types/input_bot_inline_message_text.py +106 -0
- pyrogram/raw/types/input_bot_inline_result.py +137 -0
- pyrogram/raw/types/input_bot_inline_result_document.py +116 -0
- pyrogram/raw/types/input_bot_inline_result_game.py +88 -0
- pyrogram/raw/types/input_bot_inline_result_photo.py +96 -0
- pyrogram/raw/types/input_business_away_message.py +96 -0
- pyrogram/raw/types/input_business_bot_recipients.py +116 -0
- pyrogram/raw/types/input_business_chat_link.py +93 -0
- pyrogram/raw/types/input_business_greeting_message.py +88 -0
- pyrogram/raw/types/input_business_intro.py +92 -0
- pyrogram/raw/types/input_business_recipients.py +106 -0
- pyrogram/raw/types/input_channel.py +80 -0
- pyrogram/raw/types/input_channel_empty.py +67 -0
- pyrogram/raw/types/input_channel_from_message.py +88 -0
- pyrogram/raw/types/input_chat_photo.py +72 -0
- pyrogram/raw/types/input_chat_photo_empty.py +67 -0
- pyrogram/raw/types/input_chat_uploaded_photo.py +105 -0
- pyrogram/raw/types/input_chatlist_dialog_filter.py +72 -0
- pyrogram/raw/types/input_check_password_empty.py +67 -0
- pyrogram/raw/types/input_check_password_srp.py +88 -0
- pyrogram/raw/types/input_client_proxy.py +80 -0
- pyrogram/raw/types/input_collectible_phone.py +72 -0
- pyrogram/raw/types/input_collectible_username.py +72 -0
- pyrogram/raw/types/input_dialog_peer.py +72 -0
- pyrogram/raw/types/input_dialog_peer_folder.py +72 -0
- pyrogram/raw/types/input_document.py +88 -0
- pyrogram/raw/types/input_document_empty.py +67 -0
- pyrogram/raw/types/input_document_file_location.py +96 -0
- pyrogram/raw/types/input_emoji_status_collectible.py +83 -0
- pyrogram/raw/types/input_encrypted_chat.py +80 -0
- pyrogram/raw/types/input_encrypted_file.py +80 -0
- pyrogram/raw/types/input_encrypted_file_big_uploaded.py +88 -0
- pyrogram/raw/types/input_encrypted_file_empty.py +67 -0
- pyrogram/raw/types/input_encrypted_file_location.py +80 -0
- pyrogram/raw/types/input_encrypted_file_uploaded.py +96 -0
- pyrogram/raw/types/input_file.py +96 -0
- pyrogram/raw/types/input_file_big.py +88 -0
- pyrogram/raw/types/input_file_location.py +96 -0
- pyrogram/raw/types/input_file_story_document.py +72 -0
- pyrogram/raw/types/input_folder_peer.py +80 -0
- pyrogram/raw/types/input_game_id.py +80 -0
- pyrogram/raw/types/input_game_short_name.py +80 -0
- pyrogram/raw/types/input_geo_point.py +91 -0
- pyrogram/raw/types/input_geo_point_empty.py +67 -0
- pyrogram/raw/types/input_group_call.py +80 -0
- pyrogram/raw/types/input_group_call_stream.py +108 -0
- pyrogram/raw/types/input_invoice_chat_invite_subscription.py +72 -0
- pyrogram/raw/types/input_invoice_message.py +80 -0
- pyrogram/raw/types/input_invoice_premium_gift_code.py +80 -0
- pyrogram/raw/types/input_invoice_slug.py +72 -0
- pyrogram/raw/types/input_invoice_star_gift.py +104 -0
- pyrogram/raw/types/input_invoice_star_gift_transfer.py +80 -0
- pyrogram/raw/types/input_invoice_star_gift_upgrade.py +80 -0
- pyrogram/raw/types/input_invoice_stars.py +72 -0
- pyrogram/raw/types/input_keyboard_button_request_peer.py +116 -0
- pyrogram/raw/types/input_keyboard_button_url_auth.py +105 -0
- pyrogram/raw/types/input_keyboard_button_user_profile.py +80 -0
- pyrogram/raw/types/input_media_area_channel_post.py +88 -0
- pyrogram/raw/types/input_media_area_venue.py +88 -0
- pyrogram/raw/types/input_media_contact.py +96 -0
- pyrogram/raw/types/input_media_dice.py +72 -0
- pyrogram/raw/types/input_media_document.py +117 -0
- pyrogram/raw/types/input_media_document_external.py +108 -0
- pyrogram/raw/types/input_media_empty.py +67 -0
- pyrogram/raw/types/input_media_game.py +72 -0
- pyrogram/raw/types/input_media_geo_live.py +107 -0
- pyrogram/raw/types/input_media_geo_point.py +72 -0
- pyrogram/raw/types/input_media_invoice.py +144 -0
- pyrogram/raw/types/input_media_paid_media.py +91 -0
- pyrogram/raw/types/input_media_photo.py +89 -0
- pyrogram/raw/types/input_media_photo_external.py +89 -0
- pyrogram/raw/types/input_media_poll.py +103 -0
- pyrogram/raw/types/input_media_story.py +80 -0
- pyrogram/raw/types/input_media_uploaded_document.py +156 -0
- pyrogram/raw/types/input_media_uploaded_photo.py +99 -0
- pyrogram/raw/types/input_media_venue.py +112 -0
- pyrogram/raw/types/input_media_web_page.py +92 -0
- pyrogram/raw/types/input_message_callback_query.py +80 -0
- pyrogram/raw/types/input_message_entity_mention_name.py +88 -0
- pyrogram/raw/types/input_message_id.py +72 -0
- pyrogram/raw/types/input_message_pinned.py +67 -0
- pyrogram/raw/types/input_message_reply_to.py +72 -0
- pyrogram/raw/types/input_messages_filter_chat_photos.py +67 -0
- pyrogram/raw/types/input_messages_filter_contacts.py +67 -0
- pyrogram/raw/types/input_messages_filter_document.py +67 -0
- pyrogram/raw/types/input_messages_filter_empty.py +67 -0
- pyrogram/raw/types/input_messages_filter_geo.py +67 -0
- pyrogram/raw/types/input_messages_filter_gif.py +67 -0
- pyrogram/raw/types/input_messages_filter_music.py +67 -0
- pyrogram/raw/types/input_messages_filter_my_mentions.py +67 -0
- pyrogram/raw/types/input_messages_filter_phone_calls.py +72 -0
- pyrogram/raw/types/input_messages_filter_photo_video.py +67 -0
- pyrogram/raw/types/input_messages_filter_photos.py +67 -0
- pyrogram/raw/types/input_messages_filter_pinned.py +67 -0
- pyrogram/raw/types/input_messages_filter_round_video.py +67 -0
- pyrogram/raw/types/input_messages_filter_round_voice.py +67 -0
- pyrogram/raw/types/input_messages_filter_url.py +67 -0
- pyrogram/raw/types/input_messages_filter_video.py +67 -0
- pyrogram/raw/types/input_messages_filter_voice.py +67 -0
- pyrogram/raw/types/input_notify_broadcasts.py +67 -0
- pyrogram/raw/types/input_notify_chats.py +67 -0
- pyrogram/raw/types/input_notify_forum_topic.py +80 -0
- pyrogram/raw/types/input_notify_peer.py +72 -0
- pyrogram/raw/types/input_notify_users.py +67 -0
- pyrogram/raw/types/input_payment_credentials.py +80 -0
- pyrogram/raw/types/input_payment_credentials_apple_pay.py +72 -0
- pyrogram/raw/types/input_payment_credentials_google_pay.py +72 -0
- pyrogram/raw/types/input_payment_credentials_saved.py +80 -0
- pyrogram/raw/types/input_peer_channel.py +80 -0
- pyrogram/raw/types/input_peer_channel_from_message.py +88 -0
- pyrogram/raw/types/input_peer_chat.py +72 -0
- pyrogram/raw/types/input_peer_empty.py +67 -0
- pyrogram/raw/types/input_peer_notify_settings.py +131 -0
- pyrogram/raw/types/input_peer_photo_file_location.py +88 -0
- pyrogram/raw/types/input_peer_self.py +67 -0
- pyrogram/raw/types/input_peer_user.py +80 -0
- pyrogram/raw/types/input_peer_user_from_message.py +88 -0
- pyrogram/raw/types/input_phone_call.py +80 -0
- pyrogram/raw/types/input_phone_contact.py +96 -0
- pyrogram/raw/types/input_photo.py +88 -0
- pyrogram/raw/types/input_photo_empty.py +67 -0
- pyrogram/raw/types/input_photo_file_location.py +96 -0
- pyrogram/raw/types/input_photo_legacy_file_location.py +112 -0
- pyrogram/raw/types/input_privacy_key_about.py +67 -0
- pyrogram/raw/types/input_privacy_key_added_by_phone.py +67 -0
- pyrogram/raw/types/input_privacy_key_birthday.py +67 -0
- pyrogram/raw/types/input_privacy_key_chat_invite.py +67 -0
- pyrogram/raw/types/input_privacy_key_forwards.py +67 -0
- pyrogram/raw/types/input_privacy_key_phone_call.py +67 -0
- pyrogram/raw/types/input_privacy_key_phone_number.py +67 -0
- pyrogram/raw/types/input_privacy_key_phone_p2_p.py +67 -0
- pyrogram/raw/types/input_privacy_key_profile_photo.py +67 -0
- pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py +67 -0
- pyrogram/raw/types/input_privacy_key_status_timestamp.py +67 -0
- pyrogram/raw/types/input_privacy_key_voice_messages.py +67 -0
- pyrogram/raw/types/input_privacy_value_allow_all.py +67 -0
- pyrogram/raw/types/input_privacy_value_allow_bots.py +67 -0
- pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +72 -0
- pyrogram/raw/types/input_privacy_value_allow_close_friends.py +67 -0
- pyrogram/raw/types/input_privacy_value_allow_contacts.py +67 -0
- pyrogram/raw/types/input_privacy_value_allow_premium.py +67 -0
- pyrogram/raw/types/input_privacy_value_allow_users.py +72 -0
- pyrogram/raw/types/input_privacy_value_disallow_all.py +67 -0
- pyrogram/raw/types/input_privacy_value_disallow_bots.py +67 -0
- pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +72 -0
- pyrogram/raw/types/input_privacy_value_disallow_contacts.py +67 -0
- pyrogram/raw/types/input_privacy_value_disallow_users.py +72 -0
- pyrogram/raw/types/input_quick_reply_shortcut.py +72 -0
- pyrogram/raw/types/input_quick_reply_shortcut_id.py +72 -0
- pyrogram/raw/types/input_reply_to_message.py +121 -0
- pyrogram/raw/types/input_reply_to_story.py +80 -0
- pyrogram/raw/types/input_report_reason_child_abuse.py +67 -0
- pyrogram/raw/types/input_report_reason_copyright.py +67 -0
- pyrogram/raw/types/input_report_reason_fake.py +67 -0
- pyrogram/raw/types/input_report_reason_geo_irrelevant.py +67 -0
- pyrogram/raw/types/input_report_reason_illegal_drugs.py +67 -0
- pyrogram/raw/types/input_report_reason_other.py +67 -0
- pyrogram/raw/types/input_report_reason_personal_details.py +67 -0
- pyrogram/raw/types/input_report_reason_pornography.py +67 -0
- pyrogram/raw/types/input_report_reason_spam.py +67 -0
- pyrogram/raw/types/input_report_reason_violence.py +67 -0
- pyrogram/raw/types/input_saved_star_gift_chat.py +80 -0
- pyrogram/raw/types/input_saved_star_gift_user.py +72 -0
- pyrogram/raw/types/input_secure_file.py +80 -0
- pyrogram/raw/types/input_secure_file_location.py +80 -0
- pyrogram/raw/types/input_secure_file_uploaded.py +104 -0
- pyrogram/raw/types/input_secure_value.py +144 -0
- pyrogram/raw/types/input_single_media.py +100 -0
- pyrogram/raw/types/input_stars_transaction.py +80 -0
- pyrogram/raw/types/input_sticker_set_animated_emoji.py +67 -0
- pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +67 -0
- pyrogram/raw/types/input_sticker_set_dice.py +72 -0
- pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +67 -0
- pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +67 -0
- pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +67 -0
- pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +67 -0
- pyrogram/raw/types/input_sticker_set_empty.py +67 -0
- pyrogram/raw/types/input_sticker_set_id.py +80 -0
- pyrogram/raw/types/input_sticker_set_item.py +101 -0
- pyrogram/raw/types/input_sticker_set_premium_gifts.py +67 -0
- pyrogram/raw/types/input_sticker_set_short_name.py +72 -0
- pyrogram/raw/types/input_sticker_set_thumb.py +80 -0
- pyrogram/raw/types/input_stickered_media_document.py +72 -0
- pyrogram/raw/types/input_stickered_media_photo.py +72 -0
- pyrogram/raw/types/input_store_payment_gift_premium.py +88 -0
- pyrogram/raw/types/input_store_payment_premium_gift_code.py +110 -0
- pyrogram/raw/types/input_store_payment_premium_giveaway.py +147 -0
- pyrogram/raw/types/input_store_payment_premium_subscription.py +78 -0
- pyrogram/raw/types/input_store_payment_stars_gift.py +96 -0
- pyrogram/raw/types/input_store_payment_stars_giveaway.py +163 -0
- pyrogram/raw/types/input_store_payment_stars_topup.py +88 -0
- pyrogram/raw/types/input_takeout_file_location.py +67 -0
- pyrogram/raw/types/input_theme.py +80 -0
- pyrogram/raw/types/input_theme_settings.py +127 -0
- pyrogram/raw/types/input_theme_slug.py +72 -0
- pyrogram/raw/types/input_user.py +80 -0
- pyrogram/raw/types/input_user_empty.py +67 -0
- pyrogram/raw/types/input_user_from_message.py +88 -0
- pyrogram/raw/types/input_user_self.py +67 -0
- pyrogram/raw/types/input_wall_paper.py +80 -0
- pyrogram/raw/types/input_wall_paper_no_file.py +72 -0
- pyrogram/raw/types/input_wall_paper_slug.py +72 -0
- pyrogram/raw/types/input_web_document.py +96 -0
- pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +100 -0
- pyrogram/raw/types/input_web_file_geo_point_location.py +112 -0
- pyrogram/raw/types/input_web_file_location.py +80 -0
- pyrogram/raw/types/invoice.py +173 -0
- pyrogram/raw/types/ip_port.py +80 -0
- pyrogram/raw/types/ip_port_secret.py +88 -0
- pyrogram/raw/types/json_array.py +72 -0
- pyrogram/raw/types/json_bool.py +72 -0
- pyrogram/raw/types/json_null.py +67 -0
- pyrogram/raw/types/json_number.py +72 -0
- pyrogram/raw/types/json_object.py +72 -0
- pyrogram/raw/types/json_object_value.py +80 -0
- pyrogram/raw/types/json_string.py +72 -0
- pyrogram/raw/types/keyboard_button.py +72 -0
- pyrogram/raw/types/keyboard_button_buy.py +72 -0
- pyrogram/raw/types/keyboard_button_callback.py +88 -0
- pyrogram/raw/types/keyboard_button_copy.py +80 -0
- pyrogram/raw/types/keyboard_button_game.py +72 -0
- pyrogram/raw/types/keyboard_button_request_geo_location.py +72 -0
- pyrogram/raw/types/keyboard_button_request_peer.py +96 -0
- pyrogram/raw/types/keyboard_button_request_phone.py +72 -0
- pyrogram/raw/types/keyboard_button_request_poll.py +83 -0
- pyrogram/raw/types/keyboard_button_row.py +72 -0
- pyrogram/raw/types/keyboard_button_simple_web_view.py +80 -0
- pyrogram/raw/types/keyboard_button_switch_inline.py +98 -0
- pyrogram/raw/types/keyboard_button_url.py +80 -0
- pyrogram/raw/types/keyboard_button_url_auth.py +99 -0
- pyrogram/raw/types/keyboard_button_user_profile.py +80 -0
- pyrogram/raw/types/keyboard_button_web_view.py +80 -0
- pyrogram/raw/types/labeled_price.py +80 -0
- pyrogram/raw/types/lang_pack_difference.py +106 -0
- pyrogram/raw/types/lang_pack_language.py +159 -0
- pyrogram/raw/types/lang_pack_string.py +89 -0
- pyrogram/raw/types/lang_pack_string_deleted.py +81 -0
- pyrogram/raw/types/lang_pack_string_pluralized.py +136 -0
- pyrogram/raw/types/mask_coords.py +96 -0
- pyrogram/raw/types/media_area_channel_post.py +88 -0
- pyrogram/raw/types/media_area_coordinates.py +115 -0
- pyrogram/raw/types/media_area_geo_point.py +92 -0
- pyrogram/raw/types/media_area_star_gift.py +80 -0
- pyrogram/raw/types/media_area_suggested_reaction.py +94 -0
- pyrogram/raw/types/media_area_url.py +80 -0
- pyrogram/raw/types/media_area_venue.py +120 -0
- pyrogram/raw/types/media_area_weather.py +96 -0
- pyrogram/raw/types/message.py +398 -0
- pyrogram/raw/types/message_action_boost_apply.py +72 -0
- pyrogram/raw/types/message_action_bot_allowed.py +97 -0
- pyrogram/raw/types/message_action_channel_create.py +72 -0
- pyrogram/raw/types/message_action_channel_migrate_from.py +80 -0
- pyrogram/raw/types/message_action_chat_add_user.py +72 -0
- pyrogram/raw/types/message_action_chat_create.py +80 -0
- pyrogram/raw/types/message_action_chat_delete_photo.py +67 -0
- pyrogram/raw/types/message_action_chat_delete_user.py +72 -0
- pyrogram/raw/types/message_action_chat_edit_photo.py +72 -0
- pyrogram/raw/types/message_action_chat_edit_title.py +72 -0
- pyrogram/raw/types/message_action_chat_joined_by_link.py +72 -0
- pyrogram/raw/types/message_action_chat_joined_by_request.py +67 -0
- pyrogram/raw/types/message_action_chat_migrate_to.py +72 -0
- pyrogram/raw/types/message_action_contact_sign_up.py +67 -0
- pyrogram/raw/types/message_action_custom_action.py +72 -0
- pyrogram/raw/types/message_action_empty.py +67 -0
- pyrogram/raw/types/message_action_game_score.py +80 -0
- pyrogram/raw/types/message_action_geo_proximity_reached.py +88 -0
- pyrogram/raw/types/message_action_gift_code.py +150 -0
- pyrogram/raw/types/message_action_gift_premium.py +118 -0
- pyrogram/raw/types/message_action_gift_stars.py +117 -0
- pyrogram/raw/types/message_action_giveaway_launch.py +75 -0
- pyrogram/raw/types/message_action_giveaway_results.py +88 -0
- pyrogram/raw/types/message_action_group_call.py +83 -0
- pyrogram/raw/types/message_action_group_call_scheduled.py +80 -0
- pyrogram/raw/types/message_action_history_clear.py +67 -0
- pyrogram/raw/types/message_action_invite_to_group_call.py +80 -0
- pyrogram/raw/types/message_action_payment_refunded.py +107 -0
- pyrogram/raw/types/message_action_payment_sent.py +112 -0
- pyrogram/raw/types/message_action_payment_sent_me.py +138 -0
- pyrogram/raw/types/message_action_phone_call.py +99 -0
- pyrogram/raw/types/message_action_pin_message.py +67 -0
- pyrogram/raw/types/message_action_prize_stars.py +104 -0
- pyrogram/raw/types/message_action_requested_peer.py +80 -0
- pyrogram/raw/types/message_action_requested_peer_sent_me.py +80 -0
- pyrogram/raw/types/message_action_screenshot_taken.py +67 -0
- pyrogram/raw/types/message_action_secure_values_sent.py +72 -0
- pyrogram/raw/types/message_action_secure_values_sent_me.py +80 -0
- pyrogram/raw/types/message_action_set_chat_theme.py +72 -0
- pyrogram/raw/types/message_action_set_chat_wall_paper.py +86 -0
- pyrogram/raw/types/message_action_set_messages_ttl.py +83 -0
- pyrogram/raw/types/message_action_star_gift.py +176 -0
- pyrogram/raw/types/message_action_star_gift_unique.py +145 -0
- pyrogram/raw/types/message_action_suggest_profile_photo.py +72 -0
- pyrogram/raw/types/message_action_topic_create.py +91 -0
- pyrogram/raw/types/message_action_topic_edit.py +102 -0
- pyrogram/raw/types/message_action_web_view_data_sent.py +72 -0
- pyrogram/raw/types/message_action_web_view_data_sent_me.py +80 -0
- pyrogram/raw/types/message_empty.py +84 -0
- pyrogram/raw/types/message_entity_bank_card.py +80 -0
- pyrogram/raw/types/message_entity_blockquote.py +88 -0
- pyrogram/raw/types/message_entity_bold.py +80 -0
- pyrogram/raw/types/message_entity_bot_command.py +80 -0
- pyrogram/raw/types/message_entity_cashtag.py +80 -0
- pyrogram/raw/types/message_entity_code.py +80 -0
- pyrogram/raw/types/message_entity_custom_emoji.py +88 -0
- pyrogram/raw/types/message_entity_email.py +80 -0
- pyrogram/raw/types/message_entity_hashtag.py +80 -0
- pyrogram/raw/types/message_entity_italic.py +80 -0
- pyrogram/raw/types/message_entity_mention.py +80 -0
- pyrogram/raw/types/message_entity_mention_name.py +88 -0
- pyrogram/raw/types/message_entity_phone.py +80 -0
- pyrogram/raw/types/message_entity_pre.py +88 -0
- pyrogram/raw/types/message_entity_spoiler.py +80 -0
- pyrogram/raw/types/message_entity_strike.py +80 -0
- pyrogram/raw/types/message_entity_text_url.py +88 -0
- pyrogram/raw/types/message_entity_underline.py +80 -0
- pyrogram/raw/types/message_entity_unknown.py +80 -0
- pyrogram/raw/types/message_entity_url.py +80 -0
- pyrogram/raw/types/message_extended_media.py +72 -0
- pyrogram/raw/types/message_extended_media_preview.py +103 -0
- pyrogram/raw/types/message_fwd_header.py +179 -0
- pyrogram/raw/types/message_media_contact.py +114 -0
- pyrogram/raw/types/message_media_dice.py +90 -0
- pyrogram/raw/types/message_media_document.py +154 -0
- pyrogram/raw/types/message_media_empty.py +77 -0
- pyrogram/raw/types/message_media_game.py +82 -0
- pyrogram/raw/types/message_media_geo.py +82 -0
- pyrogram/raw/types/message_media_geo_live.py +110 -0
- pyrogram/raw/types/message_media_giveaway.py +149 -0
- pyrogram/raw/types/message_media_giveaway_results.py +172 -0
- pyrogram/raw/types/message_media_invoice.py +157 -0
- pyrogram/raw/types/message_media_paid_media.py +90 -0
- pyrogram/raw/types/message_media_photo.py +101 -0
- pyrogram/raw/types/message_media_poll.py +90 -0
- pyrogram/raw/types/message_media_story.py +108 -0
- pyrogram/raw/types/message_media_unsupported.py +77 -0
- pyrogram/raw/types/message_media_venue.py +122 -0
- pyrogram/raw/types/message_media_web_page.py +108 -0
- pyrogram/raw/types/message_peer_reaction.py +108 -0
- pyrogram/raw/types/message_peer_vote.py +88 -0
- pyrogram/raw/types/message_peer_vote_input_option.py +80 -0
- pyrogram/raw/types/message_peer_vote_multiple.py +88 -0
- pyrogram/raw/types/message_range.py +89 -0
- pyrogram/raw/types/message_reactions.py +112 -0
- pyrogram/raw/types/message_reactor.py +102 -0
- pyrogram/raw/types/message_replies.py +125 -0
- pyrogram/raw/types/message_reply_header.py +160 -0
- pyrogram/raw/types/message_reply_story_header.py +80 -0
- pyrogram/raw/types/message_report_option.py +80 -0
- pyrogram/raw/types/message_service.py +179 -0
- pyrogram/raw/types/message_views.py +94 -0
- pyrogram/raw/types/messages/__init__.py +112 -0
- pyrogram/raw/types/messages/affected_found_messages.py +105 -0
- pyrogram/raw/types/messages/affected_history.py +103 -0
- pyrogram/raw/types/messages/affected_messages.py +92 -0
- pyrogram/raw/types/messages/all_stickers.py +91 -0
- pyrogram/raw/types/messages/all_stickers_not_modified.py +78 -0
- pyrogram/raw/types/messages/archived_stickers.py +89 -0
- pyrogram/raw/types/messages/available_effects.py +97 -0
- pyrogram/raw/types/messages/available_effects_not_modified.py +76 -0
- pyrogram/raw/types/messages/available_reactions.py +89 -0
- pyrogram/raw/types/messages/available_reactions_not_modified.py +76 -0
- pyrogram/raw/types/messages/bot_app.py +101 -0
- pyrogram/raw/types/messages/bot_callback_answer.py +119 -0
- pyrogram/raw/types/messages/bot_prepared_inline_message.py +89 -0
- pyrogram/raw/types/messages/bot_results.py +142 -0
- pyrogram/raw/types/messages/channel_messages.py +152 -0
- pyrogram/raw/types/messages/chat_admins_with_invites.py +89 -0
- pyrogram/raw/types/messages/chat_full.py +98 -0
- pyrogram/raw/types/messages/chat_invite_importers.py +97 -0
- pyrogram/raw/types/messages/chats.py +88 -0
- pyrogram/raw/types/messages/chats_slice.py +96 -0
- pyrogram/raw/types/messages/checked_history_import_peer.py +81 -0
- pyrogram/raw/types/messages/dh_config.py +105 -0
- pyrogram/raw/types/messages/dh_config_not_modified.py +81 -0
- pyrogram/raw/types/messages/dialog_filters.py +89 -0
- pyrogram/raw/types/messages/dialogs.py +105 -0
- pyrogram/raw/types/messages/dialogs_not_modified.py +81 -0
- pyrogram/raw/types/messages/dialogs_slice.py +113 -0
- pyrogram/raw/types/messages/discussion_message.py +134 -0
- pyrogram/raw/types/messages/emoji_groups.py +92 -0
- pyrogram/raw/types/messages/emoji_groups_not_modified.py +79 -0
- pyrogram/raw/types/messages/exported_chat_invite.py +90 -0
- pyrogram/raw/types/messages/exported_chat_invite_replaced.py +98 -0
- pyrogram/raw/types/messages/exported_chat_invites.py +97 -0
- pyrogram/raw/types/messages/faved_stickers.py +97 -0
- pyrogram/raw/types/messages/faved_stickers_not_modified.py +76 -0
- pyrogram/raw/types/messages/featured_stickers.py +115 -0
- pyrogram/raw/types/messages/featured_stickers_not_modified.py +83 -0
- pyrogram/raw/types/messages/forum_topics.py +130 -0
- pyrogram/raw/types/messages/found_sticker_sets.py +90 -0
- pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +77 -0
- pyrogram/raw/types/messages/found_stickers.py +100 -0
- pyrogram/raw/types/messages/found_stickers_not_modified.py +84 -0
- pyrogram/raw/types/messages/high_scores.py +90 -0
- pyrogram/raw/types/messages/history_import.py +81 -0
- pyrogram/raw/types/messages/history_import_parsed.py +96 -0
- pyrogram/raw/types/messages/inactive_chats.py +97 -0
- pyrogram/raw/types/messages/invited_users.py +91 -0
- pyrogram/raw/types/messages/message_edit_data.py +81 -0
- pyrogram/raw/types/messages/message_reactions_list.py +116 -0
- pyrogram/raw/types/messages/message_views.py +97 -0
- pyrogram/raw/types/messages/messages.py +111 -0
- pyrogram/raw/types/messages/messages_not_modified.py +95 -0
- pyrogram/raw/types/messages/messages_slice.py +145 -0
- pyrogram/raw/types/messages/my_stickers.py +89 -0
- pyrogram/raw/types/messages/peer_dialogs.py +114 -0
- pyrogram/raw/types/messages/peer_settings.py +97 -0
- pyrogram/raw/types/messages/prepared_inline_message.py +113 -0
- pyrogram/raw/types/messages/quick_replies.py +105 -0
- pyrogram/raw/types/messages/quick_replies_not_modified.py +76 -0
- pyrogram/raw/types/messages/reactions.py +91 -0
- pyrogram/raw/types/messages/reactions_not_modified.py +78 -0
- pyrogram/raw/types/messages/recent_stickers.py +105 -0
- pyrogram/raw/types/messages/recent_stickers_not_modified.py +76 -0
- pyrogram/raw/types/messages/saved_dialogs.py +106 -0
- pyrogram/raw/types/messages/saved_dialogs_not_modified.py +82 -0
- pyrogram/raw/types/messages/saved_dialogs_slice.py +114 -0
- pyrogram/raw/types/messages/saved_gifs.py +89 -0
- pyrogram/raw/types/messages/saved_gifs_not_modified.py +76 -0
- pyrogram/raw/types/messages/saved_reaction_tags.py +89 -0
- pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +76 -0
- pyrogram/raw/types/messages/search_counter.py +97 -0
- pyrogram/raw/types/messages/search_results_calendar.py +146 -0
- pyrogram/raw/types/messages/search_results_positions.py +89 -0
- pyrogram/raw/types/messages/sent_encrypted_file.py +91 -0
- pyrogram/raw/types/messages/sent_encrypted_message.py +83 -0
- pyrogram/raw/types/messages/sponsored_messages.py +108 -0
- pyrogram/raw/types/messages/sponsored_messages_empty.py +76 -0
- pyrogram/raw/types/messages/sticker_set.py +113 -0
- pyrogram/raw/types/messages/sticker_set_install_result_archive.py +81 -0
- pyrogram/raw/types/messages/sticker_set_install_result_success.py +76 -0
- pyrogram/raw/types/messages/sticker_set_not_modified.py +84 -0
- pyrogram/raw/types/messages/stickers.py +89 -0
- pyrogram/raw/types/messages/stickers_not_modified.py +76 -0
- pyrogram/raw/types/messages/transcribed_audio.py +115 -0
- pyrogram/raw/types/messages/translate_result.py +81 -0
- pyrogram/raw/types/messages/votes_list.py +116 -0
- pyrogram/raw/types/messages/web_page.py +97 -0
- pyrogram/raw/types/messages/web_page_preview.py +89 -0
- pyrogram/raw/types/missing_invitee.py +86 -0
- pyrogram/raw/types/msg_detailed_info.py +96 -0
- pyrogram/raw/types/msg_new_detailed_info.py +88 -0
- pyrogram/raw/types/msg_resend_ans_req.py +72 -0
- pyrogram/raw/types/msg_resend_req.py +72 -0
- pyrogram/raw/types/msgs_ack.py +72 -0
- pyrogram/raw/types/msgs_all_info.py +80 -0
- pyrogram/raw/types/msgs_state_info.py +80 -0
- pyrogram/raw/types/msgs_state_req.py +72 -0
- pyrogram/raw/types/my_boost.py +109 -0
- pyrogram/raw/types/nearest_dc.py +97 -0
- pyrogram/raw/types/new_session_created.py +88 -0
- pyrogram/raw/types/notification_sound_default.py +67 -0
- pyrogram/raw/types/notification_sound_local.py +80 -0
- pyrogram/raw/types/notification_sound_none.py +67 -0
- pyrogram/raw/types/notification_sound_ringtone.py +72 -0
- pyrogram/raw/types/notify_broadcasts.py +67 -0
- pyrogram/raw/types/notify_chats.py +67 -0
- pyrogram/raw/types/notify_forum_topic.py +80 -0
- pyrogram/raw/types/notify_peer.py +72 -0
- pyrogram/raw/types/notify_users.py +67 -0
- pyrogram/raw/types/outbox_read_date.py +81 -0
- pyrogram/raw/types/page.py +125 -0
- pyrogram/raw/types/page_block_anchor.py +72 -0
- pyrogram/raw/types/page_block_audio.py +80 -0
- pyrogram/raw/types/page_block_author_date.py +80 -0
- pyrogram/raw/types/page_block_blockquote.py +80 -0
- pyrogram/raw/types/page_block_channel.py +72 -0
- pyrogram/raw/types/page_block_collage.py +80 -0
- pyrogram/raw/types/page_block_cover.py +72 -0
- pyrogram/raw/types/page_block_details.py +88 -0
- pyrogram/raw/types/page_block_divider.py +67 -0
- pyrogram/raw/types/page_block_embed.py +131 -0
- pyrogram/raw/types/page_block_embed_post.py +120 -0
- pyrogram/raw/types/page_block_footer.py +72 -0
- pyrogram/raw/types/page_block_header.py +72 -0
- pyrogram/raw/types/page_block_kicker.py +72 -0
- pyrogram/raw/types/page_block_list.py +72 -0
- pyrogram/raw/types/page_block_map.py +104 -0
- pyrogram/raw/types/page_block_ordered_list.py +72 -0
- pyrogram/raw/types/page_block_paragraph.py +72 -0
- pyrogram/raw/types/page_block_photo.py +100 -0
- pyrogram/raw/types/page_block_preformatted.py +80 -0
- pyrogram/raw/types/page_block_pullquote.py +80 -0
- pyrogram/raw/types/page_block_related_articles.py +80 -0
- pyrogram/raw/types/page_block_slideshow.py +80 -0
- pyrogram/raw/types/page_block_subheader.py +72 -0
- pyrogram/raw/types/page_block_subtitle.py +72 -0
- pyrogram/raw/types/page_block_table.py +94 -0
- pyrogram/raw/types/page_block_title.py +72 -0
- pyrogram/raw/types/page_block_unsupported.py +67 -0
- pyrogram/raw/types/page_block_video.py +94 -0
- pyrogram/raw/types/page_caption.py +80 -0
- pyrogram/raw/types/page_list_item_blocks.py +72 -0
- pyrogram/raw/types/page_list_item_text.py +72 -0
- pyrogram/raw/types/page_list_ordered_item_blocks.py +80 -0
- pyrogram/raw/types/page_list_ordered_item_text.py +80 -0
- pyrogram/raw/types/page_related_article.py +127 -0
- pyrogram/raw/types/page_table_cell.py +124 -0
- pyrogram/raw/types/page_table_row.py +72 -0
- pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +96 -0
- pyrogram/raw/types/password_kdf_algo_unknown.py +67 -0
- pyrogram/raw/types/payment_charge.py +80 -0
- pyrogram/raw/types/payment_form_method.py +80 -0
- pyrogram/raw/types/payment_requested_info.py +103 -0
- pyrogram/raw/types/payment_saved_credentials_card.py +80 -0
- pyrogram/raw/types/payments/__init__.py +50 -0
- pyrogram/raw/types/payments/bank_card_data.py +89 -0
- pyrogram/raw/types/payments/checked_gift_code.py +150 -0
- pyrogram/raw/types/payments/connected_star_ref_bots.py +100 -0
- pyrogram/raw/types/payments/exported_invoice.py +81 -0
- pyrogram/raw/types/payments/giveaway_info.py +122 -0
- pyrogram/raw/types/payments/giveaway_info_results.py +138 -0
- pyrogram/raw/types/payments/payment_form.py +210 -0
- pyrogram/raw/types/payments/payment_form_star_gift.py +89 -0
- pyrogram/raw/types/payments/payment_form_stars.py +133 -0
- pyrogram/raw/types/payments/payment_receipt.py +194 -0
- pyrogram/raw/types/payments/payment_receipt_stars.py +157 -0
- pyrogram/raw/types/payments/payment_result.py +82 -0
- pyrogram/raw/types/payments/payment_verification_needed.py +82 -0
- pyrogram/raw/types/payments/saved_info.py +91 -0
- pyrogram/raw/types/payments/saved_star_gifts.py +126 -0
- pyrogram/raw/types/payments/star_gift_upgrade_preview.py +81 -0
- pyrogram/raw/types/payments/star_gift_withdrawal_url.py +81 -0
- pyrogram/raw/types/payments/star_gifts.py +89 -0
- pyrogram/raw/types/payments/star_gifts_not_modified.py +76 -0
- pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +81 -0
- pyrogram/raw/types/payments/stars_revenue_stats.py +97 -0
- pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +81 -0
- pyrogram/raw/types/payments/stars_status.py +149 -0
- pyrogram/raw/types/payments/suggested_star_ref_bots.py +108 -0
- pyrogram/raw/types/payments/unique_star_gift.py +89 -0
- pyrogram/raw/types/payments/validated_requested_info.py +94 -0
- pyrogram/raw/types/peer_blocked.py +80 -0
- pyrogram/raw/types/peer_channel.py +81 -0
- pyrogram/raw/types/peer_chat.py +81 -0
- pyrogram/raw/types/peer_color.py +84 -0
- pyrogram/raw/types/peer_located.py +88 -0
- pyrogram/raw/types/peer_notify_settings.py +180 -0
- pyrogram/raw/types/peer_self_located.py +72 -0
- pyrogram/raw/types/peer_settings.py +177 -0
- pyrogram/raw/types/peer_stories.py +91 -0
- pyrogram/raw/types/peer_user.py +81 -0
- pyrogram/raw/types/phone/__init__.py +31 -0
- pyrogram/raw/types/phone/exported_group_call_invite.py +81 -0
- pyrogram/raw/types/phone/group_call.py +113 -0
- pyrogram/raw/types/phone/group_call_stream_channels.py +81 -0
- pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +89 -0
- pyrogram/raw/types/phone/group_participants.py +121 -0
- pyrogram/raw/types/phone/join_as_peers.py +97 -0
- pyrogram/raw/types/phone/phone_call.py +92 -0
- pyrogram/raw/types/phone_call.py +178 -0
- pyrogram/raw/types/phone_call_accepted.py +138 -0
- pyrogram/raw/types/phone_call_discard_reason_allow_group_call.py +72 -0
- pyrogram/raw/types/phone_call_discard_reason_busy.py +67 -0
- pyrogram/raw/types/phone_call_discard_reason_disconnect.py +67 -0
- pyrogram/raw/types/phone_call_discard_reason_hangup.py +67 -0
- pyrogram/raw/types/phone_call_discard_reason_missed.py +67 -0
- pyrogram/raw/types/phone_call_discarded.py +121 -0
- pyrogram/raw/types/phone_call_empty.py +72 -0
- pyrogram/raw/types/phone_call_protocol.py +102 -0
- pyrogram/raw/types/phone_call_requested.py +138 -0
- pyrogram/raw/types/phone_call_waiting.py +139 -0
- pyrogram/raw/types/phone_connection.py +112 -0
- pyrogram/raw/types/phone_connection_webrtc.py +126 -0
- pyrogram/raw/types/photo.py +130 -0
- pyrogram/raw/types/photo_cached_size.py +96 -0
- pyrogram/raw/types/photo_empty.py +72 -0
- pyrogram/raw/types/photo_path_size.py +80 -0
- pyrogram/raw/types/photo_size.py +96 -0
- pyrogram/raw/types/photo_size_empty.py +72 -0
- pyrogram/raw/types/photo_size_progressive.py +96 -0
- pyrogram/raw/types/photo_stripped_size.py +80 -0
- pyrogram/raw/types/photos/__init__.py +27 -0
- pyrogram/raw/types/photos/photo.py +91 -0
- pyrogram/raw/types/photos/photos.py +89 -0
- pyrogram/raw/types/photos/photos_slice.py +97 -0
- pyrogram/raw/types/poll.py +132 -0
- pyrogram/raw/types/poll_answer.py +80 -0
- pyrogram/raw/types/poll_answer_voters.py +94 -0
- pyrogram/raw/types/poll_results.py +120 -0
- pyrogram/raw/types/pong.py +90 -0
- pyrogram/raw/types/popular_contact.py +80 -0
- pyrogram/raw/types/post_address.py +112 -0
- pyrogram/raw/types/post_interaction_counters_message.py +96 -0
- pyrogram/raw/types/post_interaction_counters_story.py +96 -0
- pyrogram/raw/types/pq_inner_data.py +112 -0
- pyrogram/raw/types/pq_inner_data_dc.py +120 -0
- pyrogram/raw/types/pq_inner_data_temp.py +120 -0
- pyrogram/raw/types/pq_inner_data_temp_dc.py +128 -0
- pyrogram/raw/types/premium/__init__.py +27 -0
- pyrogram/raw/types/premium/boosts_list.py +109 -0
- pyrogram/raw/types/premium/boosts_status.py +161 -0
- pyrogram/raw/types/premium/my_boosts.py +98 -0
- pyrogram/raw/types/premium_gift_code_option.py +125 -0
- pyrogram/raw/types/premium_gift_option.py +107 -0
- pyrogram/raw/types/premium_subscription_option.py +128 -0
- pyrogram/raw/types/prepaid_giveaway.py +96 -0
- pyrogram/raw/types/prepaid_stars_giveaway.py +104 -0
- pyrogram/raw/types/privacy_key_about.py +67 -0
- pyrogram/raw/types/privacy_key_added_by_phone.py +67 -0
- pyrogram/raw/types/privacy_key_birthday.py +67 -0
- pyrogram/raw/types/privacy_key_chat_invite.py +67 -0
- pyrogram/raw/types/privacy_key_forwards.py +67 -0
- pyrogram/raw/types/privacy_key_phone_call.py +67 -0
- pyrogram/raw/types/privacy_key_phone_number.py +67 -0
- pyrogram/raw/types/privacy_key_phone_p2_p.py +67 -0
- pyrogram/raw/types/privacy_key_profile_photo.py +67 -0
- pyrogram/raw/types/privacy_key_star_gifts_auto_save.py +67 -0
- pyrogram/raw/types/privacy_key_status_timestamp.py +67 -0
- pyrogram/raw/types/privacy_key_voice_messages.py +67 -0
- pyrogram/raw/types/privacy_value_allow_all.py +67 -0
- pyrogram/raw/types/privacy_value_allow_bots.py +67 -0
- pyrogram/raw/types/privacy_value_allow_chat_participants.py +72 -0
- pyrogram/raw/types/privacy_value_allow_close_friends.py +67 -0
- pyrogram/raw/types/privacy_value_allow_contacts.py +67 -0
- pyrogram/raw/types/privacy_value_allow_premium.py +67 -0
- pyrogram/raw/types/privacy_value_allow_users.py +72 -0
- pyrogram/raw/types/privacy_value_disallow_all.py +67 -0
- pyrogram/raw/types/privacy_value_disallow_bots.py +67 -0
- pyrogram/raw/types/privacy_value_disallow_chat_participants.py +72 -0
- pyrogram/raw/types/privacy_value_disallow_contacts.py +67 -0
- pyrogram/raw/types/privacy_value_disallow_users.py +72 -0
- pyrogram/raw/types/public_forward_message.py +72 -0
- pyrogram/raw/types/public_forward_story.py +80 -0
- pyrogram/raw/types/quick_reply.py +96 -0
- pyrogram/raw/types/reaction_count.py +91 -0
- pyrogram/raw/types/reaction_custom_emoji.py +72 -0
- pyrogram/raw/types/reaction_emoji.py +72 -0
- pyrogram/raw/types/reaction_empty.py +67 -0
- pyrogram/raw/types/reaction_notifications_from_all.py +67 -0
- pyrogram/raw/types/reaction_notifications_from_contacts.py +67 -0
- pyrogram/raw/types/reaction_paid.py +67 -0
- pyrogram/raw/types/reactions_notify_settings.py +112 -0
- pyrogram/raw/types/read_participant_date.py +89 -0
- pyrogram/raw/types/received_notify_message.py +89 -0
- pyrogram/raw/types/recent_me_url_chat.py +80 -0
- pyrogram/raw/types/recent_me_url_chat_invite.py +80 -0
- pyrogram/raw/types/recent_me_url_sticker_set.py +80 -0
- pyrogram/raw/types/recent_me_url_unknown.py +72 -0
- pyrogram/raw/types/recent_me_url_user.py +80 -0
- pyrogram/raw/types/reply_inline_markup.py +72 -0
- pyrogram/raw/types/reply_keyboard_force_reply.py +87 -0
- pyrogram/raw/types/reply_keyboard_hide.py +72 -0
- pyrogram/raw/types/reply_keyboard_markup.py +107 -0
- pyrogram/raw/types/report_result_add_comment.py +90 -0
- pyrogram/raw/types/report_result_choose_option.py +90 -0
- pyrogram/raw/types/report_result_reported.py +77 -0
- pyrogram/raw/types/request_peer_type_broadcast.py +101 -0
- pyrogram/raw/types/request_peer_type_chat.py +116 -0
- pyrogram/raw/types/request_peer_type_user.py +84 -0
- pyrogram/raw/types/requested_peer_channel.py +102 -0
- pyrogram/raw/types/requested_peer_chat.py +93 -0
- pyrogram/raw/types/requested_peer_user.py +111 -0
- pyrogram/raw/types/res_pq.py +106 -0
- pyrogram/raw/types/restriction_reason.py +88 -0
- pyrogram/raw/types/rpc_answer_dropped.py +97 -0
- pyrogram/raw/types/rpc_answer_dropped_running.py +76 -0
- pyrogram/raw/types/rpc_answer_unknown.py +76 -0
- pyrogram/raw/types/rpc_error.py +80 -0
- pyrogram/raw/types/rpc_result.py +80 -0
- pyrogram/raw/types/saved_dialog.py +88 -0
- pyrogram/raw/types/saved_phone_contact.py +105 -0
- pyrogram/raw/types/saved_reaction_tag.py +91 -0
- pyrogram/raw/types/saved_star_gift.py +180 -0
- pyrogram/raw/types/search_result_position.py +88 -0
- pyrogram/raw/types/search_results_calendar_period.py +96 -0
- pyrogram/raw/types/secure_credentials_encrypted.py +88 -0
- pyrogram/raw/types/secure_data.py +88 -0
- pyrogram/raw/types/secure_file.py +120 -0
- pyrogram/raw/types/secure_file_empty.py +67 -0
- pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +72 -0
- pyrogram/raw/types/secure_password_kdf_algo_sha512.py +72 -0
- pyrogram/raw/types/secure_password_kdf_algo_unknown.py +67 -0
- pyrogram/raw/types/secure_plain_email.py +72 -0
- pyrogram/raw/types/secure_plain_phone.py +72 -0
- pyrogram/raw/types/secure_required_type.py +92 -0
- pyrogram/raw/types/secure_required_type_one_of.py +72 -0
- pyrogram/raw/types/secure_secret_settings.py +88 -0
- pyrogram/raw/types/secure_value.py +163 -0
- pyrogram/raw/types/secure_value_error.py +88 -0
- pyrogram/raw/types/secure_value_error_data.py +96 -0
- pyrogram/raw/types/secure_value_error_file.py +88 -0
- pyrogram/raw/types/secure_value_error_files.py +88 -0
- pyrogram/raw/types/secure_value_error_front_side.py +88 -0
- pyrogram/raw/types/secure_value_error_reverse_side.py +88 -0
- pyrogram/raw/types/secure_value_error_selfie.py +88 -0
- pyrogram/raw/types/secure_value_error_translation_file.py +88 -0
- pyrogram/raw/types/secure_value_error_translation_files.py +88 -0
- pyrogram/raw/types/secure_value_hash.py +80 -0
- pyrogram/raw/types/secure_value_type_address.py +67 -0
- pyrogram/raw/types/secure_value_type_bank_statement.py +67 -0
- pyrogram/raw/types/secure_value_type_driver_license.py +67 -0
- pyrogram/raw/types/secure_value_type_email.py +67 -0
- pyrogram/raw/types/secure_value_type_identity_card.py +67 -0
- pyrogram/raw/types/secure_value_type_internal_passport.py +67 -0
- pyrogram/raw/types/secure_value_type_passport.py +67 -0
- pyrogram/raw/types/secure_value_type_passport_registration.py +67 -0
- pyrogram/raw/types/secure_value_type_personal_details.py +67 -0
- pyrogram/raw/types/secure_value_type_phone.py +67 -0
- pyrogram/raw/types/secure_value_type_rental_agreement.py +67 -0
- pyrogram/raw/types/secure_value_type_temporary_registration.py +67 -0
- pyrogram/raw/types/secure_value_type_utility_bill.py +67 -0
- pyrogram/raw/types/send_as_peer.py +80 -0
- pyrogram/raw/types/send_message_cancel_action.py +67 -0
- pyrogram/raw/types/send_message_choose_contact_action.py +67 -0
- pyrogram/raw/types/send_message_choose_sticker_action.py +67 -0
- pyrogram/raw/types/send_message_emoji_interaction.py +88 -0
- pyrogram/raw/types/send_message_emoji_interaction_seen.py +72 -0
- pyrogram/raw/types/send_message_game_play_action.py +67 -0
- pyrogram/raw/types/send_message_geo_location_action.py +67 -0
- pyrogram/raw/types/send_message_history_import_action.py +72 -0
- pyrogram/raw/types/send_message_record_audio_action.py +67 -0
- pyrogram/raw/types/send_message_record_round_action.py +67 -0
- pyrogram/raw/types/send_message_record_video_action.py +67 -0
- pyrogram/raw/types/send_message_typing_action.py +67 -0
- pyrogram/raw/types/send_message_upload_audio_action.py +72 -0
- pyrogram/raw/types/send_message_upload_document_action.py +72 -0
- pyrogram/raw/types/send_message_upload_photo_action.py +72 -0
- pyrogram/raw/types/send_message_upload_round_action.py +72 -0
- pyrogram/raw/types/send_message_upload_video_action.py +72 -0
- pyrogram/raw/types/server_dh_inner_data.py +112 -0
- pyrogram/raw/types/server_dh_params_fail.py +97 -0
- pyrogram/raw/types/server_dh_params_ok.py +97 -0
- pyrogram/raw/types/shipping_option.py +88 -0
- pyrogram/raw/types/sms_job.py +97 -0
- pyrogram/raw/types/smsjobs/__init__.py +26 -0
- pyrogram/raw/types/smsjobs/eligible_to_join.py +89 -0
- pyrogram/raw/types/smsjobs/status.py +138 -0
- pyrogram/raw/types/speaking_in_group_call_action.py +67 -0
- pyrogram/raw/types/sponsored_message.py +176 -0
- pyrogram/raw/types/sponsored_message_report_option.py +80 -0
- pyrogram/raw/types/star_gift.py +161 -0
- pyrogram/raw/types/star_gift_attribute_backdrop.py +112 -0
- pyrogram/raw/types/star_gift_attribute_model.py +88 -0
- pyrogram/raw/types/star_gift_attribute_original_details.py +102 -0
- pyrogram/raw/types/star_gift_attribute_pattern.py +88 -0
- pyrogram/raw/types/star_gift_unique.py +150 -0
- pyrogram/raw/types/star_ref_program.py +119 -0
- pyrogram/raw/types/stars_amount.py +80 -0
- pyrogram/raw/types/stars_gift_option.py +114 -0
- pyrogram/raw/types/stars_giveaway_option.py +136 -0
- pyrogram/raw/types/stars_giveaway_winners_option.py +88 -0
- pyrogram/raw/types/stars_revenue_status.py +105 -0
- pyrogram/raw/types/stars_subscription.py +159 -0
- pyrogram/raw/types/stars_subscription_pricing.py +80 -0
- pyrogram/raw/types/stars_topup_option.py +114 -0
- pyrogram/raw/types/stars_transaction.py +274 -0
- pyrogram/raw/types/stars_transaction_peer.py +72 -0
- pyrogram/raw/types/stars_transaction_peer_ads.py +67 -0
- pyrogram/raw/types/stars_transaction_peer_api.py +67 -0
- pyrogram/raw/types/stars_transaction_peer_app_store.py +67 -0
- pyrogram/raw/types/stars_transaction_peer_fragment.py +67 -0
- pyrogram/raw/types/stars_transaction_peer_play_market.py +67 -0
- pyrogram/raw/types/stars_transaction_peer_premium_bot.py +67 -0
- pyrogram/raw/types/stars_transaction_peer_unsupported.py +67 -0
- pyrogram/raw/types/stats/__init__.py +32 -0
- pyrogram/raw/types/stats/broadcast_revenue_stats.py +105 -0
- pyrogram/raw/types/stats/broadcast_revenue_transactions.py +89 -0
- pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py +81 -0
- pyrogram/raw/types/stats/broadcast_stats.py +249 -0
- pyrogram/raw/types/stats/megagroup_stats.py +209 -0
- pyrogram/raw/types/stats/message_stats.py +89 -0
- pyrogram/raw/types/stats/public_forwards.py +117 -0
- pyrogram/raw/types/stats/story_stats.py +89 -0
- pyrogram/raw/types/stats_abs_value_and_prev.py +80 -0
- pyrogram/raw/types/stats_date_range_days.py +80 -0
- pyrogram/raw/types/stats_graph.py +92 -0
- pyrogram/raw/types/stats_graph_async.py +81 -0
- pyrogram/raw/types/stats_graph_error.py +81 -0
- pyrogram/raw/types/stats_group_top_admin.py +96 -0
- pyrogram/raw/types/stats_group_top_inviter.py +80 -0
- pyrogram/raw/types/stats_group_top_poster.py +88 -0
- pyrogram/raw/types/stats_percent_value.py +80 -0
- pyrogram/raw/types/stats_url.py +72 -0
- pyrogram/raw/types/sticker_keyword.py +80 -0
- pyrogram/raw/types/sticker_pack.py +80 -0
- pyrogram/raw/types/sticker_set.py +202 -0
- pyrogram/raw/types/sticker_set_covered.py +89 -0
- pyrogram/raw/types/sticker_set_full_covered.py +105 -0
- pyrogram/raw/types/sticker_set_multi_covered.py +89 -0
- pyrogram/raw/types/sticker_set_no_covered.py +81 -0
- pyrogram/raw/types/stickers/__init__.py +25 -0
- pyrogram/raw/types/stickers/suggested_short_name.py +81 -0
- pyrogram/raw/types/storage/__init__.py +34 -0
- pyrogram/raw/types/storage/file_gif.py +67 -0
- pyrogram/raw/types/storage/file_jpeg.py +67 -0
- pyrogram/raw/types/storage/file_mov.py +67 -0
- pyrogram/raw/types/storage/file_mp3.py +67 -0
- pyrogram/raw/types/storage/file_mp4.py +67 -0
- pyrogram/raw/types/storage/file_partial.py +67 -0
- pyrogram/raw/types/storage/file_pdf.py +67 -0
- pyrogram/raw/types/storage/file_png.py +67 -0
- pyrogram/raw/types/storage/file_unknown.py +67 -0
- pyrogram/raw/types/storage/file_webp.py +67 -0
- pyrogram/raw/types/stories/__init__.py +32 -0
- pyrogram/raw/types/stories/all_stories.py +129 -0
- pyrogram/raw/types/stories/all_stories_not_modified.py +92 -0
- pyrogram/raw/types/stories/found_stories.py +116 -0
- pyrogram/raw/types/stories/peer_stories.py +97 -0
- pyrogram/raw/types/stories/stories.py +119 -0
- pyrogram/raw/types/stories/story_reactions_list.py +116 -0
- pyrogram/raw/types/stories/story_views.py +89 -0
- pyrogram/raw/types/stories/story_views_list.py +140 -0
- pyrogram/raw/types/stories_stealth_mode.py +84 -0
- pyrogram/raw/types/story_fwd_header.py +100 -0
- pyrogram/raw/types/story_item.py +231 -0
- pyrogram/raw/types/story_item_deleted.py +72 -0
- pyrogram/raw/types/story_item_skipped.py +96 -0
- pyrogram/raw/types/story_reaction.py +88 -0
- pyrogram/raw/types/story_reaction_public_forward.py +72 -0
- pyrogram/raw/types/story_reaction_public_repost.py +80 -0
- pyrogram/raw/types/story_view.py +104 -0
- pyrogram/raw/types/story_view_public_forward.py +86 -0
- pyrogram/raw/types/story_view_public_repost.py +94 -0
- pyrogram/raw/types/story_views.py +118 -0
- pyrogram/raw/types/text_anchor.py +80 -0
- pyrogram/raw/types/text_bold.py +72 -0
- pyrogram/raw/types/text_concat.py +72 -0
- pyrogram/raw/types/text_email.py +80 -0
- pyrogram/raw/types/text_empty.py +67 -0
- pyrogram/raw/types/text_fixed.py +72 -0
- pyrogram/raw/types/text_image.py +88 -0
- pyrogram/raw/types/text_italic.py +72 -0
- pyrogram/raw/types/text_marked.py +72 -0
- pyrogram/raw/types/text_phone.py +80 -0
- pyrogram/raw/types/text_plain.py +72 -0
- pyrogram/raw/types/text_strike.py +72 -0
- pyrogram/raw/types/text_subscript.py +72 -0
- pyrogram/raw/types/text_superscript.py +72 -0
- pyrogram/raw/types/text_underline.py +72 -0
- pyrogram/raw/types/text_url.py +88 -0
- pyrogram/raw/types/text_with_entities.py +80 -0
- pyrogram/raw/types/theme.py +165 -0
- pyrogram/raw/types/theme_settings.py +117 -0
- pyrogram/raw/types/timezone.py +88 -0
- pyrogram/raw/types/top_peer.py +80 -0
- pyrogram/raw/types/top_peer_category_bots_app.py +67 -0
- pyrogram/raw/types/top_peer_category_bots_inline.py +67 -0
- pyrogram/raw/types/top_peer_category_bots_pm.py +67 -0
- pyrogram/raw/types/top_peer_category_channels.py +67 -0
- pyrogram/raw/types/top_peer_category_correspondents.py +67 -0
- pyrogram/raw/types/top_peer_category_forward_chats.py +67 -0
- pyrogram/raw/types/top_peer_category_forward_users.py +67 -0
- pyrogram/raw/types/top_peer_category_groups.py +67 -0
- pyrogram/raw/types/top_peer_category_peers.py +88 -0
- pyrogram/raw/types/top_peer_category_phone_calls.py +67 -0
- pyrogram/raw/types/update_attach_menu_bots.py +67 -0
- pyrogram/raw/types/update_auto_save_settings.py +67 -0
- pyrogram/raw/types/update_bot_business_connect.py +80 -0
- pyrogram/raw/types/update_bot_callback_query.py +124 -0
- pyrogram/raw/types/update_bot_chat_boost.py +88 -0
- pyrogram/raw/types/update_bot_chat_invite_requester.py +112 -0
- pyrogram/raw/types/update_bot_commands.py +88 -0
- pyrogram/raw/types/update_bot_delete_business_message.py +96 -0
- pyrogram/raw/types/update_bot_edit_business_message.py +100 -0
- pyrogram/raw/types/update_bot_inline_query.py +118 -0
- pyrogram/raw/types/update_bot_inline_send.py +110 -0
- pyrogram/raw/types/update_bot_menu_button.py +80 -0
- pyrogram/raw/types/update_bot_message_reaction.py +120 -0
- pyrogram/raw/types/update_bot_message_reactions.py +104 -0
- pyrogram/raw/types/update_bot_new_business_message.py +100 -0
- pyrogram/raw/types/update_bot_precheckout_query.py +125 -0
- pyrogram/raw/types/update_bot_purchased_paid_media.py +88 -0
- pyrogram/raw/types/update_bot_shipping_query.py +96 -0
- pyrogram/raw/types/update_bot_stopped.py +96 -0
- pyrogram/raw/types/update_bot_webhook_json.py +72 -0
- pyrogram/raw/types/update_bot_webhook_json_query.py +88 -0
- pyrogram/raw/types/update_broadcast_revenue_transactions.py +80 -0
- pyrogram/raw/types/update_business_bot_callback_query.py +125 -0
- pyrogram/raw/types/update_channel.py +72 -0
- pyrogram/raw/types/update_channel_available_messages.py +80 -0
- pyrogram/raw/types/update_channel_message_forwards.py +88 -0
- pyrogram/raw/types/update_channel_message_views.py +88 -0
- pyrogram/raw/types/update_channel_participant.py +142 -0
- pyrogram/raw/types/update_channel_pinned_topic.py +88 -0
- pyrogram/raw/types/update_channel_pinned_topics.py +84 -0
- pyrogram/raw/types/update_channel_read_messages_contents.py +91 -0
- pyrogram/raw/types/update_channel_too_long.py +83 -0
- pyrogram/raw/types/update_channel_user_typing.py +99 -0
- pyrogram/raw/types/update_channel_view_forum_as_messages.py +80 -0
- pyrogram/raw/types/update_channel_web_page.py +96 -0
- pyrogram/raw/types/update_chat.py +72 -0
- pyrogram/raw/types/update_chat_default_banned_rights.py +88 -0
- pyrogram/raw/types/update_chat_participant.py +136 -0
- pyrogram/raw/types/update_chat_participant_add.py +104 -0
- pyrogram/raw/types/update_chat_participant_admin.py +96 -0
- pyrogram/raw/types/update_chat_participant_delete.py +88 -0
- pyrogram/raw/types/update_chat_participants.py +72 -0
- pyrogram/raw/types/update_chat_user_typing.py +88 -0
- pyrogram/raw/types/update_config.py +67 -0
- pyrogram/raw/types/update_contacts_reset.py +67 -0
- pyrogram/raw/types/update_dc_options.py +72 -0
- pyrogram/raw/types/update_delete_channel_messages.py +96 -0
- pyrogram/raw/types/update_delete_messages.py +88 -0
- pyrogram/raw/types/update_delete_quick_reply.py +72 -0
- pyrogram/raw/types/update_delete_quick_reply_messages.py +80 -0
- pyrogram/raw/types/update_delete_scheduled_messages.py +92 -0
- pyrogram/raw/types/update_dialog_filter.py +84 -0
- pyrogram/raw/types/update_dialog_filter_order.py +72 -0
- pyrogram/raw/types/update_dialog_filters.py +67 -0
- pyrogram/raw/types/update_dialog_pinned.py +89 -0
- pyrogram/raw/types/update_dialog_unread_mark.py +80 -0
- pyrogram/raw/types/update_draft_message.py +91 -0
- pyrogram/raw/types/update_edit_channel_message.py +88 -0
- pyrogram/raw/types/update_edit_message.py +88 -0
- pyrogram/raw/types/update_encrypted_chat_typing.py +72 -0
- pyrogram/raw/types/update_encrypted_messages_read.py +88 -0
- pyrogram/raw/types/update_encryption.py +80 -0
- pyrogram/raw/types/update_faved_stickers.py +67 -0
- pyrogram/raw/types/update_folder_peers.py +88 -0
- pyrogram/raw/types/update_geo_live_viewed.py +80 -0
- pyrogram/raw/types/update_group_call.py +83 -0
- pyrogram/raw/types/update_group_call_connection.py +80 -0
- pyrogram/raw/types/update_group_call_participants.py +88 -0
- pyrogram/raw/types/update_inline_bot_callback_query.py +116 -0
- pyrogram/raw/types/update_lang_pack.py +72 -0
- pyrogram/raw/types/update_lang_pack_too_long.py +72 -0
- pyrogram/raw/types/update_login_token.py +67 -0
- pyrogram/raw/types/update_message_extended_media.py +88 -0
- pyrogram/raw/types/update_message_id.py +80 -0
- pyrogram/raw/types/update_message_poll.py +92 -0
- pyrogram/raw/types/update_message_poll_vote.py +96 -0
- pyrogram/raw/types/update_message_reactions.py +99 -0
- pyrogram/raw/types/update_move_sticker_set_to_top.py +86 -0
- pyrogram/raw/types/update_new_authorization.py +107 -0
- pyrogram/raw/types/update_new_channel_message.py +88 -0
- pyrogram/raw/types/update_new_encrypted_message.py +80 -0
- pyrogram/raw/types/update_new_message.py +88 -0
- pyrogram/raw/types/update_new_quick_reply.py +72 -0
- pyrogram/raw/types/update_new_scheduled_message.py +72 -0
- pyrogram/raw/types/update_new_sticker_set.py +72 -0
- pyrogram/raw/types/update_new_story_reaction.py +88 -0
- pyrogram/raw/types/update_notify_settings.py +80 -0
- pyrogram/raw/types/update_paid_reaction_privacy.py +72 -0
- pyrogram/raw/types/update_peer_blocked.py +86 -0
- pyrogram/raw/types/update_peer_history_ttl.py +83 -0
- pyrogram/raw/types/update_peer_located.py +72 -0
- pyrogram/raw/types/update_peer_settings.py +80 -0
- pyrogram/raw/types/update_peer_wallpaper.py +90 -0
- pyrogram/raw/types/update_pending_join_requests.py +88 -0
- pyrogram/raw/types/update_phone_call.py +72 -0
- pyrogram/raw/types/update_phone_call_signaling_data.py +80 -0
- pyrogram/raw/types/update_pinned_channel_messages.py +104 -0
- pyrogram/raw/types/update_pinned_dialogs.py +85 -0
- pyrogram/raw/types/update_pinned_messages.py +104 -0
- pyrogram/raw/types/update_pinned_saved_dialogs.py +76 -0
- pyrogram/raw/types/update_privacy.py +80 -0
- pyrogram/raw/types/update_pts_changed.py +67 -0
- pyrogram/raw/types/update_quick_replies.py +72 -0
- pyrogram/raw/types/update_quick_reply_message.py +72 -0
- pyrogram/raw/types/update_read_channel_discussion_inbox.py +108 -0
- pyrogram/raw/types/update_read_channel_discussion_outbox.py +88 -0
- pyrogram/raw/types/update_read_channel_inbox.py +107 -0
- pyrogram/raw/types/update_read_channel_outbox.py +80 -0
- pyrogram/raw/types/update_read_featured_emoji_stickers.py +67 -0
- pyrogram/raw/types/update_read_featured_stickers.py +67 -0
- pyrogram/raw/types/update_read_history_inbox.py +115 -0
- pyrogram/raw/types/update_read_history_outbox.py +96 -0
- pyrogram/raw/types/update_read_messages_contents.py +99 -0
- pyrogram/raw/types/update_read_stories.py +80 -0
- pyrogram/raw/types/update_recent_emoji_statuses.py +67 -0
- pyrogram/raw/types/update_recent_reactions.py +67 -0
- pyrogram/raw/types/update_recent_stickers.py +67 -0
- pyrogram/raw/types/update_saved_dialog_pinned.py +80 -0
- pyrogram/raw/types/update_saved_gifs.py +67 -0
- pyrogram/raw/types/update_saved_reaction_tags.py +67 -0
- pyrogram/raw/types/update_saved_ringtones.py +67 -0
- pyrogram/raw/types/update_sent_story_reaction.py +88 -0
- pyrogram/raw/types/update_service_notification.py +119 -0
- pyrogram/raw/types/update_short.py +195 -0
- pyrogram/raw/types/update_short_chat_message.py +309 -0
- pyrogram/raw/types/update_short_message.py +301 -0
- pyrogram/raw/types/update_short_sent_message.py +248 -0
- pyrogram/raw/types/update_sms_job.py +72 -0
- pyrogram/raw/types/update_stars_balance.py +72 -0
- pyrogram/raw/types/update_stars_revenue_status.py +80 -0
- pyrogram/raw/types/update_sticker_sets.py +78 -0
- pyrogram/raw/types/update_sticker_sets_order.py +86 -0
- pyrogram/raw/types/update_stories_stealth_mode.py +72 -0
- pyrogram/raw/types/update_story.py +80 -0
- pyrogram/raw/types/update_story_id.py +80 -0
- pyrogram/raw/types/update_theme.py +72 -0
- pyrogram/raw/types/update_transcribed_audio.py +104 -0
- pyrogram/raw/types/update_user.py +72 -0
- pyrogram/raw/types/update_user_emoji_status.py +80 -0
- pyrogram/raw/types/update_user_name.py +96 -0
- pyrogram/raw/types/update_user_phone.py +80 -0
- pyrogram/raw/types/update_user_status.py +80 -0
- pyrogram/raw/types/update_user_typing.py +80 -0
- pyrogram/raw/types/update_web_page.py +88 -0
- pyrogram/raw/types/update_web_view_result_sent.py +72 -0
- pyrogram/raw/types/updates/__init__.py +32 -0
- pyrogram/raw/types/updates/channel_difference.py +130 -0
- pyrogram/raw/types/updates/channel_difference_empty.py +98 -0
- pyrogram/raw/types/updates/channel_difference_too_long.py +122 -0
- pyrogram/raw/types/updates/difference.py +121 -0
- pyrogram/raw/types/updates/difference_empty.py +89 -0
- pyrogram/raw/types/updates/difference_slice.py +121 -0
- pyrogram/raw/types/updates/difference_too_long.py +81 -0
- pyrogram/raw/types/updates/state.py +113 -0
- pyrogram/raw/types/updates_combined.py +227 -0
- pyrogram/raw/types/updates_t.py +219 -0
- pyrogram/raw/types/updates_too_long.py +182 -0
- pyrogram/raw/types/upload/__init__.py +29 -0
- pyrogram/raw/types/upload/cdn_file.py +81 -0
- pyrogram/raw/types/upload/cdn_file_reupload_needed.py +81 -0
- pyrogram/raw/types/upload/file.py +97 -0
- pyrogram/raw/types/upload/file_cdn_redirect.py +113 -0
- pyrogram/raw/types/upload/web_file.py +113 -0
- pyrogram/raw/types/url_auth_result_accepted.py +82 -0
- pyrogram/raw/types/url_auth_result_default.py +77 -0
- pyrogram/raw/types/url_auth_result_request.py +98 -0
- pyrogram/raw/types/user.py +411 -0
- pyrogram/raw/types/user_empty.py +86 -0
- pyrogram/raw/types/user_full.py +449 -0
- pyrogram/raw/types/user_profile_photo.py +103 -0
- pyrogram/raw/types/user_profile_photo_empty.py +67 -0
- pyrogram/raw/types/user_status_empty.py +67 -0
- pyrogram/raw/types/user_status_last_month.py +72 -0
- pyrogram/raw/types/user_status_last_week.py +72 -0
- pyrogram/raw/types/user_status_offline.py +72 -0
- pyrogram/raw/types/user_status_online.py +72 -0
- pyrogram/raw/types/user_status_recently.py +72 -0
- pyrogram/raw/types/username.py +86 -0
- pyrogram/raw/types/users/__init__.py +27 -0
- pyrogram/raw/types/users/user_full.py +97 -0
- pyrogram/raw/types/users/users.py +81 -0
- pyrogram/raw/types/users/users_slice.py +89 -0
- pyrogram/raw/types/video_size.py +107 -0
- pyrogram/raw/types/video_size_emoji_markup.py +80 -0
- pyrogram/raw/types/video_size_sticker_markup.py +88 -0
- pyrogram/raw/types/wall_paper.py +143 -0
- pyrogram/raw/types/wall_paper_no_file.py +107 -0
- pyrogram/raw/types/wall_paper_settings.py +141 -0
- pyrogram/raw/types/web_authorization.py +136 -0
- pyrogram/raw/types/web_document.py +104 -0
- pyrogram/raw/types/web_document_no_proxy.py +96 -0
- pyrogram/raw/types/web_page.py +234 -0
- pyrogram/raw/types/web_page_attribute_sticker_set.py +86 -0
- pyrogram/raw/types/web_page_attribute_story.py +92 -0
- pyrogram/raw/types/web_page_attribute_theme.py +86 -0
- pyrogram/raw/types/web_page_attribute_unique_star_gift.py +72 -0
- pyrogram/raw/types/web_page_empty.py +83 -0
- pyrogram/raw/types/web_page_not_modified.py +75 -0
- pyrogram/raw/types/web_page_pending.py +91 -0
- pyrogram/raw/types/web_view_message_sent.py +85 -0
- pyrogram/raw/types/web_view_result_url.py +107 -0
- pyrogram/session/__init__.py +20 -0
- pyrogram/session/auth.py +262 -0
- pyrogram/session/internals/__init__.py +21 -0
- pyrogram/session/internals/data_center.py +82 -0
- pyrogram/session/internals/msg_factory.py +38 -0
- pyrogram/session/internals/msg_id.py +45 -0
- pyrogram/session/internals/seq_no.py +34 -0
- pyrogram/session/session.py +393 -0
- pyrogram/storage/__init__.py +22 -0
- pyrogram/storage/dummy_client.py +62 -0
- pyrogram/storage/file_storage.py +72 -0
- pyrogram/storage/memory_storage.py +73 -0
- pyrogram/storage/mongo_storage.py +206 -0
- pyrogram/storage/sqlite_storage.py +228 -0
- pyrogram/storage/storage.py +91 -0
- pyrogram/sync.py +113 -0
- pyrogram/types/__init__.py +28 -0
- pyrogram/types/authorization/__init__.py +22 -0
- pyrogram/types/authorization/sent_code.py +62 -0
- pyrogram/types/authorization/terms_of_service.py +56 -0
- pyrogram/types/bots_and_keyboards/__init__.py +79 -0
- pyrogram/types/bots_and_keyboards/bot_command.py +53 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope.py +73 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +32 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +32 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +32 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +43 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +43 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +48 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +33 -0
- pyrogram/types/bots_and_keyboards/bot_info.py +52 -0
- pyrogram/types/bots_and_keyboards/callback_game.py +29 -0
- pyrogram/types/bots_and_keyboards/callback_query.py +313 -0
- pyrogram/types/bots_and_keyboards/force_reply.py +66 -0
- pyrogram/types/bots_and_keyboards/game_high_score.py +70 -0
- pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +208 -0
- pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +76 -0
- pyrogram/types/bots_and_keyboards/keyboard_button.py +171 -0
- pyrogram/types/bots_and_keyboards/login_url.py +90 -0
- pyrogram/types/bots_and_keyboards/menu_button.py +44 -0
- pyrogram/types/bots_and_keyboards/menu_button_commands.py +32 -0
- pyrogram/types/bots_and_keyboards/menu_button_default.py +32 -0
- pyrogram/types/bots_and_keyboards/menu_button_web_app.py +51 -0
- pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +112 -0
- pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +58 -0
- pyrogram/types/bots_and_keyboards/request_peer_type_channel.py +41 -0
- pyrogram/types/bots_and_keyboards/request_peer_type_chat.py +51 -0
- pyrogram/types/bots_and_keyboards/request_peer_type_user.py +41 -0
- pyrogram/types/bots_and_keyboards/sent_web_app_message.py +42 -0
- pyrogram/types/bots_and_keyboards/web_app_info.py +37 -0
- pyrogram/types/inline_mode/__init__.py +47 -0
- pyrogram/types/inline_mode/chosen_inline_result.py +99 -0
- pyrogram/types/inline_mode/inline_query.py +181 -0
- pyrogram/types/inline_mode/inline_query_result.py +63 -0
- pyrogram/types/inline_mode/inline_query_result_animation.py +155 -0
- pyrogram/types/inline_mode/inline_query_result_article.py +99 -0
- pyrogram/types/inline_mode/inline_query_result_audio.py +120 -0
- pyrogram/types/inline_mode/inline_query_result_cached_animation.py +108 -0
- pyrogram/types/inline_mode/inline_query_result_cached_audio.py +101 -0
- pyrogram/types/inline_mode/inline_query_result_cached_document.py +113 -0
- pyrogram/types/inline_mode/inline_query_result_cached_photo.py +111 -0
- pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +78 -0
- pyrogram/types/inline_mode/inline_query_result_cached_video.py +114 -0
- pyrogram/types/inline_mode/inline_query_result_cached_voice.py +108 -0
- pyrogram/types/inline_mode/inline_query_result_contact.py +114 -0
- pyrogram/types/inline_mode/inline_query_result_document.py +145 -0
- pyrogram/types/inline_mode/inline_query_result_location.py +122 -0
- pyrogram/types/inline_mode/inline_query_result_photo.py +147 -0
- pyrogram/types/inline_mode/inline_query_result_venue.py +131 -0
- pyrogram/types/inline_mode/inline_query_result_video.py +151 -0
- pyrogram/types/inline_mode/inline_query_result_voice.py +114 -0
- pyrogram/types/input_media/__init__.py +30 -0
- pyrogram/types/input_media/input_media.py +49 -0
- pyrogram/types/input_media/input_media_animation.py +85 -0
- pyrogram/types/input_media/input_media_audio.py +82 -0
- pyrogram/types/input_media/input_media_document.py +65 -0
- pyrogram/types/input_media/input_media_photo.py +63 -0
- pyrogram/types/input_media/input_media_video.py +91 -0
- pyrogram/types/input_media/input_phone_contact.py +51 -0
- pyrogram/types/input_message_content/__init__.py +26 -0
- pyrogram/types/input_message_content/input_message_content.py +40 -0
- pyrogram/types/input_message_content/input_reply_to_message.py +62 -0
- pyrogram/types/input_message_content/input_reply_to_story.py +49 -0
- pyrogram/types/input_message_content/input_text_message_content.py +68 -0
- pyrogram/types/list.py +30 -0
- pyrogram/types/messages_and_media/__init__.py +52 -0
- pyrogram/types/messages_and_media/animation.py +121 -0
- pyrogram/types/messages_and_media/audio.py +121 -0
- pyrogram/types/messages_and_media/contact.py +71 -0
- pyrogram/types/messages_and_media/dice.py +47 -0
- pyrogram/types/messages_and_media/document.py +98 -0
- pyrogram/types/messages_and_media/exported_story_link.py +44 -0
- pyrogram/types/messages_and_media/game.py +99 -0
- pyrogram/types/messages_and_media/location.py +55 -0
- pyrogram/types/messages_and_media/message.py +3893 -0
- pyrogram/types/messages_and_media/message_entity.py +124 -0
- pyrogram/types/messages_and_media/message_reactions.py +56 -0
- pyrogram/types/messages_and_media/photo.py +130 -0
- pyrogram/types/messages_and_media/poll.py +240 -0
- pyrogram/types/messages_and_media/poll_option.py +50 -0
- pyrogram/types/messages_and_media/reaction.py +86 -0
- pyrogram/types/messages_and_media/sticker.py +206 -0
- pyrogram/types/messages_and_media/stickerset.py +89 -0
- pyrogram/types/messages_and_media/stories_privacy.py +47 -0
- pyrogram/types/messages_and_media/story.py +1638 -0
- pyrogram/types/messages_and_media/story_views.py +50 -0
- pyrogram/types/messages_and_media/stripped_thumbnail.py +47 -0
- pyrogram/types/messages_and_media/thumbnail.py +111 -0
- pyrogram/types/messages_and_media/venue.py +74 -0
- pyrogram/types/messages_and_media/video.py +148 -0
- pyrogram/types/messages_and_media/video_note.py +108 -0
- pyrogram/types/messages_and_media/voice.py +96 -0
- pyrogram/types/messages_and_media/web_app_data.py +51 -0
- pyrogram/types/messages_and_media/web_page.py +187 -0
- pyrogram/types/object.py +121 -0
- pyrogram/types/update.py +29 -0
- pyrogram/types/user_and_chats/__init__.py +89 -0
- pyrogram/types/user_and_chats/chat.py +1002 -0
- pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +63 -0
- pyrogram/types/user_and_chats/chat_event.py +533 -0
- pyrogram/types/user_and_chats/chat_event_filter.py +175 -0
- pyrogram/types/user_and_chats/chat_invite_link.py +130 -0
- pyrogram/types/user_and_chats/chat_join_request.py +139 -0
- pyrogram/types/user_and_chats/chat_joined_by_request.py +29 -0
- pyrogram/types/user_and_chats/chat_joiner.py +82 -0
- pyrogram/types/user_and_chats/chat_member.py +227 -0
- pyrogram/types/user_and_chats/chat_member_updated.py +102 -0
- pyrogram/types/user_and_chats/chat_permissions.py +105 -0
- pyrogram/types/user_and_chats/chat_photo.py +107 -0
- pyrogram/types/user_and_chats/chat_preview.py +79 -0
- pyrogram/types/user_and_chats/chat_privileges.py +119 -0
- pyrogram/types/user_and_chats/chat_reactions.py +69 -0
- pyrogram/types/user_and_chats/dialog.py +79 -0
- pyrogram/types/user_and_chats/emoji_status.py +77 -0
- pyrogram/types/user_and_chats/forum_topic.py +152 -0
- pyrogram/types/user_and_chats/forum_topic_closed.py +29 -0
- pyrogram/types/user_and_chats/forum_topic_created.py +58 -0
- pyrogram/types/user_and_chats/forum_topic_edited.py +58 -0
- pyrogram/types/user_and_chats/forum_topic_reopened.py +29 -0
- pyrogram/types/user_and_chats/general_forum_topic_hidden.py +29 -0
- pyrogram/types/user_and_chats/general_forum_topic_unhidden.py +29 -0
- pyrogram/types/user_and_chats/invite_link_importer.py +61 -0
- pyrogram/types/user_and_chats/peer_channel.py +46 -0
- pyrogram/types/user_and_chats/peer_user.py +47 -0
- pyrogram/types/user_and_chats/restriction.py +50 -0
- pyrogram/types/user_and_chats/user.py +419 -0
- pyrogram/types/user_and_chats/username.py +58 -0
- pyrogram/types/user_and_chats/video_chat_ended.py +41 -0
- pyrogram/types/user_and_chats/video_chat_members_invited.py +50 -0
- pyrogram/types/user_and_chats/video_chat_scheduled.py +43 -0
- pyrogram/types/user_and_chats/video_chat_started.py +29 -0
- pyrogram/utils.py +382 -0
|
@@ -0,0 +1,3223 @@
|
|
|
1
|
+
pyroasync-2.2.11.dist-info/licenses/COPYING,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
2
|
+
pyroasync-2.2.11.dist-info/licenses/COPYING.lesser,sha256=pWgb-bBdsU2Gd2kwAXxketnm5W_2u8_fIeWEgojfrxs,7651
|
|
3
|
+
pyroasync-2.2.11.dist-info/licenses/NOTICE,sha256=QL3iJdeVh_ZqRZZchyruQic5bYUWdx3yl0OkSUC2PQc,774
|
|
4
|
+
pyrogram/__init__.py,sha256=imNLX3qvs3P-kKuhQd2juhBPwZ62qfn9IcgiPan5EFA,1511
|
|
5
|
+
pyrogram/client.py,sha256=IhUxbnQELBSOlBKtfvALZc2hc9TpjS9K0enMAIp1huI,41226
|
|
6
|
+
pyrogram/dispatcher.py,sha256=yzRAvzCf40dXPDQ5hmN8fzKo3KkyLMf-oMrVQgbt-zw,10085
|
|
7
|
+
pyrogram/emoji.py,sha256=ixb3OXR1XpLf3BQpw8kWIpmbQRowRIaFedjdnuzljac,208021
|
|
8
|
+
pyrogram/file_id.py,sha256=jmMBAt2O_XhLE_AXKffZ4F5gccXJB8GHV7MlFCpiklA,15154
|
|
9
|
+
pyrogram/filters.py,sha256=kxIx1C9Dyx-4OIq7U4ND1G0oc9PWuHeSiSGjiyJM1CQ,24836
|
|
10
|
+
pyrogram/mime_types.py,sha256=JbYF6B-JrxZQNga8dPz2C8Dwp8-2pOrE1uv3KIBbjA0,61915
|
|
11
|
+
pyrogram/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
pyrogram/sync.py,sha256=cxKmLz9NAJPX2N2n2CogTLXyNo-dWgf6etBRXnqq1XA,3739
|
|
13
|
+
pyrogram/utils.py,sha256=nRGCB--hkG5nLZaaPgkLSR3uz3XdHlRx9ANNHKF_p10,11166
|
|
14
|
+
pyrogram/connection/__init__.py,sha256=q7KiWEV6VNDQGoj5s13GPyhRRlafXVPvX1h1VpAsVf8,854
|
|
15
|
+
pyrogram/connection/connection.py,sha256=75vsPhG7jZxgKPvwFtOfECGpX6cv558OsMSEM85ryMs,2889
|
|
16
|
+
pyrogram/connection/transport/__init__.py,sha256=nRpFdumPinBtuLOZkR8hH_vXlN7ChzW1oyJ6na4a8qw,838
|
|
17
|
+
pyrogram/connection/transport/tcp/__init__.py,sha256=-nZvDSAzgezc3V6z3GNe-gVUpQ5VVZuzQFqfp5n9tWw,1044
|
|
18
|
+
pyrogram/connection/transport/tcp/tcp.py,sha256=A5DAOlceuW_RlNEZoxNZwXNe7uuM3t_TKCW4qb6Hwow,4100
|
|
19
|
+
pyrogram/connection/transport/tcp/tcp_abridged.py,sha256=9a95UJihaZ68TPnqVOhGp-73T2G2CVEB5Bw9CUkIQWA,1768
|
|
20
|
+
pyrogram/connection/transport/tcp/tcp_abridged_o.py,sha256=MFw_VUrYulrfZNXZgJwW1hhbGp1qhL_17wAC3U91oRU,2830
|
|
21
|
+
pyrogram/connection/transport/tcp/tcp_full.py,sha256=qWTYKTzOAnsQdKfu-deyd00Smrv6ijazlnx5KVaa3xU,1906
|
|
22
|
+
pyrogram/connection/transport/tcp/tcp_intermediate.py,sha256=IvJQD5PilVkVx-Gt_f2SjU9VcB4LBTG2FJsbp1wkJWs,1511
|
|
23
|
+
pyrogram/connection/transport/tcp/tcp_intermediate_o.py,sha256=_4FtlQbuocJkdeg3tI6rwTSO-iwLa3LfNnUcH1Bnd18,2453
|
|
24
|
+
pyrogram/crypto/__init__.py,sha256=zIKDctQwf1s97ZK7RwwCKOTR05C1JVR2ACY2-GbZlZk,818
|
|
25
|
+
pyrogram/crypto/aes.py,sha256=AS5me5W2ksoJ1i13JBcoMaO4MlpVxt04y5PCZRrT8W4,4013
|
|
26
|
+
pyrogram/crypto/mtproto.py,sha256=34Tw2AnbOwlukcYdGf8vWt5RfBrILU9jLUNNgHa7oho,4762
|
|
27
|
+
pyrogram/crypto/prime.py,sha256=hZe9xlM_nfOonL53emLn9zjmT79SHC5yFgDElZ-II40,2446
|
|
28
|
+
pyrogram/crypto/rsa.py,sha256=5A89QWIwKz1JB-Ng3N7r_ONJSzXL-t8lWKGy585W06I,13437
|
|
29
|
+
pyrogram/enums/__init__.py,sha256=gj1-Yonk-vCyf2ty_BLNtL1gD0fQ8Jm1x1oSQfO8g7k,1801
|
|
30
|
+
pyrogram/enums/auto_name.py,sha256=YEFxmS8URqR1SLHqtSwDry_t48158GS-nHq7uMtwITw,1002
|
|
31
|
+
pyrogram/enums/chat_action.py,sha256=htJ7CyLxKF5g8kmuSQlZw1G_xzHJ0G7ipIrte5UpTLw,2307
|
|
32
|
+
pyrogram/enums/chat_event_action.py,sha256=046yAek_GbqUX0Wu7vfa8ds5iUlfj0EcDS5MbiV85xo,4520
|
|
33
|
+
pyrogram/enums/chat_member_status.py,sha256=R52wBlniGyVz1STL_xbY8Q8qNRdiUuf926MEKpGb2ww,1265
|
|
34
|
+
pyrogram/enums/chat_members_filter.py,sha256=elc_gNvVeE0jY0O8ecoJPJ9sX7jXpbvnLTGDRNu1_l0,1446
|
|
35
|
+
pyrogram/enums/chat_type.py,sha256=vf-DMg89K5hjOwuJbOHp66dM3whu_ZdMDiuWBA2z16g,1238
|
|
36
|
+
pyrogram/enums/message_entity_type.py,sha256=tsAs7zQ_QuAQ2eCV5L9oQmXltJ3VpLUn5suZVJ_RbLs,2464
|
|
37
|
+
pyrogram/enums/message_media_type.py,sha256=EgSJKsJm4SYjMOx-ce-m3EWMNVCrBPZkrSGmJqDPPr4,1599
|
|
38
|
+
pyrogram/enums/message_service_type.py,sha256=3lopnqAN5OcQxpbpfBOJ39UA9iUM3VnWZUR6Ct5MxK4,2569
|
|
39
|
+
pyrogram/enums/messages_filter.py,sha256=zuRmFYB1D-3-THlsOmVm6G41iBZkggjCg6vV-ocqTYI,2406
|
|
40
|
+
pyrogram/enums/next_code_type.py,sha256=GMofmZCvqJxjn_2bXWjQ7T06AiI584UlWlfZYtBnVS0,1521
|
|
41
|
+
pyrogram/enums/parse_mode.py,sha256=9xKPMEZf1hIYsCHWWcemCFyo3U5xnaQ05pYiaxvXezk,1188
|
|
42
|
+
pyrogram/enums/poll_type.py,sha256=C2MDTqWrRBT24qnkuosxIA5E8vDeGYDpAPep7o6HIgE,1047
|
|
43
|
+
pyrogram/enums/sent_code_type.py,sha256=LHRDeJ3YTdi0v_-12y5RA3Yn7t9BMKal2cz7-EQ1txg,1723
|
|
44
|
+
pyrogram/enums/stories_privacy.py,sha256=MpbQ1uYjIPZSYztfvBENxMqa3txpNXJUQF4US1RF6HQ,1241
|
|
45
|
+
pyrogram/enums/user_status.py,sha256=0WEpJJmjfGsJ3CVEhItO3Zc1VP9CBjgZBpxWUOzoFFg,1299
|
|
46
|
+
pyrogram/errors/__init__.py,sha256=A5K1NGcSaen5jCLbS9G7ZlfYj4mYkjAeWPFVjS085UI,2489
|
|
47
|
+
pyrogram/errors/rpc_error.py,sha256=18YbiYLQ-wKBZJ389SfPpl0pwQMHn4Xzh0leuZ-vuNU,3315
|
|
48
|
+
pyrogram/errors/exceptions/__init__.py,sha256=NUpepg_kZ7wfy1H0GfGHoyTg13NIo9D9wJWo3TYnH7w,1092
|
|
49
|
+
pyrogram/errors/exceptions/all.py,sha256=erF3kPmhimdEi559EHlcCamXCTD4-FKCV87ZzgWYtgM,27613
|
|
50
|
+
pyrogram/errors/exceptions/bad_request_400.py,sha256=2co-I5BmzGC7C_egZqDy9rZqP-L27ai0y92-YojIaDk,69434
|
|
51
|
+
pyrogram/errors/exceptions/flood_420.py,sha256=6v5kOXi_OwNlkYHb7aDlfkkYARSQmCrbqjE_eiWz4JI,2004
|
|
52
|
+
pyrogram/errors/exceptions/forbidden_403.py,sha256=kn4oSfmTfLsiiPORqUK3KUIvjAONNabQzN6cQUwWxsY,8670
|
|
53
|
+
pyrogram/errors/exceptions/internal_server_error_500.py,sha256=xiDgU4JNvIOF6Q7GudhPwilgOguCtjF9irsBmupaUkg,11187
|
|
54
|
+
pyrogram/errors/exceptions/not_acceptable_406.py,sha256=NrkvsyW5CWnoO-chCSjsRsyjs3-fnHk4psGNOxZBYwo,3692
|
|
55
|
+
pyrogram/errors/exceptions/see_other_303.py,sha256=4NKiQPNlAYeLO-5YoSGOJTL3EGVwoHL_Y-GPoQejDjY,2015
|
|
56
|
+
pyrogram/errors/exceptions/service_unavailable_503.py,sha256=tpUFZveApNCMkmwusdeEoe-CMAtTyjUx-yGk37NhObs,1584
|
|
57
|
+
pyrogram/errors/exceptions/unauthorized_401.py,sha256=HJ4UeNOWVrYSEcw3ikAa5ivfPxG0jqHRK3nJU9sgoeQ,2763
|
|
58
|
+
pyrogram/handlers/__init__.py,sha256=gDT9YtYS4dOhJdSozIs4-NpZvputaUgk8cNv13mn1Ns,1475
|
|
59
|
+
pyrogram/handlers/callback_query_handler.py,sha256=--kShy_dyptJVNCDov_HX0P2FXdmxNPeJjYccoRX68s,2026
|
|
60
|
+
pyrogram/handlers/chat_join_request_handler.py,sha256=8jWNUBgxJE54_WAHBHp_HpglHNrjJEZsNKfudsBeo0s,2011
|
|
61
|
+
pyrogram/handlers/chat_member_updated_handler.py,sha256=8ceqNAlH7KBU5ukkfV1v44uvCZzA_reiKDUIQ8jsH2s,2046
|
|
62
|
+
pyrogram/handlers/chosen_inline_result_handler.py,sha256=BCb75OkfHLVDjqT1jLLZ1A7_1gv-2-ndpr8NXeOm7uQ,2101
|
|
63
|
+
pyrogram/handlers/deleted_messages_handler.py,sha256=Coo7lHAv9y0ojB0QyGXhWJ2UnYA9MTrUvVjufEWUDok,2543
|
|
64
|
+
pyrogram/handlers/disconnect_handler.py,sha256=LSvQI38kvJbD4s31jphnr5Ft3WjNLQupz2_zK3tm2PU,1702
|
|
65
|
+
pyrogram/handlers/edited_message_handler.py,sha256=5_lCX7YcuGhqi_Ro2IG-_J1mF6n-vyYdjMFPVZdM5N8,1979
|
|
66
|
+
pyrogram/handlers/handler.py,sha256=HarspsG7NoMele9vJMf2aN-AOGXJpJ-U127hP5Ne2xk,1550
|
|
67
|
+
pyrogram/handlers/inline_query_handler.py,sha256=uQ5CIEBgvWaizCnMaah08T576OP0K542WS8Os_ocpH4,1984
|
|
68
|
+
pyrogram/handlers/message_handler.py,sha256=um0VeYMbH0IFZS2H18a5W9y3Gvk03SGZ0nHJrNU8hDw,1935
|
|
69
|
+
pyrogram/handlers/poll_handler.py,sha256=IngTr6CYaDTzc6ign2F0noaoGcN7ddlncpjgeKm1UyQ,1914
|
|
70
|
+
pyrogram/handlers/raw_update_handler.py,sha256=9Uh0oVyDm4AgQ39Y87JaebeL5V6HM1eE6svW6HYY114,2942
|
|
71
|
+
pyrogram/handlers/user_status_handler.py,sha256=NcrvIuvaE8cwccG0cgSjGtN12IVLbDi1OZqDmiuht8k,1989
|
|
72
|
+
pyrogram/methods/__init__.py,sha256=ogNanFxsKGu-1Mtlk1puXgAVORfhsrGy34yUGawkKXQ,1365
|
|
73
|
+
pyrogram/methods/advanced/__init__.py,sha256=nRNLZaThEQylTXtzEbPoQz0s4A5GcJrH7C_dwKKJ530,988
|
|
74
|
+
pyrogram/methods/advanced/invoke.py,sha256=cduAX4lBhqJ6GF6psrwEw3uRFnnEggk_fuyeD3Nmbo4,3133
|
|
75
|
+
pyrogram/methods/advanced/resolve_peer.py,sha256=vXM5M9NiUzbe9nK9LtpIwbHYttyx-89lcZ1CPMbHv0Q,4560
|
|
76
|
+
pyrogram/methods/advanced/save_file.py,sha256=VsG1REiK5Kp_bJpY_Z9S-D9HikwpyseTe1bthZOWsBY,8164
|
|
77
|
+
pyrogram/methods/auth/__init__.py,sha256=7oOjTXZkLaq8BlEVxJuM6C5ZhMDe1sA0wMPlsC8UF2Q,1655
|
|
78
|
+
pyrogram/methods/auth/accept_terms_of_service.py,sha256=qegqafaxszNcOgYCWxTRssXpXJzfKVKexwbqJaEbM1M,1468
|
|
79
|
+
pyrogram/methods/auth/check_password.py,sha256=5w01ommIRhnbNlQVUeRWJVl3Cp27I4EVI_SvMh2YQIE,1942
|
|
80
|
+
pyrogram/methods/auth/connect.py,sha256=pSHxdQY7SZqn6330kv2VVTyn9-PujV28k3495U2-VV8,1749
|
|
81
|
+
pyrogram/methods/auth/disconnect.py,sha256=TqoEGX70tyR-1U4YUo92FEnIgPFTPgfYHxOeBgF-9sI,1504
|
|
82
|
+
pyrogram/methods/auth/get_password_hint.py,sha256=tAXJFt_ywvIZ5_KdmyJQow-xdxvqMSnr22ywqoxuKlg,1307
|
|
83
|
+
pyrogram/methods/auth/initialize.py,sha256=dlchn5W4uhRNi1a5ZSwSggz_V52Hgiu2q-U-iaAxKOw,1664
|
|
84
|
+
pyrogram/methods/auth/log_out.py,sha256=FV_Qs5iobjXwyuB4fki2n4OSsQBReLiNHvE7qRa2xf4,1626
|
|
85
|
+
pyrogram/methods/auth/recover_password.py,sha256=nn3dcGvJA99l8E6A2fJNyGdRp7m7saUP0qVuHV4nlEk,1831
|
|
86
|
+
pyrogram/methods/auth/resend_code.py,sha256=x-OuwVq4eSXwL8usTE5F5SDd8r85GA51C5bJuW__4zA,2150
|
|
87
|
+
pyrogram/methods/auth/send_code.py,sha256=VCT4tpc8xW8jKXJp6O6qH18vJYbwDRj_mZsxWpQlbSU,2786
|
|
88
|
+
pyrogram/methods/auth/send_recovery_code.py,sha256=5s21Op59kO-NjGNkSy7ull2Gjas-iy0eT0T4lAVuVdI,1473
|
|
89
|
+
pyrogram/methods/auth/sign_in.py,sha256=04oAl-EtV4-nZ79N5pdpmoyxiTU6HSgbghXiCedC2ic,3085
|
|
90
|
+
pyrogram/methods/auth/sign_in_bot.py,sha256=EuzmBeVyIIcSB1c3s0j_7qCfbiKLVokypMrTX8fppfw,2723
|
|
91
|
+
pyrogram/methods/auth/sign_up.py,sha256=zzr8viLT6Zo_IE9ZIVvfzyU_8a6wlXP6XTmGUX1AZqQ,2355
|
|
92
|
+
pyrogram/methods/auth/terminate.py,sha256=S8eBfgSNj1FifOnqVCO1ZLLdWG2GFp1HaRbW3_371L0,1859
|
|
93
|
+
pyrogram/methods/bots/__init__.py,sha256=RCNVgF1P--aNQy8bH3kCXJEIrTqEnSX91n1oc5kPg3s,2147
|
|
94
|
+
pyrogram/methods/bots/answer_callback_query.py,sha256=jfmLjr8Q_VWLC2lpmWPe7bEFiQlID29-FPbTisjY7Ds,3311
|
|
95
|
+
pyrogram/methods/bots/answer_inline_query.py,sha256=6JOB0lszuWJ-9jNXDif1l1JK2O1cE3m8mgXsxVYoWEA,4990
|
|
96
|
+
pyrogram/methods/bots/answer_web_app_query.py,sha256=IPqGvFu7rouC51EhMmrcax4rgzFw52qaZJPldpbXMvw,1989
|
|
97
|
+
pyrogram/methods/bots/delete_bot_commands.py,sha256=KBSL9gg4iHhsxX1X13yyOvu8yqOd_OmVgeH-giq9mPc,2360
|
|
98
|
+
pyrogram/methods/bots/get_bot_commands.py,sha256=dnZz6JI7EKkDvAkiWVb2ijuZfmmnFpGkEqrD_tugKdQ,2573
|
|
99
|
+
pyrogram/methods/bots/get_bot_default_privileges.py,sha256=Mbl_qNSBnTDIQlXnbsGZAIxVAZIzeESt2RPoM0USres,2051
|
|
100
|
+
pyrogram/methods/bots/get_bot_info.py,sha256=LYPU2TaHm-SIBQx8UMyt0jTLkfWQ3JzpZlS2VoNAvb4,1811
|
|
101
|
+
pyrogram/methods/bots/get_chat_menu_button.py,sha256=cOek_NoNG_LOs1tUaqc2UqXh3elKzdUEoNQd3lI0DpQ,2319
|
|
102
|
+
pyrogram/methods/bots/get_game_high_scores.py,sha256=ais2gK7YfKhwDo_WhyOdi9WYj4kXmSPq8U9KKnMV3ps,2798
|
|
103
|
+
pyrogram/methods/bots/get_inline_bot_results.py,sha256=bnV9ayI6t3w7bZf2GqVuwo-sS6KvjsNmcCK81C0WNv8,3365
|
|
104
|
+
pyrogram/methods/bots/request_callback_answer.py,sha256=JK1hfk4wuLkyAotRbRCr8aeMlNstSwGAXAaDkKB21WY,2847
|
|
105
|
+
pyrogram/methods/bots/send_game.py,sha256=iyaAxgsR9JiaZriN30DdyG7zaoEPUpwTJWhhKIwfRv4,4357
|
|
106
|
+
pyrogram/methods/bots/send_inline_bot_result.py,sha256=HaiYGaAnvjB5JdMSMWorwFK-FXE_U8vgLlUQALutH-o,3232
|
|
107
|
+
pyrogram/methods/bots/set_bot_commands.py,sha256=LbMSB3RLHNRPcmX6Azakt289JRyx5Y82ksSde8t9gj4,2710
|
|
108
|
+
pyrogram/methods/bots/set_bot_default_privileges.py,sha256=KL2oX1O8f9Lsez1iSaxJKK2BEvw0tNoW8VKh0UUunW4,3186
|
|
109
|
+
pyrogram/methods/bots/set_bot_info.py,sha256=GwM9tcbzdDmhFCUA201If68soW2kjx1RNC_3BhW3eTc,2146
|
|
110
|
+
pyrogram/methods/bots/set_chat_menu_button.py,sha256=jNzIy93GcYPqyg9FhvvN-NeBznstgDmQIJU-OVfSIi8,2048
|
|
111
|
+
pyrogram/methods/bots/set_game_score.py,sha256=5tpnHs16tgOfz2gEJKkgoh40N64Qzg_NVsaEGvw-Rj8,3946
|
|
112
|
+
pyrogram/methods/chats/__init__.py,sha256=uP_4yXT4Fa175BiFF3z0rDrINTfgDThkne6YrTyVi5c,4299
|
|
113
|
+
pyrogram/methods/chats/add_chat_members.py,sha256=pxMyUKzp7Vs0FaOfP0VY4H5yvf5hiR1kPnmE99AJ9ow,3364
|
|
114
|
+
pyrogram/methods/chats/archive_chats.py,sha256=d2cHk63K_5gc1s_9zJdQibBH8xYRC4iYWd3l_yJs7Ac,2216
|
|
115
|
+
pyrogram/methods/chats/ban_chat_member.py,sha256=tAkWmDHDdG7qHJlDR6NWwA13Sz78-uYQi5NN8ZlNfzw,4620
|
|
116
|
+
pyrogram/methods/chats/close_forum_topic.py,sha256=CaLwnssQ2EprVYC2aiqrx_GBpjcJ8X4F0pe4DWDEAPg,1858
|
|
117
|
+
pyrogram/methods/chats/close_general_topic.py,sha256=-DbkMwlgnYFveULOpRxo37gbvIoALuoKCSI-ST6_0uY,1721
|
|
118
|
+
pyrogram/methods/chats/create_channel.py,sha256=Vaur4qzd9wD-VQDXT1_OewDhwxCasx7RdGmXgJSkCN0,1817
|
|
119
|
+
pyrogram/methods/chats/create_forum_topic.py,sha256=rQLN0RrEX9iO7a7UQawmi66yyeX-ODzmBVogAbl5L1Q,2343
|
|
120
|
+
pyrogram/methods/chats/create_group.py,sha256=v1mv3krOjtX09-EVOsuJTQjktOjNlnaq1mA6ic51n5Q,2281
|
|
121
|
+
pyrogram/methods/chats/create_supergroup.py,sha256=EiAyDC3Lo7yzvUZVIZ0yKf8-uIv56Cu6cq7SsB_zZsQ,1955
|
|
122
|
+
pyrogram/methods/chats/delete_channel.py,sha256=gj8HqiKl3TaZh948R30nkyeZsB5akyDhpCuT0SqPnRU,1585
|
|
123
|
+
pyrogram/methods/chats/delete_chat_photo.py,sha256=cBjrrl9V2ASYrNGAgFGUfGuGYBEtIMDHIBrGBZIopps,2307
|
|
124
|
+
pyrogram/methods/chats/delete_forum_topic.py,sha256=86AlU2NxeCDvj3dEiv7IasaGINSkvgbrblKyMaX0e9U,1953
|
|
125
|
+
pyrogram/methods/chats/delete_supergroup.py,sha256=5kn1O2mE7jOERzB9J-mirvK0cnvMtIgrsqhsb94B304,1603
|
|
126
|
+
pyrogram/methods/chats/delete_user_history.py,sha256=VUCMtrKZtj1abOsYGcdTcdw4YrcLMzMcfOHIV81EYoI,1969
|
|
127
|
+
pyrogram/methods/chats/edit_forum_topic.py,sha256=sW8f3Pr1xF1dT2pNhyFnmeZWhrwzPLVBzQLf40HIsis,2187
|
|
128
|
+
pyrogram/methods/chats/edit_general_topic.py,sha256=flXIhfb5-qWbL7EVAbLS3oZUawjT1SNfVwtmmkPGlv8,1840
|
|
129
|
+
pyrogram/methods/chats/get_chat.py,sha256=Npx6awIKGYBfDvgeAqNI-iwIpIOtJOf3adctonPxiGw,3282
|
|
130
|
+
pyrogram/methods/chats/get_chat_event_log.py,sha256=oTWBJjLjiEEvk0ipqFfkCSX3KpQ2GqNJu-8QD1xrtok,4032
|
|
131
|
+
pyrogram/methods/chats/get_chat_member.py,sha256=klM41rHgrhk7JuVuiyKAZ6_1p6vHJJqM08wgZJDR_gk,3338
|
|
132
|
+
pyrogram/methods/chats/get_chat_members.py,sha256=TQ5z1ApQZQQzxNUQkBIU3l5Vm4knkC960NPiMk-vFS4,5282
|
|
133
|
+
pyrogram/methods/chats/get_chat_members_count.py,sha256=HGp5AxViuUkQP8xI6DW0r36gdncn5h0ikZtU1wViXR8,2264
|
|
134
|
+
pyrogram/methods/chats/get_chat_online_count.py,sha256=jjz86ljyBDVcSxA3IqLpvmY8t6kX1GzMJ-IGBsywfYc,1723
|
|
135
|
+
pyrogram/methods/chats/get_dialogs.py,sha256=tWnkn-twKewPHPR867Lw5lIWk7HNrmeq0W29h5k9_ys,3360
|
|
136
|
+
pyrogram/methods/chats/get_dialogs_count.py,sha256=0JagwclwbH6ws3jkMvyGbtjmsYFbWWBTKJUPz43Knjs,2096
|
|
137
|
+
pyrogram/methods/chats/get_forum_topics.py,sha256=6C6kY64npc2Wj4r6KAC279nJObpcG2KasxlY0H7NGOU,2294
|
|
138
|
+
pyrogram/methods/chats/get_forum_topics_by_id.py,sha256=OxxNAdUrJSQe_i0dd4SUE12SQmq58icO_7DaJyH0OpI,3154
|
|
139
|
+
pyrogram/methods/chats/get_nearby_chats.py,sha256=sOoNjQ9qHKzD4UYoVusMM5G65KnqzqpzzwLwByJf6tc,2401
|
|
140
|
+
pyrogram/methods/chats/get_send_as_chats.py,sha256=T7tclOYX5NLg5SxZfW_xLpqwqGQObLsMJ3Xh49_r0nk,2136
|
|
141
|
+
pyrogram/methods/chats/hide_general_topic.py,sha256=ec7il4Uvfkdu_MlIMDHwJdRkNmDDXTp-oXSF_o74ojg,1725
|
|
142
|
+
pyrogram/methods/chats/join_chat.py,sha256=nJwFMp3HxWzrikg0_Ma2vGu1SKwQPaYAdDcfCnEJiGA,2694
|
|
143
|
+
pyrogram/methods/chats/leave_chat.py,sha256=ZzX4K2BYcxo3ufJ4o9ePyjuiRnT5OQglKB7EC9K9ZQA,2605
|
|
144
|
+
pyrogram/methods/chats/mark_chat_unread.py,sha256=sBpqKV4IqtbBxIlOta__qQg4vlvIdFqX1sQTZsX9_XA,1528
|
|
145
|
+
pyrogram/methods/chats/pin_chat_message.py,sha256=O45EDfn60ut5SyyAFe8dxKREaNRbL7WI7Fb_zU_EunQ,3157
|
|
146
|
+
pyrogram/methods/chats/promote_chat_member.py,sha256=AHLh0X0lDIETbGeaZPiEmiER8vRKj9pKS8oU7_qdWPk,3925
|
|
147
|
+
pyrogram/methods/chats/reopen_forum_topic.py,sha256=AqnnMzNFrCP70RD8_PsrTBXk5pfsA2MwrSV8awgTMUk,1863
|
|
148
|
+
pyrogram/methods/chats/reopen_general_topic.py,sha256=MKzXi1s3cNaQRodL0dMqwnoeSK0U79EFSQGcfHv-NCA,1744
|
|
149
|
+
pyrogram/methods/chats/restrict_chat_member.py,sha256=Ac7AUcN5gVIsamPxX5F45ZSoHytlWyYrT4fmTgg5EE8,4381
|
|
150
|
+
pyrogram/methods/chats/set_administrator_title.py,sha256=c4qhSRHl1cLf8ymYIXTtGe7uu2LONq6WnVWHwG81EJA,3136
|
|
151
|
+
pyrogram/methods/chats/set_chat_description.py,sha256=DQNYi2YqmFpylqMFWJV6yzF14M5sGbf8jszYAoj1QYk,2247
|
|
152
|
+
pyrogram/methods/chats/set_chat_permissions.py,sha256=4ByjMrlRanbfy_zQfeMtqdyfS90N4SztMMr8Ht30k2s,3484
|
|
153
|
+
pyrogram/methods/chats/set_chat_photo.py,sha256=AgSaQ-PAzjaJisWcwAlBfGd4RThebOR6d8KS5b9p8kw,4601
|
|
154
|
+
pyrogram/methods/chats/set_chat_protected_content.py,sha256=-jT3B1M5rfRhXe6cX5QHhcCxgk2nImt1E7WJxeNU4I4,1727
|
|
155
|
+
pyrogram/methods/chats/set_chat_title.py,sha256=T9DQIBSWowVh2VoFIEQPB0_mK7Bz_mG1BrJejVqGA-k,2572
|
|
156
|
+
pyrogram/methods/chats/set_chat_username.py,sha256=EYlxEi8ovCWKZdocIyI_mphbXLZt1w74r0B7U_69zDQ,2296
|
|
157
|
+
pyrogram/methods/chats/set_send_as_chat.py,sha256=QsipC3pmXirw4ukjo4k4tNzQlAgEaQ0UtIxh3j_D524,1982
|
|
158
|
+
pyrogram/methods/chats/set_slow_mode.py,sha256=pf5dmljR4pYBkh003DM0s179_TAFZioh1_aXw5lI6vc,2083
|
|
159
|
+
pyrogram/methods/chats/unarchive_chats.py,sha256=eDZ4gm-JmIH893MEwksxm4OuqW2e5a-E-PTfaFDSpl8,2230
|
|
160
|
+
pyrogram/methods/chats/unban_chat_member.py,sha256=lhCvAW_Qxua1bgJdYjNTedBVtKopFHsPP6ojDNXdkRQ,2305
|
|
161
|
+
pyrogram/methods/chats/unhide_general_topic.py,sha256=4rQIShOyU-DvcKCyJiZVkGe24xKx2nwrqng3x5Mzr-c,1734
|
|
162
|
+
pyrogram/methods/chats/unpin_all_chat_messages.py,sha256=-in6YiGk2VALHo64mEB_kslx45HbG1Q-k2Cn0smfQYI,1940
|
|
163
|
+
pyrogram/methods/chats/unpin_chat_message.py,sha256=34cQTFacTwmk9eFPoZbjhyZqor8TRXiUkhUP6kdx-P0,2139
|
|
164
|
+
pyrogram/methods/contacts/__init__.py,sha256=yOSpR43yZRyTG1BESgFaLIl9GUGuDubycOn1QgjwG9s,1154
|
|
165
|
+
pyrogram/methods/contacts/add_contact.py,sha256=5hdJsZSVIzamjulgwil5-9t0HH1EC7gGvAybSL5-0GY,2566
|
|
166
|
+
pyrogram/methods/contacts/delete_contacts.py,sha256=o16G0xjhW0s9U23OOVf95UojcCDWEEtjIktCUDpFq8w,2448
|
|
167
|
+
pyrogram/methods/contacts/get_contacts.py,sha256=x51h5r61JtOJvg_7kbdxCQ3vfJj0BHG7TnS3l-lp_Tk,1605
|
|
168
|
+
pyrogram/methods/contacts/get_contacts_count.py,sha256=p2xPnjRSTQKwU7cLYDr4V_owhR7uaiFnfM5sdBHfHfE,1422
|
|
169
|
+
pyrogram/methods/contacts/import_contacts.py,sha256=SavyyDMF_B3-2tlzjXu6S7V7wKSNuoBAYZcVh5DReJY,1934
|
|
170
|
+
pyrogram/methods/decorators/__init__.py,sha256=zfA3xke1L1zDcpAJhxU0svgb6RriObW9nuPCbPgOrmA,1624
|
|
171
|
+
pyrogram/methods/decorators/on_callback_query.py,sha256=pfluCK6sUjj19rjYEeCJgi2-lAVW1Jo6fE5QVttoJ_A,2181
|
|
172
|
+
pyrogram/methods/decorators/on_chat_join_request.py,sha256=xj3_BATr2J_2GCZ0fureS-LhaeTOJPDi150FHkfmw4M,2169
|
|
173
|
+
pyrogram/methods/decorators/on_chat_member_updated.py,sha256=eKHEywNRh5uMeMPkgQfK4Bp5EgCNd-tUNZPC_k3f6CQ,2190
|
|
174
|
+
pyrogram/methods/decorators/on_chosen_inline_result.py,sha256=SUSKQUyuMBHKn5Rww3rSMkTw4zPgBjrv0O_PenJkfyo,2217
|
|
175
|
+
pyrogram/methods/decorators/on_deleted_messages.py,sha256=9aY_7x824tkLR-iDvvdAziHo-ZbHdR3VfndmSX4e-TU,2183
|
|
176
|
+
pyrogram/methods/decorators/on_disconnect.py,sha256=F6na-06Bu1344pnELge95XG-ZmgR7eJ1s0oNq1SKnXM,1553
|
|
177
|
+
pyrogram/methods/decorators/on_edited_message.py,sha256=fV3EO_6MXQ6cssGJ592uUEa19jLQXypDZi9prvslGqM,2172
|
|
178
|
+
pyrogram/methods/decorators/on_inline_query.py,sha256=KlMO9TKBIkbtr-Cxuxpm6evwQ5OWVI4uX8dVlC70yCk,2167
|
|
179
|
+
pyrogram/methods/decorators/on_message.py,sha256=ja05g_qjFSUsF1UuJBOSA9XNEnnn06AWLk8htNNaPck,2138
|
|
180
|
+
pyrogram/methods/decorators/on_poll.py,sha256=oSnvFaHyw6utJhon0RAADNbOSM26WKCb7sdW4tBTDUk,2120
|
|
181
|
+
pyrogram/methods/decorators/on_raw_update.py,sha256=A8X4AMmNO3AMQPjfvibslAnVxXPBjcd1Yo7qlUaIaTY,1818
|
|
182
|
+
pyrogram/methods/decorators/on_user_status.py,sha256=b2iFqzaaHVfslnRaNdV0hHfoZI_EzwnAAJtazGetPTI,2154
|
|
183
|
+
pyrogram/methods/invite_links/__init__.py,sha256=jJAxU6EIgqJ8_NjLiI5fHJdczFed98Y-5cNJKfG8jGs,2435
|
|
184
|
+
pyrogram/methods/invite_links/approve_all_chat_join_requests.py,sha256=Y8ls46X7Hx0mSAbhQEmTIZaqSeUIT0_4etVw2rmO0DQ,1894
|
|
185
|
+
pyrogram/methods/invite_links/approve_chat_join_request.py,sha256=aKt3uVOdYzmSjlR17Thdt17iihAGSj4i0Ib4wszvQhI,1924
|
|
186
|
+
pyrogram/methods/invite_links/create_chat_invite_link.py,sha256=fKeu5Xa2_Ho4XIoDoIPFRely1fvfXFTH5uA9qUBAVRY,3369
|
|
187
|
+
pyrogram/methods/invite_links/decline_all_chat_join_requests.py,sha256=J6tym1uAViGJJBpj7jmKCB-gRfRuSF6P9b8orywCdg4,1895
|
|
188
|
+
pyrogram/methods/invite_links/decline_chat_join_request.py,sha256=MK7-OBbbiQVzVHZXSufHvNjZj2nDqg_CbbSCIFHARiE,1925
|
|
189
|
+
pyrogram/methods/invite_links/delete_chat_admin_invite_links.py,sha256=d68Q_qjmAavM6-vl6xxiFHANlXRn8qXNxu_Gzq-su54,2031
|
|
190
|
+
pyrogram/methods/invite_links/delete_chat_invite_link.py,sha256=bsfuBTZmQl8dE7OXk-54W11s8Cc1_gIORkzyZR839Ss,1751
|
|
191
|
+
pyrogram/methods/invite_links/edit_chat_invite_link.py,sha256=ZNogt99XP9ggAG3DFsSRjTFb3BxfTHM1vAAUyzu_eDs,3533
|
|
192
|
+
pyrogram/methods/invite_links/export_chat_invite_link.py,sha256=2kQVF1GQXMlgd73lhZIvrNH0N0H7dGum8DWs0IeEbys,2582
|
|
193
|
+
pyrogram/methods/invite_links/get_chat_admin_invite_links.py,sha256=SdEgaLv_RqDsHEQo3UBxZl6BEHB4A1M3L47IeFpsjgs,3566
|
|
194
|
+
pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py,sha256=zoZdXvgRRrw75wV0x6eQEHLpAdUF1KzJKJoz5JPtlW8,2335
|
|
195
|
+
pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py,sha256=j4acqHoph85S3d_ztZP0QgIKAgMwX1h5aEtmTp0vhWg,1997
|
|
196
|
+
pyrogram/methods/invite_links/get_chat_invite_link.py,sha256=t_4_ddjNQEqxllBUBX03e4iMdLt_HdWXknfWWRMCm5U,1925
|
|
197
|
+
pyrogram/methods/invite_links/get_chat_invite_link_joiners.py,sha256=DO5I-4MyFmpGCbhU_Int-K7bhEeZuLdcqWKQZuO9mZQ,2928
|
|
198
|
+
pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py,sha256=H-uRoL2JRlrZbXxwbVdb0VqxQsijDX6DTfEaDXljk1g,1929
|
|
199
|
+
pyrogram/methods/invite_links/get_chat_join_requests.py,sha256=8vvbKTl0stM5RQi77wSC5xqO_0MJdcFtPoIcULHIQJQ,2947
|
|
200
|
+
pyrogram/methods/invite_links/revoke_chat_invite_link.py,sha256=zY_-XAQYXb6B0C1-7Zl6AoYpkMPKjrVhC6MTfaVZMLQ,2329
|
|
201
|
+
pyrogram/methods/messages/__init__.py,sha256=a5FXHDQ1E3Igec1rjcfVNNQyAS1fe_v1TbnG7zenw7k,3921
|
|
202
|
+
pyrogram/methods/messages/copy_media_group.py,sha256=RMOtyb5M6BZSQS-FzQL_0pCCydFbAxFyMxO_8_JNWUA,6373
|
|
203
|
+
pyrogram/methods/messages/copy_message.py,sha256=IaJ25rGld7xXZEe5YzpNUalAcFSQGXEd5_V16NnXCmQ,5451
|
|
204
|
+
pyrogram/methods/messages/delete_messages.py,sha256=PgsVHswsRQ_f9ympNS7DM8-gHHBnnBRw4Du4evqYnJA,3148
|
|
205
|
+
pyrogram/methods/messages/download_media.py,sha256=ywWibTMTYiSbg5lZ_l6WKDNMP3pZ8ThwVV0RX5CfRXo,7530
|
|
206
|
+
pyrogram/methods/messages/edit_inline_caption.py,sha256=dmr8PNbsk1J_N5PPsHowfiAQqeVkUA-JfOOWZlgw_Ho,2271
|
|
207
|
+
pyrogram/methods/messages/edit_inline_media.py,sha256=jQ8KfuZyKMmC9RVZzL-8H-LZvUYKxa8MMj29uYRkbwI,10375
|
|
208
|
+
pyrogram/methods/messages/edit_inline_reply_markup.py,sha256=4HjFqTkm5mcbuj_D82q-wiQKXemgeWfR4lF-S-LTbJU,2464
|
|
209
|
+
pyrogram/methods/messages/edit_inline_text.py,sha256=tTsYC4MkUjETwySGpM-IxqXLqcjKAg3Z0LUk4a9FeZg,3115
|
|
210
|
+
pyrogram/methods/messages/edit_message_caption.py,sha256=lSk2xefczNONy1IsBhT1QK28SpvVVt7zn0Wza9_6_h0,2978
|
|
211
|
+
pyrogram/methods/messages/edit_message_media.py,sha256=hyD23fpfo7DGkPcZREi6TYwGwrhEqhD7M_1HzuaKgWY,13022
|
|
212
|
+
pyrogram/methods/messages/edit_message_reply_markup.py,sha256=cTBRVLGR5JXvHkzjp2BeHYVSCfVyTXaUGurvCpgEJLE,2976
|
|
213
|
+
pyrogram/methods/messages/edit_message_text.py,sha256=8pCnrak4uxkz00Ppe6DNh8kD2vtRkq2QN4cscitSN3A,3906
|
|
214
|
+
pyrogram/methods/messages/forward_messages.py,sha256=2ZLZ7sVkIztbW5syPbhTAB1G_c_e2gTIFZjTx8KDUZE,5018
|
|
215
|
+
pyrogram/methods/messages/get_chat_history.py,sha256=A6OyHP2db7xqK65VI3CVEBKI3WPG6p6UHBU7OjKUU3g,4501
|
|
216
|
+
pyrogram/methods/messages/get_chat_history_count.py,sha256=O_vSD5QYdX8XDO_G0rq_5pY7c_WM4xv80CPrrB843-Q,2389
|
|
217
|
+
pyrogram/methods/messages/get_custom_emoji_stickers.py,sha256=dOBQIPSlbluS2CQcdjLzvbyCbbmQvNzq3MLD4zJN6Fs,1980
|
|
218
|
+
pyrogram/methods/messages/get_discussion_message.py,sha256=EDksLjNnqbAZrgUFbtGGaimXmdNHgaAnqQ9tMC9NHfI,2229
|
|
219
|
+
pyrogram/methods/messages/get_discussion_replies.py,sha256=e91DJ5mrM8dG17C7c2P49w8TUV6N4kIVqfRLsWnVeJo,2808
|
|
220
|
+
pyrogram/methods/messages/get_discussion_replies_count.py,sha256=3lMJGwc16XR36An0MqsnrccT6PKhy_eSVuUD2Cwuvro,1950
|
|
221
|
+
pyrogram/methods/messages/get_media_group.py,sha256=JrzsjK_9OPWpRWfV_8fRz7Z9_IPqTXeQ3bO73dJd6sA,2946
|
|
222
|
+
pyrogram/methods/messages/get_messages.py,sha256=SNC6Tj3V_anFYVGjKrr68LzLE5lgscfTMYVoZoUHz1U,4741
|
|
223
|
+
pyrogram/methods/messages/inline_session.py,sha256=3koTaqZ43dA15V0PgDxAJ_UZhZco-jgrurfYgZJoKNk,2175
|
|
224
|
+
pyrogram/methods/messages/read_chat_history.py,sha256=zbpkJ4PLWS34mLWx-GTC5Li2gNciprCdpT41jTvv3UY,2527
|
|
225
|
+
pyrogram/methods/messages/retract_vote.py,sha256=IqDx1OMYxpj8QQHCFrOUcJsgkFeQrpJ0Gu7mFY6rhhM,2124
|
|
226
|
+
pyrogram/methods/messages/search_global.py,sha256=NDE-cWy2kYhIRHfTzCtoWPnJozQevxwYwVH3o-8I7Nw,4160
|
|
227
|
+
pyrogram/methods/messages/search_global_count.py,sha256=3xiTdLSCo5iq_Jxc83eIXfsh5JfhKzChmSjkMwp0nqw,2156
|
|
228
|
+
pyrogram/methods/messages/search_messages.py,sha256=MKyMCHXyN1TeAuaKKa-_P9iGxDR3AqPvy-lwCSS2pbY,5349
|
|
229
|
+
pyrogram/methods/messages/search_messages_count.py,sha256=qPZLc9UxRoq85h5MvIvm6AJMUcfY71mBMxNHIIQKP24,3203
|
|
230
|
+
pyrogram/methods/messages/send_animation.py,sha256=lgRedTh0-wbce_qr8F2BTFU4I-GjkP6Rs7admkL7W3I,13380
|
|
231
|
+
pyrogram/methods/messages/send_audio.py,sha256=Tr553evJsvQXwWt7BW6aGpLnDsJKM3AzTRttYbfTdgg,11866
|
|
232
|
+
pyrogram/methods/messages/send_cached_media.py,sha256=hpaAJQdARiUDQSxMphfjJKNaDTuUwXaiSTm3SIVbtNs,6454
|
|
233
|
+
pyrogram/methods/messages/send_chat_action.py,sha256=JSkdJ6E_qiwcv6dYBhAji5m3ICMMX7amCy8sNNgkCCc,3076
|
|
234
|
+
pyrogram/methods/messages/send_contact.py,sha256=SsCqHQzY030CGfxTx__tLewfHYqAjCagtplBG10EN8E,5278
|
|
235
|
+
pyrogram/methods/messages/send_dice.py,sha256=x9WIX7p59u-PDxWpBW-F4BU8OSn6To6luFj5fcXYz-Q,5589
|
|
236
|
+
pyrogram/methods/messages/send_document.py,sha256=PLARSZncydl110H_Hx_J8OwqtaMFcRfx1DnkF0ppg3U,11216
|
|
237
|
+
pyrogram/methods/messages/send_location.py,sha256=3tf1H1r16U5Ry8B8wjNtXyPHFBkOwCDJ-PMcgURq1MY,4987
|
|
238
|
+
pyrogram/methods/messages/send_media_group.py,sha256=xjoy2-CqJwRGHlYbdyzgQyCDtwaIeBqiKW8vW36xICk,21325
|
|
239
|
+
pyrogram/methods/messages/send_message.py,sha256=1zJv8MvFqOuGaOCEteBC3Fl4oHh7j_pH_aox5hRbA4w,8013
|
|
240
|
+
pyrogram/methods/messages/send_photo.py,sha256=pXBP1cNJ2zvg48QZRXr8s0bKvajZ2_9Gb5swsDAXZNs,10234
|
|
241
|
+
pyrogram/methods/messages/send_poll.py,sha256=9u8oGJgC03-YnKDHqkJfursXeN_TG4KPJwKNUGkczUU,8481
|
|
242
|
+
pyrogram/methods/messages/send_reaction.py,sha256=zm0iKvaU2XEcagld6kEvrpuX7XoumFIiVSij1W-pLUo,2361
|
|
243
|
+
pyrogram/methods/messages/send_sticker.py,sha256=lylT-yYDeINZW1D4TN2XHsdwAWO8_7PUYCN6lPJDzCk,9086
|
|
244
|
+
pyrogram/methods/messages/send_venue.py,sha256=s7jH65ngtivHCxRy8Mk0_h0pEJXaIOJE9yplSSD1758,5808
|
|
245
|
+
pyrogram/methods/messages/send_video.py,sha256=LTc1dKg1sTpn1_m4F-pVwAVJV0tdEBSVloJP_cqtG4U,15190
|
|
246
|
+
pyrogram/methods/messages/send_video_note.py,sha256=eWVqy_SKpw4Kl0chnNWl-bzsy90OEtsS4BPHQwQFYJg,10061
|
|
247
|
+
pyrogram/methods/messages/send_voice.py,sha256=z6DVXqlg6Tuq4LGGqVvmoI-iM8O1Nx4ju1mR0Zib4T8,10298
|
|
248
|
+
pyrogram/methods/messages/stop_poll.py,sha256=p2BRsKpGDLU1pFRXd2qQG_2z_O4eiwbaJgJ5EOdDpSg,2819
|
|
249
|
+
pyrogram/methods/messages/stream_media.py,sha256=3zGibhZmLYZhTuusLyFdZZ9zqLLt7F9dJKMdbysnUIo,3937
|
|
250
|
+
pyrogram/methods/messages/vote_poll.py,sha256=nhc2PA33qNGL-VAlwYqh-fEmPUP4ehta2REpGyZu80g,2504
|
|
251
|
+
pyrogram/methods/password/__init__.py,sha256=Ok9BhMf3Z96wqF3US1qqjGT67z5mylwQdDCcnt7i-L8,1088
|
|
252
|
+
pyrogram/methods/password/change_cloud_password.py,sha256=UYwjT1MsALY49cixsm-XY-Kw9IuoeDESecAyVVoBnec,2797
|
|
253
|
+
pyrogram/methods/password/enable_cloud_password.py,sha256=W5tVXfwoGCgfvBM7EDlx976Hazl21lVKjbpK8Rc-iFQ,3006
|
|
254
|
+
pyrogram/methods/password/remove_cloud_password.py,sha256=JidQpLomzEs6teTcF3zNcthYrapIvCfhBfgaBptcyyM,2143
|
|
255
|
+
pyrogram/methods/stickers/__init__.py,sha256=TqXDGLrl8IDn-pEEO6sERhviRRSxvXfByi88PgH42Fo,1049
|
|
256
|
+
pyrogram/methods/stickers/add_sticker_to_set.py,sha256=3IlSqgCTUqUow0Ufi-IBoy4DA3ZpACVB6sJNbvLQ8sc,2819
|
|
257
|
+
pyrogram/methods/stickers/create_sticker_set.py,sha256=TPxFQ-GkvjZv04mhJlV6Cbz8RKl4Yy3XVITSSzSJJ_E,4292
|
|
258
|
+
pyrogram/methods/stickers/get_sticker_set.py,sha256=Gv53E1fRtccJlN9pBUDC5yiDuh_i4QIuZ4G_5KDg2XI,1752
|
|
259
|
+
pyrogram/methods/users/__init__.py,sha256=OyvmWUP8PYRn2rOSHlUobbqgp-0eBnPOz5wamRjNaLo,1938
|
|
260
|
+
pyrogram/methods/users/block_user.py,sha256=2yZTTl2fOM_1VHgYU8MQa5g7IjCYBWQo0xdHyIcOl_I,1771
|
|
261
|
+
pyrogram/methods/users/delete_profile_photos.py,sha256=0-YdzEv3DTWZcmb9NWQ4hCTFowoczZK2p8EQJTYzk_8,2237
|
|
262
|
+
pyrogram/methods/users/delete_stories.py,sha256=DH0XmemvlQATEd9hG0j0U4nliDTQFJJPInBk2G56BAo,2148
|
|
263
|
+
pyrogram/methods/users/edit_story.py,sha256=DGlflUKK_9UckV7dPZo-h8UENjLbzCBFOMDY-LWU-Xo,10275
|
|
264
|
+
pyrogram/methods/users/export_story_link.py,sha256=dBg-CzNsE9g3LKHtzZ5qThg3yQdS7UTaxO4BXbe-Z0o,2280
|
|
265
|
+
pyrogram/methods/users/get_chat_photos.py,sha256=pWt78bsPiZ6aC6nd0QyoAIHgRo4wXJft9DHsZCOTQHM,4421
|
|
266
|
+
pyrogram/methods/users/get_chat_photos_count.py,sha256=vYmpEokrlTrMs20ltV5bWwO-r07UIy96kMpGfzuX2I4,2509
|
|
267
|
+
pyrogram/methods/users/get_common_chats.py,sha256=soBBRyz8MnSFuE8RYaO1k3lLPyawtCyKGPTeTmA7jkg,2359
|
|
268
|
+
pyrogram/methods/users/get_default_emoji_statuses.py,sha256=Dd-aJ2BFixwg7aNCtW25LUpTV81Zd77C6UIoo9zJvC4,1664
|
|
269
|
+
pyrogram/methods/users/get_me.py,sha256=R554nwFIq-8NY_FA-yHnELHtAoiM6IosyEfeCqhGQD4,1565
|
|
270
|
+
pyrogram/methods/users/get_stories.py,sha256=BJJr8U5vmDd1BIQ2KAE_waBoCpHHUBWXZzEsBRsdCQA,2921
|
|
271
|
+
pyrogram/methods/users/get_users.py,sha256=ktcg8-Wsba3pv8NK6tks-nHLdaZcc9fZk5KEFcs0q0Q,2562
|
|
272
|
+
pyrogram/methods/users/send_story.py,sha256=eSwHgBbcW4L2V1-DsIn04HjF-3bKA7xibOp5mMdNMhQ,11119
|
|
273
|
+
pyrogram/methods/users/set_emoji_status.py,sha256=TKK0LTkroeJi5kWgep7YzUdRiA9SpltZ3aNZpUBX79k,1882
|
|
274
|
+
pyrogram/methods/users/set_profile_photo.py,sha256=2oenLYvFQShesa7bC3w_c-lIEkyjW1jkSVikhEEZMf8,2718
|
|
275
|
+
pyrogram/methods/users/set_username.py,sha256=N12t7V2GSXzfQB8MpRfi928gNTyq92AlmG_TdoejBiA,1876
|
|
276
|
+
pyrogram/methods/users/unblock_user.py,sha256=xXE_CWZ5badwb3tlmkn5Zp81PZucRhgbN9pOCMmBeJM,1781
|
|
277
|
+
pyrogram/methods/users/update_profile.py,sha256=FcLw9B1NeOGGFBLF8UZSSr8uhiTYUgpV5YiBAbr53iE,2376
|
|
278
|
+
pyrogram/methods/utilities/__init__.py,sha256=QbqpKDI4gH7yTDZYlyayVrbzMj_56hGNCLSNPj_UT7s,1296
|
|
279
|
+
pyrogram/methods/utilities/add_handler.py,sha256=TIAkUs2eDbtny3OZgnRfgT3askJGB4WfgVtAFdEP_C0,2346
|
|
280
|
+
pyrogram/methods/utilities/compose.py,sha256=q3oGzYOLpHoANag_uXWGkkLe73vZo0weLqQsYMglNus,2232
|
|
281
|
+
pyrogram/methods/utilities/export_session_string.py,sha256=fDfJQK_IEcR715JuX9gN53UcKKJCDNY5yM3kf9Y2geM,1557
|
|
282
|
+
pyrogram/methods/utilities/idle.py,sha256=lx4ShloWi-NcrQdaMM12AUaC5BeX5y-WIF-fk0AuyRA,2750
|
|
283
|
+
pyrogram/methods/utilities/remove_handler.py,sha256=3hqUvIbPDMhVQTZMevY0UQz3mxgCTLh_SY3K_em2J44,2210
|
|
284
|
+
pyrogram/methods/utilities/restart.py,sha256=1wgvjNkoruGqatbs2Btnh-LQGukc-pyVg61zkxqk4TU,2294
|
|
285
|
+
pyrogram/methods/utilities/run.py,sha256=CmHh4jiG5sQXtu4FwpkMcvmoSxpgNHKdUttEnwjf1Vg,2857
|
|
286
|
+
pyrogram/methods/utilities/run_sync.py,sha256=Ym7LLIuMHO3blfss1ENWDF-WGf8JACEK4lSVdgz9tH8,1554
|
|
287
|
+
pyrogram/methods/utilities/start.py,sha256=na3-F3YdQbrymekyI4tKc0t7WasWsE-h1SV-4QbZdzM,2366
|
|
288
|
+
pyrogram/methods/utilities/stop.py,sha256=rH1S5flZ8FUhaHH9iTpW2PJELSkRJ51ZwS7SrcaDDoM,2117
|
|
289
|
+
pyrogram/methods/utilities/stop_transmission.py,sha256=79ncKHdNfZMMfdvQcopgAAQRvq_m4T7VgXSJKxtSg1E,1724
|
|
290
|
+
pyrogram/parser/__init__.py,sha256=_edKp9rOvapFltGr6u-SLH62298yqBdKLe128f04GyI,846
|
|
291
|
+
pyrogram/parser/html.py,sha256=oWq5aAQO-Z-wy7ny1MbJxq09ZiDNUHRzhrLeghZslH0,8681
|
|
292
|
+
pyrogram/parser/markdown.py,sha256=qh2vl-63w1qWn0RJpC78dyHH1i4f0rNlwscIFwnfTqo,5770
|
|
293
|
+
pyrogram/parser/parser.py,sha256=QT8UM59HP-vGgce15QCtsG0rh4vP3cU0UyqixmkgBsQ,2077
|
|
294
|
+
pyrogram/parser/utils.py,sha256=XUj5yOSZFBX26vkclDNKWRspsjZlokgYZr-9s1nraOI,1545
|
|
295
|
+
pyrogram/raw/__init__.py,sha256=kJ96Z7VBF3hQvwLWrnHWMWC6LZQCvLb3cTFr1zVgZv4,1040
|
|
296
|
+
pyrogram/raw/all.py,sha256=yQwClp3xPLJZo2OCqjiKSXurJ-OeQrSVjMA4ZAV6kss,137556
|
|
297
|
+
pyrogram/raw/base/__init__.py,sha256=l3Uz57AtKWIsKhP3y9qKbkAoTuvuBCrA1CeYhZBgBTY,18254
|
|
298
|
+
pyrogram/raw/base/access_point_rule.py,sha256=I2II73jyDBhRzOR3bKolhHifrcX5I0H2MF5zwJnvy-E,1987
|
|
299
|
+
pyrogram/raw/base/account_days_ttl.py,sha256=Pt2U89LIbOM_05pqOU2QqWBUcDi1I5N4KpS-ddnTxMg,2197
|
|
300
|
+
pyrogram/raw/base/attach_menu_bot.py,sha256=O-8Z-zLduNzTsxWTqt9dlKxWv_ylw68pIVQa1nedkiw,1975
|
|
301
|
+
pyrogram/raw/base/attach_menu_bot_icon.py,sha256=umrSrzpZRhGz6y8YlhyzyR6iom0IPMS8wIDUruZSYCs,2000
|
|
302
|
+
pyrogram/raw/base/attach_menu_bot_icon_color.py,sha256=bPq96BcgGyfDhhxDKGO7g43yR5DcW8iGI_MbrBbXpFg,2031
|
|
303
|
+
pyrogram/raw/base/attach_menu_bots.py,sha256=7sr60nhGaUpE2W5Qz0VqJy4LanzB4vTVWwDiTzKYMBQ,2279
|
|
304
|
+
pyrogram/raw/base/attach_menu_bots_bot.py,sha256=TyPyiJpKGICZUtYZKC9f6O8QtTqMufP0vH99ySxXwWo,2220
|
|
305
|
+
pyrogram/raw/base/attach_menu_peer_type.py,sha256=c4ZQRsx4QTngCLm9EE1kKT37m0QsFj_MFaLOFDp3tHc,2313
|
|
306
|
+
pyrogram/raw/base/authorization.py,sha256=2kmUsp_3MNgiKORvYrWM5En2ro-_Yg3tSKdxtUiE6qk,2189
|
|
307
|
+
pyrogram/raw/base/auto_download_settings.py,sha256=_C6aoeSQXyFyI9N4TyWKTg7rhAL7l-eE2xlLiKnGDyw,2017
|
|
308
|
+
pyrogram/raw/base/auto_save_exception.py,sha256=k1WKprP2dldF-9S8GR8NsoIfyEFQOSwh87g5lQpH658,1999
|
|
309
|
+
pyrogram/raw/base/auto_save_settings.py,sha256=QQYFEUv1-eIbvFiG2hzkGZHYHohPi4y5eyHj8aWB2Ew,1993
|
|
310
|
+
pyrogram/raw/base/available_effect.py,sha256=buRHft9lutjFKXHBhfnH9tGy85gO2cFv4HlQPZyM6Rw,1986
|
|
311
|
+
pyrogram/raw/base/available_reaction.py,sha256=-i00iY2q3YDmqFID_5G-dDFSHmvDuWzQiwUaK7n-CXU,1998
|
|
312
|
+
pyrogram/raw/base/bad_msg_notification.py,sha256=AzVl9Hf2gOf6aN30o21NiDy8n9FWbTG9RH_JaswTA90,2058
|
|
313
|
+
pyrogram/raw/base/bank_card_open_url.py,sha256=MNXT_K6i__6FSkpnba9B3o6z2l_-6yXyNxGhlfSQjDs,1988
|
|
314
|
+
pyrogram/raw/base/base_theme.py,sha256=WkR2vN4eTfqPe5oHVJrmEL7T3p1iDld1HM1vef00z-8,2181
|
|
315
|
+
pyrogram/raw/base/bind_auth_key_inner.py,sha256=39_JUuHxyBc8AxS_ge12AjtbWISHEyyoadUDwDKe900,1994
|
|
316
|
+
pyrogram/raw/base/birthday.py,sha256=18K4KJVHQb6hbuAHbLWuU_V0u85bP1bhDZSrWR7ivr4,1943
|
|
317
|
+
pyrogram/raw/base/boost.py,sha256=6proNGEZ1NnJ2tS-jQKS-QNMayb3ZW68vvhqZpAa7ms,1925
|
|
318
|
+
pyrogram/raw/base/bot_app.py,sha256=P84HIfNNNkqlovsY4sadfPMgZE4uQoAbWDhn0T7BnIo,1993
|
|
319
|
+
pyrogram/raw/base/bot_app_settings.py,sha256=CTMSfo-zijb3ZJV9JyeopITPft0dB9ECAgyfzt3woIU,1981
|
|
320
|
+
pyrogram/raw/base/bot_business_connection.py,sha256=7iig7ayfsygRbRlC8Flb2bpXMyqWQVopzPyWN3t-8yM,2023
|
|
321
|
+
pyrogram/raw/base/bot_command.py,sha256=Bb7OQKCda7XnazXQ9AyyycnrVtdWP2ZpYvdJNb4bRx8,2170
|
|
322
|
+
pyrogram/raw/base/bot_command_scope.py,sha256=e7vqjxDeVsNzDAqqdVF3UeSXHEXYUHe4SGZ9ycHnwWQ,2422
|
|
323
|
+
pyrogram/raw/base/bot_info.py,sha256=PrhjrG3Gp8AFUyzLHlGZfoSo0B9g__1mw_MKHtGygP8,1938
|
|
324
|
+
pyrogram/raw/base/bot_inline_message.py,sha256=g-fgAzxye8AlafHW4VDAZzibMK_CxP0y6lZXOU-GEus,2476
|
|
325
|
+
pyrogram/raw/base/bot_inline_result.py,sha256=W3hGEQxLiCehzkcBtcKmmgpktcLrK5Dxk6m6hPFQFKc,2054
|
|
326
|
+
pyrogram/raw/base/bot_menu_button.py,sha256=rFeaO2Yxelyz6ifGer0j3zFLu4AHnkDNLKcjRSPh7PU,2326
|
|
327
|
+
pyrogram/raw/base/bot_preview_media.py,sha256=t1ivIviKv-tzo7xInk4oQx8E2Ex_4_DKq6xQqW2Y1wU,2273
|
|
328
|
+
pyrogram/raw/base/bot_verification.py,sha256=OPERAr2WehDNYZD9lalAi0UvQXgmWt_6rMvvUEDcY20,1986
|
|
329
|
+
pyrogram/raw/base/bot_verifier_settings.py,sha256=FJ96ba5Ad4fM6CBmNlX9S5jjvcoJof1G9hD25KXYnhY,2011
|
|
330
|
+
pyrogram/raw/base/broadcast_revenue_balances.py,sha256=hVR94cHgxpTwWw6mxT8BZ1HMxXCn61jsea6N1fZ6nmU,2041
|
|
331
|
+
pyrogram/raw/base/broadcast_revenue_transaction.py,sha256=sIslUW7DVwZizNHUjIa-kpSNjzp5KWPd4GsO1HRAceE,2268
|
|
332
|
+
pyrogram/raw/base/business_away_message.py,sha256=b5WLy8KVHQEgCBfCGvlcnwo15LUv91szFLWTtXCL3e8,2011
|
|
333
|
+
pyrogram/raw/base/business_away_message_schedule.py,sha256=zSOhZRqAj83Fn2drBgsjBSDSckFhg8sbeHmTj-V7bMY,2277
|
|
334
|
+
pyrogram/raw/base/business_bot_recipients.py,sha256=-kZ0ndaEOrjN-u5WMQVQaGKA9QvVNRMu8Gl37uIOLak,2023
|
|
335
|
+
pyrogram/raw/base/business_chat_link.py,sha256=p6JNrw618f7QhdBJdtSB9vywudC-pU77q4hFCvTLEMw,2261
|
|
336
|
+
pyrogram/raw/base/business_greeting_message.py,sha256=RnIAhpQtnWP0ioGIVD94YqXhMVrvmKNE0SYGbNof6Jc,2035
|
|
337
|
+
pyrogram/raw/base/business_intro.py,sha256=yIbWi6_cYj2-8FkWWn8h2iquio1L8XZooEiTBqkqaDg,1974
|
|
338
|
+
pyrogram/raw/base/business_location.py,sha256=XvQ7HR-34k9xNudqvDBYnqZe23CT4W0jrKcU0KThsFs,1992
|
|
339
|
+
pyrogram/raw/base/business_recipients.py,sha256=QcxiZMmxE7tMhG4WUFWnxHnmBclmoaqEuVGJe_vKFLg,2004
|
|
340
|
+
pyrogram/raw/base/business_weekly_open.py,sha256=PllBgVzq74tSkz63WukQpS0QjE2XFFXs1vK3nbm5Th8,2005
|
|
341
|
+
pyrogram/raw/base/business_work_hours.py,sha256=qFzzsa3A1cwUDP88P6lX7vjeK9d5I0OCk49LEqH5Lik,1999
|
|
342
|
+
pyrogram/raw/base/cdn_config.py,sha256=NFNLeQ5NMkao9woiBs0YcECSp5ayj93ns0VjscXCRYA,2162
|
|
343
|
+
pyrogram/raw/base/cdn_public_key.py,sha256=0x1bYqdlI3RPCZKsZFoX174nju8lA_r0tVv_p1agM-w,1969
|
|
344
|
+
pyrogram/raw/base/channel_admin_log_event.py,sha256=HC4jRZ6m6sTjfYHFpajF97BkujfPk0HFf2-QPWotkbY,2018
|
|
345
|
+
pyrogram/raw/base/channel_admin_log_event_action.py,sha256=keOF3jRET66x3P5cfdxjB75UlngO6TlN_Vfn9J_2Kck,7471
|
|
346
|
+
pyrogram/raw/base/channel_admin_log_events_filter.py,sha256=uuvaUYFASoyMZ6REThY1uBlvzrpDNhBunmUmbSCAdaI,2061
|
|
347
|
+
pyrogram/raw/base/channel_location.py,sha256=LMwjNssKJG7NLOAH0E4v6it2_hJL-tSc76VBAjv-tpU,2053
|
|
348
|
+
pyrogram/raw/base/channel_messages_filter.py,sha256=QpzUFjVO01Fe3JHGljD7jMu3JUnVc8a3gfuYRKSexP8,2102
|
|
349
|
+
pyrogram/raw/base/channel_participant.py,sha256=tuvyKgfup9t3_ev_WMkiwxJ-xc9cMsAG5vNlgAwtjDs,2367
|
|
350
|
+
pyrogram/raw/base/channel_participants_filter.py,sha256=Fzre29WGTNvZpdLUt6_Ex2lNNBLRj0_ZypRyP8jQISs,2584
|
|
351
|
+
pyrogram/raw/base/chat.py,sha256=MaNF4aP7PqyMSaQmYrznWg-IlVrWOVf_Ex-rSEYWxQE,2114
|
|
352
|
+
pyrogram/raw/base/chat_admin_rights.py,sha256=UBQTc6S8lrqMW0aZCJRrctFIQPRHd6pUXyMu8oc6F04,1987
|
|
353
|
+
pyrogram/raw/base/chat_admin_with_invites.py,sha256=PBaJAUahjSjaaCwTf7mUDKF0PR4sUEoWYqeohfgWUIA,2018
|
|
354
|
+
pyrogram/raw/base/chat_banned_rights.py,sha256=ZjlsIgCQ0umSW-wpJOulYUmrME5A7ZkagsBi0_iq6fY,1993
|
|
355
|
+
pyrogram/raw/base/chat_full.py,sha256=FfutM3-UEB3XXf6ILaKcOCjbC-QLUi678-oPPmKjdOo,1993
|
|
356
|
+
pyrogram/raw/base/chat_invite.py,sha256=Mwsaena3xAhO7MmnVIsDswCeIYY36DhIjlghKc6UHBU,2290
|
|
357
|
+
pyrogram/raw/base/chat_invite_importer.py,sha256=i7DktjP-neJqZj97KYMCu9O_Ch0w9VuduTWzZZC5C5Y,2005
|
|
358
|
+
pyrogram/raw/base/chat_onlines.py,sha256=7vU9GPdWYIKAYzLObrRzSSaIP9Ru-xh-gx_MGRbXepg,2176
|
|
359
|
+
pyrogram/raw/base/chat_participant.py,sha256=Tj9HpZ0WlvFZwFydLNamlFAHjSfINFB7XawY1zmU-PU,2123
|
|
360
|
+
pyrogram/raw/base/chat_participants.py,sha256=GT4pwtarv7xkT1Fh8I-BNiGO8ErjIjqEjviBecu8R-E,2069
|
|
361
|
+
pyrogram/raw/base/chat_photo.py,sha256=YMG_3EJeYfXRZujXXSloFq3QTNFtJcXw2FRVg-1f87U,2005
|
|
362
|
+
pyrogram/raw/base/chat_reactions.py,sha256=XDklY1CwxX78bUde1cul7lqUtbDASmjs6tZ2TapO-KI,2101
|
|
363
|
+
pyrogram/raw/base/client_dh_inner_data.py,sha256=t9vQyyn02itP5jv4cSotkRRphfiXO8n8RHRr8Xnh0NE,2000
|
|
364
|
+
pyrogram/raw/base/code_settings.py,sha256=JOtxNvlkMzRN2NDZ38AxcF91353zVel5FXHQFPPuTMo,1968
|
|
365
|
+
pyrogram/raw/base/config.py,sha256=ZCoQJCP_ePKYv62t7HBMd2eHrtEZOYuJLZH4Jfj_lbc,2140
|
|
366
|
+
pyrogram/raw/base/connected_bot.py,sha256=V40Hs7m-cFR-5mCJ-he_GoTslHR2l72EzXGnnCK_U7I,1968
|
|
367
|
+
pyrogram/raw/base/connected_bot_star_ref.py,sha256=fokqmAa6jxEeStqwdNo9kFgV6ODbaofgXNMODGJVhys,2012
|
|
368
|
+
pyrogram/raw/base/contact.py,sha256=_davzjK3tuGeRpwMMYLlHXEUUqsA9EsXBNGKNPwLiPM,1937
|
|
369
|
+
pyrogram/raw/base/contact_birthday.py,sha256=KjgZPB56KfimW6YoAyjbQieM9h2gImlorx2dylZmfg0,1986
|
|
370
|
+
pyrogram/raw/base/contact_status.py,sha256=NlHSk45qxqzzqdPAyIGyL8rqzyNDcrSAwB_sZPMOz5o,2189
|
|
371
|
+
pyrogram/raw/base/data_json.py,sha256=dOWGtLEB6UydbqIA1X_z_ipu2jKUHUFuyhb6iJUhPF4,2239
|
|
372
|
+
pyrogram/raw/base/dc_option.py,sha256=Fgwnu7y87mjk6XjmETe-iJQRCY1uFsv6VuhTdYUOsjg,1944
|
|
373
|
+
pyrogram/raw/base/default_history_ttl.py,sha256=NlrkmakLYoZqrRLhuoG2xEH4gpOgzRMBcG0_CPgsTiU,2223
|
|
374
|
+
pyrogram/raw/base/destroy_auth_key_res.py,sha256=Sj7X3G9faxZ07ZDWkTiOW7_ZCKYFTTbFk4Kv4q7z-pU,2332
|
|
375
|
+
pyrogram/raw/base/destroy_session_res.py,sha256=x8UiL2KWb0LB5J1zhtAHW2PmajeqRLguQUZGgECS2nE,2269
|
|
376
|
+
pyrogram/raw/base/dialog.py,sha256=XH7RsuK91QCkHFl8Sz1Pv0Ezs1GtHvL0L7b8znq0Nps,1982
|
|
377
|
+
pyrogram/raw/base/dialog_filter.py,sha256=vFTdA4TMTRNv6isvEcMuvT3CDgZ3mTKRGKIud65uuyI,2099
|
|
378
|
+
pyrogram/raw/base/dialog_filter_suggested.py,sha256=Z0z_yWbZyZsH_-lM-cgI0blr_5Fohd_lMkKIzttcaz8,2252
|
|
379
|
+
pyrogram/raw/base/dialog_peer.py,sha256=ENKJGax-vp9pNm8n6snxBfLt-4zIy__kbyCkMhQiWis,2239
|
|
380
|
+
pyrogram/raw/base/document.py,sha256=YEtUSwXhGB12rTguthseU-oA6BieTjyNT1rvdW8rckk,2333
|
|
381
|
+
pyrogram/raw/base/document_attribute.py,sha256=70_lFG7SoQdFoiqQ_xDCZBzANmy3ZqjjWZ_HwH_pcdc,2547
|
|
382
|
+
pyrogram/raw/base/draft_message.py,sha256=PlmwuSP2DFdkpyKMP_XumsSMDCCv_bEqxO8BhkFMRaU,2029
|
|
383
|
+
pyrogram/raw/base/email_verification.py,sha256=pKqorOvojd1Zvm5SDgEIgX0dMpoyhdHto62m4Wyc85U,2149
|
|
384
|
+
pyrogram/raw/base/email_verify_purpose.py,sha256=7EBUuRVN3hxBE600PliPswUVTWtoHMW6jsF1-UM3Bxc,2188
|
|
385
|
+
pyrogram/raw/base/emoji_group.py,sha256=qDus-fDc6iQH5I2MQWXm1M_VHcp4LbntMjNnHJmoNzo,2079
|
|
386
|
+
pyrogram/raw/base/emoji_keyword.py,sha256=lle98WqCSVEnNUftqDuy1QbARcmfiNezAm3EpRIRtVg,2033
|
|
387
|
+
pyrogram/raw/base/emoji_keywords_difference.py,sha256=NMu_QE69AwClTFRowkHCUfRroPBRVuy1Mac46mcW6k8,2305
|
|
388
|
+
pyrogram/raw/base/emoji_language.py,sha256=LXKWgPuqTddEbCDV64LbIBB4SY0vt_higPmjjTgo3cY,2203
|
|
389
|
+
pyrogram/raw/base/emoji_list.py,sha256=SmkG30Juk0bJlFWeQFQuZ-J8EzdAJoMG84Z0CdFnpS4,2439
|
|
390
|
+
pyrogram/raw/base/emoji_status.py,sha256=EhcgRGYXuHpJ0HkimNh7MC6e6LmJKxSjeVt4BW4HMOo,2171
|
|
391
|
+
pyrogram/raw/base/emoji_url.py,sha256=jq3IN5-b583yqxhj2yo6-s2hypUbBEMUzLD9T79mdsU,2159
|
|
392
|
+
pyrogram/raw/base/encrypted_chat.py,sha256=aLu-sQQlfRxEARFlgp-iPkTEvvFP3ycId2Ahe-DH1Dk,2504
|
|
393
|
+
pyrogram/raw/base/encrypted_file.py,sha256=FqCiM-rub9pYfZCLcF9qgamOXvwBJi9518uHYC31x8U,2260
|
|
394
|
+
pyrogram/raw/base/encrypted_message.py,sha256=TTvwiW21p1y39RSn_vgyCdBSgn4bcbWw0I95ldaFVOE,2065
|
|
395
|
+
pyrogram/raw/base/exported_chat_invite.py,sha256=NchK1AwARS8abnNBSyOD7ihr7dKEOc2W9OY9KS7Bh34,2308
|
|
396
|
+
pyrogram/raw/base/exported_chatlist_invite.py,sha256=ndnmXAr4ELtcqmFDzZzKUk11511zh4gfu8l9FIdmehw,2252
|
|
397
|
+
pyrogram/raw/base/exported_contact_token.py,sha256=T0Qo3i5f306yaR2b9hOZqB4T1keuqooYy3UEZSK8BNs,2239
|
|
398
|
+
pyrogram/raw/base/exported_message_link.py,sha256=_6zZGoQ152a_eiVFdv09B3PMI5qNoISYyGOhuCYODF8,2232
|
|
399
|
+
pyrogram/raw/base/exported_story_link.py,sha256=Uv4DAsmPKBqthMPpt1DFW-nGBhvoBNeSyZ8G8wOtdak,2217
|
|
400
|
+
pyrogram/raw/base/fact_check.py,sha256=eQJ0wAviPBZySQ342HaGuoG89ZX1ELoMFwrKPL7lfDY,2166
|
|
401
|
+
pyrogram/raw/base/file_hash.py,sha256=xUXHrCKWaGsGZS79nt7WnANN6TWP0PXfCUEskk9lPkw,2233
|
|
402
|
+
pyrogram/raw/base/folder.py,sha256=hCRBaER0vNpKzRkIU-xP2Ow72scb4eXD_68kxP9t1C8,1931
|
|
403
|
+
pyrogram/raw/base/folder_peer.py,sha256=9ys9nol8VVhyg_cgCDc5FFh_DiITI-s4p8T4iRaKHcU,1956
|
|
404
|
+
pyrogram/raw/base/forum_topic.py,sha256=BypfjvtUUUNjoFNd2xuynGUWz7k6BU0FTW6vVedC80c,2017
|
|
405
|
+
pyrogram/raw/base/found_story.py,sha256=XBeJr9sKwe378xGDujrkZMSQAf_RfSDslfCyEY8wLLI,1956
|
|
406
|
+
pyrogram/raw/base/game.py,sha256=O9_ZNxpMSy5DgV62_4gqCva_V3eT_OGA4-4gsOBd8vY,1919
|
|
407
|
+
pyrogram/raw/base/geo_point.py,sha256=NiW3kqj2uWx0CN9JV7K2z1gJ4rdwnOw5vaAtkE9N2FY,1997
|
|
408
|
+
pyrogram/raw/base/geo_point_address.py,sha256=4QcU3yeDwRtYi80p-OAa7UnPDdzxrmNbkjuZqls3c6o,1987
|
|
409
|
+
pyrogram/raw/base/global_privacy_settings.py,sha256=mEcW02LokQcSOqrsuvpuARWjMFDUgGuqy_v023gl7UU,2297
|
|
410
|
+
pyrogram/raw/base/group_call.py,sha256=vddpuaKWMISvPhk_KcGkkkTMF6P_fm7w4RsS-0abg0A,2013
|
|
411
|
+
pyrogram/raw/base/group_call_participant.py,sha256=ntSy1AwRs-9Xs4h0hG1W3n-Xafe5Q6noDQBrnAiRqlM,2017
|
|
412
|
+
pyrogram/raw/base/group_call_participant_video.py,sha256=4K44IjOYg3uLYFnwW9OaAoC6Vy-gmrFG3YXuZ2-z9os,2048
|
|
413
|
+
pyrogram/raw/base/group_call_participant_video_source_group.py,sha256=xQfWTKmWyI6qbdx5V9xszhLLyW0k1fa8LWmN_atRHx8,2116
|
|
414
|
+
pyrogram/raw/base/group_call_stream_channel.py,sha256=GY9UoQfTMzKk1mw1vnleKTKl-6gevG2qLrwtKV08IpM,2030
|
|
415
|
+
pyrogram/raw/base/high_score.py,sha256=NFItEXHpJkHLqdY8Hc-AjOYPBYlyrjWkEyZ-2Eq-8ww,1950
|
|
416
|
+
pyrogram/raw/base/http_wait.py,sha256=r6bB1KCXSkaeEnFRnkW69MiyVFVZ6kfHFKLGgS7JXgg,1944
|
|
417
|
+
pyrogram/raw/base/imported_contact.py,sha256=ubitpFWTA7GbA3W-tW3IEZ9EYEawwAH90cybZ9ebcpE,1986
|
|
418
|
+
pyrogram/raw/base/inline_bot_switch_pm.py,sha256=r1tFBkgjIHxoF9aJ7hf1p_G3aViy_puEqVm_JSR-iIA,2000
|
|
419
|
+
pyrogram/raw/base/inline_bot_web_view.py,sha256=yb_nvCLQFmizKx7bmYbgzwVn6KhEH89i6L8qGik238Y,1994
|
|
420
|
+
pyrogram/raw/base/inline_query_peer_type.py,sha256=RKfv7F5ttXmwSFWgWHGIUgiBtLuiKMabQHFJ4GD4iV4,2409
|
|
421
|
+
pyrogram/raw/base/input_app_event.py,sha256=pD1L7yWpV_fPoSIaU0bv5961B5U59QVdndCuJ01ovL4,1975
|
|
422
|
+
pyrogram/raw/base/input_bot_app.py,sha256=-Gus8go5HNBnzy9tbavcdj-ynNwXc4xfSYm3Cdw5SCU,2034
|
|
423
|
+
pyrogram/raw/base/input_bot_inline_message.py,sha256=hTdy6FGWOQl3icTi3dYXx-iIW5MMsY6DonODgpYQORA,2643
|
|
424
|
+
pyrogram/raw/base/input_bot_inline_message_id.py,sha256=aWFzyveskjhbMLcvLq6VaPjAuSjd7TVyXadHiHoTXn0,2114
|
|
425
|
+
pyrogram/raw/base/input_bot_inline_result.py,sha256=82DJLbw1GhvwmmncSb3nFuDoQ1GBNZ9O6xatRcDxHE0,2251
|
|
426
|
+
pyrogram/raw/base/input_business_away_message.py,sha256=j_xb1W2VLwd5ESsbG2gWndElzy6pyhL5YKCcILeVvQg,2042
|
|
427
|
+
pyrogram/raw/base/input_business_bot_recipients.py,sha256=3Q0OiC_tgJqXEiUpvd4D3kjGzZDkDt_1Pk7QBcrLk40,2054
|
|
428
|
+
pyrogram/raw/base/input_business_chat_link.py,sha256=RSDa65noKqqVLFEuKzW6KxHjCXsO3jmJtQ4819nJw3g,2024
|
|
429
|
+
pyrogram/raw/base/input_business_greeting_message.py,sha256=B6uEr5fw7JZ8vl9B0xcF1-xYSe62xUSMMUWm6u6L1QI,2066
|
|
430
|
+
pyrogram/raw/base/input_business_intro.py,sha256=3OdYQTNz2XKnFwF76IbJmNHw101PuRftetBOYkPBVrE,2005
|
|
431
|
+
pyrogram/raw/base/input_business_recipients.py,sha256=3DTYvSNdC31CL7qzwtTdnePzeMOr8X0y4R6KTYunN8s,2035
|
|
432
|
+
pyrogram/raw/base/input_channel.py,sha256=nxg2XQFo1KqB9MUNxljxkIFgvD-jDYG_xm14iMBa6CM,2101
|
|
433
|
+
pyrogram/raw/base/input_chat_photo.py,sha256=p0oJegivTkOn1efGB0WmYCk2JskI9jErvEADPj4uy-Q,2116
|
|
434
|
+
pyrogram/raw/base/input_chatlist.py,sha256=2z_uWEtjWK6d-Az9qzlGv8Lz7BTESy-8Cylj5AYeF9s,1998
|
|
435
|
+
pyrogram/raw/base/input_check_password_srp.py,sha256=Zs-oEQTaEYI0HI-hLnOwyxYACIn7L0AhsIpwoQ4861g,2097
|
|
436
|
+
pyrogram/raw/base/input_client_proxy.py,sha256=OdbDXh9puWk4w9dk54Lmfw2vf3kKD4XqzuAH7D4WgVs,1993
|
|
437
|
+
pyrogram/raw/base/input_collectible.py,sha256=Rz6VuP6TcjMq7uyGATltUjDz1IksgGLJPNAtLSb1LTA,2077
|
|
438
|
+
pyrogram/raw/base/input_contact.py,sha256=GzKejEHdCvMsdDvASl63lfJNvnXThgh8CqXqFKHFzvE,1978
|
|
439
|
+
pyrogram/raw/base/input_dialog_peer.py,sha256=CEWAM0OJvl6DmS7vnXKm4tdi6yBIRdpYSnc25kD5ehw,2056
|
|
440
|
+
pyrogram/raw/base/input_document.py,sha256=ssjMEnE2UkaYPtMtJerrUN2zFrqRwRCVUmhR3ZfmwaE,2037
|
|
441
|
+
pyrogram/raw/base/input_encrypted_chat.py,sha256=JVnoQWclyURNSqKOO2GTqSBmcLo9dkK58lj9IHYn7lY,2005
|
|
442
|
+
pyrogram/raw/base/input_encrypted_file.py,sha256=w6c_6w7atq1VWbRaHaJrQEvR2gfDrDJzbk3Q1G1CJMg,2240
|
|
443
|
+
pyrogram/raw/base/input_file.py,sha256=i7rlDFQej3F6yRohyL06Fi-6GHIoXhmEAwkBM34hrlI,2071
|
|
444
|
+
pyrogram/raw/base/input_file_location.py,sha256=tkLgLDUr5U2_3tDOKtswj8fvnoK898roUDznXJQvbhI,2663
|
|
445
|
+
pyrogram/raw/base/input_folder_peer.py,sha256=MDdOWaa4hXG9D43OUiE5ogKA34FHJav-dsCLhwRbqx4,1987
|
|
446
|
+
pyrogram/raw/base/input_game.py,sha256=6cKOJiYtAk4MGO-AMqYjmBiCVSGkfiLOoqDXih_V4lw,2017
|
|
447
|
+
pyrogram/raw/base/input_geo_point.py,sha256=Fjpk6XIP7F2j3Va2LMpIfiKOGZP1Ret2Mmu1yoHz45A,2038
|
|
448
|
+
pyrogram/raw/base/input_group_call.py,sha256=MaU2Pd08Bc3wtLZ6526xQju9HOmN4cp4RLJO9H-NV8w,1981
|
|
449
|
+
pyrogram/raw/base/input_invoice.py,sha256=uUwsghIwBTGe5RHb7UjPMtv9etKXX0aIicxJLwwBO40,2503
|
|
450
|
+
pyrogram/raw/base/input_media.py,sha256=k4JuYkS7uRbtkJpVWTZuklEn3iClVRyjA9ApkY-UEJQ,3026
|
|
451
|
+
pyrogram/raw/base/input_message.py,sha256=w0nbaPVS-6qyhUf6QqCJODijGE4PZfC7-ij3qXYVNLo,2175
|
|
452
|
+
pyrogram/raw/base/input_notify_peer.py,sha256=R7b_iIiY1iniEMspxwD22ehpsFhN3rDd_edIQCiwOaM,2240
|
|
453
|
+
pyrogram/raw/base/input_payment_credentials.py,sha256=Od-3KYipS77EsQFLgOS4FrGCKuqzhpBvVE8bXQ-Stgc,2296
|
|
454
|
+
pyrogram/raw/base/input_peer.py,sha256=Q5hAVWDowWYsmjdsgPMUiJ3mdRjzEN9roFiOtGw3sQs,2329
|
|
455
|
+
pyrogram/raw/base/input_peer_notify_settings.py,sha256=kaELxFBZ3daByTnOy6h1KqXRIsO5CbdVFYhNPFAGbV8,2036
|
|
456
|
+
pyrogram/raw/base/input_phone_call.py,sha256=WSoI7l9lSQMwsOr9yPRcAAuUVHFW77mbnUoe4jFx8mk,1981
|
|
457
|
+
pyrogram/raw/base/input_photo.py,sha256=oAEaxDQcDCEL5_nVuGyMQt5Ck4i6KVqivZ2pdYi6XCk,2013
|
|
458
|
+
pyrogram/raw/base/input_privacy_key.py,sha256=qkgCzaMQXk6q4LzkJXDPhz7ob71deZiFdth8c1UtykI,2861
|
|
459
|
+
pyrogram/raw/base/input_privacy_rule.py,sha256=CX0twCoZCWdaVm2-ES-fRRV6Qm_Jl9CGxX_7bhszJgQ,2989
|
|
460
|
+
pyrogram/raw/base/input_quick_reply_shortcut.py,sha256=7kxrqI0M9xvFL7O1A4xDkNQOw9p1MXXcw1EeHG05DZo,2113
|
|
461
|
+
pyrogram/raw/base/input_reply_to.py,sha256=ckeHI6mOzQOnw9Zwd8-GOQCVSJLUu0F1hFhZOaopw3s,2044
|
|
462
|
+
pyrogram/raw/base/input_saved_star_gift.py,sha256=S9bwtl5gBinJ2uFmgV6YKbxHryY1x2UcNQM0AtAHOKQ,2085
|
|
463
|
+
pyrogram/raw/base/input_secure_file.py,sha256=OVPVR_oGIKVtkO7SWvD2Kh0K00rc2SVuZeDSH9p6Nrc,2060
|
|
464
|
+
pyrogram/raw/base/input_secure_value.py,sha256=bevB_BtPcq997uIzw9hUb8K59qAPGVkqjDULUgaQ0YE,1993
|
|
465
|
+
pyrogram/raw/base/input_single_media.py,sha256=aLekpEy487HWnn7dnERFTwVkntgEDurURE0vZ-lGHPk,1993
|
|
466
|
+
pyrogram/raw/base/input_stars_transaction.py,sha256=4LAw_TmYLLAjfD5Jx8TJz291sP6gR7_1yxpffbQzeyc,2023
|
|
467
|
+
pyrogram/raw/base/input_sticker_set.py,sha256=h3vRXarfWilSSLoGDMVj2b0NqzGbAXWT6IKFD4z1StU,2867
|
|
468
|
+
pyrogram/raw/base/input_sticker_set_item.py,sha256=qEKDrpSsN5Qs99hzCSCmpuo9-CgWNRgclrTsSbPz7EY,2012
|
|
469
|
+
pyrogram/raw/base/input_stickered_media.py,sha256=EIVV1i6Zrfz7qrxLx35YvmD0ASHImEcSa9zohtObNtg,2102
|
|
470
|
+
pyrogram/raw/base/input_store_payment_purpose.py,sha256=Sz5pluDqFUWohgxreucT7ZsBCN28BZ9D6p9tHIMdWE4,2573
|
|
471
|
+
pyrogram/raw/base/input_theme.py,sha256=Vd60PO-1G2gLU3M1K-TytW_7qyG2TLs7L8ow_lUcGY0,2011
|
|
472
|
+
pyrogram/raw/base/input_theme_settings.py,sha256=M7V7yxZZzm7jz4jS6DhcYYIBnDJsBbQ-HOMeUZ_EmmA,2005
|
|
473
|
+
pyrogram/raw/base/input_user.py,sha256=gM4ZKKGjmM5JXJJBdGK6p8xMNAZx_MYEsSJXs7YaTLU,2123
|
|
474
|
+
pyrogram/raw/base/input_wall_paper.py,sha256=4c3577RPYxd6MQYLVx2G3zpFtDN1tswr6iIxILOe-Dw,2110
|
|
475
|
+
pyrogram/raw/base/input_web_document.py,sha256=EFT_I3nSk5ONyi8-F_-hTY-qvyoSBPXrMEUY9KQIsDE,1993
|
|
476
|
+
pyrogram/raw/base/input_web_file_location.py,sha256=xcDYb48HsSe9sDYgWlxBFFJilJraBoYjNQKXJou_VvE,2197
|
|
477
|
+
pyrogram/raw/base/invoice.py,sha256=IVoS87mW_DZpShJyJ3bNGiIu7YCZDYv5kavRu0jgSdw,1937
|
|
478
|
+
pyrogram/raw/base/ip_port.py,sha256=tlFZtfsvz76s7q43gPF0x_BpKxX93XHQQzoNG__F7dw,1983
|
|
479
|
+
pyrogram/raw/base/json_object_value.py,sha256=qHL8kWQr0gct-3yuNs9zgehuei-qplGAUo-SEqlTEJE,1987
|
|
480
|
+
pyrogram/raw/base/json_value.py,sha256=gq3D68LqYWPQU_OoKVJo1MfDC0bxr8xlKuCxz4XqTDg,2173
|
|
481
|
+
pyrogram/raw/base/keyboard_button.py,sha256=ZxhWOYPg5ZrQnnxw2P-EhEWqp8tz6G9PCqM5_LlKhow,3236
|
|
482
|
+
pyrogram/raw/base/keyboard_button_row.py,sha256=9GSkTnqNuTsV64oxNFxBb359brAj-W9SlAYZ8nUaE-0,1999
|
|
483
|
+
pyrogram/raw/base/labeled_price.py,sha256=KkdcK_ZoAlm7KuZ-fJXyQxQmqpeA1YEGXhJOBKrecIc,1968
|
|
484
|
+
pyrogram/raw/base/lang_pack_difference.py,sha256=Xa6vxSyw2bj5sPbIaVXQZkrBqEJt-SJqDQN_tejyF_Y,2257
|
|
485
|
+
pyrogram/raw/base/lang_pack_language.py,sha256=BcsuJXGpmBkAe6g6y-9xKu6_07HQJOITApQP6a804XU,2244
|
|
486
|
+
pyrogram/raw/base/lang_pack_string.py,sha256=6JcA3CTBJRgBo9LqncUI-APxzzF1EWcNfyQ9bFlHbS4,2338
|
|
487
|
+
pyrogram/raw/base/mask_coords.py,sha256=FtYDHg40QiD7Gs0_45j7pHxDl1NE9SCChNU5ED-Feq4,1956
|
|
488
|
+
pyrogram/raw/base/media_area.py,sha256=GN95Y4hZLh8Y0wxaSlFpckT8bsw02wdq_db_HKTmd8E,2473
|
|
489
|
+
pyrogram/raw/base/media_area_coordinates.py,sha256=ipa3hnf5SsNYBJqxU89WNnnMrP2Y112yNuTYgSZpbz0,2017
|
|
490
|
+
pyrogram/raw/base/message.py,sha256=KBRlsMNwg9_okQDq6f0aUAsgLF1y8k6UFBfkneBdwo4,2042
|
|
491
|
+
pyrogram/raw/base/message_action.py,sha256=kmK5mRzzqEbWfT2F5vpCLhDO8PJAARldBn9Y0Kuy56Q,5680
|
|
492
|
+
pyrogram/raw/base/message_entity.py,sha256=Je7A0r0OP_dCouX0GQk8sNfpEx6ZipixF-1bMKxEyAc,3322
|
|
493
|
+
pyrogram/raw/base/message_extended_media.py,sha256=FfdeYEDbDNkNMbZGFfJAZR4sku-ZNBbHZ8LVltesO4M,2098
|
|
494
|
+
pyrogram/raw/base/message_fwd_header.py,sha256=U4-I8FgPLA-2YxJFfxxSKENEFwGcckxXC4vO1RrK8tE,1993
|
|
495
|
+
pyrogram/raw/base/message_media.py,sha256=YhCu0aH4K2I_tlIkj6OGfuSmAMmLIj78XUfZx4UDsV0,3256
|
|
496
|
+
pyrogram/raw/base/message_peer_reaction.py,sha256=6Q8WvbMid8GRheN5srAVT4HIiTeH8J36T_wQKMR4ILY,2011
|
|
497
|
+
pyrogram/raw/base/message_peer_vote.py,sha256=dkkegfU9p98qr-b-KVr0bApfN5dOoji54jL8Zj3dFjI,2138
|
|
498
|
+
pyrogram/raw/base/message_range.py,sha256=1wf8PPQEDZvKVyB-NrK9RxuH9PLCQO98eiE-oK-J07Y,2186
|
|
499
|
+
pyrogram/raw/base/message_reactions.py,sha256=MFC6oNbKokIE_tF9Pb0vt3DVIykVFcmbZz-A5VcPqkQ,1992
|
|
500
|
+
pyrogram/raw/base/message_reactor.py,sha256=A2ENI-v8dq0yCLWXjHQBGjxh5xcoVRcdAUcDzkea6Q4,1980
|
|
501
|
+
pyrogram/raw/base/message_replies.py,sha256=najSD7mHRaxdYBBeUFChROMECbsTA8Y7jzUsmrUfAZc,1980
|
|
502
|
+
pyrogram/raw/base/message_reply_header.py,sha256=779g22hwz2Y1iDmLuVUh4GKPkpGMGXRQPR62YGcczWE,2078
|
|
503
|
+
pyrogram/raw/base/message_report_option.py,sha256=JYZnkaV3gqU_LEKpS-QDKw9MXaJKc85_ETXGAEfAIY8,2011
|
|
504
|
+
pyrogram/raw/base/message_views.py,sha256=GiHg4yVoDhK-UQ_p9_YicKVuPXXpe1FduNB5jBJQ8Tw,1968
|
|
505
|
+
pyrogram/raw/base/messages_filter.py,sha256=bBgOgZ-4DhM4WI0ed6ajjblrXu3rme8l3-npRiyG2g8,3250
|
|
506
|
+
pyrogram/raw/base/missing_invitee.py,sha256=65CF4r9_Fu-iU2XuI6Y4LxNUCgKIc1dR7Nc1woy4vHg,1980
|
|
507
|
+
pyrogram/raw/base/msg_detailed_info.py,sha256=brIA5lzo8G_Uh0HqPiCgr6WyRsscTJycLxQoGSBI6kk,2050
|
|
508
|
+
pyrogram/raw/base/msg_resend_req.py,sha256=dwD7ssOJ1knFfJOe-3H-V-83g4dGRybJ9gUlE_0dbe4,2026
|
|
509
|
+
pyrogram/raw/base/msgs_ack.py,sha256=JiPyK8_eLl37DM5l765ZsczDokhrSxCQ3vREUtQvsWM,1938
|
|
510
|
+
pyrogram/raw/base/msgs_all_info.py,sha256=3Gqinbodd-lz9oKOLA8fuOV_3N1Cl321nwT6nK8K2TU,1963
|
|
511
|
+
pyrogram/raw/base/msgs_state_info.py,sha256=nUsZ1n0JSmFI1J5iWqVStviBCkfsntrk0dv635HpGtk,1975
|
|
512
|
+
pyrogram/raw/base/msgs_state_req.py,sha256=h0ieTFpxUQQYDewIGENuX6P10I2CAljvGZboE9_EHuU,1969
|
|
513
|
+
pyrogram/raw/base/my_boost.py,sha256=wpL4p9ZWlf-sCwYOPmo1CK8tlhGkfKMPD905cNAjOjs,1938
|
|
514
|
+
pyrogram/raw/base/nearest_dc.py,sha256=rJquXH_vLqGLKONKfZzxrhUgo_3b3AZy7usMJTNmfaQ,2162
|
|
515
|
+
pyrogram/raw/base/new_session.py,sha256=yI9OTs_2pi_v-fD5pQ4K5msjrpcsFuG9DgrWP5mFEVY,1970
|
|
516
|
+
pyrogram/raw/base/notification_sound.py,sha256=C0hI3kIoNWvszWLOcbHNue8OsO_GJaRqfYqMVwOEqpM,2227
|
|
517
|
+
pyrogram/raw/base/notify_peer.py,sha256=PHvtKO-k-Law4T0y05Gw0ju1UX-xS2dRiIL8to9CKCI,2169
|
|
518
|
+
pyrogram/raw/base/outbox_read_date.py,sha256=X8aaSNF_AT78BatkLsDDphV7q-kcjVE8k6W6hL5Pu5o,2202
|
|
519
|
+
pyrogram/raw/base/page.py,sha256=9Ld2HM-i83z9Rm-NqzhXTEr7U2j_Mhzzo8ugAhyWx4k,1919
|
|
520
|
+
pyrogram/raw/base/page_block.py,sha256=gvBdEQGTcLij9ahMmZWWqFHd5enaBv_kATVSmyVewU4,3616
|
|
521
|
+
pyrogram/raw/base/page_caption.py,sha256=O_KQ5W-pcFULjS-Cs6D4uOlvwVFiE-QxHC58yI5O_CU,1962
|
|
522
|
+
pyrogram/raw/base/page_list_item.py,sha256=_lrHHvHXzWipjnPpwiHaiGB5J3N5fzHE5eLdoMsMkS4,2040
|
|
523
|
+
pyrogram/raw/base/page_list_ordered_item.py,sha256=WLv_UA8wXm_P9PhsznDOlCL0jXuW032puxWc2ed-FeI,2097
|
|
524
|
+
pyrogram/raw/base/page_related_article.py,sha256=sCj2_2B01wrdbRDkRsnCrJYQI08oavV9cob5PnOBVlo,2005
|
|
525
|
+
pyrogram/raw/base/page_table_cell.py,sha256=BFus4b9H3UwEtZGH1_wTNHuSNvD-QwR-ujVRKUA2tSA,1975
|
|
526
|
+
pyrogram/raw/base/page_table_row.py,sha256=qp1zUB63fCq_fD4ndcuu-dmVUQNj76FApagIOeAgo9A,1969
|
|
527
|
+
pyrogram/raw/base/password_kdf_algo.py,sha256=IMfKAdsXPY0Z9rkEs4Vl2BcNsiMCJ-QuxNVfOmM4pzk,2158
|
|
528
|
+
pyrogram/raw/base/payment_charge.py,sha256=ZrHN8X3Wyrk1vAwZHLgMURGp_nFcaMSl3rKypZD6e_I,1974
|
|
529
|
+
pyrogram/raw/base/payment_form_method.py,sha256=R0P9YQrgH0jGj3mweBf5hSnc5xdw3ujq82xdFXbUdDA,1999
|
|
530
|
+
pyrogram/raw/base/payment_requested_info.py,sha256=puLdrMH1z6OjAv_IaXs1uFKOzQgFO63TFEqCPruqfpc,2017
|
|
531
|
+
pyrogram/raw/base/payment_saved_credentials.py,sha256=NaXzEEMHGiiVYEU3KOqTGJsb0eYGvvJRxZXSZHVXKIg,2043
|
|
532
|
+
pyrogram/raw/base/peer.py,sha256=fEWNtYg4AV_xD4gGegJWLDNYgIA_3-X3TESMYZ571Ro,2250
|
|
533
|
+
pyrogram/raw/base/peer_blocked.py,sha256=m7ZSFaxCCpoNjTh2QJPkMcCCsRgfgCqpbs9wbxtK6tY,1962
|
|
534
|
+
pyrogram/raw/base/peer_color.py,sha256=YBVa5FC_Yf-kEAu_BfF5EpfYGRfe57YFMAUm_umXG0E,1950
|
|
535
|
+
pyrogram/raw/base/peer_located.py,sha256=KBPCh99AdjfKbx91bzL-bLxk8WXseOKp8nKGlER10NU,2019
|
|
536
|
+
pyrogram/raw/base/peer_notify_settings.py,sha256=4woHRm2gGqjbrttDiTFPLq8LVKFEjdMmZbHQ7UzX7zA,2225
|
|
537
|
+
pyrogram/raw/base/peer_settings.py,sha256=2v8a-egcblDtGPPQBTcY_GzkaTbEr2QxAVhWjM4t-G4,1968
|
|
538
|
+
pyrogram/raw/base/peer_stories.py,sha256=zkDUwzqhJeiUdES9RQ-8N8EubLHVCRmtyMaQED0cRmw,1962
|
|
539
|
+
pyrogram/raw/base/phone_call.py,sha256=ce1Xz4BRDHE-qhKM4FMbfN77hNbBAjZR_T6m8q8e5ZQ,2247
|
|
540
|
+
pyrogram/raw/base/phone_call_discard_reason.py,sha256=lBBI3ckzQnuvNEgf263Ftk_tc9yAMY5txXo8lrGfyaA,2391
|
|
541
|
+
pyrogram/raw/base/phone_call_protocol.py,sha256=YETdCYsu5oqbiiCIcKzt_-KDvbld9UKuCNyZqwiD0G4,1999
|
|
542
|
+
pyrogram/raw/base/phone_connection.py,sha256=TfyAHO-byCpP0y3fR3kr7EjYPONmo2TCZb34WLJGHdw,2055
|
|
543
|
+
pyrogram/raw/base/photo.py,sha256=WBRukew8vHGQqnO34VUlZ7EcETDypex52suxxx2pOVQ,1972
|
|
544
|
+
pyrogram/raw/base/photo_size.py,sha256=4d1mNDEdeyNF1q6nj_mfFVHp4hYvIjOxNH5jFWOLyNk,2239
|
|
545
|
+
pyrogram/raw/base/poll.py,sha256=nIE-WSJnH_69PTZXG7oHdqxbGIO-M2UBNKYGRVMK_14,1919
|
|
546
|
+
pyrogram/raw/base/poll_answer.py,sha256=94pIxTBYmniHNNw-fqqEnDCl0ymCd48bMnrPQ1X-gRQ,1956
|
|
547
|
+
pyrogram/raw/base/poll_answer_voters.py,sha256=YsUCjXDgo6DeOV9z1XiqbQ3zGTARo6MRv6fqPjx5_Uo,1993
|
|
548
|
+
pyrogram/raw/base/poll_results.py,sha256=W7mxMFjxr6i46WkhvNT3HlfhQXQ4QmKt2k4uuqrBt6I,1962
|
|
549
|
+
pyrogram/raw/base/pong.py,sha256=02zxSnrwofWRAopWylIE-rUxMJzdFs_BNqcVasGS3v0,2152
|
|
550
|
+
pyrogram/raw/base/popular_contact.py,sha256=tw5p7CY8XPRVNbeLMglc819fMfayan5GJxkl5isHcIA,1980
|
|
551
|
+
pyrogram/raw/base/post_address.py,sha256=v_glZDtpxSuMTDWGRRjxbIMK-DAhI-eXZY6SEjA5epA,1962
|
|
552
|
+
pyrogram/raw/base/post_interaction_counters.py,sha256=k70Kl04zFFMTkv8WvvOJ_Dgpg6HyPn4jQNbNy1tyxWQ,2132
|
|
553
|
+
pyrogram/raw/base/pq_inner_data.py,sha256=xXngHdZ7zrS-7RKemp_I5tZvrAGZV7PygNZ86RyGb-c,2132
|
|
554
|
+
pyrogram/raw/base/premium_gift_code_option.py,sha256=tSSablgyvVA5VBwkcybwiDWn5CTYebLQEHcPtGsghqk,2253
|
|
555
|
+
pyrogram/raw/base/premium_gift_option.py,sha256=Q3HwkCtC8BtdSEw3dTgfR2ly1zXBZ2U50Oz7jLa9n9o,1999
|
|
556
|
+
pyrogram/raw/base/premium_subscription_option.py,sha256=TV2c2e9F9QvLkSVn1-pDiU6Rz5dFE2PsqMoNVB1LvA8,2047
|
|
557
|
+
pyrogram/raw/base/prepaid_giveaway.py,sha256=nfWULOp_Ax45DfMYkmTpalxCHGkA4rgYrKaXjDmEfEA,2053
|
|
558
|
+
pyrogram/raw/base/privacy_key.py,sha256=6f0h4YBdij-4zuUlSQJbIPSVPxV5hjONtX3iHM5j0OI,2720
|
|
559
|
+
pyrogram/raw/base/privacy_rule.py,sha256=53uiyWqyi8WcuukXICD1aFliVKFpU-AsKZAYH3RPZkE,2848
|
|
560
|
+
pyrogram/raw/base/public_forward.py,sha256=6vgAPIX8SGXGQksG7gaUlgXQ3CH0mr1krp-F7uvAET0,2051
|
|
561
|
+
pyrogram/raw/base/quick_reply.py,sha256=f4JLa5RszvoJ-6U3AqfiLWvgoITM1XS9mfAkT61kgt4,1956
|
|
562
|
+
pyrogram/raw/base/reaction.py,sha256=vY3XdnvY-7SHRzIEyhQLhGDkXJ1svfmy0-Gf8loVMNU,2120
|
|
563
|
+
pyrogram/raw/base/reaction_count.py,sha256=brJecGYR3Yz_xGbZvNcha1c_oQBkOPwxzKb_vwyjMK4,1974
|
|
564
|
+
pyrogram/raw/base/reaction_notifications_from.py,sha256=dtjoJU8Id_036POD6j-Pe89uY58apzTzk4hHz-j7QYo,2146
|
|
565
|
+
pyrogram/raw/base/reactions_notify_settings.py,sha256=GUetO4EYL_acl_f_n82EaprotVa7FF4iIuA-BFEBCwc,2313
|
|
566
|
+
pyrogram/raw/base/read_participant_date.py,sha256=8RnG2GbHWbJQRwnHAJt3ZF1W7zoG6Ys4mT2MkCeY6ts,2241
|
|
567
|
+
pyrogram/raw/base/received_notify_message.py,sha256=FpEL2M9nf4TksZcz55tQWKwdGaRF4VAvjJrL-y8cB9M,2243
|
|
568
|
+
pyrogram/raw/base/recent_me_url.py,sha256=xfybXNPZDIMeuM0u30RRreVL261iZ7ivs1IEOKqoCNI,2226
|
|
569
|
+
pyrogram/raw/base/reply_markup.py,sha256=qAIFDuH5HaU7KVMMNd6mylhY_9es7lxnU8jSOJ5gcpE,2171
|
|
570
|
+
pyrogram/raw/base/report_reason.py,sha256=ci9MW3KDVGyDgfMK0YPwEcIAw0xIINNfxfbzs6LAuX4,2702
|
|
571
|
+
pyrogram/raw/base/report_result.py,sha256=WmVZ7EEOKc3IVjzj6QVns4gFmH-jq8xsn3inu0uhRKk,2368
|
|
572
|
+
pyrogram/raw/base/request_peer_type.py,sha256=UNHo8NyNSoKyey-pxbK-8fjaHWN3wnb_Df9VMSPgLTA,2134
|
|
573
|
+
pyrogram/raw/base/requested_peer.py,sha256=TSTqIfaR-vB7ndaPdtUlU96HlEUR-kqWS7G4-JXtMqw,2109
|
|
574
|
+
pyrogram/raw/base/res_pq.py,sha256=-SkLXH_X3IfIO11D3NgYZCVDZB2Azi_dUX9Zrlp27N0,2151
|
|
575
|
+
pyrogram/raw/base/restriction_reason.py,sha256=1p3VpJpOcBmsjirZvlgOcD0hGUg_eFIeYEKQVc0QzaU,1998
|
|
576
|
+
pyrogram/raw/base/rich_text.py,sha256=kDcYuNtsf3AFAJPWtKL4Pob1UPq4c8ZBLpSOcpulMws,2640
|
|
577
|
+
pyrogram/raw/base/rpc_drop_answer.py,sha256=CPYWlWlUlISvAvtL2iK08fDhB5yYVJOdHqVEBeg-IQk,2320
|
|
578
|
+
pyrogram/raw/base/rpc_error.py,sha256=-x3_fxkaiXbB7rXZ9DwDMTVQ1TuzKBlaWCVq7HwVjOo,1944
|
|
579
|
+
pyrogram/raw/base/rpc_result.py,sha256=B9T_fm7kD1eCA77zul9cBWGGbVJhCGSnmqe41RncIIM,1950
|
|
580
|
+
pyrogram/raw/base/saved_contact.py,sha256=CefNIyLpmEiGj9uTzZzmmMs0dpsybBJJUdb61AcGwaM,2190
|
|
581
|
+
pyrogram/raw/base/saved_dialog.py,sha256=HhWKzzOVxeKno9DPDmIYL2T6rmuEZrE_gKrlJ3dQCio,1962
|
|
582
|
+
pyrogram/raw/base/saved_reaction_tag.py,sha256=t3TyG-gemDSkj_xaE8MEHAnfGXSJqr_dT7FFjPfFmzg,1993
|
|
583
|
+
pyrogram/raw/base/saved_star_gift.py,sha256=mxFxfVFAxVzgEBb0kH3kZ_ZsPxXOQORa6PPsS3_6cvU,1975
|
|
584
|
+
pyrogram/raw/base/search_results_calendar_period.py,sha256=Zvz88APoPRMAz_zzAiWoTs12TLnlHG0A5rXx8LNIqFU,2060
|
|
585
|
+
pyrogram/raw/base/search_results_position.py,sha256=emkv5fRtHfjYIVfvwKhP9W4nCQdpcs0BK9nmNJppbh0,2021
|
|
586
|
+
pyrogram/raw/base/secure_credentials_encrypted.py,sha256=nTX0a6q1WRocpT96vb5hdG53JocEyz9w1R66QHOqoXk,2053
|
|
587
|
+
pyrogram/raw/base/secure_data.py,sha256=zj26qVQNU7YGCwpkmMlR2rJrdnR8jSlKvx1tcAJBwig,1956
|
|
588
|
+
pyrogram/raw/base/secure_file.py,sha256=p18tdSWNy6Y-oWI_DEsKp7eB0ELl6UYu_G1uOEoupzo,2013
|
|
589
|
+
pyrogram/raw/base/secure_password_kdf_algo.py,sha256=IKxRuOJYAOWISYHMNJopmFTwzfIbD-YfxWF6eSL_w34,2239
|
|
590
|
+
pyrogram/raw/base/secure_plain_data.py,sha256=gHOpeE6Is7NooTvY3OwRaW_-kF4-7qNBZSdG7ZjQ19E,2048
|
|
591
|
+
pyrogram/raw/base/secure_required_type.py,sha256=lEwMqRz8zeXTGKGHrCJ94CQyrbi7c1X96_OPNRpNlqk,2078
|
|
592
|
+
pyrogram/raw/base/secure_secret_settings.py,sha256=jLF71r9R4ZjxxbaYoKF3tPK04n-CN004rJxfwkhlqxs,2017
|
|
593
|
+
pyrogram/raw/base/secure_value.py,sha256=-cOIperJmfGADYhflPU_OoSlgHunTh7_V6-pszgqkmw,2257
|
|
594
|
+
pyrogram/raw/base/secure_value_error.py,sha256=6N-LKER_jjSBuNjYyGjK-zjdMy4AsHI8_wS5vp6njgg,2598
|
|
595
|
+
pyrogram/raw/base/secure_value_hash.py,sha256=mwh1Q5VLarGQ8NAuFuLP6WQELF4mg-VKY2Ei_WjhSj8,1987
|
|
596
|
+
pyrogram/raw/base/secure_value_type.py,sha256=NXvu2h_bbPXJ8E4jD6fOljMa6aOOrwTOXIqXzyNOgCM,2983
|
|
597
|
+
pyrogram/raw/base/send_as_peer.py,sha256=3MSdECX-6ZtIaDJgajfLWOpcWiYojYnKN9aQEbpQqfk,1957
|
|
598
|
+
pyrogram/raw/base/send_message_action.py,sha256=L5euQuRHNq17Sgky_LzE0LSCu3ycwaw7MNLhxBlOpRM,3407
|
|
599
|
+
pyrogram/raw/base/server_dh_inner_data.py,sha256=GoAXGQlehnUdZ01cDiYGNEEy7KZjcRR-bhURMQiTZzs,2000
|
|
600
|
+
pyrogram/raw/base/server_dh_params.py,sha256=hcksS6Xwm76WmA1iOf9GYgL5XXQRyroWw6uAR4ay4C8,2254
|
|
601
|
+
pyrogram/raw/base/set_client_dh_params_answer.py,sha256=ztyYodOuvJ8fiPrTvhVoI6H_G8CC4q3Mw7-HyG-ucu4,2308
|
|
602
|
+
pyrogram/raw/base/shipping_option.py,sha256=qybgsw9wI_NR2H-ZkOE0-iE74OgVsE5RTa0J8O2TJEg,1980
|
|
603
|
+
pyrogram/raw/base/sms_job.py,sha256=E_ZuKyKb5_8Jr9XiRFE833y1oKt-ldsqUeYd2RVyVdQ,2144
|
|
604
|
+
pyrogram/raw/base/sponsored_message.py,sha256=bpA3iZ0Dwzcpq9tbIAR2g9X500-6WnNPGdbr2cbxqUc,1992
|
|
605
|
+
pyrogram/raw/base/sponsored_message_report_option.py,sha256=fiWuR2vZu3d7rlxetZTX1_sQ4q5Kqu7E16zG2KVJTuM,2066
|
|
606
|
+
pyrogram/raw/base/star_gift.py,sha256=slifgouKRRMlmP3yTiM0FFvdCQGduZcuFKCO1Ptw5Yo,1999
|
|
607
|
+
pyrogram/raw/base/star_gift_attribute.py,sha256=ayvsGkK9sWC3qMbjjpbU0PkAnc3k2dgxMOnqYd69bSI,2250
|
|
608
|
+
pyrogram/raw/base/star_ref_program.py,sha256=c3i2_M7bDQHUUu8xpf4LYP6E7-5OhsZi8VgH8RPRRrE,2201
|
|
609
|
+
pyrogram/raw/base/stars_amount.py,sha256=eXVMo-CP1_wcskYfIz72EsWm0MCM_VNTsWv-QnJ8x-E,1962
|
|
610
|
+
pyrogram/raw/base/stars_gift_option.py,sha256=zHDRQFk8iaN-Z3NLv7PfTjOxkQUf-ll_eaPDAm7RVwA,2210
|
|
611
|
+
pyrogram/raw/base/stars_giveaway_option.py,sha256=lnOnhCZd0cXEkKfmNaDosh5UA-J7Ud9uneFP7XJHX9k,2238
|
|
612
|
+
pyrogram/raw/base/stars_giveaway_winners_option.py,sha256=Oy89Rb-tYrqZGauNp-uBvtZs4DoSWNMPEBzgugDJeOw,2054
|
|
613
|
+
pyrogram/raw/base/stars_revenue_status.py,sha256=dpvErfzMemX_dpzaDSJ7fEs1xRw8t9k6nvViyqxwZuI,2005
|
|
614
|
+
pyrogram/raw/base/stars_subscription.py,sha256=0Ya3C3iQVVGlrASX-WizxPfVZ-cECOdStnSl1OiJTQw,1998
|
|
615
|
+
pyrogram/raw/base/stars_subscription_pricing.py,sha256=Wug-j1FMH3DDE0oA3lGETwgZ4OUsCKbTOx3cbP1m5l0,2041
|
|
616
|
+
pyrogram/raw/base/stars_topup_option.py,sha256=7U_k0umKhNtzYs7nQe0CXKxtGumav0ztpi_gpp3rCV8,2217
|
|
617
|
+
pyrogram/raw/base/stars_transaction.py,sha256=gJ-3Zcg9Xa0zJb3Oveo7iqKIa-MIrqGdI9Vn_rajdQs,1992
|
|
618
|
+
pyrogram/raw/base/stars_transaction_peer.py,sha256=Cur2p1blaiuEXyK7fc835ULj0qRkyF6WHgfU31nrVK4,2586
|
|
619
|
+
pyrogram/raw/base/stats_abs_value_and_prev.py,sha256=FGsPFtccSeqWEgJV8rTea2x0e02NBBtdhKfpLVqoXXc,2019
|
|
620
|
+
pyrogram/raw/base/stats_date_range_days.py,sha256=bu3p5GG0xZpK-KDByZwKadr___WwJT9RxFUrDISBNY4,2006
|
|
621
|
+
pyrogram/raw/base/stats_graph.py,sha256=bXvsbUUVCWKA33dzaF91P6vFqDiTfw8HclliKQFpIys,2284
|
|
622
|
+
pyrogram/raw/base/stats_group_top_admin.py,sha256=9P0RiOSsOrcGY6RpkqhJBRvrj71mK_8zUdeqMupKb78,2006
|
|
623
|
+
pyrogram/raw/base/stats_group_top_inviter.py,sha256=Ud33VwkYlTarD_qZ1nZwSAEZygTNfFM4fs66Du8UYnE,2018
|
|
624
|
+
pyrogram/raw/base/stats_group_top_poster.py,sha256=PlKgymccLdh0ARkNkbN8c56Uxw_Evs5lxowaP8IovFU,2012
|
|
625
|
+
pyrogram/raw/base/stats_percent_value.py,sha256=JBQYU9EY-6jvxs-q70P-Y1sIl7hlQYlxEUX0xxNeuFw,1999
|
|
626
|
+
pyrogram/raw/base/stats_url.py,sha256=B0DtcaFlFkUi1TqfZ-u7jo4ry71KlQ-Gft92OsdtuiY,1944
|
|
627
|
+
pyrogram/raw/base/sticker_keyword.py,sha256=ypgHlGJgyPw738mdmjoWdS3CEKLHhmpLHU-2SuweXCo,1980
|
|
628
|
+
pyrogram/raw/base/sticker_pack.py,sha256=_TLeGBr-y4FAwtCwQV4ScaaQje3mb5BYyZGQRW50W_I,1962
|
|
629
|
+
pyrogram/raw/base/sticker_set.py,sha256=IaHKLhkxB7VDqRizQRnGEEa_QfnKXROCVylhaNzRgMA,1956
|
|
630
|
+
pyrogram/raw/base/sticker_set_covered.py,sha256=WQUX4WfQuhqrZ3bSHY_vZ2Vwptj-B_7mpYphHrHJ6oY,2425
|
|
631
|
+
pyrogram/raw/base/stories_stealth_mode.py,sha256=YFBNDw-bdJQ-SOg0nOzWGZ4Ee3S1sfhuYfV1xXx4dU4,2005
|
|
632
|
+
pyrogram/raw/base/story_fwd_header.py,sha256=k_yhfVdyuG_x7O2TsMLfb_OPMOxKQyq2q4lruRaC_3g,1981
|
|
633
|
+
pyrogram/raw/base/story_item.py,sha256=ZbE7uFeJtJ-w7xRnannNbKEAxP4E-BGYhygDRTGfZKA,2067
|
|
634
|
+
pyrogram/raw/base/story_reaction.py,sha256=ye9UdPkEQ6A3u27V6-1RAG4Kv5Biuoek3qSI5UXLqek,2129
|
|
635
|
+
pyrogram/raw/base/story_view.py,sha256=VmdMnhiFGocVhozmfVDXRwUh5_PIlaZWF_pCBrhLvFo,2089
|
|
636
|
+
pyrogram/raw/base/story_views.py,sha256=Q9ge75Q0u_avDLNORL_-nvIDDIsVzaIrfamLOHjIZ9U,1956
|
|
637
|
+
pyrogram/raw/base/text_with_entities.py,sha256=CAX5cn1HKizqggf-ZrTSbDbU1teVfaE38Dw6PIvKL0Q,1993
|
|
638
|
+
pyrogram/raw/base/theme.py,sha256=c4tuID0N-yNcw_MfelaH9KdKpXqSVQAmvEiw_9EAM50,2203
|
|
639
|
+
pyrogram/raw/base/theme_settings.py,sha256=HxuJSm2XvT0did_qjDvjldx5QwdrxMMoybE4dz6RLDY,1974
|
|
640
|
+
pyrogram/raw/base/timezone.py,sha256=0AZJGMUyvF0xCcdp8r3jKm_MVESQIG6jJnpfr7tkIxE,1943
|
|
641
|
+
pyrogram/raw/base/top_peer.py,sha256=ZjLVVTTMX_vjmOYS7C-xaV7SSEEHfaMmDgxTFss2RNo,1938
|
|
642
|
+
pyrogram/raw/base/top_peer_category.py,sha256=8UKunhwjn1iqDfsEDDwwYhPwG25UbJhGlywMM95U5Xw,2606
|
|
643
|
+
pyrogram/raw/base/top_peer_category_peers.py,sha256=Lghp4611Ixxv3GJk6eHOQGW-a53KIkSe5idZG4ZML8g,2018
|
|
644
|
+
pyrogram/raw/base/update.py,sha256=AX65QQ-4KYEPUPSUOoFw6V-cpb6DvewpoTLiaoZ5R0s,11628
|
|
645
|
+
pyrogram/raw/base/updates_t.py,sha256=KPW8lq6u1-ry2rAJH4rHve7DTGhrdkePlCDvkYrVKSI,6669
|
|
646
|
+
pyrogram/raw/base/url_auth_result.py,sha256=sohHB4AKN6pt6dauc0JeJz4QzJf5Whd2u5hNn2rjKsk,2379
|
|
647
|
+
pyrogram/raw/base/user.py,sha256=xBmKCid0i3hgcHw9vw_KWTQ8DqmxpyqA3OTneO8Isn0,2352
|
|
648
|
+
pyrogram/raw/base/user_full.py,sha256=sql0-yCA7q_rQklD5fGKzHU6ZvRuJBYM5785sBVUf1o,1944
|
|
649
|
+
pyrogram/raw/base/user_profile_photo.py,sha256=PKFGnMVR9pW5igR6Ft4wiOE5DfMgIwRTkY1-GtWR57g,2062
|
|
650
|
+
pyrogram/raw/base/user_status.py,sha256=sz8cuoImNs_zVd_k-stnQ5gpalzCxMuqpwqFTnN8DHk,2273
|
|
651
|
+
pyrogram/raw/base/username.py,sha256=IcvUios3k5Jo8vv1I7kJhXfVi0WUbpgfbvOrpqJic_I,1943
|
|
652
|
+
pyrogram/raw/base/video_size.py,sha256=WBGi4efvRotprWF_xP9YPidF62VBsFSduKoeLVJv4Qc,2087
|
|
653
|
+
pyrogram/raw/base/wall_paper.py,sha256=wyhVX_mryFMEmXvuzOREvve0Y2CnFThkvFq6Es6031I,2300
|
|
654
|
+
pyrogram/raw/base/wall_paper_settings.py,sha256=lMSsnlTtxZ_JB_VoiSEsCht-71E5XUu_db7HhLEsuBU,1999
|
|
655
|
+
pyrogram/raw/base/web_authorization.py,sha256=ggU4_lSWV8JKGiYIpipnt2yB9QzBrjAzYpX9Xl9gb4E,1992
|
|
656
|
+
pyrogram/raw/base/web_document.py,sha256=-WDADNyYMVbs7XGSnR48T4HxCYILR196puiAHiZH39k,2025
|
|
657
|
+
pyrogram/raw/base/web_page.py,sha256=UB2SvG0ZPPsf6H-6DxBZIGklM-fvIpY1PTAwjBnhOHg,2105
|
|
658
|
+
pyrogram/raw/base/web_page_attribute.py,sha256=rXN3XM66uS7Qraem4igYhcto0Qew1SPIFMXwyH_IBso,2236
|
|
659
|
+
pyrogram/raw/base/web_view_message_sent.py,sha256=J0DGcH6jdui2jhRGAyzoqi4tSfWrzT-7JMqlmciu-60,2234
|
|
660
|
+
pyrogram/raw/base/web_view_result.py,sha256=NmR3AB_xX4xkmOzR5RseF166UI_3LjBzxg1tY9Rm3yA,2324
|
|
661
|
+
pyrogram/raw/base/account/__init__.py,sha256=RfUSQuPp1riRZwwRz0bPJxYw-1rKGVywTP8x8dY94wk,2139
|
|
662
|
+
pyrogram/raw/base/account/authorization_form.py,sha256=IQeWk_9P0mct9EEZ-LtUhZs91u0Bno9Brs6fpZnr98A,2245
|
|
663
|
+
pyrogram/raw/base/account/authorizations.py,sha256=vvZH7C3JLvSKClTEnqjUuYpB4xmGqhnFoYzyQDwobCM,2223
|
|
664
|
+
pyrogram/raw/base/account/auto_download_settings.py,sha256=XF4EKHFGCrhq3H26zvjhflnNoGInxSW3-h8b7Ns9s2c,2267
|
|
665
|
+
pyrogram/raw/base/account/auto_save_settings.py,sha256=9ZhQ2KhiGdgjLWw27IdG2WDbtrtDSGGX7Tr5d2VjMz4,2239
|
|
666
|
+
pyrogram/raw/base/account/business_chat_links.py,sha256=6EO8-ME5de-X17H2x9u6UyG7iQxDDwt5vDbH0ukVL2M,2246
|
|
667
|
+
pyrogram/raw/base/account/connected_bots.py,sha256=QV2L82KPPC7Ln6M_rUO-6CpS_9PygQ1VcihbtjM7XgI,2217
|
|
668
|
+
pyrogram/raw/base/account/content_settings.py,sha256=yv_5tbKFBCCBRBdEQmnP_L8_kjb9ldKGwZd0pcTb4qQ,2231
|
|
669
|
+
pyrogram/raw/base/account/email_verified.py,sha256=HcElQEnK4_iBZSIBYjTO5WqPYTt2mH4WxjTaaaDXeTI,2291
|
|
670
|
+
pyrogram/raw/base/account/emoji_statuses.py,sha256=8qy9LhBdMYM9Fzt10L8w9_dAlQry5iF0QmDeUAyHkHk,2461
|
|
671
|
+
pyrogram/raw/base/account/password.py,sha256=zCelvG_waPmjV61Ps6BZ2qU3IhSLYnb160rel9UKRdY,2181
|
|
672
|
+
pyrogram/raw/base/account/password_input_settings.py,sha256=8dyaYHul_KmzABvH_6OxDVzq3Dz59iQWO0yu7IWUccs,2047
|
|
673
|
+
pyrogram/raw/base/account/password_settings.py,sha256=clhcCf5RcxRBC_kuvwewv5y4NrbaEZSNyPSfSdpYnOQ,2238
|
|
674
|
+
pyrogram/raw/base/account/privacy_rules.py,sha256=8Nzw3UE5sv2lt6cHG44F_72x8ZGarVwMZVu59e7maTs,2238
|
|
675
|
+
pyrogram/raw/base/account/reset_password_result.py,sha256=2MmAr4uu8mwigs-JfpP02RPtP6qqi0J3cAuVveSsW4c,2426
|
|
676
|
+
pyrogram/raw/base/account/resolved_business_chat_links.py,sha256=lZtThImNrMqEdvpGvnK2_UeMGL0LaVeM8auDL3rNx5c,2298
|
|
677
|
+
pyrogram/raw/base/account/saved_ringtone.py,sha256=ZDMyaywi_RPDg98CBG1R0ScRRDWB4tT6Hy7GqgWjVwE,2300
|
|
678
|
+
pyrogram/raw/base/account/saved_ringtones.py,sha256=9TdKNnvFLN-FiOgfkifEdU7AiW8n8gu6eGhz-F_PD5E,2317
|
|
679
|
+
pyrogram/raw/base/account/sent_email_code.py,sha256=mUYr9f59ncFGwqY5ykJcgJGT9jiQgZZNGiHDd8VbYXA,2221
|
|
680
|
+
pyrogram/raw/base/account/takeout.py,sha256=n48kTrJQIO67-4NgW6W_j2Yb9M8wMn7RPUtsyuP7qns,2182
|
|
681
|
+
pyrogram/raw/base/account/themes.py,sha256=-V5Te00q4uzpkzG49IPgEXdnMWljoHdR1lcVhSIYut8,2280
|
|
682
|
+
pyrogram/raw/base/account/tmp_password.py,sha256=qB6Xrmk86dGwapnci4F6nfeLvTs2a_JPKlUZeHbg25I,2203
|
|
683
|
+
pyrogram/raw/base/account/wall_papers.py,sha256=lVpiAJ-U1-8ZsRlAsUvGd5ASx4Le7-7b596zF8H646Q,2281
|
|
684
|
+
pyrogram/raw/base/account/web_authorizations.py,sha256=fiXiF_hok-qXtS3NsLiff7ugQOo-7t0Mmz1XE5z3KnM,2245
|
|
685
|
+
pyrogram/raw/base/auth/__init__.py,sha256=M5od4vyIzQxeQbD2r_Cm8RvTAqZLkE9explpbfmY7P0,1414
|
|
686
|
+
pyrogram/raw/base/auth/authorization.py,sha256=gnYHKMFIXn6wYhcgL4sJLapZP9PTUU_5Z5oM55uoRcY,2502
|
|
687
|
+
pyrogram/raw/base/auth/code_type.py,sha256=rcyCzsvVbvolNSTpX2WTAk5uq5EeMFDSuUxrPu5tswU,2242
|
|
688
|
+
pyrogram/raw/base/auth/exported_authorization.py,sha256=V99qIJhCdnOw7YNJ8X2Yk7kdY2qdH5K_4QUWTVqfu-A,2256
|
|
689
|
+
pyrogram/raw/base/auth/logged_out.py,sha256=A_SwXo-s4D2vif_aUk9Sld5EqIo89kyF8CPfT9nCZ5c,2171
|
|
690
|
+
pyrogram/raw/base/auth/login_token.py,sha256=jmjHZDZ3EECeyMHDI7YYsUKKyDo69bXDCWBZrPEDYBo,2368
|
|
691
|
+
pyrogram/raw/base/auth/password_recovery.py,sha256=xyX6Unu_W6UJ47H8y5XjGXuLSPhg-ons3xn05GVDVBk,2230
|
|
692
|
+
pyrogram/raw/base/auth/sent_code.py,sha256=GnSYN0zxkZsaUNHBCdsEywMhvA9229ZDSR5m7l6QEQA,2422
|
|
693
|
+
pyrogram/raw/base/auth/sent_code_type.py,sha256=GUdf5z1o8icgVk3DiNe2dVmZYOtLeiTmM8oi4CPBSNQ,2774
|
|
694
|
+
pyrogram/raw/base/bots/__init__.py,sha256=N6qkl7XFYnX1fw66Pe6ujNLiYDTZBl3z2sV77NNQcbk,1200
|
|
695
|
+
pyrogram/raw/base/bots/bot_info.py,sha256=xbi519AJqlfr-4TvsPGT5BhERjvQJebqE5JlWohK0QM,2163
|
|
696
|
+
pyrogram/raw/base/bots/popular_app_bots.py,sha256=-o6UXzbsAys0lToBdtvFZODmoSMtjSMGydmbu6SIvdw,2213
|
|
697
|
+
pyrogram/raw/base/bots/preview_info.py,sha256=cxC2l3r0gdGHO619NpFYqKiGnq8aVXnuQ4Jxh0ksmew,2191
|
|
698
|
+
pyrogram/raw/base/channels/__init__.py,sha256=fsVBez7sIzYHcH_SjVcZNOUXL4G5qNLsBhH6C8VtZv4,1355
|
|
699
|
+
pyrogram/raw/base/channels/admin_log_results.py,sha256=n7Hy5oBBXncrh8Gvjby9lEufpNnU_pcpG_8FFTAv39I,2229
|
|
700
|
+
pyrogram/raw/base/channels/channel_participant.py,sha256=eUL15Vd7Uf_PQCeNROBwZyU9i91V6Cz38bcLRR12Qa0,2249
|
|
701
|
+
pyrogram/raw/base/channels/channel_participants.py,sha256=CymWeMVlfGQmk1kJDAQeNOWKiAEW86iuZFEyGelzw3I,2361
|
|
702
|
+
pyrogram/raw/base/channels/send_as_peers.py,sha256=W4YCnyYJ4XNgFGrHahAZ83juAdbJlszYN-w57Bvhl2s,2203
|
|
703
|
+
pyrogram/raw/base/channels/sponsored_message_report_result.py,sha256=CKS-HDfVqWPliIV-laIoutiL7EK2lBgcgvZoKh-BGHA,2578
|
|
704
|
+
pyrogram/raw/base/chatlists/__init__.py,sha256=ChHc1kBWE5UDWouvNM79Pgr1NWwLbbUcdWcLe6kGF9g,1285
|
|
705
|
+
pyrogram/raw/base/chatlists/chatlist_invite.py,sha256=PCTQ0YqXvDhmmAa9u1vrOZCTxGqlRPT4SGgNV56AUgs,2323
|
|
706
|
+
pyrogram/raw/base/chatlists/chatlist_updates.py,sha256=ds7zfX6WnOgDnQPVgE8NsBhazPTkASlIRAcyKVtUc90,2239
|
|
707
|
+
pyrogram/raw/base/chatlists/exported_chatlist_invite.py,sha256=XOEFE5wKYHEKhBXJj-w-laq9jwNUA89J9-2Sx-MRJCs,2284
|
|
708
|
+
pyrogram/raw/base/chatlists/exported_invites.py,sha256=89fHepWWTsn73DPMLRkrvR_vpKURoqaGYNn_RdUtgys,2239
|
|
709
|
+
pyrogram/raw/base/contacts/__init__.py,sha256=3HUQZEEmT5sXFL9KhR1JLdntjP5FhCaczPb5pa60yBA,1344
|
|
710
|
+
pyrogram/raw/base/contacts/blocked.py,sha256=SQoWHTdQH3gUGpjr8EPy9g3HeLvDvBYRdHhqpxid0Ww,2247
|
|
711
|
+
pyrogram/raw/base/contacts/contact_birthdays.py,sha256=n_vjXULmDtGZiZIZ3Xk3tvgDZchSMnviaV54XFxbikc,2235
|
|
712
|
+
pyrogram/raw/base/contacts/contacts.py,sha256=4py8kpWuXmQ-CkzM83vSdDu64pseReowQoZOH_4eQc8,2268
|
|
713
|
+
pyrogram/raw/base/contacts/found.py,sha256=ERtXjDuHMN9pp4GioKU6bOBakdn9U2zK89Z7SACMm_A,2162
|
|
714
|
+
pyrogram/raw/base/contacts/imported_contacts.py,sha256=QMAitHblJ__lvOENe9QoV5V9aUQu8Br9X9DfpDxBQR4,2237
|
|
715
|
+
pyrogram/raw/base/contacts/resolved_peer.py,sha256=UFEKlI-ueprsm8fhUbNEf6MTkvo-Wwh5Be23_rYN3Zk,2250
|
|
716
|
+
pyrogram/raw/base/contacts/top_peers.py,sha256=4A-T7a8XGRkYfv4RSC5hYRghaqgMCPVtNlL9sMp00jw,2345
|
|
717
|
+
pyrogram/raw/base/fragment/__init__.py,sha256=cBiBaN-W6RbD3OEe1NNToHTnImwBYg_DEljb_zDNz04,1131
|
|
718
|
+
pyrogram/raw/base/fragment/collectible_info.py,sha256=qdtDoxcQXHhEcDQUdgrA-F-2GDL2Y5vSdQCpplzUrhI,2235
|
|
719
|
+
pyrogram/raw/base/help/__init__.py,sha256=2ph16lwO01nDGi8-MIanI0Tm4hp1x6bpg2ukzL9PTO0,1926
|
|
720
|
+
pyrogram/raw/base/help/app_config.py,sha256=THWsE-V5FRUkpeg3wtvjwczxYV2YI_zpBAdx7l_I4kU,2254
|
|
721
|
+
pyrogram/raw/base/help/app_update.py,sha256=SY09fIWv2OXTjEhXOoCWVf61iEKKyUcTiyClVa8rXJo,2236
|
|
722
|
+
pyrogram/raw/base/help/config_simple.py,sha256=CFmDYiKv5cp1vLhyCSYPUdz41hpl3GfcMX_dBkOONSs,1983
|
|
723
|
+
pyrogram/raw/base/help/countries_list.py,sha256=Oz6jfev0mn73Z3WFJFHqhEx3FtuanmlvxR86Ig5eg48,2290
|
|
724
|
+
pyrogram/raw/base/help/country.py,sha256=yHv4_YxvzeiDJi1cNhWjRnIwuR4lHf7POwW6uloZodU,1952
|
|
725
|
+
pyrogram/raw/base/help/country_code.py,sha256=JrnwRYHUvK5dzibXVnHnvrmmC7o7x9Mi_sBjrMMD1QA,1977
|
|
726
|
+
pyrogram/raw/base/help/deep_link_info.py,sha256=CKD_lNzXjyfl2arNCc1cBuu5swMHr6ByH7UEKgCeyiE,2270
|
|
727
|
+
pyrogram/raw/base/help/invite_text.py,sha256=45Itbgen7PhNjVpbfkVwJWs9spsQ57VBp9OLBNQQ9mA,2184
|
|
728
|
+
pyrogram/raw/base/help/passport_config.py,sha256=jLWyn5ypPvC7rbxIEZRdJBLhX5wqwHZ5YVgwTK08rr4,2299
|
|
729
|
+
pyrogram/raw/base/help/peer_color_option.py,sha256=_JY4LCvxSIHWMyVzu-fpHPaG6Lmub_CYVV3h7VR6X2c,2002
|
|
730
|
+
pyrogram/raw/base/help/peer_color_set.py,sha256=NDuw45HWqxJtaLzYWmYPTVBsjqpBGcvX5rAP9bL_YRE,2059
|
|
731
|
+
pyrogram/raw/base/help/peer_colors.py,sha256=1UaS2wUOW7lGkyBXhuAVESYMoLVPXrTuxrLVAS_1ULY,2303
|
|
732
|
+
pyrogram/raw/base/help/premium_promo.py,sha256=2ViGwX5ecCbBJwEdMBIredexiHJwqa8w9Cvs4B8jzMw,2198
|
|
733
|
+
pyrogram/raw/base/help/promo_data.py,sha256=1Sc_3YGXjXju3lVDR4CQM1oA4GvG9Fv2B3gNWIT-hkw,2242
|
|
734
|
+
pyrogram/raw/base/help/recent_me_urls.py,sha256=yJZloU3GddRCAlUaDPpwFc4KN1gSJfg5c4HRo3nCwHQ,2199
|
|
735
|
+
pyrogram/raw/base/help/support.py,sha256=k1MNVVZrNMVFYRXrkUMjOvyfUQ-h8_P63hkqFycp1TY,2162
|
|
736
|
+
pyrogram/raw/base/help/support_name.py,sha256=z1aPNRM92gr92mtG8mxRHPkpecoHoGTf6KbnE0XypfI,2191
|
|
737
|
+
pyrogram/raw/base/help/terms_of_service.py,sha256=Y4tLdZW7Rnh8-KNsOCiJIlT29wMCLUyF1RjNzB5EHmo,1996
|
|
738
|
+
pyrogram/raw/base/help/terms_of_service_update.py,sha256=jZnARWi57RJznkLHHAXLQ5P2KhBQYdFC9Ae_Z9u86sU,2343
|
|
739
|
+
pyrogram/raw/base/help/timezones_list.py,sha256=JrQQNu0OUatxVg5iViyunMxy40d9gyTm-lMdIeIOk7k,2290
|
|
740
|
+
pyrogram/raw/base/help/user_info.py,sha256=ubTfqUXgf6SGzioFvlX5Yfjp1fjr6eXbG769GP4tgxw,2265
|
|
741
|
+
pyrogram/raw/base/messages/__init__.py,sha256=hwFTI0UCFUn9RFbU8pkMMnPI-hjkA_1j--EHVvZmPAc,3826
|
|
742
|
+
pyrogram/raw/base/messages/affected_found_messages.py,sha256=Bbe96k5Cxh9fYNDr6JLFdgbeH8WNYwCdHp1KJyfH2rc,2276
|
|
743
|
+
pyrogram/raw/base/messages/affected_history.py,sha256=kR3_b7JQ8Sq8B4Wvkdynn2Mvd-v6hlDnvEFsi4HGOcc,2470
|
|
744
|
+
pyrogram/raw/base/messages/affected_messages.py,sha256=gdKtneQljkaLuUKcboTi-2MNh-2VFGVan-HpEoPElbc,2351
|
|
745
|
+
pyrogram/raw/base/messages/all_stickers.py,sha256=4tADoLOFCJXe_ecUNYanLk8iasgTo984ylEHpG0lxhQ,2374
|
|
746
|
+
pyrogram/raw/base/messages/archived_stickers.py,sha256=xoEzMk-iO5IPGj-djBHWJl0NUmhiz5fbg8fMGJC2cHE,2242
|
|
747
|
+
pyrogram/raw/base/messages/available_effects.py,sha256=H4hoWSsPoUdoe78IAWI0QB6OGZMWuI65fuly2tY4NYM,2341
|
|
748
|
+
pyrogram/raw/base/messages/available_reactions.py,sha256=09VaXCojScq6FGJf46-5uDb873jc0pmTAiiQupnlT6M,2359
|
|
749
|
+
pyrogram/raw/base/messages/bot_app.py,sha256=mPh0fdWys-uIKAO-hsB6o58cAUGo1VMfSDjfR1KZ0J8,2172
|
|
750
|
+
pyrogram/raw/base/messages/bot_callback_answer.py,sha256=d596yEsK25FZOJbPVIN4CjXTClGHmSraCNLOZBWo5xM,2250
|
|
751
|
+
pyrogram/raw/base/messages/bot_prepared_inline_message.py,sha256=LEv5Vp8LR8wHqzkDamp0Z3f-wL4HY2_0qXP36F_TETU,2298
|
|
752
|
+
pyrogram/raw/base/messages/bot_results.py,sha256=HsN0Xv3JiaVwyWnQozyzTMGwSdWjvj0BKXfBgxwKSQk,2206
|
|
753
|
+
pyrogram/raw/base/messages/chat_admins_with_invites.py,sha256=YHkiA08jecCvtWfIB4wX6HX3nMnKVlAJ2b-xKAqQLyg,2275
|
|
754
|
+
pyrogram/raw/base/messages/chat_full.py,sha256=2MidH_O2XuTwIeZTwAuOHkfSDmX7zFCMp8M_Cgepg0U,2224
|
|
755
|
+
pyrogram/raw/base/messages/chat_invite_importers.py,sha256=L5LobwJoMhHlmHsZJM-B8aKBJ0-pKKXxFZZKZcTbo3w,2264
|
|
756
|
+
pyrogram/raw/base/messages/chats.py,sha256=oM3taBj-6BX7TGE58agKvmbDQewxzbHq6jBJA1eN_FM,2515
|
|
757
|
+
pyrogram/raw/base/messages/checked_history_import_peer.py,sha256=U4gGg-qu4sc688AwFCpooQGL0O2EO9bYPZoKmPNTJRc,2295
|
|
758
|
+
pyrogram/raw/base/messages/dh_config.py,sha256=_fK8XtIO9JXOQ7B6UMQLt3q7kHwVn_d3FcThzVeJy4c,2269
|
|
759
|
+
pyrogram/raw/base/messages/dialog_filters.py,sha256=pGN0bPDMYx0x8WjRgL3QKujrtWEynr3dgLv8jd4R4hQ,2221
|
|
760
|
+
pyrogram/raw/base/messages/dialogs.py,sha256=G2W7vyYk1O-AGKcKkybpugPWNlcp-b_YZ1UPyua_ZU0,2327
|
|
761
|
+
pyrogram/raw/base/messages/discussion_message.py,sha256=B8uM20i0pMI_iFsDEe0CKfGwFpDbpcWTsBKaBRT-XeM,2249
|
|
762
|
+
pyrogram/raw/base/messages/emoji_groups.py,sha256=g2JxkkzXiN7nNeKNZg59-Sm7L5sG70hKcBnI5Gq47SQ,2433
|
|
763
|
+
pyrogram/raw/base/messages/exported_chat_invite.py,sha256=Y13uQtz60MxYH1as08PSGvNM52i5F9g4vhhbWbG_o9Y,2400
|
|
764
|
+
pyrogram/raw/base/messages/exported_chat_invites.py,sha256=DeuFa8JLKYxGOrpHJkLy4aB92DC7Y90ulZD73aiiFd0,2264
|
|
765
|
+
pyrogram/raw/base/messages/faved_stickers.py,sha256=cDNSISnsnUi_blgo6xMesl5AJnI1vgrejfqZfENl9lo,2314
|
|
766
|
+
pyrogram/raw/base/messages/featured_stickers.py,sha256=9COj7xVmXhnSyJHkHoMcxfvT4J4cwyNJ3UkavzD3x-4,2434
|
|
767
|
+
pyrogram/raw/base/messages/forum_topics.py,sha256=O17pKtBvwwW-abx6dgHivcwPL4LuuH0652lWxrq-vp4,2249
|
|
768
|
+
pyrogram/raw/base/messages/found_sticker_sets.py,sha256=lmj1VZVOMnxzVQiziDKIVqufx17bTd5yPt9Peht6Mak,2386
|
|
769
|
+
pyrogram/raw/base/messages/found_stickers.py,sha256=585XCEEPD6g4s7bnY_TpgdhrPTkHkTWD84jyQ4eb2Cc,2312
|
|
770
|
+
pyrogram/raw/base/messages/high_scores.py,sha256=o3IUacUDZHUwsbzXCuBa9VyBZKwLDXXLiJ8yEuFZXSQ,2251
|
|
771
|
+
pyrogram/raw/base/messages/history_import.py,sha256=J5C6yNR4au1ZLzozcBy2jeGa4a_mZ6Yy_CHEt1iGnHE,2222
|
|
772
|
+
pyrogram/raw/base/messages/history_import_parsed.py,sha256=zPBqSCFQFX5GK6YFVPV17YEiOcA-kgHW0-5lzaWM_Io,2260
|
|
773
|
+
pyrogram/raw/base/messages/inactive_chats.py,sha256=2bYMN5wlYbOlX_A5La5Tp8kTFyihkzhFCXS3mxvu8bc,2224
|
|
774
|
+
pyrogram/raw/base/messages/invited_users.py,sha256=EvSGFqm1mxqqsQG5IjQ-iue7uAvkyDJ5VQV_szduOAE,2282
|
|
775
|
+
pyrogram/raw/base/messages/message_edit_data.py,sha256=S9UY60qUe3K0d9-Zh5mlzLH5SmJk6UBvbxw71WAzutI,2236
|
|
776
|
+
pyrogram/raw/base/messages/message_reactions_list.py,sha256=7KA-XKX_4Ocm6eXMhqSIxUGjwXeRsgLT0GRyazXxRR8,2271
|
|
777
|
+
pyrogram/raw/base/messages/message_views.py,sha256=F4KDR_bQ98EOco4PDKJp0D7dKCJ7r4pA_WA0eLezYHQ,2215
|
|
778
|
+
pyrogram/raw/base/messages/messages.py,sha256=8SeThBTC3x1nKoI2uStWqPYZEHsqYCUbDzxiNUodRQE,2939
|
|
779
|
+
pyrogram/raw/base/messages/my_stickers.py,sha256=EgvxLbb-8eLmr232Y8FGp4fO9nRpMFIveZFGIN1gqVU,2200
|
|
780
|
+
pyrogram/raw/base/messages/peer_dialogs.py,sha256=siXv3Im8XUuZRLN6C1oiShA8ApcA0ahbi_TVHjxINgo,2247
|
|
781
|
+
pyrogram/raw/base/messages/peer_settings.py,sha256=bw8CA6NmahVm30LU9vRjZG24LNhsgYvVJyipMm_VlFA,2214
|
|
782
|
+
pyrogram/raw/base/messages/prepared_inline_message.py,sha256=8GIqZWVVzRB5lhMzZIf_vwDgsIJvHYB_tgla73NeXYg,2278
|
|
783
|
+
pyrogram/raw/base/messages/quick_replies.py,sha256=OyY2sZx96jHf0IJvO9cJ64ca-N4ElJYgfArEVLEvWwg,2305
|
|
784
|
+
pyrogram/raw/base/messages/reactions.py,sha256=uaanATx0zNBMIyGoEQfGVf0C_MNUEeskdpYDNBLhpi8,2367
|
|
785
|
+
pyrogram/raw/base/messages/recent_stickers.py,sha256=44fsrx73Vq1ufeRHkXWrZhbu2_gBwzW3tWBdjAw5-sY,2323
|
|
786
|
+
pyrogram/raw/base/messages/saved_dialogs.py,sha256=8juuwYBuWDVXE4H4DZUeGNjZpYGFE9x-UgHYyXjEJtY,2428
|
|
787
|
+
pyrogram/raw/base/messages/saved_gifs.py,sha256=zBf7kBBOhIAxATuPdhXhL-AOeqMUojnpU_86BC2Mui4,2278
|
|
788
|
+
pyrogram/raw/base/messages/saved_reaction_tags.py,sha256=7uNIdmBS8jzwMqyp0Cjvc-qeo9Ym-TxPuAfTyhwbWgE,2351
|
|
789
|
+
pyrogram/raw/base/messages/search_counter.py,sha256=zDbEDlElqNIF47vkJ9e7695ydeWZ-n3Qr88VlqrAaIk,2222
|
|
790
|
+
pyrogram/raw/base/messages/search_results_calendar.py,sha256=aVOOEvKI6o7Rd7HmddbxLXZTYcC_cI0gN-IzCl0pe4c,2278
|
|
791
|
+
pyrogram/raw/base/messages/search_results_positions.py,sha256=x9lAhLZsJdjwwW6U5-jOVYDefaSq_9PTyyIkIAO3y3Y,2285
|
|
792
|
+
pyrogram/raw/base/messages/sent_encrypted_message.py,sha256=aOm4_XAigowe-4O8Vn6mom1BCRYbqbP9BmF-oKHA130,2424
|
|
793
|
+
pyrogram/raw/base/messages/sponsored_messages.py,sha256=3OB-BGLEcCwQloW-N_5sPG9sMHa1mdvDUXKSdhwgXjs,2338
|
|
794
|
+
pyrogram/raw/base/messages/sticker_set.py,sha256=bws6R6-MTS9ugjrRnAuOjrQLZcbgPhOAAf9Ir_k_AHM,2605
|
|
795
|
+
pyrogram/raw/base/messages/sticker_set_install_result.py,sha256=FoLRSIZXOUaYSlnO-2uY9t_2gJq4UFNkXtE9pNw4ePA,2403
|
|
796
|
+
pyrogram/raw/base/messages/stickers.py,sha256=koQ6ib34RbVK1cXTwtgpnjsScWRqoeEWkHFcruu25QM,2268
|
|
797
|
+
pyrogram/raw/base/messages/transcribed_audio.py,sha256=FxSRMIGlFRJqGGH54Ix5mtCopHqrQUmCKe35LOghuFE,2238
|
|
798
|
+
pyrogram/raw/base/messages/translated_text.py,sha256=OZm2uzTjQ03w-CzUNsMJNq1IjuOgMAZth0Yrdqa6FoU,2226
|
|
799
|
+
pyrogram/raw/base/messages/votes_list.py,sha256=-XTE-SfJ3pJT48DD1ZXCDtr_zXMH2z4gItubHwzdJUI,2193
|
|
800
|
+
pyrogram/raw/base/messages/web_page.py,sha256=vvnAbED5i8YqaVRHiwNXv-My4rGPR_pvFIjywGGTNxs,2179
|
|
801
|
+
pyrogram/raw/base/messages/web_page_preview.py,sha256=DFqBoyYhxz2kME1nJPjFn8f6DN7SdbFQYTVgeuxtr4E,2229
|
|
802
|
+
pyrogram/raw/base/payments/__init__.py,sha256=Fjj7sX-WMqknQi0KYJLvQ-H8udXbKGxWn9_OiDqSqjY,2085
|
|
803
|
+
pyrogram/raw/base/payments/bank_card_data.py,sha256=a5JRpUPXCXPpbQhHLEumj8vadUBGBA0utZEkYLd2vI0,2215
|
|
804
|
+
pyrogram/raw/base/payments/checked_gift_code.py,sha256=wCBnJcWFTFzAzdFK6ZGB4AS7PXwWlHPqxFngT66xxJ0,2231
|
|
805
|
+
pyrogram/raw/base/payments/connected_star_ref_bots.py,sha256=zgAnA6ticyMagdQV-oeWzd4gUUMEPYJpvnc7wFUGy6g,2404
|
|
806
|
+
pyrogram/raw/base/payments/exported_invoice.py,sha256=Pg_lnICjp4JUXF23c9_6HuhvIW8ODHJ5Zp9fN5ujzkI,2230
|
|
807
|
+
pyrogram/raw/base/payments/giveaway_info.py,sha256=jKPLT_AkMgsR7ed2CkLe94Tmxah6ibd5n8v1djc0Hl0,2297
|
|
808
|
+
pyrogram/raw/base/payments/payment_form.py,sha256=cW-vyo8Y2kIOoxtjrMjVXyuwMQMDdyWx4N_DohfETQ8,2366
|
|
809
|
+
pyrogram/raw/base/payments/payment_receipt.py,sha256=MaDUfYybN8OQafgPygjU-XDUovHH7l2QAK9PMfE0LcE,2311
|
|
810
|
+
pyrogram/raw/base/payments/payment_result.py,sha256=pl5ckORRd_-OAMnJd3TUGwvBoekLinWXLlq_6b_KHvI,2352
|
|
811
|
+
pyrogram/raw/base/payments/saved_info.py,sha256=uobpdjVcOs9MGF7pHFgalp9WZjOec-L1XFc-j-2AKIA,2193
|
|
812
|
+
pyrogram/raw/base/payments/saved_star_gifts.py,sha256=htL6mfvGL4YVq0Pwc2XtxuOFjLmf4o6HGz8qsQkPiGU,2269
|
|
813
|
+
pyrogram/raw/base/payments/star_gift_upgrade_preview.py,sha256=pqRAQgPHkq3d_su6wrNSyXzyVZiFQeNAULacAAVvsX0,2286
|
|
814
|
+
pyrogram/raw/base/payments/star_gift_withdrawal_url.py,sha256=j4PzPtXdx7bnP7cjw3VmZKuA_4JJRPmy8mT1XFTZOs4,2279
|
|
815
|
+
pyrogram/raw/base/payments/star_gifts.py,sha256=-d2FYHPJ9qQUPPXI3WYPsQXQ-ZfHycCqbgzaXeSCR0Q,2278
|
|
816
|
+
pyrogram/raw/base/payments/stars_revenue_ads_account_url.py,sha256=ZYpKSD2PwJBgadX706yjxoplgOlNEi1wXJ2n6kM6V3w,2308
|
|
817
|
+
pyrogram/raw/base/payments/stars_revenue_stats.py,sha256=OAX2ZjTID1TdKFybKdVntbIsg2MO_TloyiZ8lmvc7aw,2250
|
|
818
|
+
pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py,sha256=jsnA4-U-VOdUr7FXmkipgKvSlyoF2QcMIR-nVulvkG8,2307
|
|
819
|
+
pyrogram/raw/base/payments/stars_status.py,sha256=8NPj6UmH2t_ncJPCCgrvfuXiKD_58tZoGd1OYouQxvs,2342
|
|
820
|
+
pyrogram/raw/base/payments/suggested_star_ref_bots.py,sha256=qQ7Hvot4FOysLtvoJ4P_myif0L4XxY4HIj5IfQ7NiVw,2272
|
|
821
|
+
pyrogram/raw/base/payments/unique_star_gift.py,sha256=_IhGe0dPPtWH5j0gh2v4aVF0V1Po3YnY2Tmq1gnDgX8,2229
|
|
822
|
+
pyrogram/raw/base/payments/validated_requested_info.py,sha256=LBBjIYnjF7khtcFB3-7fcDFlyVCFbGTIag9qYUmo5qQ,2281
|
|
823
|
+
pyrogram/raw/base/phone/__init__.py,sha256=ARKD444DOIcaCYZauNlP3LvBRVDbPKt28x40fPqKyiU,1439
|
|
824
|
+
pyrogram/raw/base/phone/exported_group_call_invite.py,sha256=F-hx2PrEyNc2qeDm_Wkogxq8L3e10612XdpDJSbOdrk,2276
|
|
825
|
+
pyrogram/raw/base/phone/group_call.py,sha256=FoWO5ZsxYKtGwV7qJTzI3M5mVbCZlKp9ufTpTzQW8Bo,2181
|
|
826
|
+
pyrogram/raw/base/phone/group_call_stream_channels.py,sha256=fXSyZltek2CQWx-TBuOVIlqrTvhIHNpeotmBzQnMWR4,2281
|
|
827
|
+
pyrogram/raw/base/phone/group_call_stream_rtmp_url.py,sha256=SmCzn6hXPZTESUqfMAQhUUUVLpTKlhG5fHEuRy-OBJ4,2275
|
|
828
|
+
pyrogram/raw/base/phone/group_participants.py,sha256=maAvEj9OMZ_DnHFWuqOpL-IPOu9KbDzUmgcbsEThlN8,2237
|
|
829
|
+
pyrogram/raw/base/phone/join_as_peers.py,sha256=6aj4BaEIqahAeDPdWXrIYSKTKVfvPZUbVWVGjoOLPw0,2200
|
|
830
|
+
pyrogram/raw/base/phone/phone_call.py,sha256=PQKNtUg7ZEeHpmch7oxk00X5gANw9jlHuovi0G2gxxo,2282
|
|
831
|
+
pyrogram/raw/base/photos/__init__.py,sha256=uZAGQY1ywcG62cpUXqVCOPlUVQBHofdWv-0iKSZisRM,1138
|
|
832
|
+
pyrogram/raw/base/photos/photo.py,sha256=16Kb70S9jpb071vkUVcaxiPtmnMmiwlqiPsPe5fM5Yo,2252
|
|
833
|
+
pyrogram/raw/base/photos/photos.py,sha256=uQ0KMJk07nuzmQOD0-6LmKeUFrtNjqMhhPNnKZU725s,2230
|
|
834
|
+
pyrogram/raw/base/premium/__init__.py,sha256=MIFdQMZ6JGZKWtvPpe7-L6jErkjqb6rUjrOLUGlsgA4,1195
|
|
835
|
+
pyrogram/raw/base/premium/boosts_list.py,sha256=rBrn6O52rQY3qqiQSrR1LNUjofhqA93zL33T4AtNHkk,2232
|
|
836
|
+
pyrogram/raw/base/premium/boosts_status.py,sha256=I9UZ0kMHXKtSTt9dOX3vtzdI2W6gq2T_5EuyJaUo1WI,2210
|
|
837
|
+
pyrogram/raw/base/premium/my_boosts.py,sha256=as1i_Wr-0hCcm2A-YewYIekaG8wdXj4yeJ2fSOqOwps,2215
|
|
838
|
+
pyrogram/raw/base/smsjobs/__init__.py,sha256=1K2cRoBioP7u8pW0fpGLgbaatjAjINTaoLN7FIzKGdA,1164
|
|
839
|
+
pyrogram/raw/base/smsjobs/eligibility_to_join.py,sha256=OYe125yEro95cKiLTyvkhU9NhCct3HW7wiUWv-9OT-c,2236
|
|
840
|
+
pyrogram/raw/base/smsjobs/status.py,sha256=T9jFiG2vACG00eqxiBJegeDTqahuokZRhd4LzKtML8c,2167
|
|
841
|
+
pyrogram/raw/base/stats/__init__.py,sha256=iqnfpGU9T1KCSu5upqS5pEtUkySHgChiyDDpHaxx1nQ,1508
|
|
842
|
+
pyrogram/raw/base/stats/broadcast_revenue_stats.py,sha256=HQETswwWqIMUzcVa0NggFq4t9uD7R4ZKlI9vdMvhue8,2266
|
|
843
|
+
pyrogram/raw/base/stats/broadcast_revenue_transactions.py,sha256=X1In7paOpB9jweAaGNE4SIlyEx_7tMyETEHyssTu6bI,2315
|
|
844
|
+
pyrogram/raw/base/stats/broadcast_revenue_withdrawal_url.py,sha256=L2dncrnJNFxF7hX-4VLO1Dt8Lgf3-jiIv5iUn1rqLSo,2323
|
|
845
|
+
pyrogram/raw/base/stats/broadcast_stats.py,sha256=kFCe14CKcZf9S3bMW-YnqQu_wegUOQ8VOsaEPfdesrw,2216
|
|
846
|
+
pyrogram/raw/base/stats/megagroup_stats.py,sha256=_yAkMCsFWPSzi0k483_tNPKoATRXHychlTR6AtDk7Js,2216
|
|
847
|
+
pyrogram/raw/base/stats/message_stats.py,sha256=8PZzqNQHYuGxXXZKPIUJgUphRtDrtqLm-_l2rOlNq3A,2202
|
|
848
|
+
pyrogram/raw/base/stats/public_forwards.py,sha256=Rtv_4XtAse92_4eUsNsimy-3WRGer3IrGw2XllobV5U,2266
|
|
849
|
+
pyrogram/raw/base/stats/story_stats.py,sha256=7oGkQ7TZw7jw3qYswEsNrEXYQlYKzKCckC42gnTb_sQ,2188
|
|
850
|
+
pyrogram/raw/base/stickers/__init__.py,sha256=9EHAJpBNqm2Yr6gK3K_Kdc7d3AHD4XMlLiMlt9h5wY8,1138
|
|
851
|
+
pyrogram/raw/base/stickers/suggested_short_name.py,sha256=_0mocqFqnZhmI4N3DxwYGBVkkvq66ZCfDoS_8nlVmNo,2252
|
|
852
|
+
pyrogram/raw/base/storage/__init__.py,sha256=xlPc2nYaGccEUwOZ9zEXZNWM2GD2xQIVW5_K3s-9-Ek,1117
|
|
853
|
+
pyrogram/raw/base/storage/file_type.py,sha256=3cyO0IW-u7oZaVt08Fq3JnsFBtR2vmUhXs2pzA0z700,2492
|
|
854
|
+
pyrogram/raw/base/stories/__init__.py,sha256=0Z8_iPk5xbk5k0FpbTlfzYSnlNIH0jeYt-zF4IF7soM,1368
|
|
855
|
+
pyrogram/raw/base/stories/all_stories.py,sha256=p2ur9aLPZfF8rt-Wx9Duzq-wU4nFZ1D-iX2pxmk5p2I,2281
|
|
856
|
+
pyrogram/raw/base/stories/found_stories.py,sha256=MWijb6sYDMfcCLNBfpBKxegYPV-lfUVpUwwfmOUsSZA,2206
|
|
857
|
+
pyrogram/raw/base/stories/peer_stories.py,sha256=cNJOB3IgZkQ0yiCgLRFrWZjNiKbFcnW-eOHjpW3dTww,2203
|
|
858
|
+
pyrogram/raw/base/stories/stories.py,sha256=bunrMKnJPWbzz7dAz6gxxHTwDEi_fpqCdRf5iABHOh0,2256
|
|
859
|
+
pyrogram/raw/base/stories/story_reactions_list.py,sha256=O5qLyA0u6WRoCvImOu-br_ll0xo2XOB6h888xONzP0w,2253
|
|
860
|
+
pyrogram/raw/base/stories/story_views.py,sha256=HLEt_Y5bb_NDOOm9qPTRczLbJM50l0usfHVM3qrECuI,2198
|
|
861
|
+
pyrogram/raw/base/stories/story_views_list.py,sha256=eROnYDEsgBMVcRfrpStMFCsARjr0hBUmbuldldVssjM,2225
|
|
862
|
+
pyrogram/raw/base/updates/__init__.py,sha256=cFsPv4b9YsTesXnEnQlhJtLt8pqmpmggg2CElZ5jv_w,1197
|
|
863
|
+
pyrogram/raw/base/updates/channel_difference.py,sha256=4R_0WsN1hH_vIQ_tnTKihDAvhbjyr9SnVr5_Y7ToVuA,2422
|
|
864
|
+
pyrogram/raw/base/updates/difference.py,sha256=Vjol6u7RFkQ8LXH3FA3i_VyK4sR5WkdSXsvR5YYUIjg,2416
|
|
865
|
+
pyrogram/raw/base/updates/state.py,sha256=daQX-y1Fe5iO4YcVqN7ndTB1BYWNju10-yNOXxmwQk4,2160
|
|
866
|
+
pyrogram/raw/base/upload/__init__.py,sha256=RqJsGOI5ywuoiZbQC1x_L5KlAhGI-8lmAH1T5B4f_1I,1170
|
|
867
|
+
pyrogram/raw/base/upload/cdn_file.py,sha256=NA69gBr_Lr2RNrzbd0-CP9NrEfxT6uuld5p3W-NWuco,2254
|
|
868
|
+
pyrogram/raw/base/upload/file.py,sha256=mshiX2nE81PAj5LC0rh6kyNJlvYa-osF9405WdVQvR4,2220
|
|
869
|
+
pyrogram/raw/base/upload/web_file.py,sha256=Ar5u2y5KKjvXp3qQlBjkpUOjIqrWLEBF7i6ozDKEIYg,2171
|
|
870
|
+
pyrogram/raw/base/users/__init__.py,sha256=8Dq6T3dI93c2Gwn4Qx15qOeJzADw6DmuTGyuer_b0ZY,1143
|
|
871
|
+
pyrogram/raw/base/users/user_full.py,sha256=_hFF9ZX1Ab82UJug7H3GHNcNzoVje545B1c4V93KF8k,2174
|
|
872
|
+
pyrogram/raw/base/users/users.py,sha256=ubB_pjjxfYh2_m-TYg6NVRc909hAy35jxWgU8AEDJRo,2223
|
|
873
|
+
pyrogram/raw/core/__init__.py,sha256=zUsSyx7p_hfAZkugK2T9YmJUnm4dh0kR5T9tgKVASMA,1312
|
|
874
|
+
pyrogram/raw/core/future_salt.py,sha256=CXmWMaMkMz5JBnDmcD26WudqWXKfAi_ynSg6s87A64g,1692
|
|
875
|
+
pyrogram/raw/core/future_salts.py,sha256=19jYtwHnVy_STLZbDMOFz2dvzzZh8vud-nP0SKfESyA,1891
|
|
876
|
+
pyrogram/raw/core/gzip_packed.py,sha256=DVzEFra8gpJ3OVbZmhTtGyfH_0neI5_mqpl5qZOk6vA,1814
|
|
877
|
+
pyrogram/raw/core/list.py,sha256=oGkC0El2v4wWmzO5E7rOjYnAjRnXxljGHogGBzo7A8U,1048
|
|
878
|
+
pyrogram/raw/core/message.py,sha256=OdadQYdzPL-nozw6F5lOH5pva8jzxmzvkJ5dOSqj8Z0,1851
|
|
879
|
+
pyrogram/raw/core/msg_container.py,sha256=Zid716adIiFXsxjbXes_sjoWdtipnDsZ3Ojb4NsBWo4,1614
|
|
880
|
+
pyrogram/raw/core/tl_object.py,sha256=vAyCHFrBfFhNRgJupZAzJYAoxt3p9-aAobKbaa88nkw,2495
|
|
881
|
+
pyrogram/raw/core/primitives/__init__.py,sha256=YHD23FhbiuhRy2iSYKBVlJdOZXMRkbBoQWRnxNZ4RRs,1012
|
|
882
|
+
pyrogram/raw/core/primitives/bool.py,sha256=-1bc7y7hrguxpZuAkQn-sAFgvFb_pGJI4T5c-8fHjKg,1497
|
|
883
|
+
pyrogram/raw/core/primitives/bytes.py,sha256=-GAovTgmnQ207j1sbHksbee_uYGd-mgWhoZoHj6RYmg,1759
|
|
884
|
+
pyrogram/raw/core/primitives/double.py,sha256=rJWraBxf6fEcSJi1OendWYzMyMW8Mfh13z4rX0dpSP4,1193
|
|
885
|
+
pyrogram/raw/core/primitives/int.py,sha256=d7l4DYyyI4FIQwB77eniT_eN3-FVn7XACcc8g5zw8X8,1358
|
|
886
|
+
pyrogram/raw/core/primitives/string.py,sha256=Uz8dAIbFE9R5DGkaXnx3c9tNT51a3beefZVrODo0rLE,1194
|
|
887
|
+
pyrogram/raw/core/primitives/vector.py,sha256=WYTaJTfZul2__1qH7UMDKZxr5h7L2Jvz9Ap7Df7y2Ck,2022
|
|
888
|
+
pyrogram/raw/functions/__init__.py,sha256=OOPK7mU64tXmw-49fLVNNYmZ3-NMxphcGb4LSRxwM6Q,2288
|
|
889
|
+
pyrogram/raw/functions/destroy_auth_key.py,sha256=dvYHyg1tcyKNBFJz0PpTYrX_NMy3Dy1_52hhU-GPDWY,2077
|
|
890
|
+
pyrogram/raw/functions/destroy_session.py,sha256=U7TAf3_g4vqgEa2TcVWqWRScLP3Mc-AVsageR1X4e2U,2283
|
|
891
|
+
pyrogram/raw/functions/get_future_salts.py,sha256=qFhZlsVcLEJLeiz-HzZ5CnKQyc3Xe6LZt732ktMaTpw,2205
|
|
892
|
+
pyrogram/raw/functions/init_connection.py,sha256=DJDjMDn0c6xdunEw81vBtZcN_Vxv94xGlq_eKKYUh7A,5013
|
|
893
|
+
pyrogram/raw/functions/invoke_after_msg.py,sha256=TUm0fKRFSXEBriEFGauFvwp89hKov3JdEeLf-d6g3-U,2477
|
|
894
|
+
pyrogram/raw/functions/invoke_after_msgs.py,sha256=epulw9EVBqVIYODCgGOuJJROSisXAOo0J-tScxldMSQ,2530
|
|
895
|
+
pyrogram/raw/functions/invoke_with_apns_secret.py,sha256=k43iUnEJ5WzLT-4ldE08EIoc7vro2Bfvk3UkG7929T8,2702
|
|
896
|
+
pyrogram/raw/functions/invoke_with_business_connection.py,sha256=6mXNsmC_m4YmtGBHmm18U4BmaYYQ_cxCq9mXYeMjaIg,2591
|
|
897
|
+
pyrogram/raw/functions/invoke_with_google_play_integrity.py,sha256=wC3Rb8n5GoAncQLF1FbqXEA_5Bj4a7bR9jALyJw2CRQ,2729
|
|
898
|
+
pyrogram/raw/functions/invoke_with_layer.py,sha256=GFUrJ-PQMf1AKE8IkSYM8AZaBNNeSGLvFi3B0nT7qoM,2469
|
|
899
|
+
pyrogram/raw/functions/invoke_with_messages_range.py,sha256=8JeSygQNZXic0s4E6aaO2Hv0JqAp6MQQkQZ9g0HWGOE,2572
|
|
900
|
+
pyrogram/raw/functions/invoke_with_takeout.py,sha256=SJuQcxs8oVIAzA33Tm2Il0JtKB5XXJ18KAV-v5yeOsI,2525
|
|
901
|
+
pyrogram/raw/functions/invoke_without_updates.py,sha256=rbPkreHmwlwsi9av1ejs7bhLm-sWlsftHIr1aZSlHVg,2281
|
|
902
|
+
pyrogram/raw/functions/ping.py,sha256=WSJf9AYIGYiN0q8OtJa09ohqEjPdqOd8g0I0smf8fAA,2190
|
|
903
|
+
pyrogram/raw/functions/ping_delay_disconnect.py,sha256=Di8nMV70N0HaSHpV8Uh11mK1PxJJStQ1boMPiEeEcyI,2557
|
|
904
|
+
pyrogram/raw/functions/req_dh_params.py,sha256=zmJ6lRQ9bUBUAo12mx0hINTmvQmfCcHq0os1FfcJLbQ,3502
|
|
905
|
+
pyrogram/raw/functions/req_pq.py,sha256=0ZA2LDcrc6fBI3qGFGrXPSzhx4tXUEKgcUSLi0WGdZI,2185
|
|
906
|
+
pyrogram/raw/functions/req_pq_multi.py,sha256=wpXSwwpne55Qoz0k9yogGlN5Jp0L18XawhnzBmARnNE,2205
|
|
907
|
+
pyrogram/raw/functions/rpc_drop_answer.py,sha256=gu6ZaK0uX5I-FCFNIShzh492Kn-GbgJQBttmuA4LYMU,2271
|
|
908
|
+
pyrogram/raw/functions/set_client_dh_params.py,sha256=vFP7sRKJc59rUEiwlgOXAIJ_fJJo1_CE1w9pLrreZF4,2838
|
|
909
|
+
pyrogram/raw/functions/account/__init__.py,sha256=J9DdSMvm-7H5dasQIalHw0WL-kF7-RIsq7SfWC5rLAs,7254
|
|
910
|
+
pyrogram/raw/functions/account/accept_authorization.py,sha256=xYtWjHnJ6vlGUL78FJehihAB-PVY3uaXuPXwjnAWDyI,3443
|
|
911
|
+
pyrogram/raw/functions/account/cancel_password_email.py,sha256=0z77Sh-opBWcHebsWK5esMV_S-nnQ_WcOnvg_LUEBGM,2051
|
|
912
|
+
pyrogram/raw/functions/account/change_authorization_settings.py,sha256=RnbGwgTxcjp4HK7nkzZkFCyAgsewQlVFMmpmjlfnXBU,3720
|
|
913
|
+
pyrogram/raw/functions/account/change_phone.py,sha256=0J91LWGb_0VRKvINGZrETL-QRsr4Evu-XAWW4Zl978I,2813
|
|
914
|
+
pyrogram/raw/functions/account/check_username.py,sha256=NpIy_zuzs_bE6YEd5pApDpv1t3F8ZuVMVlRzzCxZDSY,2210
|
|
915
|
+
pyrogram/raw/functions/account/clear_recent_emoji_statuses.py,sha256=grt1Jyx7CUz7aZ9EpyPF7i6K7kuzsBtGlsb6EnXZ0e0,2071
|
|
916
|
+
pyrogram/raw/functions/account/confirm_password_email.py,sha256=8a9AR4p75oK0D_3kBXmKGLZOn-WQTH3QRjJw-HaFRiw,2202
|
|
917
|
+
pyrogram/raw/functions/account/confirm_phone.py,sha256=xLEHxKaBEc8qAtj_SNeEzekrQtDHgYbJAUuEqJNmw14,2520
|
|
918
|
+
pyrogram/raw/functions/account/create_business_chat_link.py,sha256=3_4MCL6GfBdTQortRogiZg_27KbVroo_tkR1qF1SqqY,2371
|
|
919
|
+
pyrogram/raw/functions/account/create_theme.py,sha256=Dyzz8OnkOKJxLd1exFPUVMTqIiSopm-yoVEKucBC0mg,3433
|
|
920
|
+
pyrogram/raw/functions/account/decline_password_reset.py,sha256=D9gg3B6e2lOJBu9SwU-xHGpWmrk9eFGZgsqdZhudI0E,2055
|
|
921
|
+
pyrogram/raw/functions/account/delete_account.py,sha256=Xv0DZYHnBB_hqmediwWKrh7OwjQ5xyFTEnCGydtMKyU,2744
|
|
922
|
+
pyrogram/raw/functions/account/delete_auto_save_exceptions.py,sha256=0OmHaz8ied_K-X8k15UrDDG28xkQ95AfsKazkRVqulU,2071
|
|
923
|
+
pyrogram/raw/functions/account/delete_business_chat_link.py,sha256=F-zidGoZl2Bkp-V6lOnP5sUgBJo5cdOIUdDrUOoXEv4,2210
|
|
924
|
+
pyrogram/raw/functions/account/delete_secure_value.py,sha256=pQCUNnX1HG24r28nXdtODI6ls6urQHj8gnTrXLPRS-M,2306
|
|
925
|
+
pyrogram/raw/functions/account/disable_peer_connected_bot.py,sha256=73Lh_wykkhsRwzHtCNchNgZPbX3cAnw5FHoGhODswec,2275
|
|
926
|
+
pyrogram/raw/functions/account/edit_business_chat_link.py,sha256=mzPRsqWr9SwkP0yAmUHh6qpj8z37Ihtjbho1lYEXkl8,2560
|
|
927
|
+
pyrogram/raw/functions/account/finish_takeout_session.py,sha256=FlSpC19tX5RCamjLoyOIihF878Aevx4M7CZZExTF3c0,2325
|
|
928
|
+
pyrogram/raw/functions/account/get_account_ttl.py,sha256=I3Exb5L8ZzVnFKGP9apKK9uTyU-eJyxiNQ_3GL__emQ,2073
|
|
929
|
+
pyrogram/raw/functions/account/get_all_secure_values.py,sha256=OOUMXE4Y8MTv7mWa2-Cwd338U89BehNr4Ijv3ORZqyo,2097
|
|
930
|
+
pyrogram/raw/functions/account/get_authorization_form.py,sha256=gDKjjIyNPxtuYZjA4SeP8gvnI5NkB3v1PAX5nwykSZA,2752
|
|
931
|
+
pyrogram/raw/functions/account/get_authorizations.py,sha256=EmRYumBze5tc9l3vUH0iv7T8vPKb1kdOBX5hFvh5fXc,2107
|
|
932
|
+
pyrogram/raw/functions/account/get_auto_download_settings.py,sha256=9q-7OjpMgh1AXXNq2SHgFyeLmJ7PtuQmMM76NhtIXS4,2143
|
|
933
|
+
pyrogram/raw/functions/account/get_auto_save_settings.py,sha256=UUyJTmS3kpvi5H_7g94YsQdJc-8u9KrXzy6bxVimqt4,2119
|
|
934
|
+
pyrogram/raw/functions/account/get_bot_business_connection.py,sha256=qbuxPka50CnxnTotbH4hbjpR5krD_VUWQwqxb19XJYQ,2333
|
|
935
|
+
pyrogram/raw/functions/account/get_business_chat_links.py,sha256=h9zCtjH-xGyc9TIZ2WLx_SCeirz_uGcoXpY7wdxV2c0,2125
|
|
936
|
+
pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py,sha256=ZrnUxOulT0kQbNqUoBpKwjrYpLaMm4P5fR6Q2-Jz3do,2309
|
|
937
|
+
pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py,sha256=w6jw4p3IQUQUoQLcryfCwDJjbZ3IxGipS-kiOu9mL4I,2293
|
|
938
|
+
pyrogram/raw/functions/account/get_chat_themes.py,sha256=zUOStG6di3rryeJjL8sM6IDVFuBMHylghgrjK-flCwg,2227
|
|
939
|
+
pyrogram/raw/functions/account/get_collectible_emoji_statuses.py,sha256=EV02gs2KYxj2dl3fsXfLNs5_wuUPp1wsQiXH7eBQF6c,2297
|
|
940
|
+
pyrogram/raw/functions/account/get_connected_bots.py,sha256=uzsCle5_8no8TFpCzTQwWLtgW1J79BkEWLe4Tn8Y2YU,2101
|
|
941
|
+
pyrogram/raw/functions/account/get_contact_sign_up_notification.py,sha256=Y73fRXMjyUro_9IXlCJEjbmpul6A1ZJkgLN3PuSkAUI,2087
|
|
942
|
+
pyrogram/raw/functions/account/get_content_settings.py,sha256=thirj34F8KZL7N5UBCQEnzpM1qTcvrV7dz2Q88EnIms,2113
|
|
943
|
+
pyrogram/raw/functions/account/get_default_background_emojis.py,sha256=GGI0m7ZlM1RamqWYntXDxKcv-Yr70JhWDP5dLdHXT4k,2269
|
|
944
|
+
pyrogram/raw/functions/account/get_default_emoji_statuses.py,sha256=-bK9hD3edfPcvrPDsnjAocymNokXFkDXngUSwkSG2Zo,2281
|
|
945
|
+
pyrogram/raw/functions/account/get_default_group_photo_emojis.py,sha256=b7BmGUunPPj2sMUNEibYzS3izO9oQzsDW4b8neBaGQ0,2269
|
|
946
|
+
pyrogram/raw/functions/account/get_default_profile_photo_emojis.py,sha256=l81_SaarxvTwtZDoRfFH35NrPE87TNJoxdW-z57okIg,2277
|
|
947
|
+
pyrogram/raw/functions/account/get_global_privacy_settings.py,sha256=pf0tsAN6y5AJA7mw3r0LWQHgj77vUC4mZTLE1vm_wGc,2133
|
|
948
|
+
pyrogram/raw/functions/account/get_multi_wall_papers.py,sha256=-DgNX2FYhQ4-sPXB4_H-EEjtg9bTg2xqM3aalcHTCtc,2397
|
|
949
|
+
pyrogram/raw/functions/account/get_notify_exceptions.py,sha256=D_3TH7Sx2OHTLStagrASh511EVKsAn8IS6iLEvsQ5ZA,3191
|
|
950
|
+
pyrogram/raw/functions/account/get_notify_settings.py,sha256=i0tcoK4zMAJajLfsDD3wLNZvbZRYBL-F_d4ZoZhuOb4,2331
|
|
951
|
+
pyrogram/raw/functions/account/get_password.py,sha256=cfZyfHiDoqW6Z5g2TZfY2Ga1bnrCH7BE_67aFJa-9rg,2071
|
|
952
|
+
pyrogram/raw/functions/account/get_password_settings.py,sha256=1lXgcc87dScNj1KfxhNQJrl0te5tGTPGsuvUZ5QLgR4,2411
|
|
953
|
+
pyrogram/raw/functions/account/get_privacy.py,sha256=IpctK2C_-PzYNQAvIaFZwp6Dzd1QqcYJ0l9DsM_9jNI,2298
|
|
954
|
+
pyrogram/raw/functions/account/get_reactions_notify_settings.py,sha256=LgRgpxP1SVfFipl5Uiqg3X9pXGVnJMpohTPDROsQcTM,2143
|
|
955
|
+
pyrogram/raw/functions/account/get_recent_emoji_statuses.py,sha256=Frezet8_jp43Ku3Vq3Dz6-90DOlhADUcMhr2b11RNYk,2275
|
|
956
|
+
pyrogram/raw/functions/account/get_saved_ringtones.py,sha256=0PfJkdDn5ZbbIY4auiPJfYGyOBsrUkn5uBDJXO026W8,2259
|
|
957
|
+
pyrogram/raw/functions/account/get_secure_value.py,sha256=QniwaN7UaRWF6znRjqQkJy364inhTIZF7fLEMuPwV-8,2344
|
|
958
|
+
pyrogram/raw/functions/account/get_theme.py,sha256=cZ4WPg8_VLzUXbVMNY4cBLS66C6uQ5RzavoBC6cDaw0,2473
|
|
959
|
+
pyrogram/raw/functions/account/get_themes.py,sha256=KuUpDhYyELZ3lFQxRyW7U58qL43GsjphkjFj9DlPKM4,2426
|
|
960
|
+
pyrogram/raw/functions/account/get_tmp_password.py,sha256=65nSSL6NTt0CMR4Ap5VISSDuFK1ZREAk9dMSIkWgylE,2598
|
|
961
|
+
pyrogram/raw/functions/account/get_wall_paper.py,sha256=61Jf6mB91k9vVHt73Km_UNXgauJs_ieTsApib8lO67E,2334
|
|
962
|
+
pyrogram/raw/functions/account/get_wall_papers.py,sha256=-mxl8qzk1JYT2WHCjlj_q2XzxZolsB5OgMdvuFmjJpc,2233
|
|
963
|
+
pyrogram/raw/functions/account/get_web_authorizations.py,sha256=b5qwSWuKfM5G_NaHbG7jSgreijb-t5pEeaXYwDLbk-U,2125
|
|
964
|
+
pyrogram/raw/functions/account/init_takeout_session.py,sha256=fjlkuvywIQignz9Fn3LcmRFVCaWbcSM7UElGzj9NHdY,4467
|
|
965
|
+
pyrogram/raw/functions/account/install_theme.py,sha256=Ok3276efCpWw50fqHNecRDJ0-ZVl6ctXFyUFreV5oY4,3547
|
|
966
|
+
pyrogram/raw/functions/account/install_wall_paper.py,sha256=z7SYoR9_XiCOfI0mD7ICeSW2yFtsrFquXD4gXL3It0A,2638
|
|
967
|
+
pyrogram/raw/functions/account/invalidate_sign_in_codes.py,sha256=WidWuBoIAqGlea4DPYh3KlQTU9RPGxYgCSVCydzYZ3g,2255
|
|
968
|
+
pyrogram/raw/functions/account/register_device.py,sha256=uRdxEP0FEdDV9jIUzj7u1696gb7VDMk1KhyprQugHw0,3537
|
|
969
|
+
pyrogram/raw/functions/account/reorder_usernames.py,sha256=xHMsg2fgFbHwJA1ivoWqqJkfZRYVtivC7_ZL0_rkNxQ,2235
|
|
970
|
+
pyrogram/raw/functions/account/report_peer.py,sha256=fIek_dStrW95qE6vFK2JCrpEM2Xuz-ljc5IUUejD-Rs,2735
|
|
971
|
+
pyrogram/raw/functions/account/report_profile_photo.py,sha256=a4vDU7TnK3QQHaz3nzvK7gYjggfL7Tp3zxHf7j7E8vs,3065
|
|
972
|
+
pyrogram/raw/functions/account/resend_password_email.py,sha256=mH4CWgendVzD6_RD5xd7myXAhd9EH9ZULR53RTDxfPg,2051
|
|
973
|
+
pyrogram/raw/functions/account/reset_authorization.py,sha256=1-3Qapzo0hUXgQ4IipbD8ChpNScT8V1V6cr3PAXE-UM,2199
|
|
974
|
+
pyrogram/raw/functions/account/reset_notify_settings.py,sha256=U9-zhLDLSq-z3O_3UavWQrVJnpzE8ERliZO4exSHcWg,2051
|
|
975
|
+
pyrogram/raw/functions/account/reset_password.py,sha256=stv_1xcBRIpPetcxI_hdONyVJTsW6ucIBkZ7I-UXnBA,2101
|
|
976
|
+
pyrogram/raw/functions/account/reset_wall_papers.py,sha256=OncUuaHqsjmJAiafN8wSFA5V46tfQf6CaZSqBYvGTiU,2035
|
|
977
|
+
pyrogram/raw/functions/account/reset_web_authorization.py,sha256=xHzTKV9mSENbTcYNN7P9P-0lcyB1aZTB5zflNBbCI3Q,2211
|
|
978
|
+
pyrogram/raw/functions/account/reset_web_authorizations.py,sha256=v6fK1ILbQxRuKFp1B_PhXCxHbid07lwialBaseipOwQ,2063
|
|
979
|
+
pyrogram/raw/functions/account/resolve_business_chat_link.py,sha256=vxl6AHjBRmoQ3hCJlkrU3zQaOPwb7g91CoBn9pQi4xs,2300
|
|
980
|
+
pyrogram/raw/functions/account/save_auto_download_settings.py,sha256=pkgg7YMIUXbnw51F8fg0JkfJNGiSB880qYXodXT4MK0,2889
|
|
981
|
+
pyrogram/raw/functions/account/save_auto_save_settings.py,sha256=mr3kcowCCmTF2O_7vNY_mGx5ZNCbSxQGUAvXWmtF0Os,3597
|
|
982
|
+
pyrogram/raw/functions/account/save_ringtone.py,sha256=lhi4HphOEo9yYq5PEkKmp5bIh1qAyBeNKrUSFXLva24,2502
|
|
983
|
+
pyrogram/raw/functions/account/save_secure_value.py,sha256=6OBnDBgQ6QxZeBIPMPTbuft5TA3FBqiRksrXoaPOQqg,2632
|
|
984
|
+
pyrogram/raw/functions/account/save_theme.py,sha256=tiBWqU51j_ph0nKeMX3wLIUS724YwtPrSS2HkUChQuU,2443
|
|
985
|
+
pyrogram/raw/functions/account/save_wall_paper.py,sha256=5Asjqqb1TaDrD7WJWu_vmQgu4bCiNaiHZrsJldkpFjs,2837
|
|
986
|
+
pyrogram/raw/functions/account/send_change_phone_code.py,sha256=V2efVHXUsxG24CJuAJ10k5pxgWUPD6qc0PnACoKEik0,2622
|
|
987
|
+
pyrogram/raw/functions/account/send_confirm_phone_code.py,sha256=b98iz6CU7r-i_4I1ocqMsSfvgkHUzzSdx4noGvF3lmQ,2554
|
|
988
|
+
pyrogram/raw/functions/account/send_verify_email_code.py,sha256=wSOv3LQSaNACkvD9xqLuyoi8JIzZh8bq2HnX0aoO39c,2590
|
|
989
|
+
pyrogram/raw/functions/account/send_verify_phone_code.py,sha256=tDTjxZ0W1qQY7sfOG3h-3V1vgK_Umm9Dihqt0YYKdqA,2622
|
|
990
|
+
pyrogram/raw/functions/account/set_account_ttl.py,sha256=7jhGUS6Rrno1Y6jp7hTZ6vDVfymLZOxayoZE7wGH1Y8,2246
|
|
991
|
+
pyrogram/raw/functions/account/set_authorization_ttl.py,sha256=nRbxxUXntRL8GuJGILzSIrai31AfpO07SCdN4jTVhQw,2362
|
|
992
|
+
pyrogram/raw/functions/account/set_contact_sign_up_notification.py,sha256=pNDrZDbA4Jwy4wTft0oybSd3CrV2OHvUiLONr64qnuc,2248
|
|
993
|
+
pyrogram/raw/functions/account/set_content_settings.py,sha256=J5rzoTVd4Za7Sqo-2sdE8Ep0LEJAqmYX5eFBv9F7fhU,2407
|
|
994
|
+
pyrogram/raw/functions/account/set_global_privacy_settings.py,sha256=shoxeOyY3erOTtt2iJ1JeqCB7SaNBEm7X9jG65yvXYc,2425
|
|
995
|
+
pyrogram/raw/functions/account/set_privacy.py,sha256=Bsp8CLWHLnFGWZ9ct-VGCuY8zYHSstycqsGM46I0dS4,2615
|
|
996
|
+
pyrogram/raw/functions/account/set_reactions_notify_settings.py,sha256=A13tf6jMReAtmkheBmLfzTYGnEiyFlvFqKUmNVmuksc,2445
|
|
997
|
+
pyrogram/raw/functions/account/toggle_connected_bot_paused.py,sha256=AMO4YBDKNPYIXnnC5w1x3cey6mXLisObOwBdYmpY0-w,2490
|
|
998
|
+
pyrogram/raw/functions/account/toggle_sponsored_messages.py,sha256=RuMIYai_TEMfeIsTDwapG1yjxM7-5cXelQsOVeCObxE,2237
|
|
999
|
+
pyrogram/raw/functions/account/toggle_username.py,sha256=vAwC9ztEQr8gOEFv73WPhLw1Ewv6vsPZt7SVM4byWf8,2425
|
|
1000
|
+
pyrogram/raw/functions/account/unregister_device.py,sha256=eE4WPOEZ_DzHIbAo5sobYtNWjRYrpUARBYXlQf_lsUg,2744
|
|
1001
|
+
pyrogram/raw/functions/account/update_birthday.py,sha256=DW1yAAIrgDYDHedhZ_7I4O8vUB_tNLRv78ObnPtDAGM,2481
|
|
1002
|
+
pyrogram/raw/functions/account/update_business_away_message.py,sha256=zeQcChuJLAerg2vYHFbPrvCsDgEoeD4UW3TbAOTWDRM,2578
|
|
1003
|
+
pyrogram/raw/functions/account/update_business_greeting_message.py,sha256=hlAV1qWBRrMep8tPTyZXTeCYQ0hhIDg50DrsGPyeFGE,2610
|
|
1004
|
+
pyrogram/raw/functions/account/update_business_intro.py,sha256=Lx325Fgpk_UrH25fcoeD0BPuTBlVKiuTDNZknJrrOE4,2508
|
|
1005
|
+
pyrogram/raw/functions/account/update_business_location.py,sha256=qOn1x9p8nbHfAvdNkN5vKzCZJrO5ul7S_PV7U3iegtI,2929
|
|
1006
|
+
pyrogram/raw/functions/account/update_business_work_hours.py,sha256=DD5szIpLvaug27APE7Q0szv72HlzHUpHpAl6Q-MqovE,2674
|
|
1007
|
+
pyrogram/raw/functions/account/update_color.py,sha256=Ub5rDNBEiAoqZzHCVXyc1ehr5nSHt1FKxbGT1hmSvGU,3212
|
|
1008
|
+
pyrogram/raw/functions/account/update_connected_bot.py,sha256=46d61e-PuKVU-Ov28RPyNAka-SdjNJwitvsqZ4wSEkQ,3271
|
|
1009
|
+
pyrogram/raw/functions/account/update_device_locked.py,sha256=mP1u4vfaM-HTJrwT51t2royBkXuEyFLRJQ9FGq-CVRw,2214
|
|
1010
|
+
pyrogram/raw/functions/account/update_emoji_status.py,sha256=cWcQgAQHBU1rOLgL3hwD5kayVccwVRIyiAqzc9HHNOM,2331
|
|
1011
|
+
pyrogram/raw/functions/account/update_notify_settings.py,sha256=l1DaBizNNRCK3yNP4_CX513konvD1uZmL8d8_iaAcU4,2637
|
|
1012
|
+
pyrogram/raw/functions/account/update_password_settings.py,sha256=Xulzq3hsaVTdWOuywsq7xVgl5hw10bpciriNUzzLUj8,2765
|
|
1013
|
+
pyrogram/raw/functions/account/update_personal_channel.py,sha256=7gNk5FnoS5iKgvO-XubhELw_9u1mt_truvi7LlS8MFY,2306
|
|
1014
|
+
pyrogram/raw/functions/account/update_profile.py,sha256=93cnxpIsAuXbQdIdtWgjKzgsctNXNeAIftxrPqOOveY,3240
|
|
1015
|
+
pyrogram/raw/functions/account/update_status.py,sha256=E6s3ach5tse5hOG9VRRYHxlX8qQS4vEMOjOO5zPMZBM,2193
|
|
1016
|
+
pyrogram/raw/functions/account/update_theme.py,sha256=EIiBg9Ub-XeMSx0UnFpDXTyl-wrN7xcJpRh6aDH155Y,4231
|
|
1017
|
+
pyrogram/raw/functions/account/update_username.py,sha256=lzfHtw4eleWMMlElrHBxn2bM3QPXhcTxzHrpdQbh_Zw,2242
|
|
1018
|
+
pyrogram/raw/functions/account/upload_ringtone.py,sha256=1i6NEiH-5w7zUp7yddX1Kh7Vqwx7KsW-dh_Swm2hz_0,2759
|
|
1019
|
+
pyrogram/raw/functions/account/upload_theme.py,sha256=0oiadE3Gza52fpvCwJVJapx4OtDMayjWsF2XppAMpDs,3218
|
|
1020
|
+
pyrogram/raw/functions/account/upload_wall_paper.py,sha256=hbsVPjnsnlTA-DjDRd185KmbCpQSHPzSgSFgxOOwV2E,3178
|
|
1021
|
+
pyrogram/raw/functions/account/verify_email.py,sha256=XsGM9wKAta1ScBNxL8Ird4QAcARg3Ynpn81k0gYIipY,2712
|
|
1022
|
+
pyrogram/raw/functions/account/verify_phone.py,sha256=YzENsynBxWxvuIaXUv95gaeOV1zgLxtV0p7C_aRXZo0,2785
|
|
1023
|
+
pyrogram/raw/functions/auth/__init__.py,sha256=yrs_v947DagnsOntouWSoPORKd2hm838yK2x8W_qG6Q,2196
|
|
1024
|
+
pyrogram/raw/functions/auth/accept_login_token.py,sha256=PvgTXt6mA8SvPjZPJRCgMJlRXDmWmVtmHD6Mkm9oxsY,2239
|
|
1025
|
+
pyrogram/raw/functions/auth/bind_temp_auth_key.py,sha256=IFx_Ln3EAfkNsOx9ypnhTu7M6uUblBb0khw38Hh2INg,3071
|
|
1026
|
+
pyrogram/raw/functions/auth/cancel_code.py,sha256=uRTK3PXbwfkSNoqxv0qvcN_6Akg_j0r0UPtTgga2tM8,2527
|
|
1027
|
+
pyrogram/raw/functions/auth/check_password.py,sha256=StgYBSxCLU3yk59EkQLxqb7d8OCZAd2bTGOQ9z2oy2g,2372
|
|
1028
|
+
pyrogram/raw/functions/auth/check_recovery_password.py,sha256=OdSHuD1Ckjsf_gIKYYcgWSqdFc0FZL-HdmtQc_ExAWU,2201
|
|
1029
|
+
pyrogram/raw/functions/auth/drop_temp_auth_keys.py,sha256=Gcu1h0gQ69-m9KosYxRjF2akAPcU8UqZB0rRfhCci98,2336
|
|
1030
|
+
pyrogram/raw/functions/auth/export_authorization.py,sha256=pNDS-XB6UKGkUFhq-Q3reNqwAPmpMAYr3_iZjMb65kw,2278
|
|
1031
|
+
pyrogram/raw/functions/auth/export_login_token.py,sha256=w3bfkysgx_U6_9mrvmpqWLfiFMTQki0MLtbTKleqG9U,2782
|
|
1032
|
+
pyrogram/raw/functions/auth/import_authorization.py,sha256=WDx3duppk74jLBk0jb2bSjngZxtVRu0JLEyg0t9ifz0,2445
|
|
1033
|
+
pyrogram/raw/functions/auth/import_bot_authorization.py,sha256=D2wfuggFuKYviQpBiwXDpjcQn6UmYlwCyjTq9Tsvd7o,3011
|
|
1034
|
+
pyrogram/raw/functions/auth/import_login_token.py,sha256=CZY10TaKheMofIzQlYktstgpDFhhDUo3LinO_RxeCNE,2243
|
|
1035
|
+
pyrogram/raw/functions/auth/import_web_token_authorization.py,sha256=3q8KzOYTp9xeFCjBt2fp9judmtB3ewHU6GB9XeF1xv4,2823
|
|
1036
|
+
pyrogram/raw/functions/auth/log_out.py,sha256=luSysvW5ooqJTa70ZEZp735zb-30IRHF3lfDkUVffpk,2044
|
|
1037
|
+
pyrogram/raw/functions/auth/recover_password.py,sha256=cU1D8Kno16uOJYRvOyFVXZS9XMdHI-uYuKMdHL9AUeQ,2863
|
|
1038
|
+
pyrogram/raw/functions/auth/report_missing_code.py,sha256=PUPtwGxxXIrz8DnczSsOqdU4PZi1J7lsxgBqa7sfa-8,2743
|
|
1039
|
+
pyrogram/raw/functions/auth/request_firebase_sms.py,sha256=1wkNaolMVf6l_r3K-JaPciBABjvOwfzPoHatdDcmu50,4091
|
|
1040
|
+
pyrogram/raw/functions/auth/request_password_recovery.py,sha256=longsCHfy9M4Pss4dCK_FVmJd76KysYzFSUpu1xqHOM,2126
|
|
1041
|
+
pyrogram/raw/functions/auth/resend_code.py,sha256=ne5zUqBYVlxrv8O4RI8PLluUdh5XNqk-RCvJYW3EX_Y,2994
|
|
1042
|
+
pyrogram/raw/functions/auth/reset_authorizations.py,sha256=YVFuOfQaYEkdo5QZfh1LBXJEUfHyBcCwgdn-nRElKvE,2048
|
|
1043
|
+
pyrogram/raw/functions/auth/reset_login_email.py,sha256=bXgavsZ_hs-B6N4Ai5H4RIPwCEK1tWvMnSj0xKv4DZw,2593
|
|
1044
|
+
pyrogram/raw/functions/auth/send_code.py,sha256=tknj6ejhXdove9wWdEaGK5BwYFDBFsVqgLOSUG3H-vE,3025
|
|
1045
|
+
pyrogram/raw/functions/auth/sign_in.py,sha256=SsSnJ_RDSB_MiZjGXvrdWPivfGi7gP8eatZvobPJesc,3631
|
|
1046
|
+
pyrogram/raw/functions/auth/sign_up.py,sha256=Z2EwHnoe0YBxeh13_Epw0YYbXosepK_fuKhMPn5TVUA,3524
|
|
1047
|
+
pyrogram/raw/functions/bots/__init__.py,sha256=WAOap95MO6F34A0uBNgu0-7AQefJmEuB3qzxbyUEeYY,2737
|
|
1048
|
+
pyrogram/raw/functions/bots/add_preview_media.py,sha256=okih9l7mWEjTFY6QyWB5x8LvLbjalUYxM8_HD-PWMDs,2794
|
|
1049
|
+
pyrogram/raw/functions/bots/allow_send_message.py,sha256=IDOFF9xGYJvRP7Z4YFmHk_SVhZjtvW0DNmMrYdYnHrA,2269
|
|
1050
|
+
pyrogram/raw/functions/bots/answer_webhook_json_query.py,sha256=NN9QCn5qaa1jLSdA79z_qz1LYIPe17_nvJOArOPH7Ug,2502
|
|
1051
|
+
pyrogram/raw/functions/bots/can_send_message.py,sha256=4T0xqn8ppxCZbJXMjBmGmmNDtT_FKYsO-ebe_AconTk,2227
|
|
1052
|
+
pyrogram/raw/functions/bots/check_download_file_params.py,sha256=o1srZKYm-aRVMquc2yMIioIbRc5ov3aLn5uxrhZ6RSQ,2693
|
|
1053
|
+
pyrogram/raw/functions/bots/delete_preview_media.py,sha256=ve3q7K2993T6T0SHtEJQqPGiLwqKYqlZAaOEWoioTBc,2778
|
|
1054
|
+
pyrogram/raw/functions/bots/edit_preview_media.py,sha256=vXK26DTYiYFSmTXBGaLbUXEx8O8G17ITIFdhO9oP4Nw,3105
|
|
1055
|
+
pyrogram/raw/functions/bots/get_admined_bots.py,sha256=CyEXAjiuLneU2INYs5swwUjh7WvIdaWEM3qDB-zTOOo,2064
|
|
1056
|
+
pyrogram/raw/functions/bots/get_bot_commands.py,sha256=nyysKon2EpsdoXLJraRElzZNDm7hOHHvPpw8F5LmhNo,2559
|
|
1057
|
+
pyrogram/raw/functions/bots/get_bot_info.py,sha256=fmkfL-i1xFmTJH5ohSUPrJM7VNO3e8RRjrRqrIJ_D68,2697
|
|
1058
|
+
pyrogram/raw/functions/bots/get_bot_menu_button.py,sha256=zxOyKO9bp7Bpzx8HBFtvdVhtQUTP6NZ-m5a_OlWlyPU,2317
|
|
1059
|
+
pyrogram/raw/functions/bots/get_bot_recommendations.py,sha256=ULN_fMhXCvkXfc9Md_CquYTtHNHhdwQ-4wIj794q1w4,2297
|
|
1060
|
+
pyrogram/raw/functions/bots/get_popular_app_bots.py,sha256=TYMNb8E9Jq3H5jmTlGHJk0bltJTGTEWffmwf-HZ7ihs,2471
|
|
1061
|
+
pyrogram/raw/functions/bots/get_preview_info.py,sha256=mTq4byAs7FrFC23KgKYqO3oMymui1lB5zvfkdZKDJrE,2521
|
|
1062
|
+
pyrogram/raw/functions/bots/get_preview_medias.py,sha256=yplb_y99U_5DfYcc2dOePjpMydgBw4mgSB-3Svoq-M8,2293
|
|
1063
|
+
pyrogram/raw/functions/bots/invoke_web_view_custom_method.py,sha256=EPenb-m7AezMPhepFwt8ql8OK6tgTUrtYXpWgLj9z6A,2855
|
|
1064
|
+
pyrogram/raw/functions/bots/reorder_preview_medias.py,sha256=n4GTBlsWBl62v5kehNEQnO_xyWlL2V57znnBKyXbhZM,2786
|
|
1065
|
+
pyrogram/raw/functions/bots/reorder_usernames.py,sha256=62JPQ2g3coSSqxtgVjCzDi918fJAllBVq2fqKcl1iAU,2481
|
|
1066
|
+
pyrogram/raw/functions/bots/reset_bot_commands.py,sha256=QIK08SNr5cgkzkDw7qmaHlJE5ZIvdIzfvpATOn_luOQ,2519
|
|
1067
|
+
pyrogram/raw/functions/bots/send_custom_request.py,sha256=RmSBXvbgZowpqc4YDLBrOup3pNHrorjK_s8qbLjsyVk,2576
|
|
1068
|
+
pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py,sha256=6hPmMAC32nTGskfvI9RlmvhITRfGk92GBJrmqMbBUN4,2408
|
|
1069
|
+
pyrogram/raw/functions/bots/set_bot_commands.py,sha256=Z7SQlEJ8yH_OK7WgJcOB94JBJ08vaikw8Fet_mSwaJo,2829
|
|
1070
|
+
pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py,sha256=4vuWuo-KIkBEsec9nUYdvJ1xjnPk_lKb2rkqd7-7g68,2392
|
|
1071
|
+
pyrogram/raw/functions/bots/set_bot_info.py,sha256=O3f9cBlskDtKSjy7jgj-jxqnXVmXEXa8y0GqbTHEPJY,3797
|
|
1072
|
+
pyrogram/raw/functions/bots/set_bot_menu_button.py,sha256=ziXDuwtCrivCppV7rFXqfeMUMikAAMpUiSjmwI2-7l4,2563
|
|
1073
|
+
pyrogram/raw/functions/bots/set_custom_verification.py,sha256=GPHq3R1P-b1T9N1LlvNhfBlYfUOH39EjpB67nr16mTo,3492
|
|
1074
|
+
pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py,sha256=U_fliYzsu7Qpx6HOSpXt1K4Bvrz5-J-EHNf1TfRZgFA,2513
|
|
1075
|
+
pyrogram/raw/functions/bots/toggle_username.py,sha256=T-R_AcvrF5tMaePwkaPMxVzkLbYeVC_K5_vTsHkZz2g,2669
|
|
1076
|
+
pyrogram/raw/functions/bots/update_star_ref_program.py,sha256=lPDGymjoa3MMC_XZYG0XjZRoWEpl1FlPllI5JYjTjdk,3155
|
|
1077
|
+
pyrogram/raw/functions/bots/update_user_emoji_status.py,sha256=KRU-dZQy4h_2mB9yjfXQC2UIMbCzbRnG_TEtWyEWY5s,2629
|
|
1078
|
+
pyrogram/raw/functions/channels/__init__.py,sha256=9ZmZYNqpQD2b_x-8m7HAFpJe_kF3sPsxg1pZA2kd0iU,4109
|
|
1079
|
+
pyrogram/raw/functions/channels/check_username.py,sha256=YnEQXRZ5x3as28xMUZ64O9FyMOcRIkdtCR-_0xR-Izo,2508
|
|
1080
|
+
pyrogram/raw/functions/channels/convert_to_gigagroup.py,sha256=S5_xTy_aa-dDoM4R-W2gTr4tEwcSRc5owoCWOSEaoDI,2327
|
|
1081
|
+
pyrogram/raw/functions/channels/create_channel.py,sha256=H30dYCgb2KLQBnpXdReuupIkr05tQuCQSon0gIswNt4,4897
|
|
1082
|
+
pyrogram/raw/functions/channels/create_forum_topic.py,sha256=CwMloThlFF4oA3l9Amw3Lgv25m7wwtikYDLSy9djm5I,4143
|
|
1083
|
+
pyrogram/raw/functions/channels/deactivate_all_usernames.py,sha256=qFkOMt_Ajg_2kGZDAr70Kg8rj4EVH2a6SkB1X4rgIlM,2309
|
|
1084
|
+
pyrogram/raw/functions/channels/delete_channel.py,sha256=26WP7UFJKBTaAbVMRNHcWHkCy1WGe3J0Lh5Dk5zHDNg,2309
|
|
1085
|
+
pyrogram/raw/functions/channels/delete_history.py,sha256=KKFX7wJ29hNVUFFk7kOGWnmwwm_KqTNUZQlqsyh1gO4,2891
|
|
1086
|
+
pyrogram/raw/functions/channels/delete_messages.py,sha256=lb3-UBiojKIStvKH7gAGP8QzMyKxQZadbFqDjbY6-5c,2570
|
|
1087
|
+
pyrogram/raw/functions/channels/delete_participant_history.py,sha256=fT5B7WpHgsdkj0ezv_hbn0ig4miatAIf0ZfutTdOQko,2708
|
|
1088
|
+
pyrogram/raw/functions/channels/delete_topic_history.py,sha256=n521C2P0I57BmsbGMjmrKDoRC4qHfLs8AuGMy7bk1v8,2616
|
|
1089
|
+
pyrogram/raw/functions/channels/edit_admin.py,sha256=QNePVdugbP2OZxGoxC5ygYlAtoR9vVxbKtXPH61T7Ik,3129
|
|
1090
|
+
pyrogram/raw/functions/channels/edit_banned.py,sha256=V3mBleydfTPDgbj9sr-Mh9LV7XtaXkjPmZDvkhrauyg,2985
|
|
1091
|
+
pyrogram/raw/functions/channels/edit_creator.py,sha256=6Q2JSdTtl_bpxW4chtmMwYUY3nknYgzbsr2iowMpjME,2928
|
|
1092
|
+
pyrogram/raw/functions/channels/edit_forum_topic.py,sha256=toRUBJ98ucZjaeDVMhAnqGmOmu6PVejpSZRX1AbkjvM,4154
|
|
1093
|
+
pyrogram/raw/functions/channels/edit_location.py,sha256=mhoWvY8EB_ugivfn6_Zd9y2aHVV3c-nM2b3ogGCTvxs,2814
|
|
1094
|
+
pyrogram/raw/functions/channels/edit_photo.py,sha256=YrcUHTq3pec_Zi61qd8fktc0SszcmPXG-KhDouhKME0,2580
|
|
1095
|
+
pyrogram/raw/functions/channels/edit_title.py,sha256=k6XLQNxx_JrmXvKZt_jf2o4OZz1_imkkzIFfe7s-rFo,2499
|
|
1096
|
+
pyrogram/raw/functions/channels/export_message_link.py,sha256=UX7LnLwNlspHuzeGQAdFs9mza5_JB-UnVAG8Q-dDXKE,3114
|
|
1097
|
+
pyrogram/raw/functions/channels/get_admin_log.py,sha256=0YnJkavYjJ1TJGhJzawPaMLnymI9B8mjal_x3mChqmA,4237
|
|
1098
|
+
pyrogram/raw/functions/channels/get_admined_public_channels.py,sha256=FBzYofHai4txqPLiTc_zIuPSvzNvPMtN2W3yTpdCWQo,3053
|
|
1099
|
+
pyrogram/raw/functions/channels/get_channel_recommendations.py,sha256=jjIvLZw554YBOhJfyXSkO53SICLc1K6tfrUEqdq31mE,2579
|
|
1100
|
+
pyrogram/raw/functions/channels/get_channels.py,sha256=p8nbSx_cQS2atLrhazbBSsTze-vE35DiY-UnZ5dUv6E,2290
|
|
1101
|
+
pyrogram/raw/functions/channels/get_forum_topics.py,sha256=645eOiRja32iBUNPyDgrml5xw9cd044_-Hyu3vsx0iA,3688
|
|
1102
|
+
pyrogram/raw/functions/channels/get_forum_topics_by_id.py,sha256=vb225giNPIpB3cNJ9_h2N4-jtrGxK_Iq8-16B2hSCUI,2612
|
|
1103
|
+
pyrogram/raw/functions/channels/get_full_channel.py,sha256=rQxv8gKhK5UzWUr504u1J9AkIlsr8tAyUDRG6WRg1bg,2331
|
|
1104
|
+
pyrogram/raw/functions/channels/get_groups_for_discussion.py,sha256=S9TvKs40e8g8ColCC48kpt3CDJQTPo1AQ2oZ0txZwmM,2112
|
|
1105
|
+
pyrogram/raw/functions/channels/get_inactive_channels.py,sha256=OpGWWZ2PS_PEP4mJky60fjMcwh1FC6JT6O1g7yESpVU,2116
|
|
1106
|
+
pyrogram/raw/functions/channels/get_left_channels.py,sha256=sWOcHbwhaQ2heMnYVBrAUSAt1lykvYYhJkhrMAsQ2Nw,2251
|
|
1107
|
+
pyrogram/raw/functions/channels/get_messages.py,sha256=R6ntvws4iAL_XWCquyj_QdF0GEKaEKB8WTFPO8XPujg,2595
|
|
1108
|
+
pyrogram/raw/functions/channels/get_participant.py,sha256=Gpnntj3qcVxNDZLAn17Lk313h6_i6rXjUKJFvNka3z0,2674
|
|
1109
|
+
pyrogram/raw/functions/channels/get_participants.py,sha256=6y2gCZ0wZuCxCjlaSF_2k6mg3OEGflV5W7gEwXIu2e8,3326
|
|
1110
|
+
pyrogram/raw/functions/channels/get_send_as.py,sha256=YJF-RGjB-Y3cH3f4omq2fACe7c26ds0kmBEErKilhh4,2278
|
|
1111
|
+
pyrogram/raw/functions/channels/invite_to_channel.py,sha256=wKMsXZVQTgDD8BVBWdK-LZyssurZN_9MWf3EU1xhngU,2634
|
|
1112
|
+
pyrogram/raw/functions/channels/join_channel.py,sha256=BS_1vYOqOfCUWgKaJG5NshNaFljWRBI0xCGAwB6q39s,2301
|
|
1113
|
+
pyrogram/raw/functions/channels/leave_channel.py,sha256=b8rzujUx0dsA4kfLVzEXdJMxoDMeHL_0yb-x9ZZAzFo,2305
|
|
1114
|
+
pyrogram/raw/functions/channels/read_history.py,sha256=s27xPM_EpFU4lq1IAGzjApPxJKoHpU1P5yeyNXWJoUE,2484
|
|
1115
|
+
pyrogram/raw/functions/channels/read_message_contents.py,sha256=gaslTqc9bj_iXTfElzWa1i3wRpUeHTsFxQJWmnI8Z6I,2520
|
|
1116
|
+
pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py,sha256=2FSuUgFAX6V5EfEgmIttQDi9TepyUNzEQ-DOiNSN8sA,2903
|
|
1117
|
+
pyrogram/raw/functions/channels/reorder_usernames.py,sha256=XFGTAxnMV1KgAf3p3CvPE7oe7GSUTAuX_CNjlwe16Fw,2533
|
|
1118
|
+
pyrogram/raw/functions/channels/report_anti_spam_false_positive.py,sha256=jmVMLLOsUJ6jUHSwUNhCKNpjv9vcRGcl8QCea-fXuv8,2548
|
|
1119
|
+
pyrogram/raw/functions/channels/report_spam.py,sha256=N6LP5vZf6QHHj3gbFqpjTAK28kOX5szSHXYOdorkRl0,2805
|
|
1120
|
+
pyrogram/raw/functions/channels/restrict_sponsored_messages.py,sha256=8l8nPopp-2Xu1DCiqcGlSvHMcgtrWKJdHDU7Fmc8ETg,2604
|
|
1121
|
+
pyrogram/raw/functions/channels/search_posts.py,sha256=JEXwWKNvwZGaJGaFSERxkjPSJAMSSyGLZqLmotgFaqs,3283
|
|
1122
|
+
pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py,sha256=LkRDF91iKS1aBMqtrazwv9zUmjiDHX17IOEQfej7mnI,2594
|
|
1123
|
+
pyrogram/raw/functions/channels/set_discussion_group.py,sha256=kQ5_SXd_GIuTK3cKSNf_gMFZq_Mhvvn6MWaRqbu4fNA,2592
|
|
1124
|
+
pyrogram/raw/functions/channels/set_emoji_stickers.py,sha256=gCJcZXsKEDBhWaIE3eSflIqbt-V1mR7Pwqjk_JznzEQ,2623
|
|
1125
|
+
pyrogram/raw/functions/channels/set_stickers.py,sha256=WQ8r7s2MCrIwdQQOa06fb9_bND_m92jy9PwMn5DguZ8,2603
|
|
1126
|
+
pyrogram/raw/functions/channels/toggle_anti_spam.py,sha256=sy-AwphlqCCRyYTXvslQFW0nHW8r9xMTxI3TnMnM85I,2533
|
|
1127
|
+
pyrogram/raw/functions/channels/toggle_forum.py,sha256=MITqJ0_3yP0WYo8oxBI-siu6uCvgElO4ZDL5Znl-Y4E,2521
|
|
1128
|
+
pyrogram/raw/functions/channels/toggle_join_request.py,sha256=qEcdDSJ2sH9vtp2fiqdDqendd9yMUQdgNOWVTauizno,2545
|
|
1129
|
+
pyrogram/raw/functions/channels/toggle_join_to_send.py,sha256=CoH76tSE7C7yC9PLe5ky5SPcCjcT5_CFP1BV1jnDh2A,2541
|
|
1130
|
+
pyrogram/raw/functions/channels/toggle_participants_hidden.py,sha256=DUb-4wP6NwP6qkB7D6BTjcrUljVyNdDS60d2-XkCyps,2573
|
|
1131
|
+
pyrogram/raw/functions/channels/toggle_pre_history_hidden.py,sha256=gSNXNYfd0ORE1aJErVOg1YXxNSwZ5Uw7GqhZzcZQzpU,2565
|
|
1132
|
+
pyrogram/raw/functions/channels/toggle_signatures.py,sha256=_4t7h8fWQ-YgAz3p3QTdbXCH3GwctYpOoQABbcUYavc,3094
|
|
1133
|
+
pyrogram/raw/functions/channels/toggle_slow_mode.py,sha256=iZTeyU3g0wnZ0lHM2SE_i5KIHtyH7hG_P4HnoRjr51E,2539
|
|
1134
|
+
pyrogram/raw/functions/channels/toggle_username.py,sha256=8ON_1kjRwaOWUoPEllmRhNvfA_W1emN_wi-oGuLJTXk,2723
|
|
1135
|
+
pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py,sha256=qnALRBWJcOe4KcP12HuoSLaWvtBXX9VjDKQkYdfIoHM,2577
|
|
1136
|
+
pyrogram/raw/functions/channels/update_color.py,sha256=YzKG812LJ9oY_ntSlcchRbuU56avSs-oGyejMumQQZI,3544
|
|
1137
|
+
pyrogram/raw/functions/channels/update_emoji_status.py,sha256=7rvLE8SHtNfPOtSAKxyvsvrVIvpJhJed4oZa76V31_0,2663
|
|
1138
|
+
pyrogram/raw/functions/channels/update_pinned_forum_topic.py,sha256=XiTA2IU8VDSKdQPDrW8akV1b2aUZyn4kaiSiTSNut7A,2791
|
|
1139
|
+
pyrogram/raw/functions/channels/update_username.py,sha256=84fTSHatPe9l4YOV1hB1YrGgzebtZRbIoZ2-dCoaT3g,2512
|
|
1140
|
+
pyrogram/raw/functions/chatlists/__init__.py,sha256=Xz4vsvhNx6fYSAMLCNdLK2-Gh8EbGo8ZsShOzdFnLTI,1700
|
|
1141
|
+
pyrogram/raw/functions/chatlists/check_chatlist_invite.py,sha256=z0SdBNnh0rjI3Jvh8nhFC1MzD2LjFpTYYb7SY-WKcgA,2268
|
|
1142
|
+
pyrogram/raw/functions/chatlists/delete_exported_invite.py,sha256=VIZiq1l6Zkdbvi4L-4N_ZXpKGSaF01EeO81is2SfPCE,2514
|
|
1143
|
+
pyrogram/raw/functions/chatlists/edit_exported_invite.py,sha256=JFqJ-pSUu_5gDaMKdXqSPWbTdBK17u7UU8CNADS9ugU,3422
|
|
1144
|
+
pyrogram/raw/functions/chatlists/export_chatlist_invite.py,sha256=OgoQycvwsVPZY2e8CwcdGL1YPZM3gixOV2E8wz_oEHs,2896
|
|
1145
|
+
pyrogram/raw/functions/chatlists/get_chatlist_updates.py,sha256=ZGTJdYG0vcMZasToGOKirD5XLRVtDudOPTCP_TGXF0s,2379
|
|
1146
|
+
pyrogram/raw/functions/chatlists/get_exported_invites.py,sha256=WJ8NW7DCGSI-yYaLjmyF-CRQCWtbEtE-OdOK_W0urZ4,2379
|
|
1147
|
+
pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py,sha256=uZ67vkCXjeotDH2uvDiy9nMbZe61X1HvO1WCjbVpZ3I,2381
|
|
1148
|
+
pyrogram/raw/functions/chatlists/hide_chatlist_updates.py,sha256=Aa9x776RAQzvGDs9PR1rXuKLdixlrsMnOuu1phyxhUI,2313
|
|
1149
|
+
pyrogram/raw/functions/chatlists/join_chatlist_invite.py,sha256=RDsRMZ2vIXY_eVULwqIMkTTfik0gbYRov_xs21NxKlE,2519
|
|
1150
|
+
pyrogram/raw/functions/chatlists/join_chatlist_updates.py,sha256=defn9qvOnJg4kNctygP9HnIWAlGBo3iml5Ub_W8V3Y4,2636
|
|
1151
|
+
pyrogram/raw/functions/chatlists/leave_chatlist.py,sha256=5fnNyt6ispuHJYI3sqP66dp_7cV6SocaNpIkIHiKWKw,2612
|
|
1152
|
+
pyrogram/raw/functions/contacts/__init__.py,sha256=E1wivAAELqp0ZPHO_eS5xZT8EJjlcHogWVqBb4vzZoY,2166
|
|
1153
|
+
pyrogram/raw/functions/contacts/accept_contact.py,sha256=bhJ5CMTBXvHXjr81n4unRlF5X6I6VDfzYTCDdyNhDpM,2252
|
|
1154
|
+
pyrogram/raw/functions/contacts/add_contact.py,sha256=AnaDUAQE1V4Hs0of_RHrHc9rwjSG5cqg9gjWAtINuDE,3439
|
|
1155
|
+
pyrogram/raw/functions/contacts/block.py,sha256=d21ePGaGF_FN7sJOs7aDAYvAGZsqGMASG98X7P5KdeM,2578
|
|
1156
|
+
pyrogram/raw/functions/contacts/block_from_replies.py,sha256=cvButEoWpwWVetBJNoT0BEf1LkRLqX3F8Z9xFtJm0nA,3269
|
|
1157
|
+
pyrogram/raw/functions/contacts/delete_by_phones.py,sha256=3DF3P0nWn80qqj2YZLQeztsVTfA0zCrCe5KxlXOdmNI,2237
|
|
1158
|
+
pyrogram/raw/functions/contacts/delete_contacts.py,sha256=mzntYsHvCFukgX8A0oKoOZ4fho7koUg_VtIb4nkrAnA,2276
|
|
1159
|
+
pyrogram/raw/functions/contacts/edit_close_friends.py,sha256=nSCClPGbjqKR4yaBEyehTKrS1vyVPNf89O2Q4AghX6Q,2214
|
|
1160
|
+
pyrogram/raw/functions/contacts/export_contact_token.py,sha256=y7bztjKkCq0XQPyMPeMY8fIhqnkkQi5CWdJorQ6Sj9o,2108
|
|
1161
|
+
pyrogram/raw/functions/contacts/get_birthdays.py,sha256=a2gKUiA585JbgNWCyqeU--ky6pLeqnL-lUafZPZgPOE,2094
|
|
1162
|
+
pyrogram/raw/functions/contacts/get_blocked.py,sha256=pcwvfN8yg009pZLyHa03oxgbkehGqhXfNFewcD1sOMo,2835
|
|
1163
|
+
pyrogram/raw/functions/contacts/get_contact_i_ds.py,sha256=F1_j6BSoCM1BlWD1ZhWQjQF_c03DIijNEhp-IU_6Jts,2198
|
|
1164
|
+
pyrogram/raw/functions/contacts/get_contacts.py,sha256=yi7mlOMP4zgi23rqTTqMiThyQMS1ExH4vT6WpQqwNw4,2226
|
|
1165
|
+
pyrogram/raw/functions/contacts/get_located.py,sha256=Vi2EZBz9y0mEU2_WR-i9_YBQtBBHz2l6HITL9Bx5k1Y,3108
|
|
1166
|
+
pyrogram/raw/functions/contacts/get_saved.py,sha256=2imDpZv7AtDotsjVPB42NvMSrH86pp9dwA1ye-3lmII,2060
|
|
1167
|
+
pyrogram/raw/functions/contacts/get_statuses.py,sha256=3Z0uSfScXiBbauzG3jIJAuvbwfI8uSfWEpT4e_rnW_E,2074
|
|
1168
|
+
pyrogram/raw/functions/contacts/get_top_peers.py,sha256=J3J2dFpgWiev5WbLicHeIbA-5pT8FHMKRLtaDZbySOM,5416
|
|
1169
|
+
pyrogram/raw/functions/contacts/import_contact_token.py,sha256=RrMoze6ZmXCBdilKoO-z2VN7lvEgJyvhzoo-nlYKf1U,2232
|
|
1170
|
+
pyrogram/raw/functions/contacts/import_contacts.py,sha256=qVa64s1iBbQySQByeA78ycMhUZJMwT9Dw1QyE9ksJ2E,2380
|
|
1171
|
+
pyrogram/raw/functions/contacts/reset_saved.py,sha256=msWpOEHCwvzWUVr8KfSD75HBasApqAmrgaTl3En6f4A,2016
|
|
1172
|
+
pyrogram/raw/functions/contacts/reset_top_peer_rating.py,sha256=KHnLpsyr9lFx4vhd9I-43-uttGg-8pV5WFnIF6rFhrw,2574
|
|
1173
|
+
pyrogram/raw/functions/contacts/resolve_phone.py,sha256=TcAfqk7p4XrdFqafWQwRRg7OxdMTvFOzCzocgcadWJc,2242
|
|
1174
|
+
pyrogram/raw/functions/contacts/resolve_username.py,sha256=18xDKd_xy6cfb65FkR2XCFCBeG3kPgvHKql4OPIrQQU,2713
|
|
1175
|
+
pyrogram/raw/functions/contacts/search.py,sha256=g7W-ck1HivHHgBmmyxbEalmjsHnAfNRh5MhN6CbttjM,2376
|
|
1176
|
+
pyrogram/raw/functions/contacts/set_blocked.py,sha256=3f7Hhr1AF6ho6EWd1p9ay8MHOMe-JRWz7CXcCGQRU7w,2828
|
|
1177
|
+
pyrogram/raw/functions/contacts/toggle_top_peers.py,sha256=9RCmhIapPUnVOFMebiZy1f_kUiwokpb5bDxra_qpK94,2202
|
|
1178
|
+
pyrogram/raw/functions/contacts/unblock.py,sha256=EBAnlq8gPd5RePcjfpic25F_vgo0vCRT6hoiHlFOnIs,2586
|
|
1179
|
+
pyrogram/raw/functions/contest/__init__.py,sha256=J1hPM6qBeWKTUetiZinYK5gkAQuI_XkcQgZpQP2Bp98,1136
|
|
1180
|
+
pyrogram/raw/functions/contest/save_developer_info.py,sha256=rjeGoQM-EBe4pvMKwfp4qrlknaICyKmj0c14f88RBh0,3054
|
|
1181
|
+
pyrogram/raw/functions/folders/__init__.py,sha256=WpbyFe_Dx9Tcb0mnWI_8Ysylg1K3JRR6_VgDKiQc5Wg,1132
|
|
1182
|
+
pyrogram/raw/functions/folders/edit_peer_folders.py,sha256=kYjDOqISSrQhkjW5JEnJVJHowbBZt3ynDMKxR-sdAP4,2395
|
|
1183
|
+
pyrogram/raw/functions/fragment/__init__.py,sha256=m6ftvZ8D8A-WUoCA1OB6xtIIEM9-7IU0zx1HQNGzlaA,1138
|
|
1184
|
+
pyrogram/raw/functions/fragment/get_collectible_info.py,sha256=UprM2H7bwhJOEG97qmInrx7_Rp9etBXKmhGOm9F-SYU,2415
|
|
1185
|
+
pyrogram/raw/functions/help/__init__.py,sha256=2Lc2d_OleXrS2OGzOW6qmiIZCD5zGgTM8ajB0s6lKUk,2254
|
|
1186
|
+
pyrogram/raw/functions/help/accept_terms_of_service.py,sha256=7fZB_PjfcSuYnA2bu1ccV_AS3ZteX0w1AE2hoxU3Q4o,2238
|
|
1187
|
+
pyrogram/raw/functions/help/dismiss_suggestion.py,sha256=Fu3YDzMJUnhD-j-NDAX44tKZmVkbULetsyVFLjYPkbA,2499
|
|
1188
|
+
pyrogram/raw/functions/help/edit_user_info.py,sha256=Dvlkg4XC2k89gzaFGQELcaX0kglLVDbgb76q01ZyDpQ,2857
|
|
1189
|
+
pyrogram/raw/functions/help/get_app_config.py,sha256=qQBlHpk6r5T1eEOIhuLFoLMmv1laalZyGJSEfyN6QKg,2217
|
|
1190
|
+
pyrogram/raw/functions/help/get_app_update.py,sha256=KfRIAUC6uSjW6YA7LdKxyabAjWHSvWwGsD1BxbI6xMI,2233
|
|
1191
|
+
pyrogram/raw/functions/help/get_cdn_config.py,sha256=TN1oPPXiW2G4A2-bY4Cj-9b7HuKZRoRV-sS6a5U5ORk,2058
|
|
1192
|
+
pyrogram/raw/functions/help/get_config.py,sha256=1J16VQ34IvhIoRjV4lLeL0-yNeJXokkkEU0hB3s-bVA,2040
|
|
1193
|
+
pyrogram/raw/functions/help/get_countries_list.py,sha256=0_BJWmpG4LW4w9ax_42htttePEL2cyCqZYcScmlgjyg,2483
|
|
1194
|
+
pyrogram/raw/functions/help/get_deep_link_info.py,sha256=m8Icc0-Kv5zMgoZKnN5rxRkhLpGAeU2B-RsU-6E_zG0,2233
|
|
1195
|
+
pyrogram/raw/functions/help/get_invite_text.py,sha256=PzcLoH-fh0_gEEFjU9-4pLw3aHBNwvGdmTSvWrYzHaU,2074
|
|
1196
|
+
pyrogram/raw/functions/help/get_nearest_dc.py,sha256=j2QjaLHD0fm-oKAEP9GwwQIxPQKdPuj2my8AHzy4qnM,2058
|
|
1197
|
+
pyrogram/raw/functions/help/get_passport_config.py,sha256=UeFUxI1fWLFfPNTmPalmKQUfRvm5e6cDPoMpyIyxt9E,2247
|
|
1198
|
+
pyrogram/raw/functions/help/get_peer_colors.py,sha256=7FJrUwkg3uTGt8QuQ1TiTIL6OJta9tcjlPvQSjklQo0,2223
|
|
1199
|
+
pyrogram/raw/functions/help/get_peer_profile_colors.py,sha256=_bhEkDMOVqcnAAw57Lqb7dMrwNMfD8ZcA3XRQg28g0Y,2251
|
|
1200
|
+
pyrogram/raw/functions/help/get_premium_promo.py,sha256=r02POnc_XiUPxHqJ0jmKdxw2uxTS3sitNq5XZwFYw4c,2086
|
|
1201
|
+
pyrogram/raw/functions/help/get_promo_data.py,sha256=5eSJzpEfQp6jpxvSKFLl2Jr7xJ3q-zExEl4gDGnHAhI,2068
|
|
1202
|
+
pyrogram/raw/functions/help/get_recent_me_urls.py,sha256=MJlQ0VFF7Fpc2phlxYl1rTAaaiYbv7ONzolE763Zs0Q,2260
|
|
1203
|
+
pyrogram/raw/functions/help/get_support.py,sha256=kYquELARCzYOC8DZILbQZ6CCvdiCJa6sTvlAQ9P11nU,2056
|
|
1204
|
+
pyrogram/raw/functions/help/get_support_name.py,sha256=lqZd8_kJsjgVLtacLrI98ZXn0GPI13tzQzQJXnky5cM,2080
|
|
1205
|
+
pyrogram/raw/functions/help/get_terms_of_service_update.py,sha256=j27TtlODwZdOuVVeRHrRldQQePHA2Fc6czUHB3TSRAE,2134
|
|
1206
|
+
pyrogram/raw/functions/help/get_timezones_list.py,sha256=BkUAFaAqkWgR_UBSLbKUz1ENXLVxDNyhnUpPwPSTjqk,2241
|
|
1207
|
+
pyrogram/raw/functions/help/get_user_info.py,sha256=CxdU9boHDPl9L9jSeyBSW8_GrO85diIGemys7LSVhQ4,2295
|
|
1208
|
+
pyrogram/raw/functions/help/hide_promo_data.py,sha256=uHK5g43f6M800IDHHz2hBYJDflNwXsxDqEi_lMWJee4,2232
|
|
1209
|
+
pyrogram/raw/functions/help/save_app_log.py,sha256=lTmUbEK4S5dnzETMcKCcx-3tzbaSERG5R6WXP6vaaCk,2276
|
|
1210
|
+
pyrogram/raw/functions/help/set_bot_updates_status.py,sha256=2ZzBEvtp0boqbxF9RGDS65f-h3DeiE_UEBqBQA5ZZ1U,2574
|
|
1211
|
+
pyrogram/raw/functions/langpack/__init__.py,sha256=1YFs0pG0ws_RruN4Jkjk1o73_RsjxsMMEwAJInWOQTo,1284
|
|
1212
|
+
pyrogram/raw/functions/langpack/get_difference.py,sha256=RTU7IF7e3KeoKZhGHv1XcdoFw3XFjnpgY9Lx9JcFHoQ,2789
|
|
1213
|
+
pyrogram/raw/functions/langpack/get_lang_pack.py,sha256=W_ApaUmLlSYhO2Or4ZqTJRfaqnhO-G6D7QhCeNdprWA,2510
|
|
1214
|
+
pyrogram/raw/functions/langpack/get_language.py,sha256=BM_1K06rZAmL4Fg7Ss4E679Cmp3K-NEIFZ8mW96Yi-c,2506
|
|
1215
|
+
pyrogram/raw/functions/langpack/get_languages.py,sha256=HjGnfRzTh3UQOOXukah3WxQzuLvNlKU3mQU2jGKqbCA,2276
|
|
1216
|
+
pyrogram/raw/functions/langpack/get_strings.py,sha256=9Zo97MM6-izPqvw9VhOMGf2szRJ6BBssC9Cv-Csia5Q,2743
|
|
1217
|
+
pyrogram/raw/functions/messages/__init__.py,sha256=cFPwULD-zcQP7HthUffNXza8K8MCttFqXTkIsloECEY,12900
|
|
1218
|
+
pyrogram/raw/functions/messages/accept_encryption.py,sha256=DAhDDKvETbcyjaYAOca4v8vSbpGfg9jaLJRkPw12rhA,2820
|
|
1219
|
+
pyrogram/raw/functions/messages/accept_url_auth.py,sha256=clfGoRxysn6sELtvLaLUgUe5I_g4Ht-HgUODPb2maHo,3937
|
|
1220
|
+
pyrogram/raw/functions/messages/add_chat_user.py,sha256=NR37IxolqDT5Oz66Xgm-Ay0jC3Yk_RyjtDPVmrMBB_M,2790
|
|
1221
|
+
pyrogram/raw/functions/messages/check_chat_invite.py,sha256=xE4G6QB0MUbC3E8rD-6zs-WeotL9zK3KD2JaIQl7zZ4,2223
|
|
1222
|
+
pyrogram/raw/functions/messages/check_history_import.py,sha256=-GWiyxea4elmAb-nDdGDmGWiWnuEFJ-xCHno43EK2ek,2334
|
|
1223
|
+
pyrogram/raw/functions/messages/check_history_import_peer.py,sha256=3lcdab3kodD9zL59oDXi4NnIxiE9qEuXi-qf65J8ymY,2358
|
|
1224
|
+
pyrogram/raw/functions/messages/check_quick_reply_shortcut.py,sha256=7TAASbCN9pTLWdAwYUge6Rf0mpu19cHabFWFdeD-C2Q,2251
|
|
1225
|
+
pyrogram/raw/functions/messages/clear_all_drafts.py,sha256=chY0sPpErSbP4iiX9mIbtrR5OG3z--Aa54dBfY0PVDI,2032
|
|
1226
|
+
pyrogram/raw/functions/messages/clear_recent_reactions.py,sha256=zn099RCkWtSdFOlBZlB9jzK10U4NkrqLWSufwzgalPQ,2056
|
|
1227
|
+
pyrogram/raw/functions/messages/clear_recent_stickers.py,sha256=9s6pUKBBkbLE_ujSnohgCsqepSMKMH1ZT5QuC5hC8mA,2331
|
|
1228
|
+
pyrogram/raw/functions/messages/click_sponsored_message.py,sha256=8l8lzIkuxp7dCBj0mXRikkAOO4OdXtoCGxAcmd_R270,3111
|
|
1229
|
+
pyrogram/raw/functions/messages/create_chat.py,sha256=8ggrd7zh1icHpOnNf2H8St9pujPVJeSKMVUTtomoX70,2990
|
|
1230
|
+
pyrogram/raw/functions/messages/delete_chat.py,sha256=2ETVGCJlHO9XmeA_Vbpqb-YCFReTnIVu6T6UMtxvG0Q,2195
|
|
1231
|
+
pyrogram/raw/functions/messages/delete_chat_user.py,sha256=WykOcOdwlWvoanhLWiXKxux9ywQ1n0pXdkVPBxQmTB8,2913
|
|
1232
|
+
pyrogram/raw/functions/messages/delete_exported_chat_invite.py,sha256=1zTwVIgXNWjTLhhCuFys0pqQeqt9fovL0eAH5DmkYBM,2477
|
|
1233
|
+
pyrogram/raw/functions/messages/delete_fact_check.py,sha256=mZsfOeENZPL6VecVkAzXhYwCbyhMuM2LXPyXuB-yD0g,2495
|
|
1234
|
+
pyrogram/raw/functions/messages/delete_history.py,sha256=stAfJIX5k_ZXN0vlYcOz4v-c4EQw58dV3SOiGIjA2Rk,3928
|
|
1235
|
+
pyrogram/raw/functions/messages/delete_messages.py,sha256=a1eEX63JP0cpAlDdD9cg7I8V7wf6gSJoTNUmLxFSFMU,2584
|
|
1236
|
+
pyrogram/raw/functions/messages/delete_phone_call_history.py,sha256=q1Kv2n8GqRyMzVuuYZYxNReA1h6X54MPWby8FzH5Us8,2405
|
|
1237
|
+
pyrogram/raw/functions/messages/delete_quick_reply_messages.py,sha256=01mjy72yh7UbeEcqyMq6KxW8-pYF-LrmaxWNt0YZxe8,2539
|
|
1238
|
+
pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py,sha256=J7ZLM4ynOgONb3Rd8cjkwRNP8GiM0NJjRPoi2XpvNmU,2284
|
|
1239
|
+
pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py,sha256=C6TJrc7S1dudX3Sbhia5wW2sSDavpTKc5DDQU7AinXU,2606
|
|
1240
|
+
pyrogram/raw/functions/messages/delete_saved_history.py,sha256=cGNP5j3WF3pB8q-P6cuasECDYE9gG3D20y2OYUvDEPs,3384
|
|
1241
|
+
pyrogram/raw/functions/messages/delete_scheduled_messages.py,sha256=1rB0CyxEIGtxr5nNq5cYwV01KlUGbRYtIUo1HiRz_B0,2531
|
|
1242
|
+
pyrogram/raw/functions/messages/discard_encryption.py,sha256=9OQxb30_WlWemqbEidi4PzMmrm6kiBi2wy2Rdtk7IwA,2603
|
|
1243
|
+
pyrogram/raw/functions/messages/edit_chat_about.py,sha256=iPiD1QABe-jEDU2VfZbL427dqdopaY6huRuYjwibe8U,2442
|
|
1244
|
+
pyrogram/raw/functions/messages/edit_chat_admin.py,sha256=wusGpJnafz2M5IELe30SR066TRB4ywx0Vh8XMaDlHNE,2721
|
|
1245
|
+
pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py,sha256=JfYUye5dUXVZ8N1nRJrXJEpSZ_BQvlAeMFPCN87a3-o,2693
|
|
1246
|
+
pyrogram/raw/functions/messages/edit_chat_photo.py,sha256=kY0m7DBzouiI53P2qMKIObMRoo1SJ7F4ZAToJgXhlWM,2528
|
|
1247
|
+
pyrogram/raw/functions/messages/edit_chat_title.py,sha256=I-nvPXDP6u-ORA5ilaxUzRxIj_wHeavtNP0SAihVhu4,2447
|
|
1248
|
+
pyrogram/raw/functions/messages/edit_exported_chat_invite.py,sha256=9KTMvTB35LMGKNo6FwrDmHPVsqXmgNZGoPIlHWsrv1M,4546
|
|
1249
|
+
pyrogram/raw/functions/messages/edit_fact_check.py,sha256=EjITnmrSxaN6sJcRGzPR7y8Yk0E1niRHBMxNK3wNMCU,2771
|
|
1250
|
+
pyrogram/raw/functions/messages/edit_inline_bot_message.py,sha256=A1mpP9oSQk2pgPIPr-tPJHbJdDvUiv2iexk2Ex6AvVo,4789
|
|
1251
|
+
pyrogram/raw/functions/messages/edit_message.py,sha256=SdaFgzo7ZysgvKZH7LCNEIELJlX_tn7m-DNiH0NNjMU,5952
|
|
1252
|
+
pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py,sha256=zRadh2p7fueBEGov4xKprTNgqC2iHA-IaqTnvK5WCg4,2509
|
|
1253
|
+
pyrogram/raw/functions/messages/export_chat_invite.py,sha256=-kx2-K48w9YbTUddoSzlGhmvre_rFuQlF2wIzBrWzKI,4978
|
|
1254
|
+
pyrogram/raw/functions/messages/fave_sticker.py,sha256=X-nn8Mx8pHi7sUPOEVochy5RmsO-LuyrmwSJtN6yrZ4,2437
|
|
1255
|
+
pyrogram/raw/functions/messages/forward_messages.py,sha256=pVYn4g2pXbFxpQaz2T27j3Fe79OwP54TZD0zmeWw1IU,7897
|
|
1256
|
+
pyrogram/raw/functions/messages/get_admins_with_invites.py,sha256=51XoN8MTcw9uOvJf_DqvhLnttD4WHVBS_m8IOKlieVA,2344
|
|
1257
|
+
pyrogram/raw/functions/messages/get_all_drafts.py,sha256=szqJ1I7hU4qcABQ2II7B0rtWEwYR6YaPtqMypTDBiMs,2058
|
|
1258
|
+
pyrogram/raw/functions/messages/get_all_stickers.py,sha256=BcjY3wjnCaMpqj_qojo1dW3jF79sTPcGGnUQ2U7d7m0,2244
|
|
1259
|
+
pyrogram/raw/functions/messages/get_archived_stickers.py,sha256=8EbF2rNciCj3yvFuey9EpXyj-x9n3PuenfowvCpgWNw,3093
|
|
1260
|
+
pyrogram/raw/functions/messages/get_attach_menu_bot.py,sha256=Hmfa_I5zPMH1XfxiB3Z8v-eH0vC4Is0cX-vj-2oK7aE,2293
|
|
1261
|
+
pyrogram/raw/functions/messages/get_attach_menu_bots.py,sha256=WLh_Vcc4t1o_z00eBX532Z02_tCy5wdEBUqVaRofI_w,2244
|
|
1262
|
+
pyrogram/raw/functions/messages/get_attached_stickers.py,sha256=92oLXW6X5vXYjZkXs08ObUnRHt8jUeCOugu8S5YLsS4,2371
|
|
1263
|
+
pyrogram/raw/functions/messages/get_available_effects.py,sha256=A9Uz7VMr3_4nuEeydx5Qz13fAUVHR8hEoPo1cNyYWhE,2271
|
|
1264
|
+
pyrogram/raw/functions/messages/get_available_reactions.py,sha256=D-rY8RTezalJrNhQBduKJ0L115jI7on-qMpIna9xTrc,2283
|
|
1265
|
+
pyrogram/raw/functions/messages/get_bot_app.py,sha256=vWwuWYaKrqc0rN2FZL2dF64WcSv8SezzUboZG-0WWYg,2471
|
|
1266
|
+
pyrogram/raw/functions/messages/get_bot_callback_answer.py,sha256=Vj-GWCYp5hTdiV02rHRQRi4MmnlqbkSXCAQOv1sfgNE,3704
|
|
1267
|
+
pyrogram/raw/functions/messages/get_chat_invite_importers.py,sha256=FGEtDp7SJ3Qjos9uiuZ9mw7BD84HCPTdJ5HmBVvCnIk,4538
|
|
1268
|
+
pyrogram/raw/functions/messages/get_chats.py,sha256=6kfWUaN9xzSWifhObZ7uY48IvPYfF0DNqvLr0loXekw,2230
|
|
1269
|
+
pyrogram/raw/functions/messages/get_common_chats.py,sha256=nnrS1ctz0Cg2aVsDhVxBZsIniwiWSCFqvIhRB_1qAYw,2743
|
|
1270
|
+
pyrogram/raw/functions/messages/get_custom_emoji_documents.py,sha256=ErUM4kYA885Jt9hgG-qDRj1_1IQQKYpOfZiWnW0yj98,2367
|
|
1271
|
+
pyrogram/raw/functions/messages/get_default_history_ttl.py,sha256=C7px8I20ZjReYarlU4PPL8LDJ_KrWP_BOOlkv79Fsik,2110
|
|
1272
|
+
pyrogram/raw/functions/messages/get_default_tag_reactions.py,sha256=qAgI2m0LiyoI0_gGRGtDRysrZtCbkvxdj87cC_sSAO4,2272
|
|
1273
|
+
pyrogram/raw/functions/messages/get_dh_config.py,sha256=YstsjSJKeB-Wx_cguqtUTMsran4tXx7iYZsq96zrMHU,2530
|
|
1274
|
+
pyrogram/raw/functions/messages/get_dialog_filters.py,sha256=5dejUpmNzrpuECP-CAgdUIovcgFQUOVtNOjZ7Z1TCPE,2104
|
|
1275
|
+
pyrogram/raw/functions/messages/get_dialog_unread_marks.py,sha256=Oo-ydXSoJqddaHKYo_yMnRyJU3PyO8oQCqYE_zbGV54,2104
|
|
1276
|
+
pyrogram/raw/functions/messages/get_dialogs.py,sha256=K8-0SG_Dh6_JdyOfle2_ifmv_kFGleWzHzSe-Nj8fIc,4047
|
|
1277
|
+
pyrogram/raw/functions/messages/get_discussion_message.py,sha256=J4Npne-E1KerSwHlz11cZj8-ax0fDExk4hjn1CafCp4,2553
|
|
1278
|
+
pyrogram/raw/functions/messages/get_document_by_hash.py,sha256=f-v3l_Fc7vL72wvoXEdPw-aZ3qU-3FSaotg4Z8ukfsg,2690
|
|
1279
|
+
pyrogram/raw/functions/messages/get_emoji_groups.py,sha256=tXGkbUBFyExwWXazsq9g-HhNVYqccxJMC2oDVOZ6Suo,2241
|
|
1280
|
+
pyrogram/raw/functions/messages/get_emoji_keywords.py,sha256=PJSeK0Vih6l8sskHbIqy6ziWzuvZo5QkUizUDT0t1Ew,2298
|
|
1281
|
+
pyrogram/raw/functions/messages/get_emoji_keywords_difference.py,sha256=sV_ZAib58iidoMbWc4GgIpp_qC7_JNUwp-SE9-T5Bd0,2609
|
|
1282
|
+
pyrogram/raw/functions/messages/get_emoji_keywords_languages.py,sha256=Rxiq4BNwQ_rYAFoEWFXcSn0kNw8qV4gf5eFaZDCYgW8,2371
|
|
1283
|
+
pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py,sha256=1OaGoO75RyDuNIPcKMqP1V_NuslHVcIp77VZcOdiYwc,2289
|
|
1284
|
+
pyrogram/raw/functions/messages/get_emoji_status_groups.py,sha256=c7QyC9So06vHSFaJtXcgDFzT1UmaLuXnl4pK-QxT-1s,2265
|
|
1285
|
+
pyrogram/raw/functions/messages/get_emoji_sticker_groups.py,sha256=a8d3gAdFXF5HgctVHdbFoB98LD0mCkOo_yaQYikIzhs,2269
|
|
1286
|
+
pyrogram/raw/functions/messages/get_emoji_stickers.py,sha256=dxyLaDtog_hZwCJRSbUvvKjUoR6O5WZKLsHBnzaAvys,2252
|
|
1287
|
+
pyrogram/raw/functions/messages/get_emoji_url.py,sha256=z5N8WFoJn6BAvbk3rrepdueXEQpqXqQl4suJLD1XLKY,2248
|
|
1288
|
+
pyrogram/raw/functions/messages/get_exported_chat_invite.py,sha256=kD89-oa1WrLqiP6UceUd4UiNky7PtoY9slLi4orZ2X4,2539
|
|
1289
|
+
pyrogram/raw/functions/messages/get_exported_chat_invites.py,sha256=fS3BjmmQEutAtMEnzSpzHkM20OeslrWXb8dUsVnmWqw,4030
|
|
1290
|
+
pyrogram/raw/functions/messages/get_extended_media.py,sha256=WnzTKEH5l6c0tgnC-9r5VyiOoqFl4n1H3mEQuP7sLrk,2503
|
|
1291
|
+
pyrogram/raw/functions/messages/get_fact_check.py,sha256=CEesZcqvHG6Zo60fbypKDxfjMI19au4hsyD6mHoMjXQ,2535
|
|
1292
|
+
pyrogram/raw/functions/messages/get_faved_stickers.py,sha256=krp4NJWptG9vb4c4D6BTnD3NPgKx1fOI3Rhj_ysGoXw,2254
|
|
1293
|
+
pyrogram/raw/functions/messages/get_featured_emoji_stickers.py,sha256=WZbJItKflN4ouN6o75HisxVtEdp443W9QIbA0sMJ9AI,2292
|
|
1294
|
+
pyrogram/raw/functions/messages/get_featured_stickers.py,sha256=Gu3dYafj0nJAOV8cYt6dYLinFuwhBKPvk8dYJufhoeA,2274
|
|
1295
|
+
pyrogram/raw/functions/messages/get_full_chat.py,sha256=FsF__I7TJNIiAzFz_hVnb_clNInfhKxQMolSkOOl5os,2253
|
|
1296
|
+
pyrogram/raw/functions/messages/get_game_high_scores.py,sha256=D-7owW8AoQC_Ij-zvjsCUKn5XPmlKgaHYUjVrsN4tX4,2776
|
|
1297
|
+
pyrogram/raw/functions/messages/get_history.py,sha256=UFXuu6DB7o6mYpSfkNIsHPPRfpgNkoIhiyqJXjQX8ao,3881
|
|
1298
|
+
pyrogram/raw/functions/messages/get_inline_bot_results.py,sha256=UK24Wspx8rlWQcq1HCmkCR18WO_5bInuk5Cj61_aWy4,3519
|
|
1299
|
+
pyrogram/raw/functions/messages/get_inline_game_high_scores.py,sha256=u-XvFwP3fqEX5Sm5JCcucnVF3AS90KY88BzlHgMOzuk,2655
|
|
1300
|
+
pyrogram/raw/functions/messages/get_mask_stickers.py,sha256=w6Qbm4aoaChdQrz-E3iccjdgUKjACInY9SFG6-_eyKM,2248
|
|
1301
|
+
pyrogram/raw/functions/messages/get_message_edit_data.py,sha256=5s4Fj-zkLaIkksYgygI23eOwVGjA9jhj0efMhcUic3w,2505
|
|
1302
|
+
pyrogram/raw/functions/messages/get_message_reactions_list.py,sha256=rK11n1IsHTWFAjdC8Kl8gANZGoS5TWtqgDColYwKOkQ,3617
|
|
1303
|
+
pyrogram/raw/functions/messages/get_message_read_participants.py,sha256=4-wXfdQ8VPG45cAF_nf2PrhoKjFa3Pg8Z0cY3BNXI9E,2571
|
|
1304
|
+
pyrogram/raw/functions/messages/get_messages.py,sha256=H1wm6RvMSnIpLvBRubGrzPwTf8-NcaTXiaX50o9HWg4,2298
|
|
1305
|
+
pyrogram/raw/functions/messages/get_messages_reactions.py,sha256=4Mm_pjGQe5UhiuaTlE_3oXJLm64ubrH7qFz3ybodKks,2519
|
|
1306
|
+
pyrogram/raw/functions/messages/get_messages_views.py,sha256=GOn_zbiELuLcXbOvgivy3oa8bbd7GOoLegBEk4CgvCg,2769
|
|
1307
|
+
pyrogram/raw/functions/messages/get_my_stickers.py,sha256=wvv1RKFokxIZ75838H6SNME3UwbR-DH5Hd2Xl9Sb6Uw,2491
|
|
1308
|
+
pyrogram/raw/functions/messages/get_old_featured_stickers.py,sha256=Ne889MsA6C2vpV84U-O0p8H4cWJK7lMSc6-33EoW-jU,2711
|
|
1309
|
+
pyrogram/raw/functions/messages/get_onlines.py,sha256=zu3lIS8gM8f4lMj3VRC97htsN-p0RsiDB8L_VfoBK4Y,2266
|
|
1310
|
+
pyrogram/raw/functions/messages/get_outbox_read_date.py,sha256=H6Xq8urXP3Gq1yqooMon9oeOuJheJlG4uFKq5xabGTw,2517
|
|
1311
|
+
pyrogram/raw/functions/messages/get_paid_reaction_privacy.py,sha256=zfGx2skiTOXhCCwHuJP8BOrtGV-dO7_sPwn1__mHXgU,2098
|
|
1312
|
+
pyrogram/raw/functions/messages/get_peer_dialogs.py,sha256=fxO-8euCn5Yep4jgIjZbLHlsJmNY66v1zSNoeLrr474,2355
|
|
1313
|
+
pyrogram/raw/functions/messages/get_peer_settings.py,sha256=XB39BUtjQ7gVHkyMMQZczY9zWnviTFMDtbNZDBohVBU,2306
|
|
1314
|
+
pyrogram/raw/functions/messages/get_pinned_dialogs.py,sha256=HF3J-Spibg4FGDBtoU6qSoh9avFRqR12OcSAnKmMUBo,2294
|
|
1315
|
+
pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py,sha256=_wFC76cCxra1N0oR-KCG1e_fFmdN_qgBpi1TPaURm3k,2122
|
|
1316
|
+
pyrogram/raw/functions/messages/get_poll_results.py,sha256=gHzBJ3hKxMBlngIX2cRSfCe9qmWTpwEwxXC2nM3Eig0,2491
|
|
1317
|
+
pyrogram/raw/functions/messages/get_poll_votes.py,sha256=ty5C0sGPLbis_oSLEfLCHkHtlxGilpIS4UK7Un9NPO0,3473
|
|
1318
|
+
pyrogram/raw/functions/messages/get_prepared_inline_message.py,sha256=luHa4yjRxn57i4oWVqAOsc3Zyr2ANPUbYPp_0Pbtjeg,2530
|
|
1319
|
+
pyrogram/raw/functions/messages/get_quick_replies.py,sha256=6xkQB3Bztwd10t1N19-i3wd2e3AzOOF7EftdKIwHQBE,2250
|
|
1320
|
+
pyrogram/raw/functions/messages/get_quick_reply_messages.py,sha256=m02uSrUNInd4zv674OkQLGfkg7q1PJH-1erPbEnvIjw,2943
|
|
1321
|
+
pyrogram/raw/functions/messages/get_recent_locations.py,sha256=xPNztXQU_ClSSUMGfeLZh1uSGVNF0Ni9DeAR905JjuQ,2720
|
|
1322
|
+
pyrogram/raw/functions/messages/get_recent_reactions.py,sha256=PXbIO6hjriWZVnU2TiNLXoG-VO8-JMHkxJHbFhPyFd0,2464
|
|
1323
|
+
pyrogram/raw/functions/messages/get_recent_stickers.py,sha256=lYfbhAqiHXnFnMz5gDphmSOuotfbndCvm8gZsgYAdLo,2591
|
|
1324
|
+
pyrogram/raw/functions/messages/get_replies.py,sha256=ulB5JI7YvbAPQiorsbCSezsIecWafdlaZKARH3Drj64,4098
|
|
1325
|
+
pyrogram/raw/functions/messages/get_saved_dialogs.py,sha256=t-3dy8DdQC1QdBOVF7B0NtcnmtMFrWexXo9vUUUM1AI,3668
|
|
1326
|
+
pyrogram/raw/functions/messages/get_saved_gifs.py,sha256=mS_ivZKZS0BbAzHFMM-8TCOAczyWrSYLt9Ux-w61jcg,2232
|
|
1327
|
+
pyrogram/raw/functions/messages/get_saved_history.py,sha256=kNrFquHXz1jUUvBLvDnpJcCPjCjk-8ey4SLxch888KY,3901
|
|
1328
|
+
pyrogram/raw/functions/messages/get_saved_reaction_tags.py,sha256=vaRzTDB1qoauupD-zShxtkVBWnPrNasl0JVqsrPgqsY,2740
|
|
1329
|
+
pyrogram/raw/functions/messages/get_scheduled_history.py,sha256=x1ft_HbUCx5PYpH78kUzRG2s5r6tdodXKXmep-Sri5o,2516
|
|
1330
|
+
pyrogram/raw/functions/messages/get_scheduled_messages.py,sha256=-iaIp9jermn2RzvV3w88QlMGbV4ccAq_EiNN78oBbFc,2539
|
|
1331
|
+
pyrogram/raw/functions/messages/get_search_counters.py,sha256=_FQ6Q14iWg0y1rlGrgA7w8EvUKATyFaqKl0hss7voFQ,3630
|
|
1332
|
+
pyrogram/raw/functions/messages/get_search_results_calendar.py,sha256=jM_hqta6abd2gDYz3cjeFY5-A4ZAMpqnGyEVuwqnJdk,3721
|
|
1333
|
+
pyrogram/raw/functions/messages/get_search_results_positions.py,sha256=PomgFpUKx_ZGwhemBRxgYBq3iBnN2U3u3rTZ-wO1PZk,3673
|
|
1334
|
+
pyrogram/raw/functions/messages/get_split_ranges.py,sha256=m87aKpCJ4FqMlxDVH7V25gcSA8zsUJFUYCBeOrfbHJg,2084
|
|
1335
|
+
pyrogram/raw/functions/messages/get_sponsored_messages.py,sha256=26NAwMVM9nE9kwxJmm43IqJDiocI-2VUnXlbfg1nKQw,2336
|
|
1336
|
+
pyrogram/raw/functions/messages/get_sticker_set.py,sha256=WD9YV9in4x0ul_VpjvJHPvJNdAP7X7u3BJowZ3-CfKo,2571
|
|
1337
|
+
pyrogram/raw/functions/messages/get_stickers.py,sha256=bCZLmqGgK50152ziwSPfJp4CLcMeRHQrqBhkzf0X1iY,2459
|
|
1338
|
+
pyrogram/raw/functions/messages/get_suggested_dialog_filters.py,sha256=hDhTpE5n3POMtcxcnVPND3kCVOYnmJJQNwSIuojSbtU,2146
|
|
1339
|
+
pyrogram/raw/functions/messages/get_top_reactions.py,sha256=yZiUvOWRGABwE1s3IkHPfVWPZx3NB92gj5q9uww0R-A,2452
|
|
1340
|
+
pyrogram/raw/functions/messages/get_unread_mentions.py,sha256=2ZFK4cF8uY8xZtiR21KEt05Eup3c3fQOKFY8G0EdB_4,3912
|
|
1341
|
+
pyrogram/raw/functions/messages/get_unread_reactions.py,sha256=LRwazytbqNXSWe5pbCsoHMXkSIlP73MIq1QMKXdngiU,3916
|
|
1342
|
+
pyrogram/raw/functions/messages/get_web_page.py,sha256=wJGOzXEa6zqWt3vQpv-C0EhaEWt004QzIwFW6ut2cxU,2405
|
|
1343
|
+
pyrogram/raw/functions/messages/get_web_page_preview.py,sha256=4Pui27gNpBSB7TL64fNSIf_ashTjRo_kOfBVcClQ2ZM,2822
|
|
1344
|
+
pyrogram/raw/functions/messages/hide_all_chat_join_requests.py,sha256=n6wUXy24uaRsz3HiZbbcwGxsuuTyyW1_BPDTRdj6te4,2991
|
|
1345
|
+
pyrogram/raw/functions/messages/hide_chat_join_request.py,sha256=v8_Ig6y5B_U0VyU1kveVb-d7kuUjUV8hl__mPLpV5dU,2908
|
|
1346
|
+
pyrogram/raw/functions/messages/hide_peer_settings_bar.py,sha256=dtVbCx9pN-HsO6JLjV8iNDeH4dakwI9pUFBmrfV-ZQI,2260
|
|
1347
|
+
pyrogram/raw/functions/messages/import_chat_invite.py,sha256=5UrSV0m-h_m3_6eztNjk-IE0nIFFMuSAqFzIvLC-LNI,2221
|
|
1348
|
+
pyrogram/raw/functions/messages/init_history_import.py,sha256=N-3r0zx_UkncCqwWMXSoy2xd-mW3MUFybHXEIwIHFnY,2836
|
|
1349
|
+
pyrogram/raw/functions/messages/install_sticker_set.py,sha256=JcAJf0tUN3am4qv0bsS5sk89AqZgx6uJcE4ZJcqVrek,2643
|
|
1350
|
+
pyrogram/raw/functions/messages/mark_dialog_unread.py,sha256=0wNOGnQqh2mKwR2HnbsdsXyVamAkSCZTKgzoVHTH_Aw,2583
|
|
1351
|
+
pyrogram/raw/functions/messages/migrate_chat.py,sha256=mjsE83vNj4IhFu4P8sLJQzQD3LcSimol4ezA02jC_qw,2233
|
|
1352
|
+
pyrogram/raw/functions/messages/prolong_web_view.py,sha256=S2N71-ixIMgGZkijy8OAuKoB21JtOTCu7xhx9Odr4wg,3956
|
|
1353
|
+
pyrogram/raw/functions/messages/rate_transcribed_audio.py,sha256=2eid8QCqLIEImWg113jRPJJaXKsAoNUe9kxviK1S0Tc,2984
|
|
1354
|
+
pyrogram/raw/functions/messages/read_discussion.py,sha256=fY_FNncZiYI64YQaRjgBAHKBpSqnLGgO-VIELvrBhrQ,2719
|
|
1355
|
+
pyrogram/raw/functions/messages/read_encrypted_history.py,sha256=XrTSA_s4XX-XpoZ4v4-ECF3dlIEv0YaIx_LLcufItYU,2535
|
|
1356
|
+
pyrogram/raw/functions/messages/read_featured_stickers.py,sha256=8YybGr3RwJhJi2Jd4vQFI7j9lTeWJD8cVtGCy57gPYY,2230
|
|
1357
|
+
pyrogram/raw/functions/messages/read_history.py,sha256=YizIaLDq9hCGeCpwDI9vNTQljJMrWhI2H8pGBCUtOuo,2513
|
|
1358
|
+
pyrogram/raw/functions/messages/read_mentions.py,sha256=wkDM38wtghV4I1NqmjB5f77TgBHmgokhyK65wrHwlkc,2767
|
|
1359
|
+
pyrogram/raw/functions/messages/read_message_contents.py,sha256=lDDYXyr2MlQ0pOWvLxWPo3gfh9tnuTb2HaYer-3AxCA,2293
|
|
1360
|
+
pyrogram/raw/functions/messages/read_reactions.py,sha256=1tP87vZOS_NhZi7NJ07KxuVnPIxCVArZoOwiDZT76lw,2771
|
|
1361
|
+
pyrogram/raw/functions/messages/received_messages.py,sha256=VEdb0USQcungDmYZCp6urLF5GUxc8VpqjNQ4Q57U2V8,2275
|
|
1362
|
+
pyrogram/raw/functions/messages/received_queue.py,sha256=T8t5YElaUrjbfnw27dGcfV7h5LAqw3DER9mrcfBfPeM,2222
|
|
1363
|
+
pyrogram/raw/functions/messages/reorder_pinned_dialogs.py,sha256=19KY3X1LvKek5YJHu9HzTgR1M1Eamz5OJ4NquiBc8uU,2865
|
|
1364
|
+
pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py,sha256=YlZFaIHpRCpg-Q-sQuNPJtAMJkCXC_zr8BQB4nVG0hs,2641
|
|
1365
|
+
pyrogram/raw/functions/messages/reorder_quick_replies.py,sha256=tD8RJjVvHlq84CZwAtu0XThrtqlEFLp4mNwgDylWH2A,2250
|
|
1366
|
+
pyrogram/raw/functions/messages/reorder_sticker_sets.py,sha256=737ArHSDD2F_1SwesN3YrmYAvHE8TcsLZNb7e1uyIF4,2815
|
|
1367
|
+
pyrogram/raw/functions/messages/report.py,sha256=XKeaZhvnkzPA-jd3OIqBxUjFs_DalxdZ3WKgg9_HMJ4,2913
|
|
1368
|
+
pyrogram/raw/functions/messages/report_encrypted_spam.py,sha256=FDHAbnh0-cSfxiZPo8zyURe1s9wdHgFZ51xucFdLK2M,2296
|
|
1369
|
+
pyrogram/raw/functions/messages/report_messages_delivery.py,sha256=fUK9k_IYrZbbwcXLQwOB0CMfRXmN1RegkEvMaTjFVkk,2786
|
|
1370
|
+
pyrogram/raw/functions/messages/report_reaction.py,sha256=Bbt_Ybv5wePGlGTRtFxB6qIf9wDqVVt0sCufME-YGeg,2760
|
|
1371
|
+
pyrogram/raw/functions/messages/report_spam.py,sha256=p5r6m0kYut3iuUq1M4OwASTshCj_lf8yAUjuV_eo4Uw,2224
|
|
1372
|
+
pyrogram/raw/functions/messages/report_sponsored_message.py,sha256=lanHhZ-4Z0KQPAOWDfkJA7MjecFGXYxIPKYTfZkoJ7g,2825
|
|
1373
|
+
pyrogram/raw/functions/messages/request_app_web_view.py,sha256=ku18YCXU4NAT6fr1Mg4aut0rstilqws4KIJd0g2u84o,4661
|
|
1374
|
+
pyrogram/raw/functions/messages/request_encryption.py,sha256=7pK04E0wMWTBxM_sN6aaN2NH1qTOA_RaJ5mdAyNrktY,2758
|
|
1375
|
+
pyrogram/raw/functions/messages/request_main_web_view.py,sha256=DA4WHwIcvyhhheUd5G6W9D6EIxm7NoMy4VTXsHch7-4,4330
|
|
1376
|
+
pyrogram/raw/functions/messages/request_simple_web_view.py,sha256=I2BGQV1sONIHwdm37eBhJEj1ffFCbsMsRui9MSbvGLA,5138
|
|
1377
|
+
pyrogram/raw/functions/messages/request_url_auth.py,sha256=sSb4evRcRG2c5IXloe-YpB5ei0TNAfKj8WBbadR0GQI,3614
|
|
1378
|
+
pyrogram/raw/functions/messages/request_web_view.py,sha256=aXAbNjp6UagsMp8RsZO0fbcMcg79s8UR9xW9Gd13y5k,6164
|
|
1379
|
+
pyrogram/raw/functions/messages/save_default_send_as.py,sha256=LEqzBb-IoxtQMt8JhLg95fm6KWwZFZe3hAkrbUe2Fxw,2537
|
|
1380
|
+
pyrogram/raw/functions/messages/save_draft.py,sha256=jv4CHEcLDSgWCC5FMWQDDDAXi64OPO08gsb7u-koVsY,4876
|
|
1381
|
+
pyrogram/raw/functions/messages/save_gif.py,sha256=jO0f8TqoPUDaIWt35AOZCetxKMk1kvfQ3RLxG2ZJ-ds,2421
|
|
1382
|
+
pyrogram/raw/functions/messages/save_prepared_inline_message.py,sha256=b8So0JwFRU2ygT4lEU0X0EqUI7C4OP0n4RT1FTPoWIE,3301
|
|
1383
|
+
pyrogram/raw/functions/messages/save_recent_sticker.py,sha256=V6QGo-l58QWFgTbUj3tTaGhELgROlno9QCFF9XVUz1E,2790
|
|
1384
|
+
pyrogram/raw/functions/messages/search.py,sha256=4_zLA3WsGxeUVrPruJKdZRL7C7JUjtrnGR9mIFFk4Y0,6501
|
|
1385
|
+
pyrogram/raw/functions/messages/search_custom_emoji.py,sha256=wx7XE3mlUBk-jfKFdbrMVqIvr9Dtch99w4iUqHLjKmI,2467
|
|
1386
|
+
pyrogram/raw/functions/messages/search_emoji_sticker_sets.py,sha256=hq-ff24bg0t4-nAxDyghZiin6f_JouUF3SO3Rat69Mc,2857
|
|
1387
|
+
pyrogram/raw/functions/messages/search_global.py,sha256=9-FV-E92jOPIPFlR9lMx86pOXujkbFQHhoWjQx2OAFg,5409
|
|
1388
|
+
pyrogram/raw/functions/messages/search_sent_media.py,sha256=KN3QVVx-qMfBbpt0qL1UCnYMIGZ5X2GDh1iMHj4NTd4,2714
|
|
1389
|
+
pyrogram/raw/functions/messages/search_sticker_sets.py,sha256=kITxWJ_RtClYvuucyFyPfuQEocNIlVyYLB6mt8XYs6g,2837
|
|
1390
|
+
pyrogram/raw/functions/messages/search_stickers.py,sha256=skgu_HyOV689QYXmXYVN5xv8maALHG2FuJxjcKvdrzg,3669
|
|
1391
|
+
pyrogram/raw/functions/messages/send_bot_requested_peer.py,sha256=kRXinGm_xf-Uw5TmZDQsr4UvIchOp4Kn18dxO3iOQZg,3138
|
|
1392
|
+
pyrogram/raw/functions/messages/send_encrypted.py,sha256=i5up1jGCdqcFpX56VmKtmG8k44kmtCTQ94E7byh8vFo,3106
|
|
1393
|
+
pyrogram/raw/functions/messages/send_encrypted_file.py,sha256=UpopJpmH5WFiWmBtrPx5Pc8nvPK_JKa_3on9pYKYo5s,3416
|
|
1394
|
+
pyrogram/raw/functions/messages/send_encrypted_service.py,sha256=5HiS1h_57kN1lT8AFfkfyVgEuW3GT7y5gjIGWBt0p1k,2823
|
|
1395
|
+
pyrogram/raw/functions/messages/send_inline_bot_result.py,sha256=jlerD7Y2x3IJ4af9EvH9NcycHSthnAewUl1A8FmA9Fs,6185
|
|
1396
|
+
pyrogram/raw/functions/messages/send_media.py,sha256=SN2tBNLbTdSxeBTactpuIb-Vzasr6L5AvImHLpCqmWI,8766
|
|
1397
|
+
pyrogram/raw/functions/messages/send_message.py,sha256=Jr6r_z2UjlfEK1FPBp7lAQ642TcpzNbrFKFubSy0YDY,8803
|
|
1398
|
+
pyrogram/raw/functions/messages/send_multi_media.py,sha256=HEpnBDYN0TyoK_dU2nir_Au1gOz61yYibzBBMdl1Xnk,7415
|
|
1399
|
+
pyrogram/raw/functions/messages/send_paid_reaction.py,sha256=p2XHAuqmrtSbKgYQgvc0hdeEwEPdgHxWuwdgBFkYIBQ,3382
|
|
1400
|
+
pyrogram/raw/functions/messages/send_quick_reply_messages.py,sha256=z1GqYvTgZN1aJqX9CRajb479dCIGF1capCMu656QW7Y,3076
|
|
1401
|
+
pyrogram/raw/functions/messages/send_reaction.py,sha256=jMyWtUu6L-SvhTPSZqA7RgYtjYnGaotNNhdd0L-NLu4,3565
|
|
1402
|
+
pyrogram/raw/functions/messages/send_scheduled_messages.py,sha256=ZTmdcTw22MP2kAfwsrg7C4b5RX1D1mANQZd2CdcUG0w,2523
|
|
1403
|
+
pyrogram/raw/functions/messages/send_screenshot_notification.py,sha256=ZohwiQB965Pk5c9QmQraarm3tnZq2QGieoEGKDtlrw0,2875
|
|
1404
|
+
pyrogram/raw/functions/messages/send_vote.py,sha256=Bno_IuVvXqoWIWBo8PaFjfPzkoWexxjlHh6xoJJ0ty8,2732
|
|
1405
|
+
pyrogram/raw/functions/messages/send_web_view_data.py,sha256=RcAamDrtisTk0aU0nEKlCSihPJtFQJRmce-AF1mp-jE,2973
|
|
1406
|
+
pyrogram/raw/functions/messages/send_web_view_result_message.py,sha256=l_Gcj0Gau2UcggoG9zx0FjtMX5EFRAhWHyETR5EDJzQ,2665
|
|
1407
|
+
pyrogram/raw/functions/messages/set_bot_callback_answer.py,sha256=uKU4xjfzMWcdUDzBDTMs2dW3HV_I4eSTL1JFJNKiCYA,3525
|
|
1408
|
+
pyrogram/raw/functions/messages/set_bot_precheckout_results.py,sha256=ZtsGUYOAsKwvRPfw4oTM_a4GfGocDg24hdW9hvlMP50,2941
|
|
1409
|
+
pyrogram/raw/functions/messages/set_bot_shipping_results.py,sha256=12uq112pu9YJseJLf4nddLHJF4kzxtvmzSElUXmYQfs,3241
|
|
1410
|
+
pyrogram/raw/functions/messages/set_chat_available_reactions.py,sha256=FUNbfqexQgN-jvppNLC21yDfZBfa7-maxuRwp7x1ulU,3685
|
|
1411
|
+
pyrogram/raw/functions/messages/set_chat_theme.py,sha256=jtUGRXxmFwAGHdhFAn0oJgGmafcMiUTXnkAXxTp-1gc,2499
|
|
1412
|
+
pyrogram/raw/functions/messages/set_chat_wall_paper.py,sha256=L_2dHi7zKXUYTNvMTnQWcRsZeKkkJbfZx02JTV_c6_Y,4184
|
|
1413
|
+
pyrogram/raw/functions/messages/set_default_history_ttl.py,sha256=E0ud15hvGUoLop8HdsgjIvMTCPE6DoGgLkJpccBebQ8,2223
|
|
1414
|
+
pyrogram/raw/functions/messages/set_default_reaction.py,sha256=iqE8_ekRxlhUh8PEdfsaDOTsoiCRWOKHadEbAJ0EiDw,2288
|
|
1415
|
+
pyrogram/raw/functions/messages/set_encrypted_typing.py,sha256=tHvuQrvgyTTd0KbWHqHEqDzv5JnbukYG_sfpp9VS3LQ,2503
|
|
1416
|
+
pyrogram/raw/functions/messages/set_game_score.py,sha256=SMGledGlWIdz8T39HSDJNupf047czxUhImdyEGDIZ0A,3560
|
|
1417
|
+
pyrogram/raw/functions/messages/set_history_ttl.py,sha256=-iiX_5pfqP4O8-8IPcp9aPEY1cfJvnqSO_oPIfJV3SY,2487
|
|
1418
|
+
pyrogram/raw/functions/messages/set_inline_bot_results.py,sha256=Dp5KGpwIFornA4gA5QQKx1NKhn38Hee7wUuLzYkQVOk,4917
|
|
1419
|
+
pyrogram/raw/functions/messages/set_inline_game_score.py,sha256=DC84ILA0TgISCIvz_Eo_ipIOfOw6TlFBdaTiil4N-bs,3407
|
|
1420
|
+
pyrogram/raw/functions/messages/set_typing.py,sha256=3J4SB2lMWycr4PwGnb3JwMP63dBjO76JQ5kNzG8ivfk,2995
|
|
1421
|
+
pyrogram/raw/functions/messages/start_bot.py,sha256=07YLudi-bDqfDdryt9vfIKNhVDFv7azbeoZkG0nRGfg,3006
|
|
1422
|
+
pyrogram/raw/functions/messages/start_history_import.py,sha256=6dHf43o_vQqmskEkrd_wJn5EyhI-dp5wU-ZFyR7Hq_U,2503
|
|
1423
|
+
pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py,sha256=Ij1xwNluJj_uZX2SNG73FuOUkSupsPVMxAVYGM8POoU,2853
|
|
1424
|
+
pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py,sha256=5leP_P37dtKyppPnaHHd2qZg02trXQVK9mbPE6LBP8E,2234
|
|
1425
|
+
pyrogram/raw/functions/messages/toggle_dialog_pin.py,sha256=yYiqfkeD9W0Iyfm1OqmCCpbmUrXiM63gF0Z2qNmLzqA,2579
|
|
1426
|
+
pyrogram/raw/functions/messages/toggle_no_forwards.py,sha256=k-vsy1Y_GI0sFM47CfDhUHg8Dok3eu7nlyc3hxZdniQ,2502
|
|
1427
|
+
pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py,sha256=UWPUfVC3VfR97wPXcWTqtQluW6CJ8XIp_XP9G3r20gA,2721
|
|
1428
|
+
pyrogram/raw/functions/messages/toggle_peer_translations.py,sha256=mLCdtSAsWTSxsLw2x9uOHqCvUWOlv9ApJFhWOU8Zuso,2601
|
|
1429
|
+
pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py,sha256=_PPVS8lVs4B2GlBPslXhuJqLo2JcOhSKFM7yOHfhVM8,2599
|
|
1430
|
+
pyrogram/raw/functions/messages/toggle_sticker_sets.py,sha256=0ObCLs1ZyAdHKy0Ee9CeuDuidVAVZYuBb8GalTXMdGw,3263
|
|
1431
|
+
pyrogram/raw/functions/messages/transcribe_audio.py,sha256=pwTlGfeRnL4kWnrLOkDksbbfZKib1dfS9est1DIsGVc,2531
|
|
1432
|
+
pyrogram/raw/functions/messages/translate_text.py,sha256=4HCMrtSr6l_3zI8g4sjDX27YXb4AOJ0oC65lYpkJOoo,3555
|
|
1433
|
+
pyrogram/raw/functions/messages/uninstall_sticker_set.py,sha256=lAET1LSFh90X9K1w-a2uf4aDBZdFOuBqxelGVUlctHM,2338
|
|
1434
|
+
pyrogram/raw/functions/messages/unpin_all_messages.py,sha256=bfmruoMLRd34coE7CxXWw3hcYuYmS6UvNRB2OTf8tkc,2783
|
|
1435
|
+
pyrogram/raw/functions/messages/update_dialog_filter.py,sha256=ncSGjj7_hgTrzas971MJRPZrauCWY7o7KSuYtS51Ng4,2673
|
|
1436
|
+
pyrogram/raw/functions/messages/update_dialog_filters_order.py,sha256=-2C9IEf5Uh1i2Oyuk6uRx44Rzc73hyi2WMO9nMb5z_E,2270
|
|
1437
|
+
pyrogram/raw/functions/messages/update_pinned_message.py,sha256=qQ5tw2i7JOQpLDVfuCI50UilfZ0jft7NAzSjjdFRsR8,3341
|
|
1438
|
+
pyrogram/raw/functions/messages/update_saved_reaction_tag.py,sha256=t5cllvbtlZ_yyJXsKYW0YrX8GDe5Nznc9AzOiIeWhic,2714
|
|
1439
|
+
pyrogram/raw/functions/messages/upload_encrypted_file.py,sha256=7xQogwMdmzxBcfDrjnZALVtCp--YBFZQhkpGpnU3odA,2636
|
|
1440
|
+
pyrogram/raw/functions/messages/upload_imported_media.py,sha256=JqR7nQyswONi1Q9ibZrGD4uouuOz1vj-FI0-nnUjhOs,3064
|
|
1441
|
+
pyrogram/raw/functions/messages/upload_media.py,sha256=n-fHhKtP94UMuTzirBzAl-6lJmcVT6C_pLiSC7J5PR0,3140
|
|
1442
|
+
pyrogram/raw/functions/messages/view_sponsored_message.py,sha256=vNVRD3CUnW1ST-eesY-7R4GezUA301j3SI0CPPXxenE,2507
|
|
1443
|
+
pyrogram/raw/functions/payments/__init__.py,sha256=d8KZYMFRN-pbtINbWFgKicR32qvdnXDWR4saMXZeXe4,3776
|
|
1444
|
+
pyrogram/raw/functions/payments/apply_gift_code.py,sha256=_uz5NFxyjFo2XJSB35TAr_ze9MlCp_8Odn5ALxg48MA,2209
|
|
1445
|
+
pyrogram/raw/functions/payments/assign_app_store_transaction.py,sha256=vFIMJ1oaBBxTqyBaxZKPw-s_1IfRjPCThUPSiyXg_dA,2630
|
|
1446
|
+
pyrogram/raw/functions/payments/assign_play_market_transaction.py,sha256=E-iMD80RPIhbPBwtk7r7k0f0bkDzRnSStkd9Pq4UllQ,2694
|
|
1447
|
+
pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py,sha256=CXfPqxNR5COy04cf4TNVwVLc-JFj36LKbpm6Ccra-EM,2877
|
|
1448
|
+
pyrogram/raw/functions/payments/can_purchase_premium.py,sha256=SRNk-RGCqwxqUPamvTKheZc6kYyjoyIZ6qKX_ZHXTXI,2343
|
|
1449
|
+
pyrogram/raw/functions/payments/change_stars_subscription.py,sha256=onlaptvMqDXbpYTnWliybNMTpkAwHbwoG4n_gO9qEXw,3011
|
|
1450
|
+
pyrogram/raw/functions/payments/check_gift_code.py,sha256=p5P-KAfuO2psX1yilGzZErz-W0cM7KKwOqO53ObjqhY,2243
|
|
1451
|
+
pyrogram/raw/functions/payments/clear_saved_info.py,sha256=9zfZHMb1I8e1tkw5xCx1BApaCtM4HbldOT0tI_PVo0M,2584
|
|
1452
|
+
pyrogram/raw/functions/payments/connect_star_ref_bot.py,sha256=YEGsGCglsLf_CO_KAevXo1zcVSjp8YAo1u-rVsrlzio,2579
|
|
1453
|
+
pyrogram/raw/functions/payments/convert_star_gift.py,sha256=UsqC8g7D6FkfgzhabhihbOd77Wmc-_xQkL9aPETFVlc,2316
|
|
1454
|
+
pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py,sha256=3SgQ9IDtCecRD2H8tsowsDDMD1WFaDc_LXrGvC_3NYI,2871
|
|
1455
|
+
pyrogram/raw/functions/payments/export_invoice.py,sha256=TNaa2XOArIRUqpUgthkvEEoEM61JrdYtUWfQ9PPSHPI,2387
|
|
1456
|
+
pyrogram/raw/functions/payments/fulfill_stars_subscription.py,sha256=sXe3nTC0FeB9w1XGHxspIIOzntX4gMNvhDhJWu8oqgs,2576
|
|
1457
|
+
pyrogram/raw/functions/payments/get_bank_card_data.py,sha256=tK7xllJm6Px-iMLIwgzoNetJQj4IgTdO6ET8_AuPVuA,2263
|
|
1458
|
+
pyrogram/raw/functions/payments/get_connected_star_ref_bot.py,sha256=pt4T-ij84gx4-6QUrVjTZnbMn7eG_bqxDu7l1DWMOy8,2599
|
|
1459
|
+
pyrogram/raw/functions/payments/get_connected_star_ref_bots.py,sha256=SyzIUdoPDhJ9tkPTMQYNAcw0F73T8ACQisOb1LhT-q0,3469
|
|
1460
|
+
pyrogram/raw/functions/payments/get_giveaway_info.py,sha256=OUNJoZDfrczTE29fT--SoPq6MR0khhVPSTJUopRiyjo,2523
|
|
1461
|
+
pyrogram/raw/functions/payments/get_payment_form.py,sha256=DhQ520bB99nobWWq1zwcir3IunxG3atjzPbxLdmbv6M,2883
|
|
1462
|
+
pyrogram/raw/functions/payments/get_payment_receipt.py,sha256=rR_XBdWFyzlJCmOPB11fLFjFVLk6OlL2Vcmg5gD4grw,2535
|
|
1463
|
+
pyrogram/raw/functions/payments/get_premium_gift_code_options.py,sha256=pYGmSyhKpACD6gTcxfX2JA04SxhSbUTymfF4eeRdGCw,2622
|
|
1464
|
+
pyrogram/raw/functions/payments/get_saved_info.py,sha256=CKlMApONXebK215nx7k7-hMbkLcCyfHFjJtBcLARusU,2080
|
|
1465
|
+
pyrogram/raw/functions/payments/get_saved_star_gift.py,sha256=yV7Muja_vNs9rjzon5Pw9hg_JnnUqEtmNl8rj21MN1w,2408
|
|
1466
|
+
pyrogram/raw/functions/payments/get_saved_star_gifts.py,sha256=jbcsOrRKUJ1R3ijwEAoa7G0vMm9aOM1pfywl1a_QtbQ,4831
|
|
1467
|
+
pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py,sha256=WRskJJ6hDrK_fcNmE43I_mWQ6jCo_lEORI23I7VR7sw,2337
|
|
1468
|
+
pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py,sha256=jtvXVCIpLvxVd7vcEjv0tu_mod0TIWiXwrFMCH5f36M,2774
|
|
1469
|
+
pyrogram/raw/functions/payments/get_star_gifts.py,sha256=XgkO6NApTHjSmaCQwLHufwnfkbq47CjHD9oGuXLtZZs,2229
|
|
1470
|
+
pyrogram/raw/functions/payments/get_stars_gift_options.py,sha256=h2RRad2ySpT9yIHtaRP-d3WzEjhoqkcdT-qmrVsN4TI,2553
|
|
1471
|
+
pyrogram/raw/functions/payments/get_stars_giveaway_options.py,sha256=YNhY81xZO1cpkPJeSXXCyADkCDNUkS0BbMjTvwYjAHU,2134
|
|
1472
|
+
pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py,sha256=ZtsvhcbpRXnXmF7MuWhNBMD-XvUthX7-yYzpB8ooh5c,2384
|
|
1473
|
+
pyrogram/raw/functions/payments/get_stars_revenue_stats.py,sha256=aBsL_RTJwPCtI5p0WgIT-rHft8IijRgUOELQV7T8zVY,2629
|
|
1474
|
+
pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py,sha256=mufztrwb2uRGkRpcMigNHe9JngfQK6FVHsQYHrf-YHo,2937
|
|
1475
|
+
pyrogram/raw/functions/payments/get_stars_status.py,sha256=fxelBjPTb1UyvsbVrFJp7ZtHlDazqtK0vyRPnrU24Vk,2300
|
|
1476
|
+
pyrogram/raw/functions/payments/get_stars_subscriptions.py,sha256=7RuUMGVnI314tNdYmnhQie2jmzhG9aPgaxrSt8QVjZs,2933
|
|
1477
|
+
pyrogram/raw/functions/payments/get_stars_topup_options.py,sha256=yATrmeNMfo4tfOd4XKAsdD2uTsINnLyVKBhvLrDzo-M,2116
|
|
1478
|
+
pyrogram/raw/functions/payments/get_stars_transactions.py,sha256=xrFhm2oAlairu0hAxUZhJvvNtAEqLyZGtAfRPV6YAoA,4113
|
|
1479
|
+
pyrogram/raw/functions/payments/get_stars_transactions_by_id.py,sha256=FPi0FUg8CT7YzfdyEzSL1R1tVlx8tZ1k4HIFgKlHvO8,2650
|
|
1480
|
+
pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py,sha256=5eBjsa3beRGCv31WPTIZHrVK15DSscFWouIO4wL36w8,3503
|
|
1481
|
+
pyrogram/raw/functions/payments/get_unique_star_gift.py,sha256=11_bBR3aLIuEErFrv5_XErjRbWCe3YyDtH7TN6oFh68,2257
|
|
1482
|
+
pyrogram/raw/functions/payments/launch_prepaid_giveaway.py,sha256=_ksDck9arl15pMxnPs4jd94dVUC2cjR3xoEzdUG-jvw,2912
|
|
1483
|
+
pyrogram/raw/functions/payments/refund_stars_charge.py,sha256=OCd6SQcI6x7yhHGWwjdYksSd3ev5t3pIcCNWWeBl6_8,2555
|
|
1484
|
+
pyrogram/raw/functions/payments/save_star_gift.py,sha256=Pa6_Wvcwd8QI_Xk90DDh2VoKhcdnwODczPM5o_mOiXQ,2615
|
|
1485
|
+
pyrogram/raw/functions/payments/send_payment_form.py,sha256=n0CrO5g3dm7A_leIAI0gTRCos2uAB7_ZjywTy9WWbb0,4424
|
|
1486
|
+
pyrogram/raw/functions/payments/send_stars_form.py,sha256=jxrJ9eAe8JnL0v9jLQ2FdEgO81yXkOXHfpT_vqD_lCE,2568
|
|
1487
|
+
pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py,sha256=vykXg8_HKUMZqqCvFHURH1E0ilfxZXr-auq2U0hgrYQ,2628
|
|
1488
|
+
pyrogram/raw/functions/payments/transfer_star_gift.py,sha256=eK6qU217DohzHX1rN79RiULszo1yB316IncxdgjYuro,2621
|
|
1489
|
+
pyrogram/raw/functions/payments/upgrade_star_gift.py,sha256=fbA-mibMQt-jvxPpL1cv7VXSH-fkicmnPfZ9ifuDdp4,2796
|
|
1490
|
+
pyrogram/raw/functions/payments/validate_requested_info.py,sha256=CDLPpu52GWxShX6ZScAGRRMpbcZ90nYe6p3z8fkE-6M,2984
|
|
1491
|
+
pyrogram/raw/functions/phone/__init__.py,sha256=Vqy4DsfS-0EJqQTLgUjw84jTqcck-UHrLe_NhRS4vtE,2818
|
|
1492
|
+
pyrogram/raw/functions/phone/accept_call.py,sha256=MPZsJgNBhyKDHDc_K0ZlgDt7DUsz607j9vz-7fJYFjY,2806
|
|
1493
|
+
pyrogram/raw/functions/phone/check_group_call.py,sha256=TXVGSY6Erll9aW2W3gXfq62MwrXob8Crms_IV0Zf0kU,2541
|
|
1494
|
+
pyrogram/raw/functions/phone/confirm_call.py,sha256=oQEhhx-Jevv30FK_eQ0vJ3oCBG8X3VLoo67pzXE6Ub0,3111
|
|
1495
|
+
pyrogram/raw/functions/phone/create_conference_call.py,sha256=NONj3AoTHu34cEEHBKacDwRqQxqjkIGoZUEYi2VsgWQ,2632
|
|
1496
|
+
pyrogram/raw/functions/phone/create_group_call.py,sha256=1MrLd5rLFzurBm8UmmkEXI2cUll4-Dy8YotrK5Q6g-k,3691
|
|
1497
|
+
pyrogram/raw/functions/phone/discard_call.py,sha256=xaOmTazZvTjd7rSW6OIHxZyckz-vQe1fzrg8KSDv9D0,3427
|
|
1498
|
+
pyrogram/raw/functions/phone/discard_group_call.py,sha256=LmLa2VXbvFwLW3TlfdJSpplliWGxnQPRqabZ5XoiTHM,2299
|
|
1499
|
+
pyrogram/raw/functions/phone/edit_group_call_participant.py,sha256=AXy5G7de6-nktJpbG_5tKM0QmjUCXcp7v-PaPWMgSP0,5244
|
|
1500
|
+
pyrogram/raw/functions/phone/edit_group_call_title.py,sha256=mcD_v-xsmSB3bHDigd5VYUhmwqi4De3jQF_Y2cWJ7v0,2513
|
|
1501
|
+
pyrogram/raw/functions/phone/export_group_call_invite.py,sha256=jEDSWDiKzWEuepgCy-5qXRedP4DAibMoh8AuOxoNkEE,2755
|
|
1502
|
+
pyrogram/raw/functions/phone/get_call_config.py,sha256=zxhrWTU2qveW49CryPv6GgRAMSbPIgSFIK3UC32Urf4,2061
|
|
1503
|
+
pyrogram/raw/functions/phone/get_group_call.py,sha256=MmVaSgGfIdY1vlx8FUZZCycPo5YvU49XbqkjtU4xrqQ,2505
|
|
1504
|
+
pyrogram/raw/functions/phone/get_group_call_join_as.py,sha256=6K4GJR32_2VlQ1kW2XpQ2Dj4Wo5dCO-rz4kE4b87IbI,2307
|
|
1505
|
+
pyrogram/raw/functions/phone/get_group_call_stream_channels.py,sha256=yYnwp1RDOohSuHJhQ5v0LpHrtbrrDTPWrcJiiBXBIUI,2383
|
|
1506
|
+
pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py,sha256=3dDqtBKeAp6a0hvhC5uWa2OyGx3YZKum1ktijkQDl9s,2568
|
|
1507
|
+
pyrogram/raw/functions/phone/get_group_participants.py,sha256=utHAr0wLkC8NOLSDq8f2xPNaAh0yGeuej8lTaGDTMhA,3307
|
|
1508
|
+
pyrogram/raw/functions/phone/invite_to_group_call.py,sha256=EHSmYtr34ZwWLz_ZDWe3fXX5YPpDBwBJJ5V5oX0SA48,2592
|
|
1509
|
+
pyrogram/raw/functions/phone/join_group_call.py,sha256=iWb_oDqf3MYoib3EIYzM0nMLZRdCqYE5bB1Xl0xWUfw,4380
|
|
1510
|
+
pyrogram/raw/functions/phone/join_group_call_presentation.py,sha256=UDjM-0OM8OJMaJBn0ysHEuxLWNNqEUeQ15L5DkSWSXM,2607
|
|
1511
|
+
pyrogram/raw/functions/phone/leave_group_call.py,sha256=azCSUmb9PCOC2Dj2k_semb0ZD4nx5dCsqx7F-ImMB4s,2508
|
|
1512
|
+
pyrogram/raw/functions/phone/leave_group_call_presentation.py,sha256=H6_nqe7sERc7Jg53kX0id3_oDN6Op-PFU9QwJ_GDFH4,2339
|
|
1513
|
+
pyrogram/raw/functions/phone/received_call.py,sha256=9CwcaC8DKQ6UnXNM5hh7GZjZjkwUt4wOJcb7mA1FFGI,2249
|
|
1514
|
+
pyrogram/raw/functions/phone/request_call.py,sha256=bpwXIEx8XI_g3UlWT5yxthfM7RB-gPEwpzInCUXYRr8,3962
|
|
1515
|
+
pyrogram/raw/functions/phone/save_call_debug.py,sha256=YDnnBRRqYcanSCFTfL7gvU107h2mj8czdBqHGmz54HQ,2516
|
|
1516
|
+
pyrogram/raw/functions/phone/save_call_log.py,sha256=laekD7MGVkdZiPf-iMhW88XbYSVM0Ys1HJsA6qlBrv8,2503
|
|
1517
|
+
pyrogram/raw/functions/phone/save_default_group_call_join_as.py,sha256=nOf3gMjTwPFaZeIkM-bSA28NhDLGeqhAVcbPDIqpzLI,2570
|
|
1518
|
+
pyrogram/raw/functions/phone/send_signaling_data.py,sha256=NVQBvysS3mXrnVBD3V_ZLYwnOAYrhMV8_XiV0OlG-7k,2467
|
|
1519
|
+
pyrogram/raw/functions/phone/set_call_rating.py,sha256=DQF9AJtZaJidKzOPwtzl2aEAX7Xg6cvlNqxlPwU4_T4,3120
|
|
1520
|
+
pyrogram/raw/functions/phone/start_scheduled_group_call.py,sha256=ImqhDP1ivS0QdkHQrmGmEL-sPJ764AkDtLPObKMvGjk,2327
|
|
1521
|
+
pyrogram/raw/functions/phone/toggle_group_call_record.py,sha256=v0dZyFHDCk1cb62Exu33xwNRzPQMCgm2NgH4xgxRhBU,3697
|
|
1522
|
+
pyrogram/raw/functions/phone/toggle_group_call_settings.py,sha256=ZXZIXnCYBK0b0xX5TkrohLwkq4McBNbbJzBdzGkft0E,3151
|
|
1523
|
+
pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py,sha256=s_0IKf2gM59W002w0WDlhWy-xjjNhg7T_5vaa3ZLg5s,2610
|
|
1524
|
+
pyrogram/raw/functions/photos/__init__.py,sha256=CSwVkRSxwh0xO0b6U2XpbB91fgbEq3FmSvs5OS36Amw,1346
|
|
1525
|
+
pyrogram/raw/functions/photos/delete_photos.py,sha256=tCKlS1pzGqa09Eq4YzyUbq4GSVJLsqRRmbUj0yhyWK0,2256
|
|
1526
|
+
pyrogram/raw/functions/photos/get_user_photos.py,sha256=3NHw70IXiverMNI7rXHVP3Xk-h2uTwJ1wHvzXpJCWn8,2952
|
|
1527
|
+
pyrogram/raw/functions/photos/update_profile_photo.py,sha256=LQB9FdYhONoY44fnW_SOatlWazrxyhzV9MHfxw2rj78,3013
|
|
1528
|
+
pyrogram/raw/functions/photos/upload_contact_profile_photo.py,sha256=HInZIEHCHDJ_BJvT_0TZ7HcRI2PL2xwsu3JCGe0bwR8,4800
|
|
1529
|
+
pyrogram/raw/functions/photos/upload_profile_photo.py,sha256=UBzHvjVsMSHX2LakSVnVKD_y_C0AMmU97va8t9xqAyw,4650
|
|
1530
|
+
pyrogram/raw/functions/premium/__init__.py,sha256=WgaL4_oclfdWPTdqsNllw28RrsqYJsTjUjjTsbTMn_Q,1297
|
|
1531
|
+
pyrogram/raw/functions/premium/apply_boost.py,sha256=4LrkVAEyIk3awM1IqZd4UqW5L_0TD4Yj5mzkzEEyU10,2723
|
|
1532
|
+
pyrogram/raw/functions/premium/get_boosts_list.py,sha256=CISk7KpxcLUN099UVvNDOjsTvK5edCqZV7AaG_EUrmo,3016
|
|
1533
|
+
pyrogram/raw/functions/premium/get_boosts_status.py,sha256=LTnmzyRuDe1sJTojK7QLCZ5wKzpdzV09bLf_kfN7Ncw,2301
|
|
1534
|
+
pyrogram/raw/functions/premium/get_my_boosts.py,sha256=4r9iV7-EajW23XklHSLMApMAAw_M3bN4YJwGX4_X_ng,2069
|
|
1535
|
+
pyrogram/raw/functions/premium/get_user_boosts.py,sha256=MPQmJW3V7te9ghQHImslPCXiTxKv_XjhpNQ6XV7bJGc,2576
|
|
1536
|
+
pyrogram/raw/functions/smsjobs/__init__.py,sha256=dDO9j-SdS30pSa-74WS4pE2QWoiUFRQiAJjQPxFKRus,1336
|
|
1537
|
+
pyrogram/raw/functions/smsjobs/finish_job.py,sha256=foeXs0xehB3z_I9v-S6gFcQmuh26sXhpWyylTfaEk2c,2586
|
|
1538
|
+
pyrogram/raw/functions/smsjobs/get_sms_job.py,sha256=A4YCuOVt-xke0zm9_FRq749CfQd5TyCuaCefe67Ga-U,2208
|
|
1539
|
+
pyrogram/raw/functions/smsjobs/get_status.py,sha256=f2z5tsODon76kh21uprDsImJMgOTRkI9OtrB-P1kwuI,2059
|
|
1540
|
+
pyrogram/raw/functions/smsjobs/is_eligible_to_join.py,sha256=63m52uXRbmLVmeR7X6LTfYHBdv06zshKp_AbAEVnUlg,2107
|
|
1541
|
+
pyrogram/raw/functions/smsjobs/join.py,sha256=pLKGsYaWxQuBxMRyeHjIjoDyj9cWrF8Ppt8RpGGrlI8,1991
|
|
1542
|
+
pyrogram/raw/functions/smsjobs/leave.py,sha256=y8wLNLTHQY_r_6URkWJiq0_qcbJ8fKJXZgXYTy2xyHI,1995
|
|
1543
|
+
pyrogram/raw/functions/smsjobs/update_settings.py,sha256=8dffrchha29_Yrlbe_wAiKpduv7KILee8a54CF8qjiI,2407
|
|
1544
|
+
pyrogram/raw/functions/stats/__init__.py,sha256=9tIrf2rKXgygh75XKbVIr5YU7m_QtaRiqdF9cuKhPjs,1688
|
|
1545
|
+
pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py,sha256=hWTbRbaq9qhF0wXwhJIp7KElavJi4qlCdndCn8Tlb-8,2644
|
|
1546
|
+
pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py,sha256=8cN_hAq5DJJCpNsMgE5qx-7AHBVurtsfQaoUDKVqjPc,2818
|
|
1547
|
+
pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py,sha256=UzE32K_lpctb72HDHHGgwBWhVjU1S3XaHwke0uoZ1HM,2741
|
|
1548
|
+
pyrogram/raw/functions/stats/get_broadcast_stats.py,sha256=YYQFLQqHm3tpqEqZad1GH9iizfRCSTqzci5wk3_iqDU,2641
|
|
1549
|
+
pyrogram/raw/functions/stats/get_megagroup_stats.py,sha256=eFITZjgtaxe349kA5j1Pyc4fVlZ9AFJYczChSmxbHgM,2641
|
|
1550
|
+
pyrogram/raw/functions/stats/get_message_public_forwards.py,sha256=feRKaTQdLWG6vYixUXw_9bYa4hkt1d0oAQmGWC53Nbc,3016
|
|
1551
|
+
pyrogram/raw/functions/stats/get_message_stats.py,sha256=HmK2p955WNR44JH9zSLobq_2Vih8el9lnuOu3Hl5t3E,2846
|
|
1552
|
+
pyrogram/raw/functions/stats/get_story_public_forwards.py,sha256=h9JNz09kiYNZQrMIpLBkDZOG81lgTguDkeQR0uqQnks,2933
|
|
1553
|
+
pyrogram/raw/functions/stats/get_story_stats.py,sha256=eYLfYxOrF0wPhtsirRzB-emcgguHP1btWRODz2-NMkQ,2759
|
|
1554
|
+
pyrogram/raw/functions/stats/load_async_graph.py,sha256=3hvMeg2N1lew-S_paYhqTADJGa8y_hQxVNeIPuK4TgI,2596
|
|
1555
|
+
pyrogram/raw/functions/stickers/__init__.py,sha256=Sr5jbRC0MVXnC9OmKga2QInr6TwhdW0nR_zgV_bmgyM,1641
|
|
1556
|
+
pyrogram/raw/functions/stickers/add_sticker_to_set.py,sha256=28cZeumfTyNkDBdwzvdWeel02OUSdjFg-5AmgMYrr00,2705
|
|
1557
|
+
pyrogram/raw/functions/stickers/change_sticker.py,sha256=aEyeY-N2X_5KZNpMcbYCCMbOBSkGGDMU-XAt1Y2gMPw,3637
|
|
1558
|
+
pyrogram/raw/functions/stickers/change_sticker_position.py,sha256=6Q3Vy3YzB4OnoSLxwi_m-tgGDHjPwQSETBhOAP4EHyQ,2604
|
|
1559
|
+
pyrogram/raw/functions/stickers/check_short_name.py,sha256=_t8J9liOVwBtqASe18aVhrl_yddoYAJIXQw7imPTYEI,2233
|
|
1560
|
+
pyrogram/raw/functions/stickers/create_sticker_set.py,sha256=I0Kr4D-TAszeo59gtMSRkTvwYiDtHVlOQDXI7kqCyAU,4848
|
|
1561
|
+
pyrogram/raw/functions/stickers/delete_sticker_set.py,sha256=vOsIx2qeIQwn8QljSbxSSNFfnkyoD1xCMI9mt4AyvTM,2326
|
|
1562
|
+
pyrogram/raw/functions/stickers/remove_sticker_from_set.py,sha256=8rkw5W_yzl5LMZWQAiNzf_TEqI6CPr2JP4N_Edrur5Q,2365
|
|
1563
|
+
pyrogram/raw/functions/stickers/rename_sticker_set.py,sha256=2kAfjPEnV8oY8gsB_Ajnvog5t4PGav2GycH40NZmd2w,2590
|
|
1564
|
+
pyrogram/raw/functions/stickers/replace_sticker.py,sha256=8TTyD_ir0UORTfAPqMpEriI_sy7MkbnkEZQ2x9VCB80,2702
|
|
1565
|
+
pyrogram/raw/functions/stickers/set_sticker_set_thumb.py,sha256=92YiUYzFFUFK1KSq52LkPxE95o364087qgeHIxIgXAM,3379
|
|
1566
|
+
pyrogram/raw/functions/stickers/suggest_short_name.py,sha256=U9gBehgJMFePags9eno1w1CGXGe6swhg-paN3caasq8,2270
|
|
1567
|
+
pyrogram/raw/functions/stories/__init__.py,sha256=BZk_P5RthP5OZtDsCn13boUNSQKeq_eOLX29RT1PHGg,2324
|
|
1568
|
+
pyrogram/raw/functions/stories/activate_stealth_mode.py,sha256=pgaE3lAIj5cLtapFHsjPY0sSoBHJfqZVVnDk9DXQPOk,2592
|
|
1569
|
+
pyrogram/raw/functions/stories/can_send_story.py,sha256=PNaNjmK6J_Luprz6lbf-26BuZg-PDOP0h1vVvE3aGGA,2231
|
|
1570
|
+
pyrogram/raw/functions/stories/delete_stories.py,sha256=6vm11FxEbPDYPtyVtql-JT2BkIGjQZNNfpo43LZA5Kw,2474
|
|
1571
|
+
pyrogram/raw/functions/stories/edit_story.py,sha256=dQ6oPDJzpAE1UIXztV9x9_d0JAnIN6xA2IPxj5zRTCw,4851
|
|
1572
|
+
pyrogram/raw/functions/stories/export_story_link.py,sha256=ekyYMKF-m1hPiHQc7WLpMBsQ9U61EyZChKuoHw-HPpw,2478
|
|
1573
|
+
pyrogram/raw/functions/stories/get_all_read_peer_stories.py,sha256=VqQpHEshnTBB--3WPU6KH_XtuSXj275XtA_HJqwhzlw,2093
|
|
1574
|
+
pyrogram/raw/functions/stories/get_all_stories.py,sha256=JwYXI29UAZ6slLfAfUd7dT2_9VOka2htgBQmpuZXN4k,2953
|
|
1575
|
+
pyrogram/raw/functions/stories/get_chats_to_send.py,sha256=qO28cEtpVODnKg3YbHxvfwVWR0ld84Iabc7dfVA8-ug,2079
|
|
1576
|
+
pyrogram/raw/functions/stories/get_peer_max_i_ds.py,sha256=lMTG3jwugcsP0XsTfabdo78ykMDUxn1dMGPr_yAcCwY,2257
|
|
1577
|
+
pyrogram/raw/functions/stories/get_peer_stories.py,sha256=oOrNL2e5Dc3e-UEiFZSi4jrxBnjlVjMKacch2j7oDFE,2297
|
|
1578
|
+
pyrogram/raw/functions/stories/get_pinned_stories.py,sha256=dOW8m36EdKzYCa_JsurSLturM2xui7IS5XTw5WdvOrQ,2749
|
|
1579
|
+
pyrogram/raw/functions/stories/get_stories_archive.py,sha256=PWfzHWvNPNBpci0FrIOGkXg_8H0B-uWOZ_22TIrPnLU,2753
|
|
1580
|
+
pyrogram/raw/functions/stories/get_stories_by_id.py,sha256=1z77PlPShvoY_Ib5s-NMzoz8BZK1IH3KNtVzNbT80rM,2510
|
|
1581
|
+
pyrogram/raw/functions/stories/get_stories_views.py,sha256=qv26ow4B9o_PiiNsYuCNLNXqgvxxcJPoWEgbrhYSBC8,2520
|
|
1582
|
+
pyrogram/raw/functions/stories/get_story_reactions_list.py,sha256=TRlv0pAGO-e-mNsSSdkcVICqaGhvHaDrzJUfuFUkqaI,3938
|
|
1583
|
+
pyrogram/raw/functions/stories/get_story_views_list.py,sha256=ngoaFj3MyFTQGsJEUglgw-ehIcHbnbiCjjc7p1VKal4,4293
|
|
1584
|
+
pyrogram/raw/functions/stories/increment_story_views.py,sha256=6yWneBqsfieWN864q8os3orVLuV2cWUAG6jXT9Q-psE,2480
|
|
1585
|
+
pyrogram/raw/functions/stories/read_stories.py,sha256=_HylAsey4BfPl7VOkqVxDGX1xvuEXgrRiJJzAkVKBMU,2462
|
|
1586
|
+
pyrogram/raw/functions/stories/report.py,sha256=7KWaPlq_BvZwRAP_2aaCFvFNjwXSNw6Nn_9dhKJDBuo,2912
|
|
1587
|
+
pyrogram/raw/functions/stories/search_posts.py,sha256=tVvUhuQICrOGoDRJUlpA0xrXmzUw-aLdhl2udIU5KSw,3710
|
|
1588
|
+
pyrogram/raw/functions/stories/send_reaction.py,sha256=o_2UIzd0Sg2JeLoPKR60C5wE5QVNoeYuBoH1d1sw0Xc,3164
|
|
1589
|
+
pyrogram/raw/functions/stories/send_story.py,sha256=ydIYSB-FNsWWDhKhTzr8j7-dSsROvv1LvUSb8LRvwus,6803
|
|
1590
|
+
pyrogram/raw/functions/stories/toggle_all_stories_hidden.py,sha256=JHliTQ5JdPdtJLKxgp_pbQ02R9igxVy7ULk0Av88Sqg,2224
|
|
1591
|
+
pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py,sha256=ckjcidUNH24VedAqCbq4XThebNndQ95G-1s91Xmv5EY,2486
|
|
1592
|
+
pyrogram/raw/functions/stories/toggle_pinned.py,sha256=69Yn5WRvxefUOTueqYlS4YVtF97jJFf1F91Tkv7Pu6c,2681
|
|
1593
|
+
pyrogram/raw/functions/stories/toggle_pinned_to_top.py,sha256=g3dYxSJPlh5k_S1u22AYE5IxqHn0bwkloVefavatw48,2470
|
|
1594
|
+
pyrogram/raw/functions/updates/__init__.py,sha256=NRFYGOCwFoNsNH55Ai_PP05UJgswJWdVudMIRkBUy3U,1218
|
|
1595
|
+
pyrogram/raw/functions/updates/get_channel_difference.py,sha256=2oZOX_E6Dm9YTSBXXyeqA9mLlMFlyiMZoxqE16PotHk,3394
|
|
1596
|
+
pyrogram/raw/functions/updates/get_difference.py,sha256=j1VW3iDxklJmCvxLRAvOnji_-0JZa49VR5LJ4gYfkLM,3952
|
|
1597
|
+
pyrogram/raw/functions/updates/get_state.py,sha256=vSy4JIJbY3N8qcbfwOOUeL8ogrWHz4RPrMnevZZbSok,2053
|
|
1598
|
+
pyrogram/raw/functions/upload/__init__.py,sha256=QuoHJ8LcKT9AITxj8eDQOcEM1N12V1GRPdk5ZdJkhZM,1425
|
|
1599
|
+
pyrogram/raw/functions/upload/get_cdn_file.py,sha256=t9Z6si7QDSqMtLRkJlTBSRAUx65ug07LgxzdwDhqNF0,2692
|
|
1600
|
+
pyrogram/raw/functions/upload/get_cdn_file_hashes.py,sha256=x6AhF54VWZnx2wyc-voGwEftLeBwfXnXSnEEh0EtAdY,2504
|
|
1601
|
+
pyrogram/raw/functions/upload/get_file.py,sha256=Io_duaDBSB5x7KS4hfBdJncBfc-xBWcjMyKcU3PtygU,3395
|
|
1602
|
+
pyrogram/raw/functions/upload/get_file_hashes.py,sha256=zzlsFQoX7c8iLi2oyFeApS-WFEqCsvjbE2JrycRhudM,2566
|
|
1603
|
+
pyrogram/raw/functions/upload/get_web_file.py,sha256=IMnPwz086M-_iu2v5gklQpbXObzIinjnT71YE0ZbzVg,2775
|
|
1604
|
+
pyrogram/raw/functions/upload/reupload_cdn_file.py,sha256=nctdUj_H_VDodfGX7JyHluPvvVlEb52VRJPLfEBUsZA,2559
|
|
1605
|
+
pyrogram/raw/functions/upload/save_big_file_part.py,sha256=0HmT01LRGqVEHhizM1nj2BVjh_edPC72W537EhzoKVE,2971
|
|
1606
|
+
pyrogram/raw/functions/upload/save_file_part.py,sha256=zn0OppaNmL5RX8xu_8-8OtULE55TMHoDft_n80Zmwt4,2652
|
|
1607
|
+
pyrogram/raw/functions/users/__init__.py,sha256=49yIQI-Wq11QV3tdA_HnH8gj26i9XTFiUCX_KJM91ic,1295
|
|
1608
|
+
pyrogram/raw/functions/users/get_full_user.py,sha256=zhUoM6QLZupSZvA4FU9Nf8HSTeFT15mTvktwaxk15Uw,2255
|
|
1609
|
+
pyrogram/raw/functions/users/get_is_premium_required_to_contact.py,sha256=T3t1TH5iOGgG-oy1rnUM8JbpgK5BhtQN7jxWvZYu0CQ,2309
|
|
1610
|
+
pyrogram/raw/functions/users/get_users.py,sha256=isDwQCYq-uuzZS5OPFHg6YdMW2nT56TLKcIwLy9LU5A,2251
|
|
1611
|
+
pyrogram/raw/functions/users/set_secure_value_errors.py,sha256=e_wNWiUVkBuViweVxt7gycsp_kKrhj-QDLvAXDSbnZk,2569
|
|
1612
|
+
pyrogram/raw/types/__init__.py,sha256=awNorL19EuOpNcJMnOvpB7nJluEnZQUk3sper3qIKak,70593
|
|
1613
|
+
pyrogram/raw/types/access_point_rule.py,sha256=9gisSL1AJQAeQ_75j-anFWWNKXoJ4iKKUrnZ1zhy6Uw,2792
|
|
1614
|
+
pyrogram/raw/types/account_days_ttl.py,sha256=EpPVYqQW-NxzAwrPBCFrHVAcv9L2OrW59E8RiYeyiro,2410
|
|
1615
|
+
pyrogram/raw/types/attach_menu_bot.py,sha256=3er1tRLfWHSlzmwwFu_dqJP3EmPpKuHBwhDmxwww_zE,5551
|
|
1616
|
+
pyrogram/raw/types/attach_menu_bot_icon.py,sha256=B28DyaIn4jDtqW-wMfDVqX1ik4Uhm3MhJiFUbrwlrZE,3015
|
|
1617
|
+
pyrogram/raw/types/attach_menu_bot_icon_color.py,sha256=S1R1HWJW3WY89bSaOKP3R57V5nRZhQBXEGD7jzf6Xvc,2442
|
|
1618
|
+
pyrogram/raw/types/attach_menu_bots.py,sha256=wphxi3Kq_ynYHuDPEcHQ14qK3TjxxIKjfiXYWlHPN8g,2983
|
|
1619
|
+
pyrogram/raw/types/attach_menu_bots_bot.py,sha256=e8lsugEW1T61HSTwBserUtMw59wkXk2kae39KJ5Kloc,2764
|
|
1620
|
+
pyrogram/raw/types/attach_menu_bots_not_modified.py,sha256=X5nQDAjKnTewyCy7AHQYD-gp6q-65XdFbwezz7BqSok,2310
|
|
1621
|
+
pyrogram/raw/types/attach_menu_peer_type_bot_pm.py,sha256=lc4DcoZDRJitziGxE5iV76gVdS16k53gODfFJixdhwI,2087
|
|
1622
|
+
pyrogram/raw/types/attach_menu_peer_type_broadcast.py,sha256=g82amItjsAzeRtwdULkQDYsE9w5rJv2iObh1BD5ageA,2103
|
|
1623
|
+
pyrogram/raw/types/attach_menu_peer_type_chat.py,sha256=sVLJZ7Xt-qBEBy1RfI2sydAdgQGaKe6SsM4V4wzXFPc,2081
|
|
1624
|
+
pyrogram/raw/types/attach_menu_peer_type_pm.py,sha256=6VQdAKR0MkbZ6KXPcXvPMGB9_afJ7jVToXmniiqppy8,2075
|
|
1625
|
+
pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py,sha256=VstSAOqmBjMU_E5aK6zADsYskzIzkc7D5uq-PTwHEeI,2103
|
|
1626
|
+
pyrogram/raw/types/authorization.py,sha256=4fW5jI5vzORCNhHTPcxhdfK09qLBGulM3tLRFMD2lBU,7220
|
|
1627
|
+
pyrogram/raw/types/auto_download_settings.py,sha256=taUrAow1jXEqUoVVi0uCwS6efcWhW46uZMftQEHkTXs,5998
|
|
1628
|
+
pyrogram/raw/types/auto_save_exception.py,sha256=DImwZWc2WJqGUww0A1m_O0yLMn33dVZdgNXt8Izl0eg,2572
|
|
1629
|
+
pyrogram/raw/types/auto_save_settings.py,sha256=16zx2CD-jDSfIBkuyWeygJpNd8jScLLikWT5dx42gaY,3049
|
|
1630
|
+
pyrogram/raw/types/available_effect.py,sha256=4zjfu5NvAvcAd53yyDJef1RFsFxxGh7N--s-d-ZnVq0,4128
|
|
1631
|
+
pyrogram/raw/types/available_reaction.py,sha256=pcMtqwu2T-3vkD85NiLRHhiZJyeB0ckXeOOJ1HhzO9E,5863
|
|
1632
|
+
pyrogram/raw/types/bad_msg_notification.py,sha256=YoZoKCiCCPa24CbdFzDzLvZpw-coSoN-io8OLit2K1k,2806
|
|
1633
|
+
pyrogram/raw/types/bad_server_salt.py,sha256=uzOWbxpHdpsCcyX43ZgSKh4hlnUVQJ-PdO0OnE49HGM,3087
|
|
1634
|
+
pyrogram/raw/types/bank_card_open_url.py,sha256=eDaxSx2Y1CyguZralBklKyn6tPuwZcckVRhrPzLxmIk,2387
|
|
1635
|
+
pyrogram/raw/types/base_theme_arctic.py,sha256=8qJrSYb9d65VxJvta3qynbF_NQsBLUG4A4KUONLUmZs,2046
|
|
1636
|
+
pyrogram/raw/types/base_theme_classic.py,sha256=-s2VUzycfw4vniMBd823S49i5SZifwwnd88AGrcqaL0,2050
|
|
1637
|
+
pyrogram/raw/types/base_theme_day.py,sha256=x8GXXm0TxPdwmeMdJRaNkhtteKAKL0azVHetzsnhW_Y,2034
|
|
1638
|
+
pyrogram/raw/types/base_theme_night.py,sha256=31xGY_YNA1drHAPNim2n3Li8HEL4JGDbB5R1Lzr--Mg,2042
|
|
1639
|
+
pyrogram/raw/types/base_theme_tinted.py,sha256=D5KQ6Nj6nqTExi9ruQWP2KAtiV87n1PLqpy9Pnjbj0Q,2046
|
|
1640
|
+
pyrogram/raw/types/bind_auth_key_inner.py,sha256=6jGA9bLfPT0HIXJk2F9nvawA7ovcq2jNTXBPV2nx-aA,3392
|
|
1641
|
+
pyrogram/raw/types/birthday.py,sha256=zeYBveERH30xudLS6NqwM3gHd0tn9IA5elYxR9GBWDc,2766
|
|
1642
|
+
pyrogram/raw/types/boost.py,sha256=cTgvomS8pxHP4OattrCvoZRwXwm1C-hGdZxql1fq_xc,5537
|
|
1643
|
+
pyrogram/raw/types/bot_app.py,sha256=lWHI_0B-JQY4AtFsMatYW2E1_BkHYsGtBRQRg8Ea-oc,4076
|
|
1644
|
+
pyrogram/raw/types/bot_app_not_modified.py,sha256=4jyUerDtryEzB60JGFBCnywUV9FKTGlfBNKJZDVjlnU,2051
|
|
1645
|
+
pyrogram/raw/types/bot_app_settings.py,sha256=Gt7ar7xjN30bi4nA3MTwFfc89lotdweqz44eVNAN4qM,4495
|
|
1646
|
+
pyrogram/raw/types/bot_business_connection.py,sha256=k4Uou33yCAcE8fSKCssdArkfWLiyNuyEQdsuJHR4Vo8,3566
|
|
1647
|
+
pyrogram/raw/types/bot_command.py,sha256=jOFLiRSgyIUF7S37ZdQXp5nmWM7WkbmH6apvbqMyWXg,2673
|
|
1648
|
+
pyrogram/raw/types/bot_command_scope_chat_admins.py,sha256=ya2V6fVl-oOj0nCQ_EILT06G5g-0qPZvDl4dP88jsWA,2092
|
|
1649
|
+
pyrogram/raw/types/bot_command_scope_chats.py,sha256=1jlI2QdxuxO60kEmNnaEBtY6yHqzwK_0umUqMEXnb0g,2072
|
|
1650
|
+
pyrogram/raw/types/bot_command_scope_default.py,sha256=FF8RLaki09CoY5mCqyKc2JeMrsxlgwMV_NfTyYp-BGg,2080
|
|
1651
|
+
pyrogram/raw/types/bot_command_scope_peer.py,sha256=jtfe6jb9mmx_luDHGdM7p4d48r82-arc5I1ICooJXiA,2276
|
|
1652
|
+
pyrogram/raw/types/bot_command_scope_peer_admins.py,sha256=9eGetv5UYEQ1MuwYcpvR5SaXLQXeGXTUnGwEiBztqS4,2300
|
|
1653
|
+
pyrogram/raw/types/bot_command_scope_peer_user.py,sha256=RoMCaLSdukLtiNEx6Myp688XgxBpxmTElqogaIoMLJQ,2575
|
|
1654
|
+
pyrogram/raw/types/bot_command_scope_users.py,sha256=m2_2u5qRCP53cYVm3j06EWlRTtsEKz4BVjRKWXIdIf4,2072
|
|
1655
|
+
pyrogram/raw/types/bot_info.py,sha256=S0Nd4MVobqDWqlGbIdRM63VprGY3TK6vdS5_sH8wQB4,6933
|
|
1656
|
+
pyrogram/raw/types/bot_inline_media_result.py,sha256=9Ph_ljLN1pN55yN4RJ9b1dBmtV3yCxPvIM9pSm2_5Ow,4456
|
|
1657
|
+
pyrogram/raw/types/bot_inline_message_media_auto.py,sha256=3KODomh5TdFCm6byDz2dlT_nqoLMAsQhnSin2kQ16iQ,3632
|
|
1658
|
+
pyrogram/raw/types/bot_inline_message_media_contact.py,sha256=TeXRRtfwS35y-PyivqT3rdET-p0-LEsky1wT1wyn674,3579
|
|
1659
|
+
pyrogram/raw/types/bot_inline_message_media_geo.py,sha256=SNfmReBHkHw8XJxXsHsqUoCCVJ7qvEd2sMpab3am0ng,4230
|
|
1660
|
+
pyrogram/raw/types/bot_inline_message_media_invoice.py,sha256=1trPmfEUveVNm_PZXx9uoa-xyRPPQZ8XecwaB57xWoQ,4706
|
|
1661
|
+
pyrogram/raw/types/bot_inline_message_media_venue.py,sha256=kQ7xSDTTPeC1Gb31otU6PPC24vBxmMbYLiCyVXe61v8,3995
|
|
1662
|
+
pyrogram/raw/types/bot_inline_message_media_web_page.py,sha256=Lcvvsm0ILzDGdK3PorYzhf7HmPc9Zjt5enddZwk7-u4,5068
|
|
1663
|
+
pyrogram/raw/types/bot_inline_message_text.py,sha256=SeAwb_yu7YMFU_GEla91pBlh08YEVCD_8p165qfYlNo,3912
|
|
1664
|
+
pyrogram/raw/types/bot_inline_result.py,sha256=B9AMNgZhH9KgO0Ts3EauOYc2UTRTCSlQlf8Xh14NPzU,4802
|
|
1665
|
+
pyrogram/raw/types/bot_menu_button.py,sha256=K3Iv0u6nl8w2N_447Jpap8M4CUHtifRhofQbDF6D5dE,2591
|
|
1666
|
+
pyrogram/raw/types/bot_menu_button_commands.py,sha256=qragHW37kl9Cfb_vLXk4o2JM97BPZomcB9BFYse5DBg,2288
|
|
1667
|
+
pyrogram/raw/types/bot_menu_button_default.py,sha256=C5oq7-fdUpUCQ3f6WQbx9mDEDHnBd4212IVelm97irE,2284
|
|
1668
|
+
pyrogram/raw/types/bot_preview_media.py,sha256=L8zGnef6LXUV1Tm6JkF2TEyMySpq-z7T_iS7TMaLvKA,2764
|
|
1669
|
+
pyrogram/raw/types/bot_verification.py,sha256=7KE2qRFxeioJDPHkm23LIiqDjPHidokjCqtIxHMFrZA,2684
|
|
1670
|
+
pyrogram/raw/types/bot_verifier_settings.py,sha256=YM8k44zA64uLyLdWVYL7X894VDvhDFW0OOd97u0mnNE,3472
|
|
1671
|
+
pyrogram/raw/types/broadcast_revenue_balances.py,sha256=tToiVaEJI5B3LpPnGQUpHVw322U1GVk_u2edL73C9Fo,3387
|
|
1672
|
+
pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py,sha256=FsntgK2azJlafkoD2nOD-aTYFGhNnmJHL-0ExAe3Ihs,2784
|
|
1673
|
+
pyrogram/raw/types/broadcast_revenue_transaction_refund.py,sha256=H-IP8ip1HHD6p9uIVow2dkccFP-OdaADFe_wO6gcRw0,2738
|
|
1674
|
+
pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py,sha256=Ki_XsdkR56L7eNMut8aORtOSz_xB-6dfcW1m5h-G_Gw,4297
|
|
1675
|
+
pyrogram/raw/types/business_away_message.py,sha256=tCp91tOKPH6LL-VvVe7OLKInIcdaT_IFqayvScmEZcc,3363
|
|
1676
|
+
pyrogram/raw/types/business_away_message_schedule_always.py,sha256=oDc1UULm7zT-uV9J_XEdIXTsti62LNI3PCgW7Hctsu8,2136
|
|
1677
|
+
pyrogram/raw/types/business_away_message_schedule_custom.py,sha256=6QaFHodWThw9aH7lLBxgT9M2HsIJONVemRLcYppP4xo,2574
|
|
1678
|
+
pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py,sha256=uk7FYQ1zg27vckA645t0MjX2u2FxRdlDr4Cps5FVWSs,2176
|
|
1679
|
+
pyrogram/raw/types/business_bot_recipients.py,sha256=PGWcP_afrGiw4Rxr8REvqy4FUpDtBBvb5APZqbQthrQ,4556
|
|
1680
|
+
pyrogram/raw/types/business_chat_link.py,sha256=M65syDfnT30I3atJSAdJnxQeSvJBxiYdXrVDvSGb58w,3803
|
|
1681
|
+
pyrogram/raw/types/business_greeting_message.py,sha256=fTBh1YW8OLUMiWD9udbQbSWFkQsJ4jMTFxOEYHU0A4I,2959
|
|
1682
|
+
pyrogram/raw/types/business_intro.py,sha256=jByWq67jlaP3-Ucqz98JMpO4PpPsPv46kZf_-pbjAJM,2947
|
|
1683
|
+
pyrogram/raw/types/business_location.py,sha256=Gt0qxflVl7d0Il9hNidAnzkXG8fKznQBUx7JmA-m6V8,2742
|
|
1684
|
+
pyrogram/raw/types/business_recipients.py,sha256=YyX_p8TqTH_ezyAFqXSeCeLO_15cXuRPcTeVQQm5pSg,4049
|
|
1685
|
+
pyrogram/raw/types/business_weekly_open.py,sha256=jYTcqUU7Xx71Dfil8HO0K9HHxZGqRfFRGUXZ0zheru8,2541
|
|
1686
|
+
pyrogram/raw/types/business_work_hours.py,sha256=aXLiBMB2m7NHeZHQrPeuBOdI0VmYqEQhIXxP03WBwqY,2980
|
|
1687
|
+
pyrogram/raw/types/cdn_config.py,sha256=ufsffYpRklSBEQh7zzNzI69oQt3ws-zzobvsX2sX4_g,2537
|
|
1688
|
+
pyrogram/raw/types/cdn_public_key.py,sha256=r-CX4pdqxkk3b4mUpDJ1OxlZZEAcqHqryHDweDTGMwE,2446
|
|
1689
|
+
pyrogram/raw/types/channel.py,sha256=VweYVGJ5-IMhbBQtzluIrmPf-mUNY-jLbpxjbMTmZtY,17777
|
|
1690
|
+
pyrogram/raw/types/channel_admin_log_event.py,sha256=2PEgzD4BiLm4mTfXMfi-usNdwflVKPz1kPX8vwZ84Rk,2983
|
|
1691
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_about.py,sha256=3GdKhoX-q8hOLoxAa4lpLm93Iw0yoIC7qQqkOlaNYl4,2594
|
|
1692
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py,sha256=7Ln--tlodzWDbui0mq0Ld_OJJdltwvHhtd07jRHThoU,2800
|
|
1693
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py,sha256=WMMtf_inFjoAuwJoycI8f3vsZXPYLvu27x7feGfRGN4,2756
|
|
1694
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py,sha256=aMpMyzUWwYGS_nYQVJDxwA62Gdxv9p_7BEqHRQ3ieJE,2894
|
|
1695
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py,sha256=WknvOJ-wVN2LcQGcPyqHBSHJG9bLAejBIgJu5TjvjXk,2618
|
|
1696
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py,sha256=Tktg3lTHhUOtOZkwvemiBl6rWdZPguZsMDJWIEOuqj0,2622
|
|
1697
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_location.py,sha256=weyfrYeM4069oyPEozybR2-qFZRN7h3Tahy6LAy6WUc,2774
|
|
1698
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py,sha256=0Anmn4uHD9ft9jYhl8BWjDtWQFMueKR-fSixcfMF07I,2732
|
|
1699
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_photo.py,sha256=43kTQ6mcAP7vQu5fYqAYCcicorBL8X8rHxyHgJaljvs,2684
|
|
1700
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py,sha256=uLF0j88MSwg7Dm5cIhItrH1nXZQhrdPImEgMMF_VyvI,2760
|
|
1701
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py,sha256=Wo2BLR-3jW3sB6QK6J4Nn-vguurOzHQ-4udvi_9mzxw,2874
|
|
1702
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_title.py,sha256=QTMGzzkEf79BpXnv84UDtJIBzA7Iy4UsbjxvgnsHLy0,2594
|
|
1703
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_username.py,sha256=nGRWRrFB16NUCFK98k_9594USlvYu_uexKwSKup4mP0,2606
|
|
1704
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py,sha256=dTzMKNQi6bazx4xXBtaaThpLzg2pFWEfJnC08x5mj2o,2690
|
|
1705
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py,sha256=ecEg5KANG0EmbQofUVdI4AyMUj5GIAb8pIExgSVfkXM,2732
|
|
1706
|
+
pyrogram/raw/types/channel_admin_log_event_action_create_topic.py,sha256=V4YUD2wtqnO89B-FabPGQjTa-hM4-XUxry4T9Ccu86o,2372
|
|
1707
|
+
pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py,sha256=joOQLhuafsYLh4heH_Q3UpITcssj0B718oqvEFwB108,2948
|
|
1708
|
+
pyrogram/raw/types/channel_admin_log_event_action_delete_message.py,sha256=nwzQcf64gGYg31nbJSEHWg3jd8ngHuNPHb9KRlYS8J4,2386
|
|
1709
|
+
pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py,sha256=w4FrOk7SSBoVC1wze4wdqPrxGkrCVGuBoAt-Kf3HVDo,2372
|
|
1710
|
+
pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py,sha256=I5pvhPJjJEFRxW_NPz8nZBW42otlGT3MWnrT3OVANJQ,2399
|
|
1711
|
+
pyrogram/raw/types/channel_admin_log_event_action_edit_message.py,sha256=ajnRttvhK67228BHsWklCTExaTRJgYctF3TY5hBapEQ,2736
|
|
1712
|
+
pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py,sha256=HsdBWdn_xrimh4579XiKCPLuyEm76j9EGpq1psS2foA,2716
|
|
1713
|
+
pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py,sha256=4bPKeTyIaHnhYwC338kALxAJDqYlV5T481pq_KNn8FQ,2449
|
|
1714
|
+
pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py,sha256=-AF67ddeEpYTw27ce7d8ac4CrDnpP9oEQPPOfk9iOlo,2834
|
|
1715
|
+
pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py,sha256=j4WsxT8uFJQDviZF_3j-dEciZf_hkUFr3jh5_38ON3U,2449
|
|
1716
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py,sha256=GiloeHDsS4zYiVcq8Q367hvQI2az--ycd4vfnTU9wKU,2482
|
|
1717
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_join.py,sha256=8oI7OqvparixtH48C6l9HxvmWUmrxGREHjcTv7JY-k0,2167
|
|
1718
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py,sha256=FGtQcqlV_0-NK7S9Iu0i_Z3_DDefDLSrSw48vCgoMTE,2826
|
|
1719
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py,sha256=_T5_1FqjgNY_RoxOnTB5WnB3QtVKF3Jts-kWIHQmGlw,2730
|
|
1720
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py,sha256=BpxEfawlw3hzNqulbSWSUz5D5DFAp9zmizXo2Swi6n8,2171
|
|
1721
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py,sha256=afYmTMWj9cvbmeDIFIwqwdf8wpcPPtaIgwg96SLqqQI,2482
|
|
1722
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py,sha256=6XjnL6pPnAf9kVSHpXT9PhcjwpzIJiNce0PmRcy-EVQ,2932
|
|
1723
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py,sha256=TrfFpnayDJ18w4HTjmbMHexoGRBLKfYQ7oczT2rJ__g,2940
|
|
1724
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py,sha256=QOw3Yhyso_iv-NosUlTZm8rZ9aJujymGzEzABF-45n8,2932
|
|
1725
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py,sha256=HIcrOcPcpiAUVozRFlw7tNFcDpIZ0IcaV-JwQmD3xHw,2490
|
|
1726
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py,sha256=F15AejJGUnqTflN2JXGTAXbZnBenK7o7K0GRdt4yfok,2490
|
|
1727
|
+
pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py,sha256=4Nuu-EqPUvGtFhydjTZOiac05--xBSGnSL2kguHFP-A,3091
|
|
1728
|
+
pyrogram/raw/types/channel_admin_log_event_action_send_message.py,sha256=51wOhmv7zCjRMUob1kXH73ejee6l1lD6aFzjJamHXw8,2378
|
|
1729
|
+
pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py,sha256=r-ZPF_jKAf7DfrijSmUYKJMcBfs6JcHwioas5ATWG60,2391
|
|
1730
|
+
pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py,sha256=PF1-WJr1l5Ou7kyYbBW3HVhyKTgckNMHvI7_BcyrYz8,2366
|
|
1731
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py,sha256=N_nrcXznDNgXHJbCtsVuJysfzYMN1B9Z1NqSvJT0l3E,2351
|
|
1732
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py,sha256=D7gk5FptrIYeIMbY2fFwwD_MaFISvn1ISa38L6UyMl8,2337
|
|
1733
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py,sha256=sy2NWuUs-5NpMO2LT59vUhLwWn90YcrMkKcVNgB6hCU,2392
|
|
1734
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py,sha256=hXxgfLKzjBoFYPK7RNRaymeZxOXclUgfjelQ4oI_2_Q,2347
|
|
1735
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py,sha256=CcVkPdXaZLv5hAm0E6ipCSKj_K_L28QMxSttjR1cf4w,2359
|
|
1736
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py,sha256=FuJkdNqYU6hijv00zhjaFRnNqDOj-jXMsv_5Wuom8aY,2383
|
|
1737
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py,sha256=WQqVqQkw3XTc_jUwJwnR-fMNJgTHwcPb2paX-T5lPuM,2387
|
|
1738
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py,sha256=OMLd5F0e13RZaHLwdY8-Z_sofe4YuQpNNIRpNGiAPZY,2359
|
|
1739
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py,sha256=8Ogo2RMMUuf6bEVNx6CB49fTbe26R6HxezSvaSR6Kmo,2610
|
|
1740
|
+
pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py,sha256=8IKK6cufKwK94D56RLBX7Trv7efwL_qAP_1mYv_MNlI,2382
|
|
1741
|
+
pyrogram/raw/types/channel_admin_log_events_filter.py,sha256=BaX9jsHHTUGTCvS6uBTZUXVhaYmeV_XP6ISqlSDkyVo,7125
|
|
1742
|
+
pyrogram/raw/types/channel_forbidden.py,sha256=KdGoO-sf6wJV6bdQg7lATzxYtE19b1FZH-QisgZSOY4,3702
|
|
1743
|
+
pyrogram/raw/types/channel_full.py,sha256=zzQ6J6Nu3ZlLepKtpDNCWX3ytJohPTS8czdtFFKJxZ4,28751
|
|
1744
|
+
pyrogram/raw/types/channel_location.py,sha256=ylLdxFTnMCpw-IdZGtjX4GPs-Je0Ycx5KW19Os_E6iU,2525
|
|
1745
|
+
pyrogram/raw/types/channel_location_empty.py,sha256=CMCicr5CV3VAYSnNOiWhokwCVcJxcBgTXnGuakRY5eM,2072
|
|
1746
|
+
pyrogram/raw/types/channel_messages_filter.py,sha256=eDG1uGHYmnNYZJJd7gb5_8yNhSY-ZpZr_RKRLW9IkGM,2779
|
|
1747
|
+
pyrogram/raw/types/channel_messages_filter_empty.py,sha256=Fx1c2kHki5fBEQ4n2Q8pVCSnRbI0pSqjjF4PAGoa0Ho,2102
|
|
1748
|
+
pyrogram/raw/types/channel_participant.py,sha256=0kaexeNNIRv82d_06PYsncyfwElinCe0kI05E-8VeKU,3055
|
|
1749
|
+
pyrogram/raw/types/channel_participant_admin.py,sha256=JKUYHceWxHDBGx8h-d9YwSAYn7QWBtcz-5TSE1EwedI,4461
|
|
1750
|
+
pyrogram/raw/types/channel_participant_banned.py,sha256=v-TLOeDx5XdMc-2lvy64-aPOvssJ5GvBcVHO9YQAWwk,3385
|
|
1751
|
+
pyrogram/raw/types/channel_participant_creator.py,sha256=ADJ_PRzVvL09_etI_ZOKkBi8JGn2VOy9Dzyrp4P9hNs,3027
|
|
1752
|
+
pyrogram/raw/types/channel_participant_left.py,sha256=-JNIWYGJcMDBEwp7-jb6onCUlPywt8IBkolIWoW206o,2271
|
|
1753
|
+
pyrogram/raw/types/channel_participant_self.py,sha256=YWS0vjmWBBKwTblQc0mh9Y7Ogcycd68JRQwe4xDkO_o,3636
|
|
1754
|
+
pyrogram/raw/types/channel_participants_admins.py,sha256=EyKUCxFyqJwIamiWxE_OIKQiRB7xbUhh1GMwC86HLrc,2102
|
|
1755
|
+
pyrogram/raw/types/channel_participants_banned.py,sha256=pkssj3YKwu1bTL-dNKm3Ofg3uOEiPUfg_z0qMydWIIM,2222
|
|
1756
|
+
pyrogram/raw/types/channel_participants_bots.py,sha256=6ZjHbR7-JOKD_wtjRRuo6S-N-QCxh22n84zNlIosuWg,2094
|
|
1757
|
+
pyrogram/raw/types/channel_participants_contacts.py,sha256=ChmnRKUpTig8xTqqFnoI6pXuuiKR-0zxoEF8zOoKiNE,2230
|
|
1758
|
+
pyrogram/raw/types/channel_participants_kicked.py,sha256=TdVeDzRv6FzslLXajULJHyVBp6AaOM6IK5z1UdxJctE,2222
|
|
1759
|
+
pyrogram/raw/types/channel_participants_mentions.py,sha256=xVfIsaDsuj8VjLGZTo4rrJXMY3w3bxbMaBGhhozDbf8,2846
|
|
1760
|
+
pyrogram/raw/types/channel_participants_recent.py,sha256=HPizhq-Tm6mmKZ2czgXMGIFw955-pyd11aQrqjyxzI0,2102
|
|
1761
|
+
pyrogram/raw/types/channel_participants_search.py,sha256=8hEVMlJoKPTUbkWKBSwi4eRm2IWnI748Lm42y-dZBx0,2220
|
|
1762
|
+
pyrogram/raw/types/chat.py,sha256=vKZdH3RfmiV1YqKfQ2vlng2IKWtGxZl0hVB5Oqes6GI,6844
|
|
1763
|
+
pyrogram/raw/types/chat_admin_rights.py,sha256=qfhY5YCQmCAaQlC72IAPB94vZ_9RRnjqUnpeR-y-9MQ,6759
|
|
1764
|
+
pyrogram/raw/types/chat_admin_with_invites.py,sha256=-9tLRLufVfs_icsFwzgtaD3VcOr3Ofz7N9UnxJ5z81Y,2897
|
|
1765
|
+
pyrogram/raw/types/chat_banned_rights.py,sha256=UnRNh1mqG4-JxT-Gs3FDyIxnA4rmMtVmuZ_2iANk0co,8583
|
|
1766
|
+
pyrogram/raw/types/chat_empty.py,sha256=tG-6qwYnqqeT9dwCMoOPwJetrMICAtv24EaXNAz-aP4,2151
|
|
1767
|
+
pyrogram/raw/types/chat_forbidden.py,sha256=witxugtYo1HqffpmQxG0Rl9uoHRDQDm38JPdm3_K4XQ,2373
|
|
1768
|
+
pyrogram/raw/types/chat_full.py,sha256=Lp0P8nVWs0m7C5FinuzOpvzuN6d4ZZH4SLOQt4LoXZU,10660
|
|
1769
|
+
pyrogram/raw/types/chat_invite.py,sha256=62abiX0pfXVlndScpwexGWVJJ5Bc32hc6iOEBwjph3I,8529
|
|
1770
|
+
pyrogram/raw/types/chat_invite_already.py,sha256=CdJOMzUyY8C3UuOHGWdzMhsfCaey-ejKpnqJN0bP5qU,2460
|
|
1771
|
+
pyrogram/raw/types/chat_invite_exported.py,sha256=UKM2V7OpU8pn7hoCmyetoK76lrFQ9NWUHIYgyr0mAiQ,7417
|
|
1772
|
+
pyrogram/raw/types/chat_invite_importer.py,sha256=O68JYdSKgsoN1867iEcVFPjic5fHlL80nfAZy3UymuE,3898
|
|
1773
|
+
pyrogram/raw/types/chat_invite_peek.py,sha256=NO3U1rOiJcQWdmE0zLOT7aa4o-6ski93M46WJPkFZo4,2674
|
|
1774
|
+
pyrogram/raw/types/chat_invite_public_join_requests.py,sha256=0dWKTv19RBOlQVb4LZu0dfQKddMffKdQFdXK2vVisEQ,2325
|
|
1775
|
+
pyrogram/raw/types/chat_onlines.py,sha256=85m-6A1n2J_AhzWwUgjYgJSRMHE3eTiJVjamAyFx7lI,2420
|
|
1776
|
+
pyrogram/raw/types/chat_participant.py,sha256=38vAtP-TJjIrT69Il9R46RzL24PxGIHlYV15r4iTzL4,2686
|
|
1777
|
+
pyrogram/raw/types/chat_participant_admin.py,sha256=VrqwtRx48J6VHNfsWWDpaPZ-Qhgxo6Z917Nt6EjXPgM,2706
|
|
1778
|
+
pyrogram/raw/types/chat_participant_creator.py,sha256=LEKfiW73M6XGtB-QFLwufLkpvX92IPp-W07Pe5P6f7M,2259
|
|
1779
|
+
pyrogram/raw/types/chat_participants.py,sha256=ceQxDDmdtiwpQUz5zT-xexHYjwec21yESjSXXQPGmrY,2838
|
|
1780
|
+
pyrogram/raw/types/chat_participants_forbidden.py,sha256=05pWfiognuo0w0QyUl3-o5vWk61N_hJpStuc6MBEV9I,2888
|
|
1781
|
+
pyrogram/raw/types/chat_photo.py,sha256=pvdObm3TrDeM4ePwPDWhP69dMAIjf7v4rekzRwdQCA8,3219
|
|
1782
|
+
pyrogram/raw/types/chat_photo_empty.py,sha256=elXeC_luuWXxKXAEdfTkj0XYXtG3YPdkLkudaFGP46s,2042
|
|
1783
|
+
pyrogram/raw/types/chat_reactions_all.py,sha256=JhwgJORE-GS_RnDgsXxuIUVYHPEO8XbdfjNgJhwwzxg,2369
|
|
1784
|
+
pyrogram/raw/types/chat_reactions_none.py,sha256=NYm-mCL-pDoTOmeFJ7HGEZe2Pb3cqt5Z53Ruv1jBqOU,2058
|
|
1785
|
+
pyrogram/raw/types/chat_reactions_some.py,sha256=TQfNjnJwAy1blcYdRbEBNqjqw9lhL349ncLVAOHGrcY,2329
|
|
1786
|
+
pyrogram/raw/types/client_dh_inner_data.py,sha256=qg7JzkjGiN1jXYkh0hTrQRVJeOLr3qOPkqwjBot2WWQ,2938
|
|
1787
|
+
pyrogram/raw/types/code_settings.py,sha256=xQ-kxIOZDLbf245Fnks2HSidSIH2Ofp-KkYiuV0TIRo,5362
|
|
1788
|
+
pyrogram/raw/types/config.py,sha256=U_MlZJhK-dM70XtfxkCqj4t6lhbVyZrfJBTh4prueBc,19688
|
|
1789
|
+
pyrogram/raw/types/connected_bot.py,sha256=H18w7UWNTu66JvCwG0Pxd57ozOyX0IxMmbZik13VgSw,2905
|
|
1790
|
+
pyrogram/raw/types/connected_bot_star_ref.py,sha256=UHlcP4XRI0C9W7EBtJynlCrtFkFOS5VTji8-warJ4p4,4261
|
|
1791
|
+
pyrogram/raw/types/contact.py,sha256=QhOxDAURdYuNPZr6buSH9vH0FrHDHG0k7tbrCbOtEQk,2402
|
|
1792
|
+
pyrogram/raw/types/contact_birthday.py,sha256=9XB0m4VQBHWSS4jqVgdZosleTBoLtseFRz473OpjRJ8,2548
|
|
1793
|
+
pyrogram/raw/types/contact_status.py,sha256=lbQByZYN1fXYHdXL-hTn6lc5pjacEBL9XDsInNjwZZU,2714
|
|
1794
|
+
pyrogram/raw/types/data_json.py,sha256=GKJsRMINZ1rqSyBMROZO6leGc9obWNUJR0MPBDQuS3U,2457
|
|
1795
|
+
pyrogram/raw/types/dc_option.py,sha256=rb3qzRR6XGdzkSpVhl1PAixTi35BSVeX5Lzv03QJ2HQ,4697
|
|
1796
|
+
pyrogram/raw/types/default_history_ttl.py,sha256=xZ3J1NNJvO77I7InEE0kG87cQZKy-87uhNri-new5OA,2451
|
|
1797
|
+
pyrogram/raw/types/destroy_auth_key_fail.py,sha256=L1uG4AUKgvqSB5uz6h59nSo-jvZ8iRMZ5l11s__0-KY,2273
|
|
1798
|
+
pyrogram/raw/types/destroy_auth_key_none.py,sha256=GKJeP6db3uuKuCT0r5IWj1Ei0Nj_fnenLWEl7RC21sI,2273
|
|
1799
|
+
pyrogram/raw/types/destroy_auth_key_ok.py,sha256=4Y-V8nda75oc37jCK-c2L0cDTBoxTDe-cPZJpmEIFFQ,2265
|
|
1800
|
+
pyrogram/raw/types/destroy_session_none.py,sha256=vxmn1MvpasAAjkskpkZaXlEYqb0FFQKCCrHLdmxDEkw,2479
|
|
1801
|
+
pyrogram/raw/types/destroy_session_ok.py,sha256=rXYsxSe2kYn7S26bG1B_FAvXjfCC7p8bHi8_--yDmwA,2471
|
|
1802
|
+
pyrogram/raw/types/dh_gen_fail.py,sha256=bCK4EQJFyrgBf9USVAl2AYMPpMXvJhPlssv_Jo1SLMU,3003
|
|
1803
|
+
pyrogram/raw/types/dh_gen_ok.py,sha256=S2VhCDrk1hDeJ1n7MUXnzxkOiZEblxHVskjvQJ0sd8o,2995
|
|
1804
|
+
pyrogram/raw/types/dh_gen_retry.py,sha256=OdQImQ64Io4Znsf7kPEaTZhGybJbS3yz9tX1xYovE30,3007
|
|
1805
|
+
pyrogram/raw/types/dialog.py,sha256=2kkzfdGfpGHSvumtsWFnuTO5MzP4sAjwdQbbF_rsM7M,7111
|
|
1806
|
+
pyrogram/raw/types/dialog_filter.py,sha256=xlekM70wFM7xvEcLz0g6EHAMyPTRTWVeEI4XXe_Cqp4,7117
|
|
1807
|
+
pyrogram/raw/types/dialog_filter_chatlist.py,sha256=ioRL8Tib1Da_b9LbQmBvTaf3ebthfZvScJaco09j0X4,4709
|
|
1808
|
+
pyrogram/raw/types/dialog_filter_default.py,sha256=cpFB1Q7KioJxlQGeiiFHfCKNcuEJuA7ii40wwcu0PqA,2065
|
|
1809
|
+
pyrogram/raw/types/dialog_filter_suggested.py,sha256=y5LBHlHgPuyCAX1gDM-ktQdCHfYpBQ0Ee7ZJzRR4rpw,2807
|
|
1810
|
+
pyrogram/raw/types/dialog_folder.py,sha256=cGqHdL4LqYFczVXvjhW336XAQZINQNi34QrKh3A5Iho,4662
|
|
1811
|
+
pyrogram/raw/types/dialog_peer.py,sha256=BxnmqgLqAVUBdGYlTnRoNQxB8Ch9A_BxU4gUT29B_2o,2437
|
|
1812
|
+
pyrogram/raw/types/dialog_peer_folder.py,sha256=LFChMpUyaIPbrtiv6v2gLtpM1sIS_irVdJ0XLra16Bw,2467
|
|
1813
|
+
pyrogram/raw/types/document.py,sha256=noKYCHR0L0hVWD_F3PjC4V8FWoGTGvn8WcR6Xw409bs,5275
|
|
1814
|
+
pyrogram/raw/types/document_attribute_animated.py,sha256=yPJtP0q0_IeMdZXde_CGvryCYorAgafJvefC26TlbH0,2094
|
|
1815
|
+
pyrogram/raw/types/document_attribute_audio.py,sha256=83eMZF7MNTK5d5auG7Y9_X-Racw8TJAtgvL57aFywSA,3739
|
|
1816
|
+
pyrogram/raw/types/document_attribute_custom_emoji.py,sha256=NftbU9HHFKIniZuMzf9yMZHP64FZN_5LI2sIneOE3QQ,3173
|
|
1817
|
+
pyrogram/raw/types/document_attribute_filename.py,sha256=TGa_qVDMut7EZ36jMyPYkuGNUvLgoq-0KIgTZqxnq_0,2286
|
|
1818
|
+
pyrogram/raw/types/document_attribute_has_stickers.py,sha256=-B1D2Pcv1Iv-anMrmiMaRmUfKtSi1ncMFNFflPGUF-A,2106
|
|
1819
|
+
pyrogram/raw/types/document_attribute_image_size.py,sha256=Lmxr-QWFOPUS_ADmwDZZVVBb64mBufQxjDE96t5yoYA,2392
|
|
1820
|
+
pyrogram/raw/types/document_attribute_sticker.py,sha256=QZXMv6BSKPpPwNjafnldjmZLKkz_xS6fcdrh5MYGE8o,3351
|
|
1821
|
+
pyrogram/raw/types/document_attribute_video.py,sha256=5g-qIYr2yaEaPZHRtxnZg_7nWjvCwbhp73TMCcqqHVY,5068
|
|
1822
|
+
pyrogram/raw/types/document_empty.py,sha256=8dfz78zXogpgCYwBx7ewEHVFRTRvfarZUTRRk7K9NBQ,2506
|
|
1823
|
+
pyrogram/raw/types/draft_message.py,sha256=3PmOZmMwC51deu4kLdheA3HrPsOQLI9HouMnJdNzmVE,4842
|
|
1824
|
+
pyrogram/raw/types/draft_message_empty.py,sha256=sd9NWuV4k3mvAOz-Uv7WyoCzy4NfW1LDkGlZBlkXsN8,2408
|
|
1825
|
+
pyrogram/raw/types/email_verification_apple.py,sha256=KtsS18-3tSr9qXfb7affAyjHyqzd4LLNCvZkTW8lDM4,2238
|
|
1826
|
+
pyrogram/raw/types/email_verification_code.py,sha256=oCi8NdWaNR787-gq0Ka6WHt0_uagcKN3cA8YicegyDg,2225
|
|
1827
|
+
pyrogram/raw/types/email_verification_google.py,sha256=xAjJ5Hm2142oo-gV2reEeAmrKFaHd-BaU1Jd05-u3Oc,2242
|
|
1828
|
+
pyrogram/raw/types/email_verify_purpose_login_change.py,sha256=MF66OAPsJVVumrMH34OLHi69D57E_LppxWnmSaZS214,2111
|
|
1829
|
+
pyrogram/raw/types/email_verify_purpose_login_setup.py,sha256=Sn2Sy4qugYeiuIM04-S8Y6Uz7iZGQxL9MD8E76gIY_w,2622
|
|
1830
|
+
pyrogram/raw/types/email_verify_purpose_passport.py,sha256=wMC54tflx_0Ya4-tZu2D-Keo9uw5f3RMGn0B4aUEUng,2099
|
|
1831
|
+
pyrogram/raw/types/emoji_group.py,sha256=eLU__MsB8pmRR2t4J-bwRiwYJ5eiNsMh0cFoGQhGLpA,2748
|
|
1832
|
+
pyrogram/raw/types/emoji_group_greeting.py,sha256=u9lXWWtVASN-1onLNJXzZKMu2Vl74Maat3vevU_i9sU,2780
|
|
1833
|
+
pyrogram/raw/types/emoji_group_premium.py,sha256=zaMqGO_J213yyuP7nCKO7er4yNKfGNwtvtnvjFsNnRE,2492
|
|
1834
|
+
pyrogram/raw/types/emoji_keyword.py,sha256=zxwZNiHt2lTgGxZgJJyqoYmlbj4P5UMsq8M-N8fsfSQ,2493
|
|
1835
|
+
pyrogram/raw/types/emoji_keyword_deleted.py,sha256=0pzlnewp7NwZCzNiZbCq2p9e_zdiMl7mWTXtalhshGo,2521
|
|
1836
|
+
pyrogram/raw/types/emoji_keywords_difference.py,sha256=3B0m1yky9DzZ6skGH-LW7kiuck0yDMhACb4nYYfWcN0,3377
|
|
1837
|
+
pyrogram/raw/types/emoji_language.py,sha256=lkjD85Is9w_6-12tbN76SACEDGLhuMQD0k9q0jYs8Xw,2461
|
|
1838
|
+
pyrogram/raw/types/emoji_list.py,sha256=XPNzNvUaa-pHSvnH6s0uzhsWFEP56i3PqhwLngOvTRU,2899
|
|
1839
|
+
pyrogram/raw/types/emoji_list_not_modified.py,sha256=ILUT4bnHszNxO-osmqMpmhorls9uWihLMr1CtgL3EZ0,2486
|
|
1840
|
+
pyrogram/raw/types/emoji_status.py,sha256=ta3SzpgUIdywYjzVP98AeKhB_q-4GDUWB7b_P0Hqt7c,2659
|
|
1841
|
+
pyrogram/raw/types/emoji_status_collectible.py,sha256=85ybsFRAOvA3YLfDxAzqyAb3vQroWhVCn_9-49o7DQo,4792
|
|
1842
|
+
pyrogram/raw/types/emoji_status_empty.py,sha256=cGhgRSZ2Tv_pj41pGYBAfB-WT6P0_3gOZGMnEyljN_c,2052
|
|
1843
|
+
pyrogram/raw/types/emoji_url.py,sha256=reyr1uPl7BBylI_UUdNLofqpGyc3dzK5HeJ4vdQ4s4k,2368
|
|
1844
|
+
pyrogram/raw/types/encrypted_chat.py,sha256=LqtbkIsEW3l_l31hlD50B0dxNlZQHc30UvXTRzKlVGM,3961
|
|
1845
|
+
pyrogram/raw/types/encrypted_chat_discarded.py,sha256=xxZXA4Eqm5OwyzPtXhnUKQfeeO1jGgerpXcFGH5luCY,2860
|
|
1846
|
+
pyrogram/raw/types/encrypted_chat_empty.py,sha256=76EdnKWK_z2g35eI9b119TplmuftWl9Xevipct-BjzI,2452
|
|
1847
|
+
pyrogram/raw/types/encrypted_chat_requested.py,sha256=Y03cyfgBK3sznRPZv7a7oeBGmHjh45FcE6N--hWGmnw,4107
|
|
1848
|
+
pyrogram/raw/types/encrypted_chat_waiting.py,sha256=SHGrCwewuzF3u0AO9hztESWCLWYSO8j4jsKJn_lqfXE,3454
|
|
1849
|
+
pyrogram/raw/types/encrypted_file.py,sha256=Llxm8CCQJNt33IvUK2GD2qX9kvJXAz2MDqHkTtm_Bqs,3370
|
|
1850
|
+
pyrogram/raw/types/encrypted_file_empty.py,sha256=eOqe1YvkX_amtw1QwSvgZuJ9zBZ3H7BM3dgG12M5a5U,2283
|
|
1851
|
+
pyrogram/raw/types/encrypted_message.py,sha256=lpgkUWFmd0UDhsuEsaxtHc9AdHZw8u1g_f1HryH7E34,3160
|
|
1852
|
+
pyrogram/raw/types/encrypted_message_service.py,sha256=I3fVJO7oXlDY0M7tON1d93yNTfSNqA_nhYxPd3BU8Kw,2914
|
|
1853
|
+
pyrogram/raw/types/exported_chatlist_invite.py,sha256=lSqVtS-cSP3HwjzNd-ZeLrP4cd-FrRFvG0_ZKIbuTm4,2976
|
|
1854
|
+
pyrogram/raw/types/exported_contact_token.py,sha256=MrjvP5FeZ1aMnYIJt9rd6QvxHqyVY6r_daSu09o9zEQ,2661
|
|
1855
|
+
pyrogram/raw/types/exported_message_link.py,sha256=dI-MlLrHwkcw9YvF7kGcw4-goA-LBgxu316eNw0lPOg,2635
|
|
1856
|
+
pyrogram/raw/types/exported_story_link.py,sha256=R_DngL2-QSN70bTD30-8VQQQCBTwlfoEZmbyzCAioIQ,2425
|
|
1857
|
+
pyrogram/raw/types/fact_check.py,sha256=HpM4XTc5OjOJnP0EPq89KsQVxHpi3d0RA06bEE25ILU,3561
|
|
1858
|
+
pyrogram/raw/types/file_hash.py,sha256=jQtwDDgrXGtS6XX5naneoV5N4KPmPZJ34rg8DQkip7Q,2880
|
|
1859
|
+
pyrogram/raw/types/folder.py,sha256=SVQk-4dpldN73KMt-mV3pWp8UVBehgylJfE3QEZe7Jw,4093
|
|
1860
|
+
pyrogram/raw/types/folder_peer.py,sha256=4KCNNfXzvDRXLP_hCWhsc6iSpSTOLY-Fq48gRMvDIiU,2459
|
|
1861
|
+
pyrogram/raw/types/forum_topic.py,sha256=AfUFOf5j_u-MmRJuPSGgZpIadKB80s6-5lL1kPb2hmE,7575
|
|
1862
|
+
pyrogram/raw/types/forum_topic_deleted.py,sha256=TBTZGXMegSMvsXPuWtlIUnXZZXLHkhmb1Xyot6VkZ2A,2184
|
|
1863
|
+
pyrogram/raw/types/found_story.py,sha256=copevRbsPo52ALS6rysMy49WohI7PGIK4hHTjiFnrNs,2482
|
|
1864
|
+
pyrogram/raw/types/game.py,sha256=oAo7BU2-lcZj-RKtSjJa4NLS8HAqs-7p9PTov_fzEAs,3864
|
|
1865
|
+
pyrogram/raw/types/geo_point.py,sha256=d9lQi_ZhJxxj5ejHNIpg8EMjIcYOzeD8CQdZ5ZlXgVw,3169
|
|
1866
|
+
pyrogram/raw/types/geo_point_address.py,sha256=H921vCaBvbjDmhRSqLXSnHiblyns21LmOxFiaIxeags,3407
|
|
1867
|
+
pyrogram/raw/types/geo_point_empty.py,sha256=7--X4-d1PoBKDaq1lSoLYTUrOQzb3YmW6YihWBlruI8,2037
|
|
1868
|
+
pyrogram/raw/types/global_privacy_settings.py,sha256=FKySZDQXL191BmwI78QhuwkTrRh5-d_p5Y5E5mX35eM,4571
|
|
1869
|
+
pyrogram/raw/types/group_call.py,sha256=_C8KmySRAFbXEu8CeqvwgbIh3vTdKGHB74UMBfJ2NcM,9025
|
|
1870
|
+
pyrogram/raw/types/group_call_discarded.py,sha256=zzndLcPoTjZrrn82rqN1p7nteYUwK7TTv4nX5UbFNd8,2692
|
|
1871
|
+
pyrogram/raw/types/group_call_participant.py,sha256=9kX5jQCmIV1iZUEn1gIGdqZ3pH5WpBhKFHQNvvYxMTA,8406
|
|
1872
|
+
pyrogram/raw/types/group_call_participant_video.py,sha256=AyZmfdLxUEndQ3nz87hwmXDIDiga3Qfdp9ShVa6-gOo,3507
|
|
1873
|
+
pyrogram/raw/types/group_call_participant_video_source_group.py,sha256=quf0uJxtmxKVlKL9J_mC8v2feySlyPg7qIFMcL1WWvE,2615
|
|
1874
|
+
pyrogram/raw/types/group_call_stream_channel.py,sha256=89zyF6AXXRdZKl4RnrANFPDdZiVOfIEdH-d7_48vVPI,2790
|
|
1875
|
+
pyrogram/raw/types/high_score.py,sha256=50RzT2oNZ_2YwyyGPtBUekQ0It_NaUSngd9TelbLLGc,2599
|
|
1876
|
+
pyrogram/raw/types/http_wait.py,sha256=n9ng8cSiwFlw0fy09j5WitSOC8bHSqkskwxI7dHbZ5k,2699
|
|
1877
|
+
pyrogram/raw/types/imported_contact.py,sha256=k5Ch7jcwCeDyG6Ny9wfeZUODyC1vn6xLN6w4vEvFzVY,2478
|
|
1878
|
+
pyrogram/raw/types/inline_bot_switch_pm.py,sha256=KWR8aRyMUMQuQhKwOqNnMDqpZVkRPTKPtoHq_Ab_3Zw,2469
|
|
1879
|
+
pyrogram/raw/types/inline_bot_web_view.py,sha256=_K7_83ENuO-mWEmFkcJQswZOIJnzZ-5eHA2dORH0sjw,2392
|
|
1880
|
+
pyrogram/raw/types/inline_query_peer_type_bot_pm.py,sha256=j6KtwUAG7K-S9WIy63TGK2OAHqjUAuq75UO9es-Z47E,2090
|
|
1881
|
+
pyrogram/raw/types/inline_query_peer_type_broadcast.py,sha256=1voegYKyopXCyYQEF1FWiXxQbl7Uo513J06Ut5dzMTc,2108
|
|
1882
|
+
pyrogram/raw/types/inline_query_peer_type_chat.py,sha256=cHiBmISm7EE0pQ2QFOIdcbWeDFANaL_8yBNh5pX8mC4,2088
|
|
1883
|
+
pyrogram/raw/types/inline_query_peer_type_megagroup.py,sha256=kbF7_9HrkQtfy8_8Cwy38_QIPfQ7VgCyL4QM2SeZwVs,2108
|
|
1884
|
+
pyrogram/raw/types/inline_query_peer_type_pm.py,sha256=ZSb4xHa-tJPUFyZTlAI7MciM6wY6YSnSSRo5p5Xj3Z0,2080
|
|
1885
|
+
pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py,sha256=w-QnphfATCfKM2gWW9QMVEhRgzkwe_iZiqh-hdBXLjc,2108
|
|
1886
|
+
pyrogram/raw/types/input_app_event.py,sha256=0Bbo4Z9VGAcwy4NNC-UYZfOE6n9ZIPRCZRLSLeAHxK0,2861
|
|
1887
|
+
pyrogram/raw/types/input_bot_app_id.py,sha256=N-Mo3ePUSW00L2PzZD8XgqL8wW77b572hKZBKqVuIhk,2439
|
|
1888
|
+
pyrogram/raw/types/input_bot_app_short_name.py,sha256=f1sQnWHIioU96YHQz3sCgDn0WrsYmNEiXi41wBP7zK8,2545
|
|
1889
|
+
pyrogram/raw/types/input_bot_inline_message_game.py,sha256=ursimrGjdMf95FPbO99V69iJmYU9H6qAaHYiVgzVSmw,2604
|
|
1890
|
+
pyrogram/raw/types/input_bot_inline_message_id.py,sha256=WFwN2jcCjzMhw1abawLgzIO6lSH3b5Xsvy0F1iq4w3c,2699
|
|
1891
|
+
pyrogram/raw/types/input_bot_inline_message_id64.py,sha256=nD9xofDTbvyTkuKF04pTl7otxPtG9WpUTrtQY27tkow,2942
|
|
1892
|
+
pyrogram/raw/types/input_bot_inline_message_media_auto.py,sha256=LjEd6ZNPlQuV6uvPHy8l8qxakGFBvBm49xH7K6q4qpk,3657
|
|
1893
|
+
pyrogram/raw/types/input_bot_inline_message_media_contact.py,sha256=cdsLMiqehsD7ZvcMZJ4ZF_A79Qdmnt9UZ2JtsKJqzlc,3604
|
|
1894
|
+
pyrogram/raw/types/input_bot_inline_message_media_geo.py,sha256=6ht58aOqBd3CKA-36ddltQpptgFXwc2t_lV_wn_tCI4,4331
|
|
1895
|
+
pyrogram/raw/types/input_bot_inline_message_media_invoice.py,sha256=EhSryMg8i45gfUWWIAx-G1IavL7zANcQD7Td90nO5lk,4624
|
|
1896
|
+
pyrogram/raw/types/input_bot_inline_message_media_venue.py,sha256=brZFPrFh88HHrBjMIqeeqLFkTu0GdIJZVWaLdsIDHGg,4094
|
|
1897
|
+
pyrogram/raw/types/input_bot_inline_message_media_web_page.py,sha256=bvzV5hRz4TbHiuAuslmots6lruG7JSYoO1V7mCacn-M,4865
|
|
1898
|
+
pyrogram/raw/types/input_bot_inline_message_text.py,sha256=tq1Sswsyxvc4e2149KBSoyC5aldIQs1cng8660MsUXI,3937
|
|
1899
|
+
pyrogram/raw/types/input_bot_inline_result.py,sha256=h4b8RPgy8eTH9fZgppzt_WNTki4KUjHx0JLpdxtTneI,4887
|
|
1900
|
+
pyrogram/raw/types/input_bot_inline_result_document.py,sha256=W4K1yWZnDGlgA1qXe01clPm7-1UAnKApsK8RI0VdQrM,3962
|
|
1901
|
+
pyrogram/raw/types/input_bot_inline_result_game.py,sha256=iO2eJK382B03lQ9aDAXchr6KEZ_XSQfhd0nWXaNYZio,2851
|
|
1902
|
+
pyrogram/raw/types/input_bot_inline_result_photo.py,sha256=yQuEe5zG00mOUQ2njPTDxR53wWeiPDRPMs4937tLSXI,3072
|
|
1903
|
+
pyrogram/raw/types/input_business_away_message.py,sha256=DkywgUqyIXHTrvsKaMjiBUCwAZ5G1MrzJbn37RGtdAs,3408
|
|
1904
|
+
pyrogram/raw/types/input_business_bot_recipients.py,sha256=l4PaQnwE9ZXbaScS47enpjTHP91c_0uxbK4uRuD6vE4,4657
|
|
1905
|
+
pyrogram/raw/types/input_business_chat_link.py,sha256=NujIhQGyaLW933AP9rKljRZ8cgD7gHWeV8sfgdA3Fgg,3157
|
|
1906
|
+
pyrogram/raw/types/input_business_greeting_message.py,sha256=XrWISru2rjTid_Odu9X3HHNHwaBIKbh1LWnZLvQIxHg,3002
|
|
1907
|
+
pyrogram/raw/types/input_business_intro.py,sha256=Ux7UdPABiC190RzPi6QSvB7GG2KbUFdteQMIIozUJzU,2990
|
|
1908
|
+
pyrogram/raw/types/input_business_recipients.py,sha256=49hrVtyui6Z8CBs11-Vpfm61mqY6WgZ2GwJyzSq6MRo,4112
|
|
1909
|
+
pyrogram/raw/types/input_channel.py,sha256=2CB60I26Bd-ERF3ekrgEdRaHTN2UzTSmVkAEoEL_oAM,2508
|
|
1910
|
+
pyrogram/raw/types/input_channel_empty.py,sha256=_jdjH6dlGLxDyZNZwxKDC8lvZkIXiuBEziSnsoQ0FWI,2057
|
|
1911
|
+
pyrogram/raw/types/input_channel_from_message.py,sha256=AcRyFHp-jxeoVxlkLuTTMFiWJNAJa0UqamKLHZV6vxk,2762
|
|
1912
|
+
pyrogram/raw/types/input_chat_photo.py,sha256=_eA3i2ZMGjePmI3uU298EPCp_LZAGItv-7qKjJe5DUA,2241
|
|
1913
|
+
pyrogram/raw/types/input_chat_photo_empty.py,sha256=unX6-ZQKNmqwGDB8bMAFiAzEj13YftwnfrRaIyy7b70,2067
|
|
1914
|
+
pyrogram/raw/types/input_chat_uploaded_photo.py,sha256=OKmW2W9aC_YLaHpFFX0H_CGhzYYzj7_t5K_xi2iWEQg,3957
|
|
1915
|
+
pyrogram/raw/types/input_chatlist_dialog_filter.py,sha256=7-gFlmZMkmRMhRXz57OSko6odsAtHvo2TdzpmXPN1pE,2284
|
|
1916
|
+
pyrogram/raw/types/input_check_password_empty.py,sha256=_FBDPPHGhmsdO3X4idkxjyrNxAqk8Lzzf6H8Vc8Vm84,2090
|
|
1917
|
+
pyrogram/raw/types/input_check_password_srp.py,sha256=Pt_d8uYXMozFZTXk-HPuBgvo3VH7hZRlM6whxEkWFUY,2603
|
|
1918
|
+
pyrogram/raw/types/input_client_proxy.py,sha256=c9Smiy5Yq6kun3P-8f84GPo9e02bLT514azCv8f25-w,2430
|
|
1919
|
+
pyrogram/raw/types/input_collectible_phone.py,sha256=x50-lhOdJVxetqZpj7NjVGKeTxNLIyI-1A0m2gJHhYM,2233
|
|
1920
|
+
pyrogram/raw/types/input_collectible_username.py,sha256=jPq8yuI1hI4ESjZO1PmEjplpq9yDNhoDXwn67bHXS88,2272
|
|
1921
|
+
pyrogram/raw/types/input_dialog_peer.py,sha256=W_48hzEFuKALJGnJm0sqGqVvKMo5h3-fTe42hWm8LZM,2260
|
|
1922
|
+
pyrogram/raw/types/input_dialog_peer_folder.py,sha256=NCx5uuf29eysFu7kp-1yEZfGLx8KZcFFeZZG0GED43U,2270
|
|
1923
|
+
pyrogram/raw/types/input_document.py,sha256=9lj27mW_Y9VZPRETiuO6mybK3ROYFTM9hTRNu4hJahI,2729
|
|
1924
|
+
pyrogram/raw/types/input_document_empty.py,sha256=OikVSlmWNVjXE4jYszJRrfJtKGlTg8teqf2OW28pxXw,2062
|
|
1925
|
+
pyrogram/raw/types/input_document_file_location.py,sha256=jxhKotYbqmvI3ccS8KoUmtEIBeIM-UUpMfM0g-COuuY,3032
|
|
1926
|
+
pyrogram/raw/types/input_emoji_status_collectible.py,sha256=hs0pP35oX-PL7FV9jI7jGiPQqta8Tjqi2o_IIIxdgH4,2748
|
|
1927
|
+
pyrogram/raw/types/input_encrypted_chat.py,sha256=t8B_Gyw3IXWs_tNnDdBxcjJq69c8cocKoWC7QPu05Gw,2508
|
|
1928
|
+
pyrogram/raw/types/input_encrypted_file.py,sha256=skYTqzyR6PebTjc0x_GnE1m28xHEyT-IBvegUrK-TBg,2466
|
|
1929
|
+
pyrogram/raw/types/input_encrypted_file_big_uploaded.py,sha256=nwgEsmnA-SCTWu9eK3ENIe1XrR7Car6DS0okqx2C8Oc,2751
|
|
1930
|
+
pyrogram/raw/types/input_encrypted_file_empty.py,sha256=T_a5z1uolUTFBOLktQ1HBLlaH0l03p-vSG8j0NFHS5o,2087
|
|
1931
|
+
pyrogram/raw/types/input_encrypted_file_location.py,sha256=8twStO-HiY3gW4-ZNGuzpAjkoGBkTSFquU4tZl50LTA,2497
|
|
1932
|
+
pyrogram/raw/types/input_encrypted_file_uploaded.py,sha256=fy2IqicXL0C1UQDnOFBJ6uC4qTeMItRVuNYmIvneeZo,3008
|
|
1933
|
+
pyrogram/raw/types/input_file.py,sha256=M6ricTxLW0WtK4vdNwRfB0hr8Q8bj8qfXgWuXXwDjQY,2830
|
|
1934
|
+
pyrogram/raw/types/input_file_big.py,sha256=liPwYfCS0dz_RpCLVWFH5qVqEBkIh-YMtExS7QDl3sg,2573
|
|
1935
|
+
pyrogram/raw/types/input_file_location.py,sha256=PpN-AzstLx_X0NFkwLADFX5mFAEWy-FzXxpQBMwpRUw,3002
|
|
1936
|
+
pyrogram/raw/types/input_file_story_document.py,sha256=l4zNoEDGtRdLVE4VMNrQdoUzwl16wFwOvto2sU-gLgI,2280
|
|
1937
|
+
pyrogram/raw/types/input_folder_peer.py,sha256=reQclntiR2WsYjStKV58fXkWN_hytES209LfRhrozaQ,2504
|
|
1938
|
+
pyrogram/raw/types/input_game_id.py,sha256=vmq0ilwMFfaXQZw-VxdYlmrynrsx-J_Lu529biZGAIU,2427
|
|
1939
|
+
pyrogram/raw/types/input_game_short_name.py,sha256=PdqWPe3D8DzyngK3ctgGxo8RfOqKeDAriMaGVsqox-A,2535
|
|
1940
|
+
pyrogram/raw/types/input_geo_point.py,sha256=O4kSzbhabytVpU6NpxdquI6htJIQecUI0xMo_zbMWrY,2929
|
|
1941
|
+
pyrogram/raw/types/input_geo_point_empty.py,sha256=a3zM_BMYA2vGUS0adhW21EkW7YP8kQ3E-kbnQulk_1w,2062
|
|
1942
|
+
pyrogram/raw/types/input_group_call.py,sha256=pTgma03ZaZSwZZM6UP2uZLaw8fCh1v0ylv9xFI03JuA,2446
|
|
1943
|
+
pyrogram/raw/types/input_group_call_stream.py,sha256=tGcC2DKMy-zz7RvjgncaGOyPAOHd8fNn85SUN01FCDo,3690
|
|
1944
|
+
pyrogram/raw/types/input_invoice_chat_invite_subscription.py,sha256=z7xUNccH4Vqc18VVJ7nMcx4xofDu9nldzEX0UKvUMdU,2272
|
|
1945
|
+
pyrogram/raw/types/input_invoice_message.py,sha256=DHaQYOLg0Di9hKRIVtexRLBkK6jhBG6GeDUZiTYU0aE,2490
|
|
1946
|
+
pyrogram/raw/types/input_invoice_premium_gift_code.py,sha256=t75-ichV1Wmog4dwxTaoVuP-JMx-Dm42JDNjOyvApn0,2716
|
|
1947
|
+
pyrogram/raw/types/input_invoice_slug.py,sha256=tYyPZx41x3KX9qYr0Dc7G6q66NY9GEVWusbh27QsRLQ,2200
|
|
1948
|
+
pyrogram/raw/types/input_invoice_star_gift.py,sha256=cqS-p4kSM-4MhaQLwSF6JsyLmg4TwKqQxjsM7lPSxBM,3663
|
|
1949
|
+
pyrogram/raw/types/input_invoice_star_gift_transfer.py,sha256=hJ2gtCBwI0Y8taXihf_FqiYVjXqW5L8NtzKrH2Ag7u8,2648
|
|
1950
|
+
pyrogram/raw/types/input_invoice_star_gift_upgrade.py,sha256=-oUxiWdJDPBFu9A0shN5tyHfdof9XF6crVnFcRO5Ibg,2823
|
|
1951
|
+
pyrogram/raw/types/input_invoice_stars.py,sha256=-yyRpmZcz2DnkE2mWsLwnC0oByjzbZVTJGC6zlTpjj0,2352
|
|
1952
|
+
pyrogram/raw/types/input_keyboard_button_request_peer.py,sha256=mdx7tIzhisfRYo8V0ndMq1ytzLA-o7H-KpqpTOsNplQ,4200
|
|
1953
|
+
pyrogram/raw/types/input_keyboard_button_url_auth.py,sha256=E6tEY5nAY5nftM9HDG5VPi1x85H1zb2Qu_yNOKTFqmo,3512
|
|
1954
|
+
pyrogram/raw/types/input_keyboard_button_user_profile.py,sha256=LHm8HDRVzShZ0bvQSDtm4f7KZMYD5FwYicTnKW4Uajs,2543
|
|
1955
|
+
pyrogram/raw/types/input_media_area_channel_post.py,sha256=uEDkYZrP-sXg-9HtQjndukjhCuz7BLNjdFSOZIBN0iY,2915
|
|
1956
|
+
pyrogram/raw/types/input_media_area_venue.py,sha256=pAmuWhF5EaMp5Caxzw4loPpZ8wieNLXshYYXMhaRCoQ,2857
|
|
1957
|
+
pyrogram/raw/types/input_media_contact.py,sha256=eAzQrwcUW_zrKp7vI-9e3YR2fvqWvQkScgIlBb2lFmw,2973
|
|
1958
|
+
pyrogram/raw/types/input_media_dice.py,sha256=PD0MOYv0ifLOskT9P-QL_4DvBj58TiBm3Jz9H9zA1-g,2226
|
|
1959
|
+
pyrogram/raw/types/input_media_document.py,sha256=f_98KKiJUMt7uxZ7Ssp0t8XSi3EZtoXDrkYqkWBTrqg,4348
|
|
1960
|
+
pyrogram/raw/types/input_media_document_external.py,sha256=r5JWFzrcqLJC5XKm3OPJ0u74XWTl7Rb65MlRa7cc6gM,3949
|
|
1961
|
+
pyrogram/raw/types/input_media_empty.py,sha256=vcqFWqWUpmeJZQSKxe6eDiX5VfrxrgdiFU8XckNn1d4,2047
|
|
1962
|
+
pyrogram/raw/types/input_media_game.py,sha256=GCY2EhhpmejNG7njosam6GIHC50SwEgstfKnZilQoNg,2233
|
|
1963
|
+
pyrogram/raw/types/input_media_geo_live.py,sha256=ErMmwi-kgo6lpf57Inzl6hwa3fpJd2S6TGF2jzRgW_k,4036
|
|
1964
|
+
pyrogram/raw/types/input_media_geo_point.py,sha256=Vl6bKuU3L4_BtRfUXt-Hqc3oPizAG1VTfO0tjF9Z_fw,2328
|
|
1965
|
+
pyrogram/raw/types/input_media_invoice.py,sha256=WNd-Nw-6nv_P5-XqcnxfoRNNcpQKPOkHfin72rtWi58,5159
|
|
1966
|
+
pyrogram/raw/types/input_media_paid_media.py,sha256=Y_K_OBNw74-KK39Wh2zuGjzjtqm8Wv0481p6sbbg48I,3093
|
|
1967
|
+
pyrogram/raw/types/input_media_photo.py,sha256=99F1SvLvdw-qw5ECxt228CqRwS6W4fay4EB9pFSD8CI,2992
|
|
1968
|
+
pyrogram/raw/types/input_media_photo_external.py,sha256=NfAMcFW6m-KwzvyZb9bfxH1aToYectFwgG5xcQU7Qkc,2968
|
|
1969
|
+
pyrogram/raw/types/input_media_poll.py,sha256=__jhhhobI4AjFhthca3Au-erNyKYbsJV3j9b_ws6WFI,3772
|
|
1970
|
+
pyrogram/raw/types/input_media_story.py,sha256=hfSXUjHFqTk5Z86U_uukFlLa0JKC3WjaBC2v5s_6k7o,2436
|
|
1971
|
+
pyrogram/raw/types/input_media_uploaded_document.py,sha256=wfb_tvMAdnKeKCAf3BEikHz0gqRWH6AMSNXL6zzY7PI,6167
|
|
1972
|
+
pyrogram/raw/types/input_media_uploaded_photo.py,sha256=bPuRaVLxV7gIuCDky5zP-mWY4_JpuMF9cxx6NT54Pzw,3529
|
|
1973
|
+
pyrogram/raw/types/input_media_venue.py,sha256=XMDMDjKi8SQb0Myib6JK1YkiNY-atu0nDwudpnOo6L0,3463
|
|
1974
|
+
pyrogram/raw/types/input_media_web_page.py,sha256=6NVSPerz04LXXsCbg9ExArb9uF7p2HZukUYgLQV-bcQ,3248
|
|
1975
|
+
pyrogram/raw/types/input_message_callback_query.py,sha256=8KoYn8h90iVXJOELq0JmFepVc7aTRwt22opZ47hhkdI,2458
|
|
1976
|
+
pyrogram/raw/types/input_message_entity_mention_name.py,sha256=yCX_1S2mDr2ELOTOkxf6JUu1sqg2YFjX9BtkN9MZJlE,2775
|
|
1977
|
+
pyrogram/raw/types/input_message_id.py,sha256=WeEyPpNUYSLsdwL01srSVgrAz_KvIcAB_bout7eJvvA,2176
|
|
1978
|
+
pyrogram/raw/types/input_message_pinned.py,sha256=Pg8b5_2lliyrNyyRoA7nWnAM7n2SuUHQzOkpk-N0Phw,2061
|
|
1979
|
+
pyrogram/raw/types/input_message_reply_to.py,sha256=Tfa_2uSYQZa0re1hR1IXyNOobvKFkEH6MUTqhFwnXw4,2196
|
|
1980
|
+
pyrogram/raw/types/input_messages_filter_chat_photos.py,sha256=Z9ecge2_6gVuiWTH6xt40EXdZTCLqZVJ7L9X5rY_QnY,2107
|
|
1981
|
+
pyrogram/raw/types/input_messages_filter_contacts.py,sha256=3jsH8OjidUpf16uph1eJo4YSlMNzJGAGC25YklUlylg,2099
|
|
1982
|
+
pyrogram/raw/types/input_messages_filter_document.py,sha256=DsDl0uNL8L1zE1NWa9vPht_Hh7uD-iJ93Y7YlWNZSPI,2099
|
|
1983
|
+
pyrogram/raw/types/input_messages_filter_empty.py,sha256=if-URzbalMwUOrMn-8C8CxICGkDLV3oq-xNwSugMEuY,2087
|
|
1984
|
+
pyrogram/raw/types/input_messages_filter_geo.py,sha256=_5CnO068suokadTqfNlLdsVM_pRpXSXuvBhwcsB3U1M,2079
|
|
1985
|
+
pyrogram/raw/types/input_messages_filter_gif.py,sha256=1YV75tqewtQk_z2256FVIccLQIpEgjSIFAGWaRjm30Y,2079
|
|
1986
|
+
pyrogram/raw/types/input_messages_filter_music.py,sha256=uWZWLMTE1RIf0eQsDO9FIHLDHBpAbXZ4sq6lXAv9OVA,2087
|
|
1987
|
+
pyrogram/raw/types/input_messages_filter_my_mentions.py,sha256=vgmopRZZkJPUasFy3Z4OCO4d0GwDvYQv9Y5QzGdNhhw,2107
|
|
1988
|
+
pyrogram/raw/types/input_messages_filter_phone_calls.py,sha256=serVxxJc70BrfoS_hbPKHlv7g2HgLTWjDREjZ3lNNis,2368
|
|
1989
|
+
pyrogram/raw/types/input_messages_filter_photo_video.py,sha256=mXD7qA1vvwurwUgB6YJsUUW10OTvUbwNgBJBYkinXj4,2107
|
|
1990
|
+
pyrogram/raw/types/input_messages_filter_photos.py,sha256=ygTj8QBQsLvNonZnD5afHR-zxHBoscUe8QiCLwiYJH0,2091
|
|
1991
|
+
pyrogram/raw/types/input_messages_filter_pinned.py,sha256=WzclrTY376j5VCYI3wRgbypEaMFI0nEiLF2RKgTxt4c,2091
|
|
1992
|
+
pyrogram/raw/types/input_messages_filter_round_video.py,sha256=UM0xLq3VmAZc5R15JcwA7j6zTIedTy-cHK7NwI6G9wE,2107
|
|
1993
|
+
pyrogram/raw/types/input_messages_filter_round_voice.py,sha256=dOCQstjCprlK9nkkmDyyrpk-Wv0RG0-DodImzfpVkO8,2107
|
|
1994
|
+
pyrogram/raw/types/input_messages_filter_url.py,sha256=pSv939fOU9HZisiLZPrSKHbhtKhOasW7jINRPEkmeSU,2079
|
|
1995
|
+
pyrogram/raw/types/input_messages_filter_video.py,sha256=vbCY-0FOiTb1tUwBxYRyf0359XIQc5JnUgzPqcuPbGw,2087
|
|
1996
|
+
pyrogram/raw/types/input_messages_filter_voice.py,sha256=u7Mai7ZUiK2g2VQ8FE2Gm21Isbjsfpl7wf_3pqVnEzo,2087
|
|
1997
|
+
pyrogram/raw/types/input_notify_broadcasts.py,sha256=mGt34dj6-2n61KmUHdZ7dlPApmrUMDIQVrwMa8_UwIo,2076
|
|
1998
|
+
pyrogram/raw/types/input_notify_chats.py,sha256=1GvQ2jiQzIZ896BUW4WlbyZwjJZEGjqIecDAQmF60YI,2056
|
|
1999
|
+
pyrogram/raw/types/input_notify_forum_topic.py,sha256=-LzGGud4vENiDQrvit-diFPVQO2y7K4tflNGpMWRH30,2537
|
|
2000
|
+
pyrogram/raw/types/input_notify_peer.py,sha256=jD1CSkEqMl5V1wwJ_9oUDQYNtRxy-uvVIkuQPqc1wog,2260
|
|
2001
|
+
pyrogram/raw/types/input_notify_users.py,sha256=tceOWsgqoJoFwfg9wi6k8-NtF-z2CjwzxQB7eTtbUHY,2056
|
|
2002
|
+
pyrogram/raw/types/input_payment_credentials.py,sha256=bdmGrp1lJeFcB5-fs26-bBQtPVButLSbO9I_efogPF4,2589
|
|
2003
|
+
pyrogram/raw/types/input_payment_credentials_apple_pay.py,sha256=GVAOMtHLDhXe8Byd6PQF0WZDlwW8IlzXaPuwXPPZUSc,2398
|
|
2004
|
+
pyrogram/raw/types/input_payment_credentials_google_pay.py,sha256=C1nnEwJXy5Nnc5OeU3HUsO6aEbsTRvRQxpjv0OlFVgk,2413
|
|
2005
|
+
pyrogram/raw/types/input_payment_credentials_saved.py,sha256=9Qvo_a2WCw-VGeat_KUfb_H8tSV3Zndz1TpKXXCSavg,2511
|
|
2006
|
+
pyrogram/raw/types/input_peer_channel.py,sha256=EJPm-UssiJ4dDRsgU7sjFIa4FVG-L1WN9UI5K_JW2BU,2521
|
|
2007
|
+
pyrogram/raw/types/input_peer_channel_from_message.py,sha256=HUeopq6E6o1mOjQVkIa--Lkcy1yPNNBkz5pmrNxpN0w,2775
|
|
2008
|
+
pyrogram/raw/types/input_peer_chat.py,sha256=cC_eawSup3YlkzjwutFN5bcvYXZFRZOBehOOMWA8yJw,2217
|
|
2009
|
+
pyrogram/raw/types/input_peer_empty.py,sha256=POdUsmluQLRMOwmrjAH3MEW0hQQXr4mznF0FOOEwd8k,2042
|
|
2010
|
+
pyrogram/raw/types/input_peer_notify_settings.py,sha256=91LRpbzhvLZS1Lro2iEv7DnMJd4Dk2qyhtjgir_ayBA,5286
|
|
2011
|
+
pyrogram/raw/types/input_peer_photo_file_location.py,sha256=IMa_Z0we3c0TkmW57be8Tgex0laTy8-5st_ZV5LHthk,2828
|
|
2012
|
+
pyrogram/raw/types/input_peer_self.py,sha256=yJG1cBH05yVP_mPp9eh5C-fszdZQP1l97FvT9j1Hsss,2038
|
|
2013
|
+
pyrogram/raw/types/input_peer_user.py,sha256=Be2ZwlhOMqTYa2CdZnr9axNXRrDP0E1l36s8gWB8qdI,2482
|
|
2014
|
+
pyrogram/raw/types/input_peer_user_from_message.py,sha256=BhPrKsHve85DduffVchXeHnAua3ZuCQhCAHCeEBNyWE,2736
|
|
2015
|
+
pyrogram/raw/types/input_phone_call.py,sha256=ECD2XbeQDWxBV-VjDbFYnPTtdVGDN9kEH9I--x955H4,2446
|
|
2016
|
+
pyrogram/raw/types/input_phone_contact.py,sha256=vhLNE8CQxOY9t17bBnZezcsaI06F_J8Ea3yJNkc1Ph4,2953
|
|
2017
|
+
pyrogram/raw/types/input_photo.py,sha256=BvOp46IHWkmVoQZhhkDgcXp8E88roE7-iOnZHVC8kLQ,2714
|
|
2018
|
+
pyrogram/raw/types/input_photo_empty.py,sha256=7JCl9ZP4UjDDT-4UYY3-7ktazMBcllydXuzNCcplgvk,2047
|
|
2019
|
+
pyrogram/raw/types/input_photo_file_location.py,sha256=TdLXFuMwQdHwQ79y-UzlMrtk3gu18HY9tEaY_Slbaec,3020
|
|
2020
|
+
pyrogram/raw/types/input_photo_legacy_file_location.py,sha256=uZVyr1wmwDdXp15DRbF5XwwFlPQycv4F_ifvxDku2c0,3495
|
|
2021
|
+
pyrogram/raw/types/input_privacy_key_about.py,sha256=05v_mO6_4LnifoYalMZ8DS6k1a_vNRFt7Nc8v0TjIrA,2072
|
|
2022
|
+
pyrogram/raw/types/input_privacy_key_added_by_phone.py,sha256=rEn3aCGalL7dBgZMfgWfVpe6ciDxiDq9ZDWnv0G3A98,2100
|
|
2023
|
+
pyrogram/raw/types/input_privacy_key_birthday.py,sha256=vJvJAiDEdnaXtylcWJmnkKOntZHEur0YRZaiv0naDTo,2084
|
|
2024
|
+
pyrogram/raw/types/input_privacy_key_chat_invite.py,sha256=ZTGFNst7jtdQ1i7urTHcg_YynsvvQRRP0QUEiC3-JTA,2092
|
|
2025
|
+
pyrogram/raw/types/input_privacy_key_forwards.py,sha256=RiBFaPINnI_xEhlmBRCw4IATI7Tmo9NYwr-jL6GhLqk,2084
|
|
2026
|
+
pyrogram/raw/types/input_privacy_key_phone_call.py,sha256=_FwRkeQp7suMbn62Fpk-LkHN6rjat7nZkKWyWJvK0HM,2088
|
|
2027
|
+
pyrogram/raw/types/input_privacy_key_phone_number.py,sha256=d2s_9nMrvV61meS3K0Nq075UrIaX2zx4KuyaIsSYqeM,2094
|
|
2028
|
+
pyrogram/raw/types/input_privacy_key_phone_p2_p.py,sha256=jlcA-5skTOimhdzk2HJ27I_8QR6K4B_cV4YoknuZSaE,2084
|
|
2029
|
+
pyrogram/raw/types/input_privacy_key_profile_photo.py,sha256=-gClaCkP2L9aUF9GWAuM-PLkix1a1ZKoP0QSsXXZqkk,2100
|
|
2030
|
+
pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py,sha256=Uwhjpw8-2jI_kpA792KTiumsjEjc5ZsYMAf7qgH1SXg,2120
|
|
2031
|
+
pyrogram/raw/types/input_privacy_key_status_timestamp.py,sha256=tYb2EUW1-_X0NOs1gNfP4bQBFvn-72RcAAcTCSgxkzI,2112
|
|
2032
|
+
pyrogram/raw/types/input_privacy_key_voice_messages.py,sha256=TBw6ED9YfBdMDcK6wHyvtmIdpvCKhKUBaF8FPmtBQ2M,2104
|
|
2033
|
+
pyrogram/raw/types/input_privacy_value_allow_all.py,sha256=3O0hRYhcct3mmgGXeg0QJ3jV9R2GLoXmVP1eKY3nV9U,2093
|
|
2034
|
+
pyrogram/raw/types/input_privacy_value_allow_bots.py,sha256=xy48Xx2GS3BOf129s26PVHOMgd8aBuK9QLZShwB0xyM,2097
|
|
2035
|
+
pyrogram/raw/types/input_privacy_value_allow_chat_participants.py,sha256=i11w3x6pRfH9o7vqTDfNX5L4BcFq109z4x83KYVM4FU,2346
|
|
2036
|
+
pyrogram/raw/types/input_privacy_value_allow_close_friends.py,sha256=zpkYV_2LevR2q73oQtNcB7eBkZ24MaJEFSgojHWBhuw,2129
|
|
2037
|
+
pyrogram/raw/types/input_privacy_value_allow_contacts.py,sha256=tvu-HAyF4qc-o1WOPWzuMbQObvdpszu4k-kB8v2W9ss,2111
|
|
2038
|
+
pyrogram/raw/types/input_privacy_value_allow_premium.py,sha256=FQ98w5ms-mss7lOPIrUE1GzIw-z0Y5CKUzMsucxN82Y,2109
|
|
2039
|
+
pyrogram/raw/types/input_privacy_value_allow_users.py,sha256=VzN8et1n8UZ-W_BGr6yzwKAcs0TEXm0OsTUGPQp2ZzI,2340
|
|
2040
|
+
pyrogram/raw/types/input_privacy_value_disallow_all.py,sha256=dCIM9yUH-4VfXmRdf0SZkst2uf0hoH7jy5deMs3c5nM,2105
|
|
2041
|
+
pyrogram/raw/types/input_privacy_value_disallow_bots.py,sha256=ijeFZlnMfjvX11XFg0kHjgdma4kL6l3c5WLjLqUUh4Y,2109
|
|
2042
|
+
pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py,sha256=i2pFxpHZCmmZU2KN5mJRMoeOIyRwVnZVGERGMkop0wQ,2358
|
|
2043
|
+
pyrogram/raw/types/input_privacy_value_disallow_contacts.py,sha256=3_s7nKG9N6uwul5h49OzRapVfcDK7q7DsH-GOEOXkJ0,2123
|
|
2044
|
+
pyrogram/raw/types/input_privacy_value_disallow_users.py,sha256=Ag_-YH_GQHUb8onS6pNTqsTk07tPyOBm5EMBbjjmql0,2352
|
|
2045
|
+
pyrogram/raw/types/input_quick_reply_shortcut.py,sha256=Is8oh5UcckbsI40g8OKkZc4ulGqIT9He8PV6yYkWiAg,2275
|
|
2046
|
+
pyrogram/raw/types/input_quick_reply_shortcut_id.py,sha256=8KHBvJmIgb5YyBMrq7ugvlIl-iQ5e1HKoIJM7ki5iMI,2310
|
|
2047
|
+
pyrogram/raw/types/input_reply_to_message.py,sha256=A2rmDvKYRCDqpobjVbrvB8hNQuT4A-MkbQWjwpCae98,4742
|
|
2048
|
+
pyrogram/raw/types/input_reply_to_story.py,sha256=gHqFgegI5xDmDp3KcwsclWB_rnrLIkeL8TQil0zuwII,2500
|
|
2049
|
+
pyrogram/raw/types/input_report_reason_child_abuse.py,sha256=zLcBYEycuz_GK1IBwYP0U88NIwVzcrlw_PrdGjSLwVY,2097
|
|
2050
|
+
pyrogram/raw/types/input_report_reason_copyright.py,sha256=hQmueZCoVO-xWUExmwvHNh7ETv5g7BdpaCznsA7onV8,2093
|
|
2051
|
+
pyrogram/raw/types/input_report_reason_fake.py,sha256=1wQqRc1AkErO9jVgaQ9zBYK9t_eLG9_wbqq6njLInIU,2073
|
|
2052
|
+
pyrogram/raw/types/input_report_reason_geo_irrelevant.py,sha256=yj0zscNLD20pmyjXzcOYyMX4LMiwA2iddcTp_o5eDCo,2109
|
|
2053
|
+
pyrogram/raw/types/input_report_reason_illegal_drugs.py,sha256=F9iSxi4RNIB-PXGiA43EP-Wjm7VopwtfV-Q-b9q3g8g,2103
|
|
2054
|
+
pyrogram/raw/types/input_report_reason_other.py,sha256=sdolATcSA4BszDcrm6HFehAIR7blAn2Ex7wCBDGQliM,2077
|
|
2055
|
+
pyrogram/raw/types/input_report_reason_personal_details.py,sha256=72l3tU5sRRWOjLpkwCJJflocp6d7Ob_9_i5WMRXlLoU,2117
|
|
2056
|
+
pyrogram/raw/types/input_report_reason_pornography.py,sha256=JbUxnFfO8G3lqpBUc6atmloM8F8wIc3m43Sf67hxDrA,2101
|
|
2057
|
+
pyrogram/raw/types/input_report_reason_spam.py,sha256=BK6PWOtnrBvoqm7KteWc0UBzkShtZVr5IHT6bzeK1jU,2073
|
|
2058
|
+
pyrogram/raw/types/input_report_reason_violence.py,sha256=VVH20sFDQ2bDnZDZphROLBEbtIMRwNUHTDfzApLEBS0,2089
|
|
2059
|
+
pyrogram/raw/types/input_saved_star_gift_chat.py,sha256=fPV-FJ7vq_YNmGjcYqrCy-ITmrPKPiFZsossIcpTsbM,2529
|
|
2060
|
+
pyrogram/raw/types/input_saved_star_gift_user.py,sha256=nRhC0QvsqoGkdy7UQOMJ1UoTe6NGPxvgtEcSvYc_sVk,2250
|
|
2061
|
+
pyrogram/raw/types/input_secure_file.py,sha256=T6bfoyaoAv-pOAtaMAke6s13-RI-ZVouIF6Kggrojk8,2451
|
|
2062
|
+
pyrogram/raw/types/input_secure_file_location.py,sha256=JpSHTODwerI8VxV6reIXF3GCzgv_0V7B0NNx6VTcyrE,2485
|
|
2063
|
+
pyrogram/raw/types/input_secure_file_uploaded.py,sha256=z1ZLLZDq68q1xwpMtCo_D7YTzT5_4q1cdsXyNEA1Zrc,3154
|
|
2064
|
+
pyrogram/raw/types/input_secure_value.py,sha256=eSZeiSHueOvjJNvFqs1ukDWRZ6Fx0w9BYpFcRszJ4gI,5741
|
|
2065
|
+
pyrogram/raw/types/input_single_media.py,sha256=KENfMXwMSnjjQ5Zh1I7apYaTaHAzh6ZLIvlGpDuMh68,3287
|
|
2066
|
+
pyrogram/raw/types/input_stars_transaction.py,sha256=v9StW447_60XIV83XmkhBUATVZTuGTWcZVZRVyudmOc,2522
|
|
2067
|
+
pyrogram/raw/types/input_sticker_set_animated_emoji.py,sha256=eNIXI8qKG_B7ogAHMUvawaNE7qKD1c7nDZM9hihjRT4,2102
|
|
2068
|
+
pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py,sha256=sIW68JVd5-UlUstNDjXmSnsGlZVh7EXXpHn7VXUMleA,2142
|
|
2069
|
+
pyrogram/raw/types/input_sticker_set_dice.py,sha256=QhbiITBGI7JbMHGf1XtG3_V7fpqE2BG_U_OTdAhRvoI,2251
|
|
2070
|
+
pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py,sha256=WH9DKpYrjY2dwGB54bPBBj6Zi9bi_BeViPsAVPKSa0M,2160
|
|
2071
|
+
pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py,sha256=rYHpoUp80K-nVkOG5qVYMsU3noBj59gOpbGV3XutvPI,2132
|
|
2072
|
+
pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py,sha256=b49gcJMfMAq68xqmuEOb8rWhHYGn8LsHO5Hd3rOyJ_k,2140
|
|
2073
|
+
pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py,sha256=DQzRQXVV5G16s9iK3IjTr2yV8SjOQThvNXti0pPHgLo,2138
|
|
2074
|
+
pyrogram/raw/types/input_sticker_set_empty.py,sha256=yhSQ3HauiVjCDBYSc5bhpascSHIMZbzitlpvBOfTu9o,2072
|
|
2075
|
+
pyrogram/raw/types/input_sticker_set_id.py,sha256=p9WHQ88h1z-4GFumMm9vVHHWdDn2SFFKCmjexkOtS5k,2459
|
|
2076
|
+
pyrogram/raw/types/input_sticker_set_item.py,sha256=HlRy5UEmXhhbK16SKcXIZUDXnAYfY0USy13geKhAQVk,3475
|
|
2077
|
+
pyrogram/raw/types/input_sticker_set_premium_gifts.py,sha256=e5LAB4jW1EIZ5Iw9Ht96JQrIVYIqedtCS-hE8gsLbaU,2100
|
|
2078
|
+
pyrogram/raw/types/input_sticker_set_short_name.py,sha256=X11WRd5P5lkjnkLfKqlsjQliDx30oW3a5uv2ioJGP6I,2289
|
|
2079
|
+
pyrogram/raw/types/input_sticker_set_thumb.py,sha256=BsWav9055Ah_9-h4ku2u9yRt_Ndm4a9zDNhV24bsP84,2640
|
|
2080
|
+
pyrogram/raw/types/input_stickered_media_document.py,sha256=vaZ7rTshOu7BTbdXUbxdGxtOA7Or1DQjSGj7W7VjM3s,2308
|
|
2081
|
+
pyrogram/raw/types/input_stickered_media_photo.py,sha256=BlfovjORSeJYe77xbTcHrPpBHdpWljf1ZbCZ8Vpe478,2286
|
|
2082
|
+
pyrogram/raw/types/input_store_payment_gift_premium.py,sha256=9idRz0IkF30SQn05l32_rZWAf7FM1Sb1p1dKGc_Dsfg,2801
|
|
2083
|
+
pyrogram/raw/types/input_store_payment_premium_gift_code.py,sha256=H4dts3rSQHvCZMBAl6agDuME39PdgL89-y_Uy89IPgk,3821
|
|
2084
|
+
pyrogram/raw/types/input_store_payment_premium_giveaway.py,sha256=VeWPlMcSlbEFXCtS9nFXB7sfwYQO-aoN0DsOauYSdNU,5718
|
|
2085
|
+
pyrogram/raw/types/input_store_payment_premium_subscription.py,sha256=AP4zdZ7BzJpHSdEOtaVHgtH_P_tzb7y5xShwiTMMEp8,2688
|
|
2086
|
+
pyrogram/raw/types/input_store_payment_stars_gift.py,sha256=-3g4ZtHh9P2fil1ndCunBT9qIiiQ1ZmrIIEm6hxeKPQ,3004
|
|
2087
|
+
pyrogram/raw/types/input_store_payment_stars_giveaway.py,sha256=JdBsWecFsDBNGrL73XPvFsIYvKEyJF8yafnJdenEqho,6129
|
|
2088
|
+
pyrogram/raw/types/input_store_payment_stars_topup.py,sha256=Jc9Dvkps5iojnweYiBUYfPfs5ibuW9-eSyTlG7Xzq0g,2723
|
|
2089
|
+
pyrogram/raw/types/input_takeout_file_location.py,sha256=ZKYKcegAkIaJijVmmVbeASTOStwz0CVRDCKDS8OkYLA,2090
|
|
2090
|
+
pyrogram/raw/types/input_theme.py,sha256=O4hUkU7BOrTnP2UCCbd0aCx_j9T60yTmeN0x00O6Lyw,2426
|
|
2091
|
+
pyrogram/raw/types/input_theme_settings.py,sha256=-iVbOKJ_EDc3flmvNWWVjTXnJJuKEMWDMo1P6ecgWRQ,5170
|
|
2092
|
+
pyrogram/raw/types/input_theme_slug.py,sha256=o1vUPe9JB88KzPyIlocdTVPh7_KXs8NVhfuvaRKKRdw,2190
|
|
2093
|
+
pyrogram/raw/types/input_user.py,sha256=DYFdxu0SyfS5y9-CauGBAb8bW_a8uyelFAgaIftnB8c,2466
|
|
2094
|
+
pyrogram/raw/types/input_user_empty.py,sha256=bh6nH-cVO2FF3VaHCiTGUtKg01VCQyQUuCXPikw8AUw,2042
|
|
2095
|
+
pyrogram/raw/types/input_user_from_message.py,sha256=5bFd5tW95RQd1hGFcz0qlfYuGM1Gbs9sOzqjIi1PAyo,2720
|
|
2096
|
+
pyrogram/raw/types/input_user_self.py,sha256=Lvr0sMfXYE0CjBPW6WgAH1ZqLIbgzjqqrbWpXaTr5PU,2038
|
|
2097
|
+
pyrogram/raw/types/input_wall_paper.py,sha256=C7irowwHSgCQ26lFEQEjOYziipDdoRzMZTUmo1fVRmg,2446
|
|
2098
|
+
pyrogram/raw/types/input_wall_paper_no_file.py,sha256=tOfwL0w35PgcUH3muLj9kSpN3gNDhDuiN1YB9mMDYrA,2205
|
|
2099
|
+
pyrogram/raw/types/input_wall_paper_slug.py,sha256=BU4IThdz8XgWp0w9BbETF8wsFBr4DdyQsxR7Rid_LIA,2210
|
|
2100
|
+
pyrogram/raw/types/input_web_document.py,sha256=Mx7CbbzMupH6M6PW0PoT7ryTbCzoXm1XjHpahGEMQsY,3002
|
|
2101
|
+
pyrogram/raw/types/input_web_file_audio_album_thumb_location.py,sha256=9sL9IIlY3-tjsAxPHpJBq6s1bAW0zlUD-ceCjMalwfU,3632
|
|
2102
|
+
pyrogram/raw/types/input_web_file_geo_point_location.py,sha256=TMWtVGX6N_qvsmbF2L9cgpQEl3yyppFkI86xsll9pVI,3394
|
|
2103
|
+
pyrogram/raw/types/input_web_file_location.py,sha256=psF_3rihWwPIJsT_T39Xn8ge1-O3YMSdUhObnsDZokk,2480
|
|
2104
|
+
pyrogram/raw/types/invoice.py,sha256=WiC3NY2-kAo44RMSZS3m18IC_tGiZEzbgnT-WcZ6jHM,7544
|
|
2105
|
+
pyrogram/raw/types/ip_port.py,sha256=9TSJmGj3mDZompWsznoPCLTy2KoqwzhPQV1gzgd50zA,2355
|
|
2106
|
+
pyrogram/raw/types/ip_port_secret.py,sha256=SKR4cUxCbMdwpUBW3Ygu39UD87u8GQ6z7DLMG_3YE1E,2595
|
|
2107
|
+
pyrogram/raw/types/json_array.py,sha256=p_lGRGPTOZTVVaB2A5VW8T9gLCLY0zvBn2TpFwRR2ko,2261
|
|
2108
|
+
pyrogram/raw/types/json_bool.py,sha256=M7zjmXznp3-UbHPEtO96__PMcmShg1vDYNzkCT3D-S8,2170
|
|
2109
|
+
pyrogram/raw/types/json_null.py,sha256=uHJiLzFg8yH_9KX9uarim-PuiRLqCVrA_EUC2A-E9Io,2018
|
|
2110
|
+
pyrogram/raw/types/json_number.py,sha256=rDegw_qkrrYKmH__Bz0lv0zyyjrJ7SqwN0b4vtx_840,2197
|
|
2111
|
+
pyrogram/raw/types/json_object.py,sha256=nGx6t-R9BBYe8oDJCrxHJOEGvPsKazXVcx8WV4A64NA,2289
|
|
2112
|
+
pyrogram/raw/types/json_object_value.py,sha256=eYe4kiCcu-6nwl027LAoqDu3cjC9mcItJPKdCAA_yFQ,2457
|
|
2113
|
+
pyrogram/raw/types/json_string.py,sha256=SMaOrvv_K_qyh9vCqk-7ZzMLqJKzav6qqqPu4nzGxzw,2182
|
|
2114
|
+
pyrogram/raw/types/keyboard_button.py,sha256=yvTvA-ZVPpHPZ5CE5jH8hnZUIK3kHl3ejscGUWoYOLg,2194
|
|
2115
|
+
pyrogram/raw/types/keyboard_button_buy.py,sha256=aoCBVGOdyCCHu3EcLe6ejpM9r2__s0zKFRGhfvI9Lf4,2206
|
|
2116
|
+
pyrogram/raw/types/keyboard_button_callback.py,sha256=8wbiIhRK8XBjpkdvZcRHxzJyW7IpfqG-8zWzdKmvhdc,2834
|
|
2117
|
+
pyrogram/raw/types/keyboard_button_copy.py,sha256=cUhQO06xd69G7ADqfV4QW3o-spJgKMWEDYo9w41j1pw,2452
|
|
2118
|
+
pyrogram/raw/types/keyboard_button_game.py,sha256=TlDauaGVVmE944UmCuCl1yTDEgJRhGQQsOVsh__aDp8,2210
|
|
2119
|
+
pyrogram/raw/types/keyboard_button_request_geo_location.py,sha256=z0mAM-2lQjyjnWFJ7AIng_mooVmKKr2PYs7eczZ-oow,2266
|
|
2120
|
+
pyrogram/raw/types/keyboard_button_request_peer.py,sha256=T0TMs08LDyYFrNg93pVaJGgHlZci9mCXNErzOaol5sU,3080
|
|
2121
|
+
pyrogram/raw/types/keyboard_button_request_phone.py,sha256=B7Rm6_6rmet0mEYipoqawXGpeMBZl5jBEBX6AlE1HL0,2242
|
|
2122
|
+
pyrogram/raw/types/keyboard_button_request_poll.py,sha256=wx7tegN0YTpRlNMJSikn3P_rimh2RBkcJhjNynQ7uG4,2633
|
|
2123
|
+
pyrogram/raw/types/keyboard_button_row.py,sha256=rxvkH4n2rbRQU38623x1D7dl5MSCRXEsI_GjDQtHCVw,2339
|
|
2124
|
+
pyrogram/raw/types/keyboard_button_simple_web_view.py,sha256=Poo9dVxrB1b9TXpnqgf_bcVp0YWezlCvr_hdXKMwLWE,2434
|
|
2125
|
+
pyrogram/raw/types/keyboard_button_switch_inline.py,sha256=SiGOsSmagueW6DIf9f1_BVcju-l_-KHoQKndPOfw81o,3323
|
|
2126
|
+
pyrogram/raw/types/keyboard_button_url.py,sha256=nVQ4LriPXJMDzKlQHkZDpB0FRBsZgB-qG6ipMu-MYPI,2394
|
|
2127
|
+
pyrogram/raw/types/keyboard_button_url_auth.py,sha256=0-EjvNArBjZ1G-pRDH6rCjQzUiG4QBNT1hakvlwF92U,3097
|
|
2128
|
+
pyrogram/raw/types/keyboard_button_user_profile.py,sha256=8cqCfQwRuLFXTj9BqQ3qLaZoumaGrvJ-YHc5jTy_NjI,2467
|
|
2129
|
+
pyrogram/raw/types/keyboard_button_web_view.py,sha256=hBNf2CUHAmRnzHh3VD5gqydmL1p4RMKhAqxpkN8QHBc,2410
|
|
2130
|
+
pyrogram/raw/types/labeled_price.py,sha256=6bKi9WBbMOlCWpdabUcckDYpOwamMwKZ3c6Hu03ifIQ,2413
|
|
2131
|
+
pyrogram/raw/types/lang_pack_difference.py,sha256=qYf73lIrlU8L0JjCxbhBHS0WPIvVQv6Gvl-kwxCnG_Y,3333
|
|
2132
|
+
pyrogram/raw/types/lang_pack_language.py,sha256=8ffqxOtgquaEdAe35SiQop6Tm5bLuEDHex3kznl50No,5381
|
|
2133
|
+
pyrogram/raw/types/lang_pack_string.py,sha256=CoqR5OT9Ntn978dkYcmndDUMpQm19MoIayy1UBtYHMU,2603
|
|
2134
|
+
pyrogram/raw/types/lang_pack_string_deleted.py,sha256=Zgead2OROqKGPP7Oy454fADle3SBgtQWONTp6RUGgSs,2425
|
|
2135
|
+
pyrogram/raw/types/lang_pack_string_pluralized.py,sha256=z1VADceS6LzcjVB_62Gmi1UYgEE0UAz_V4Sx3MWOIW0,4801
|
|
2136
|
+
pyrogram/raw/types/mask_coords.py,sha256=N5VApdH1zZP3ogqLYNpEOxOXjgSTQ4pVgeoYYIpYeoM,2731
|
|
2137
|
+
pyrogram/raw/types/media_area_channel_post.py,sha256=q_45mxYOiay-5Mmy4pvWAdDMxYXkj4MQvPiRwXihkjQ,2854
|
|
2138
|
+
pyrogram/raw/types/media_area_coordinates.py,sha256=cN8RKg3tjUeOpj8eItb-FaqsgMQY2m2PliHpLVo21tE,3451
|
|
2139
|
+
pyrogram/raw/types/media_area_geo_point.py,sha256=3Q-PtWuqC_dJjeN3QWY1_KeOgVgf0YJ0dPXlWHLbvzA,3131
|
|
2140
|
+
pyrogram/raw/types/media_area_star_gift.py,sha256=bmPD5EggHTbHils4yo3sUax8xrMMyBMOTvxnU-n8hMg,2566
|
|
2141
|
+
pyrogram/raw/types/media_area_suggested_reaction.py,sha256=XfQZR9CSSgZFEpvt7FkODoCP5PeIpO8KslJ0PrnVoT0,3261
|
|
2142
|
+
pyrogram/raw/types/media_area_url.py,sha256=BxIkBNa4ve6R-ZFWlw3_OLLstsfeLT05ZxM2y5UKIhA,2537
|
|
2143
|
+
pyrogram/raw/types/media_area_venue.py,sha256=nwUZiuo12b--gGlonHnYcXay6L8ZPxdaN0aixQBE5XQ,3749
|
|
2144
|
+
pyrogram/raw/types/media_area_weather.py,sha256=l3YTaFPbJcHzhKopQVUooNEloXRq8l1a96vEh8UGbtE,3072
|
|
2145
|
+
pyrogram/raw/types/message.py,sha256=GI6ltFzS5jblRS7vQrSQXdYNeMP2B1k3hUks9MtHDhA,17702
|
|
2146
|
+
pyrogram/raw/types/message_action_boost_apply.py,sha256=vajBSMyQeuVRID1rQ_jLocN-mFHfB2eEChhRwALSogM,2249
|
|
2147
|
+
pyrogram/raw/types/message_action_bot_allowed.py,sha256=jfPQk1XhPLAIYHTTT9TX6DrcbF94H0m-V4HMe3F6vMw,3470
|
|
2148
|
+
pyrogram/raw/types/message_action_channel_create.py,sha256=5ch1ejiqotP7oOYojVuv4V7siQSTwWTRz0WWwN4i0S0,2250
|
|
2149
|
+
pyrogram/raw/types/message_action_channel_migrate_from.py,sha256=vFaXvvhLpq9lWhlz3xzHcifoWdWGRD8eQyng0Nw2HOI,2499
|
|
2150
|
+
pyrogram/raw/types/message_action_chat_add_user.py,sha256=B3MHRjNbmsvq5bCwa7gNxaX4igh_SAVkS64zJKxweYU,2287
|
|
2151
|
+
pyrogram/raw/types/message_action_chat_create.py,sha256=4ZKsP_3MaDkEaROpJDplO3mfhSeNnv-4aa4YRJvVDWU,2489
|
|
2152
|
+
pyrogram/raw/types/message_action_chat_delete_photo.py,sha256=7efYYcJzaIuVIu5C3Jk3S-epjREb_bMEeessac2LBaI,2102
|
|
2153
|
+
pyrogram/raw/types/message_action_chat_delete_user.py,sha256=8Z7V9lFJLpzgOVu1n3BH3H2pQ88psQDLUgnQ8IBrYSc,2277
|
|
2154
|
+
pyrogram/raw/types/message_action_chat_edit_photo.py,sha256=S1kc-Sj5nnIOf4VROW56b4uSxz5kN7wDMnq_R-bk1-0,2295
|
|
2155
|
+
pyrogram/raw/types/message_action_chat_edit_title.py,sha256=cUyrm4aE1jaJJgoc81GWkPC_69vqXWit3r9XTkwQr20,2250
|
|
2156
|
+
pyrogram/raw/types/message_action_chat_joined_by_link.py,sha256=jnKZG0FurE_FRudIpMhjaVdaIJH0_dx0IZ1rGyNjmCc,2310
|
|
2157
|
+
pyrogram/raw/types/message_action_chat_joined_by_request.py,sha256=HJxxWU7XavP6Ifji-bEW_fRYyh2xRkPWMOK2_uiLMKI,2118
|
|
2158
|
+
pyrogram/raw/types/message_action_chat_migrate_to.py,sha256=dHGDh64QCrCbXkAzetp3LT5dVw-3ne6mx04DupG57Wk,2300
|
|
2159
|
+
pyrogram/raw/types/message_action_contact_sign_up.py,sha256=HvRbjPrAm17kE2qQBtF1jWZxZ1k4fURDWeJo0tqG6JI,2094
|
|
2160
|
+
pyrogram/raw/types/message_action_custom_action.py,sha256=rrIvJDaTyjZ_jbp8nqWnD3prZZwIb11HMmWVyecm2Vg,2264
|
|
2161
|
+
pyrogram/raw/types/message_action_empty.py,sha256=714icw3CQmkKf9_GHEC03yv9Vl8DW8_YCMK1SlLVr0k,2062
|
|
2162
|
+
pyrogram/raw/types/message_action_game_score.py,sha256=9p3EQh4llUAyuO9s3IS9ukUw5f1BM937SLnY7AbOCwg,2465
|
|
2163
|
+
pyrogram/raw/types/message_action_geo_proximity_reached.py,sha256=ylPRQqmA0mRplRelVpoSPLz9-5rViFuc4ywfDTmbw24,2815
|
|
2164
|
+
pyrogram/raw/types/message_action_gift_code.py,sha256=heOa1PFAZ4rTu0WBB9wMByupnSNX4kkO8U5aQBYaXGQ,5731
|
|
2165
|
+
pyrogram/raw/types/message_action_gift_premium.py,sha256=dmZZOT_yV7YOgwEB6-YO3PDR2VX3u7Mrv8iq_7L2lL0,4156
|
|
2166
|
+
pyrogram/raw/types/message_action_gift_stars.py,sha256=2a5seICsCGcdD-shSz19zka37ytmdNR0XAljCWf3NE4,4130
|
|
2167
|
+
pyrogram/raw/types/message_action_giveaway_launch.py,sha256=W-_BGRMDtnpXZ6k-JXFhzrwJdP2rkXnHiz_hvRTOEDo,2463
|
|
2168
|
+
pyrogram/raw/types/message_action_giveaway_results.py,sha256=Dj8xkdvCHXI5jVBWhMF4OFiEMIIilkyHSrX181GU9-8,2932
|
|
2169
|
+
pyrogram/raw/types/message_action_group_call.py,sha256=6c1IGBOIW4QN8D5ir__LmgmhsJOeQLsr8bTu0Q5knJw,2751
|
|
2170
|
+
pyrogram/raw/types/message_action_group_call_scheduled.py,sha256=xEqGfZiuheiY0-3yXrL3AETsc-i_XBbma6GmG0cdaS0,2622
|
|
2171
|
+
pyrogram/raw/types/message_action_history_clear.py,sha256=pKbNXjn4ob0e16cL-rGCcLySwB2HcLABX4vvXVIui0g,2090
|
|
2172
|
+
pyrogram/raw/types/message_action_invite_to_group_call.py,sha256=UnV0Ws6My0RuOWVnBlW0vMP-VVhK14BUOuNGoZBz7IA,2589
|
|
2173
|
+
pyrogram/raw/types/message_action_payment_refunded.py,sha256=NStEbrYqujH8gITGVWH7PBVWbLoo1anDJo36_KbV1rw,3522
|
|
2174
|
+
pyrogram/raw/types/message_action_payment_sent.py,sha256=jLGBItzwD4n9PCrJJ_DZSFyIKBOyeAu_bUvZQQjxkT0,4265
|
|
2175
|
+
pyrogram/raw/types/message_action_payment_sent_me.py,sha256=bxvYN-CEH4kLuP3H44NOHAuaXEe53W5ZA0bQLbghl6Y,5313
|
|
2176
|
+
pyrogram/raw/types/message_action_phone_call.py,sha256=_p9Yjfs85jhiwzVd1AU0ANQVYcvRS35h6C3uh_M_U34,3444
|
|
2177
|
+
pyrogram/raw/types/message_action_pin_message.py,sha256=Lb1FH4ahoF-rHvEWqtupMsv3I5RIcjp2C6uppfop1BU,2082
|
|
2178
|
+
pyrogram/raw/types/message_action_prize_stars.py,sha256=VKa3joiWz8JSw8mFkbHJupuppKhc51I4J9w3J4yliKw,3458
|
|
2179
|
+
pyrogram/raw/types/message_action_requested_peer.py,sha256=vfjXmMNZIu9BuR8t41DO1El50dN1skrMtCN20Ke5968,2557
|
|
2180
|
+
pyrogram/raw/types/message_action_requested_peer_sent_me.py,sha256=J9BBFsbHt5o5h3DhDFe30PMaOHtfYSRJYp7crvtZTEw,2617
|
|
2181
|
+
pyrogram/raw/types/message_action_screenshot_taken.py,sha256=po1M_9EskWpviNmBGY23yP9x6b6kuiu8DM7hWlRC70k,2102
|
|
2182
|
+
pyrogram/raw/types/message_action_secure_values_sent.py,sha256=gs-4ehg93Q-ybJwNS4nhotY_p0f56ObpBKHn2hX19rk,2369
|
|
2183
|
+
pyrogram/raw/types/message_action_secure_values_sent_me.py,sha256=dcjC6r7GoMGypORy9oixIHvbWQY2bFgck7PSWrkcqzM,2759
|
|
2184
|
+
pyrogram/raw/types/message_action_set_chat_theme.py,sha256=eU5bRs9-HL_YEQ8Qu-15sd5jddWRYfndETu-EIEe1O0,2273
|
|
2185
|
+
pyrogram/raw/types/message_action_set_chat_wall_paper.py,sha256=v2wavELxYrgdzXnnI-ZFbEKA66GExM03E7eEKEvxS3g,2934
|
|
2186
|
+
pyrogram/raw/types/message_action_set_messages_ttl.py,sha256=cEabtBPB5XGWlaabydOfa1m0VQVK_raReLqbkcxgC78,2812
|
|
2187
|
+
pyrogram/raw/types/message_action_star_gift.py,sha256=4_qY0u-iZ-x_pOikqNIB2CmAtwl_YON6nFLp3MKcoQ4,7135
|
|
2188
|
+
pyrogram/raw/types/message_action_star_gift_unique.py,sha256=gjsr8hMv9-h0jP5F7PfkAmbp1BvRwx0Pa4iW9vgiOTQ,5608
|
|
2189
|
+
pyrogram/raw/types/message_action_suggest_profile_photo.py,sha256=d3iXXlyXn45YUOPRk2KutaGXvwbdwdwwH9VKAV4ABd4,2319
|
|
2190
|
+
pyrogram/raw/types/message_action_topic_create.py,sha256=CrbnJRjbbay9gdkA7T2QYeBb9nTpBNR5DR90BSpDUHs,2996
|
|
2191
|
+
pyrogram/raw/types/message_action_topic_edit.py,sha256=VZfjn2voO8C2_ToSXk786FvNQTqaqhb1CnaUxWaFTpo,3634
|
|
2192
|
+
pyrogram/raw/types/message_action_web_view_data_sent.py,sha256=Rwvqdpj5V7-V7kZ3oXCeC7SzCEzabf2FvEqAbauj19M,2249
|
|
2193
|
+
pyrogram/raw/types/message_action_web_view_data_sent_me.py,sha256=7mW_pFe_8IjPvBJWg0H7boxIMHTIzoLb7OtcsM-nreM,2454
|
|
2194
|
+
pyrogram/raw/types/message_empty.py,sha256=eOpOiJ22Mres2Bb8JqVkicSt1kVIuhIVgLnUekX1QM8,2636
|
|
2195
|
+
pyrogram/raw/types/message_entity_bank_card.py,sha256=RkuAumgEAQL-IV-YjzgLvZGVeza61MXSQzZjAObI0yA,2458
|
|
2196
|
+
pyrogram/raw/types/message_entity_blockquote.py,sha256=evLYcQJL7GTn-4d-ZpYKkK91PQHo3VHSS0PlH4TU_cY,2804
|
|
2197
|
+
pyrogram/raw/types/message_entity_bold.py,sha256=Ismz1wofDghGB9ZfW3yeGk07Ql6tPc88bof_NwwWKpA,2442
|
|
2198
|
+
pyrogram/raw/types/message_entity_bot_command.py,sha256=-yBgllf7l8o6koSEFzm_kFWuOrPN_nFTADfIlKoCZow,2466
|
|
2199
|
+
pyrogram/raw/types/message_entity_cashtag.py,sha256=4jcNS8U6N2kOZstapGH_jlr8CsgaD1Y5QeSCDVAhX_M,2454
|
|
2200
|
+
pyrogram/raw/types/message_entity_code.py,sha256=YYLiM-rAXI4Z1YuChGzY5sH42BbMOxr3HREC7MNSHoM,2442
|
|
2201
|
+
pyrogram/raw/types/message_entity_custom_emoji.py,sha256=c180lNx3oZz3jBWNKnMgWPi4fKqh1RkaOsJ28Ji9ysI,2735
|
|
2202
|
+
pyrogram/raw/types/message_entity_email.py,sha256=I9oTwDcKSmJWBzJdRXS2bS7WAdG104V_kdTKRzuRcdw,2446
|
|
2203
|
+
pyrogram/raw/types/message_entity_hashtag.py,sha256=p-71DKr15Q20HpqKzm5tAbbag5uqFVBy0LMRV7kRF8s,2454
|
|
2204
|
+
pyrogram/raw/types/message_entity_italic.py,sha256=qFGFMhj8neq0oKy9RzRfWjzBdDRswrcpAtqSR4fQF_M,2450
|
|
2205
|
+
pyrogram/raw/types/message_entity_mention.py,sha256=mJk3lDeBgDzlx35FHPv7AGLhFhSgGJV7p1lbD2rFdb4,2454
|
|
2206
|
+
pyrogram/raw/types/message_entity_mention_name.py,sha256=R_ST6xsWkR2s8EpBH0_o3R4P_BKcGzOzHL0xU_2mWCQ,2699
|
|
2207
|
+
pyrogram/raw/types/message_entity_phone.py,sha256=iUc3jpqkhiiYMV1HrIzFCdeygoAcgZ79X2FD52LntNo,2446
|
|
2208
|
+
pyrogram/raw/types/message_entity_pre.py,sha256=0S2MHLAUlFlVxXXeW3msQZUE-zGeWSoKiAEWWeFWh-M,2671
|
|
2209
|
+
pyrogram/raw/types/message_entity_spoiler.py,sha256=e34EGT_u28iosrc-E3x_7ik8Ambxwi4ul3dMCIyuU1c,2454
|
|
2210
|
+
pyrogram/raw/types/message_entity_strike.py,sha256=7zF6k3bgw9f2x8WqIuaVGbjF46icQMOFRXFny9HK6TE,2450
|
|
2211
|
+
pyrogram/raw/types/message_entity_text_url.py,sha256=LXTl_g-K1Om9ZfacViSIF5BDEMHjw5jZUO5cHFpmcDc,2642
|
|
2212
|
+
pyrogram/raw/types/message_entity_underline.py,sha256=Q_YLIbWNLy1oCZVHsB4xXaasfA0TMjvl2g3RztN7JzA,2462
|
|
2213
|
+
pyrogram/raw/types/message_entity_unknown.py,sha256=h1VgeyJNROrNbsRQJts-v7Kvz81n_dD6oAXo7F9uHVE,2454
|
|
2214
|
+
pyrogram/raw/types/message_entity_url.py,sha256=XxJ8u3nv2r1GepH8XYzDTuKU47jjwz42hdQ8EkP5qZI,2438
|
|
2215
|
+
pyrogram/raw/types/message_extended_media.py,sha256=I1aARbDTOBTvS26AB4KUElO8KhUqTtfZl0ZST0BeLQM,2306
|
|
2216
|
+
pyrogram/raw/types/message_extended_media_preview.py,sha256=nbKtC1Q88xIUMNYAqVrW8Hjxqoey9oYdKo9zZtmA5GY,3632
|
|
2217
|
+
pyrogram/raw/types/message_fwd_header.py,sha256=8Mx86L462tiqaVuSli0gwrJQj8SHXF48I_fVnlFOT7M,7328
|
|
2218
|
+
pyrogram/raw/types/message_media_contact.py,sha256=JxKq2DEGpoPxqNr6ocLqM5ZKe8BD_9KCtBm0hrtds9M,3468
|
|
2219
|
+
pyrogram/raw/types/message_media_dice.py,sha256=ucLeyuDsfDswjMPnfKSEiuT0uoV-WH6BL94yMY2FJWw,2700
|
|
2220
|
+
pyrogram/raw/types/message_media_document.py,sha256=Gek_GYVlq6Viruh6YNPeO-m6JaNARryKP-kZ9va5470,6013
|
|
2221
|
+
pyrogram/raw/types/message_media_empty.py,sha256=zKQkDLtf5nTi0ytjtA1_A-VcUbuQ9YMoyyVlvuayV8o,2313
|
|
2222
|
+
pyrogram/raw/types/message_media_game.py,sha256=Zm_uJwWgTMkQiGTjTELo_JdGoTDcrMaY5CIitYO2-Xw,2497
|
|
2223
|
+
pyrogram/raw/types/message_media_geo.py,sha256=m-d25JhlOYOIuB30C9B1B-7OimOOqnn68SwnEq9e7n0,2500
|
|
2224
|
+
pyrogram/raw/types/message_media_geo_live.py,sha256=fVGfhkEJ7KWAIur9LGtpRjgPfASwMCzmYPofCy_VJkI,3796
|
|
2225
|
+
pyrogram/raw/types/message_media_giveaway.py,sha256=zxLoXkFCgZRNyNjKbT3A-OZfRjaa_hZ03xnsbfMk634,5596
|
|
2226
|
+
pyrogram/raw/types/message_media_giveaway_results.py,sha256=_8B6ZHOGN5Zwf_DRYmRXGK3auRY1k_1eDEmbI0pXYQs,6449
|
|
2227
|
+
pyrogram/raw/types/message_media_invoice.py,sha256=wDSL6ASIDOJrpGqlDyWQ_0JbdNauf6eJDXUZ5YHvGiQ,5704
|
|
2228
|
+
pyrogram/raw/types/message_media_paid_media.py,sha256=YEXvV8bRGQn3B_80KqjD8CkPWbPoAt6EzkA9ap98tYs,2967
|
|
2229
|
+
pyrogram/raw/types/message_media_photo.py,sha256=3pn-9Uc1m0pdsZyeCuJDPP4ITsSLa2cT_kia5Icvd4Y,3422
|
|
2230
|
+
pyrogram/raw/types/message_media_poll.py,sha256=DDP1KUw82Y_HLSLlUcufYg1V6Mv0BAofYNi2OtPDFhE,2790
|
|
2231
|
+
pyrogram/raw/types/message_media_story.py,sha256=WW_R-KC-pX-jvN9B8TryK_CNYjTg9G-9eMcB89IDeOg,3462
|
|
2232
|
+
pyrogram/raw/types/message_media_unsupported.py,sha256=047UHQh8UmoFuyVeEC_UhDy0E7_Ad5h61-GwHYzq-Ec,2337
|
|
2233
|
+
pyrogram/raw/types/message_media_venue.py,sha256=-0K61jIcb9AeGYnXI8m6kbFz1sfFmv0BFtDQrfjcAo8,3655
|
|
2234
|
+
pyrogram/raw/types/message_media_web_page.py,sha256=7qsx5H9b1mApiUwXR8zGl9poHQk56XxlN6j5DyfkKK8,3831
|
|
2235
|
+
pyrogram/raw/types/message_peer_reaction.py,sha256=gPgIWmL-URtMOBs5YGWxlgBoeSxwneqlwN7QBUGIaa4,3552
|
|
2236
|
+
pyrogram/raw/types/message_peer_vote.py,sha256=JqMTSOeNQqX2PbpjpUs6pPvPHuAe_PrrN6xvkqmRCpc,2655
|
|
2237
|
+
pyrogram/raw/types/message_peer_vote_input_option.py,sha256=zIHMHMGFQRYUJbdwXFj5FMBOge3hLPS6ZCG2DZeK3Z0,2483
|
|
2238
|
+
pyrogram/raw/types/message_peer_vote_multiple.py,sha256=AD0JkwxrET15zK0jMuD-Z5GOS4cY46h5ue-kpB0-eUc,2736
|
|
2239
|
+
pyrogram/raw/types/message_range.py,sha256=rclYWOX68EnBQRLuAhzap5iZZUQ_Rhg_GMCw2IMBlp8,2635
|
|
2240
|
+
pyrogram/raw/types/message_reactions.py,sha256=zJvtlRcJ2deplJSSCJ-4guIHccZQ02RWgISdQZNHTO4,4435
|
|
2241
|
+
pyrogram/raw/types/message_reactor.py,sha256=Xm-KrJ8D0sGbfXXxBzEBdveoJJEFQnznd5uYRhRUK34,3434
|
|
2242
|
+
pyrogram/raw/types/message_replies.py,sha256=2DdVFvDyrYbskNwYJnp1fm4ACQWf8O_QcZhQwcX7GYc,4576
|
|
2243
|
+
pyrogram/raw/types/message_reply_header.py,sha256=gwX9b7K4ud_EyKER1Ud3KsyY95zTG0LQZe_jaNALBTQ,6904
|
|
2244
|
+
pyrogram/raw/types/message_reply_story_header.py,sha256=oD8ERZRa9fnb2f7VMnhKU27XVpC8y7EJEXm7hAYH9k0,2508
|
|
2245
|
+
pyrogram/raw/types/message_report_option.py,sha256=if3US4NSeXJf8fGzICxZR88sAG9AjNxRfavDFMgDR5Q,2435
|
|
2246
|
+
pyrogram/raw/types/message_service.py,sha256=JmZnU65nIEXAmTPJgQA7ggk251DqhVJZiF4lb_GyoKY,6852
|
|
2247
|
+
pyrogram/raw/types/message_views.py,sha256=Fx_nXZs9V66JI3BUbmr3WadWyBD17XBKo79OHtJphdc,3263
|
|
2248
|
+
pyrogram/raw/types/missing_invitee.py,sha256=enGM9sMWFUBsLBMbrg8Q0cIChbVh83tYTRYANm8exe8,3134
|
|
2249
|
+
pyrogram/raw/types/msg_detailed_info.py,sha256=SpkPo7cdAoXA9UkTviVkkoY7UUhtVIQHq5pc-2YSAFA,2930
|
|
2250
|
+
pyrogram/raw/types/msg_new_detailed_info.py,sha256=O-zez_WSpkiZgyDFjrga-yNeY1K4MMDHiB3yjsqt-Y0,2722
|
|
2251
|
+
pyrogram/raw/types/msg_resend_ans_req.py,sha256=_8d4S8CoTsqiQeUBDmtMx6xm2yBXffyBDzROBftthfY,2268
|
|
2252
|
+
pyrogram/raw/types/msg_resend_req.py,sha256=yKN8aJ_lc3WxfNVqC1xtS_Nx817CzmwNEt1yuqfUOuY,2256
|
|
2253
|
+
pyrogram/raw/types/msgs_ack.py,sha256=ZHK27PdrucOBa19RnjoUWQytZat05pjpFZ0yJxVYBzk,2231
|
|
2254
|
+
pyrogram/raw/types/msgs_all_info.py,sha256=MvSKtf0duK1B3obojUGAWjJESxOVSFTBXoi55oMwH1Q,2448
|
|
2255
|
+
pyrogram/raw/types/msgs_state_info.py,sha256=NR5hO1vJbUJK_VcqYii5ztUJc1Uf5nZREPKa9iJ79zM,2445
|
|
2256
|
+
pyrogram/raw/types/msgs_state_req.py,sha256=unW-uRkXQgAHH7i3NH5NeMtd1ss31lm5oVq_5YUTYV8,2256
|
|
2257
|
+
pyrogram/raw/types/my_boost.py,sha256=B1I2NUxdJYl-VZzSeEfFckdB3kJXQK4m5S-Ng00BuDQ,3545
|
|
2258
|
+
pyrogram/raw/types/nearest_dc.py,sha256=DeJHQahvVQkwRSQhZDPthcHvm8fr6PTVuS9fMn3t7j8,2885
|
|
2259
|
+
pyrogram/raw/types/new_session_created.py,sha256=69hC8AcZzo7Q4JDiDyi63RdV4rUgpJzDz7_CdDcvDFE,2791
|
|
2260
|
+
pyrogram/raw/types/notification_sound_default.py,sha256=UqrZxb1V5-p4dUs4h2HYnTxVzyGZh2YXE8PMMtVX8a8,2090
|
|
2261
|
+
pyrogram/raw/types/notification_sound_local.py,sha256=Vafw_qIiRtCRLRqJBFQT226k_APaz5bacf3P9iOpjHo,2435
|
|
2262
|
+
pyrogram/raw/types/notification_sound_none.py,sha256=4cAsrpQ-yF7fqiS7phh4mdx8jHhiUknK1ay5eY4wEyQ,2078
|
|
2263
|
+
pyrogram/raw/types/notification_sound_ringtone.py,sha256=srtAgu7tEacOYdA5JPVkJXHIjqPmaX5kA_O2WAUMTXs,2228
|
|
2264
|
+
pyrogram/raw/types/notify_broadcasts.py,sha256=siT4as2avfmw0Nvm7AAhDkZAoGNH7K9EL5Tt9rLSJWo,2051
|
|
2265
|
+
pyrogram/raw/types/notify_chats.py,sha256=D8giUN06M3x5wwReXrpLL9p9mszO8kzv1544KzXTG1s,2031
|
|
2266
|
+
pyrogram/raw/types/notify_forum_topic.py,sha256=k-l-7HSvQO4tnT06m6ldXC0WRBsePA_zutu8imWIOtY,2492
|
|
2267
|
+
pyrogram/raw/types/notify_peer.py,sha256=lQw-FnVRsy5z-4TzHQpMjIQShUrUv4UUlE9EQe_yd-I,2215
|
|
2268
|
+
pyrogram/raw/types/notify_users.py,sha256=VwFPOUtLYBZw_iAaRBVMXvJL_YaLBB4g5w1c3Xi7-40,2031
|
|
2269
|
+
pyrogram/raw/types/outbox_read_date.py,sha256=8uSsvMnXHcZUlgOowXXkalblzhRU9KrjQ4QamcnBP_M,2415
|
|
2270
|
+
pyrogram/raw/types/page.py,sha256=U8JSveB8XuB1y5juwE03gg8eff8QdOZSMQihNHLW6mg,4159
|
|
2271
|
+
pyrogram/raw/types/page_block_anchor.py,sha256=bth-kL5bqJb_XMQ4lIZLNCiwKhpML0t_ar94sI_zLpM,2193
|
|
2272
|
+
pyrogram/raw/types/page_block_audio.py,sha256=YGzhl6Rz0MYKpf1W5zyOb3KLOycviemAXL-ZbjAS-Mg,2523
|
|
2273
|
+
pyrogram/raw/types/page_block_author_date.py,sha256=poytunb9XH5oExBBExAmMUbQV1RDerZaN-nqTgobUU0,2573
|
|
2274
|
+
pyrogram/raw/types/page_block_blockquote.py,sha256=R-KONj3NEpBooo2AlwtBW8hgpxYVkjiE3qr_kVlCFdY,2547
|
|
2275
|
+
pyrogram/raw/types/page_block_channel.py,sha256=2BOeCsClKiwbncnQT2sQYWezKoYKLBV89FPxNGf4FpU,2265
|
|
2276
|
+
pyrogram/raw/types/page_block_collage.py,sha256=zk_K_zPN3LjCIS_TiGJf5CwT2aC2xgr-agCi3FoBaL4,2582
|
|
2277
|
+
pyrogram/raw/types/page_block_cover.py,sha256=gbqGWeVzh8u0zPj19dsGDsRfoK0K8_ZKBXLwwlaAWHo,2259
|
|
2278
|
+
pyrogram/raw/types/page_block_details.py,sha256=AE1RkMdyFoyhcIBWQ27WHePcrKEbHe6ly0ZVK8jFgOw,2854
|
|
2279
|
+
pyrogram/raw/types/page_block_divider.py,sha256=uq1bwvanCasCPoYdM_Us6stKI6WTOrYX8S8BilmohD8,2050
|
|
2280
|
+
pyrogram/raw/types/page_block_embed.py,sha256=HSKsDHwt2xTSMV8iMDwDBM1vOvB6DK7otFxwktboM4w,4790
|
|
2281
|
+
pyrogram/raw/types/page_block_embed_post.py,sha256=n4J3OIHDuj8jB3JZg9G89Ta6IIEe4Adja69Sn8y7rvU,3758
|
|
2282
|
+
pyrogram/raw/types/page_block_footer.py,sha256=Lp1gfF7RCRe66xDhkJkuJFTg4__PYiY2FVD-GwHY7Cg,2250
|
|
2283
|
+
pyrogram/raw/types/page_block_header.py,sha256=uSk2yT9uFTlARFkSurj7FjLrYV7XeOBgC9P-dq7wwa4,2250
|
|
2284
|
+
pyrogram/raw/types/page_block_kicker.py,sha256=s1bP4km5Zv9R4YX0sfft9bZDLNEonQGgjJppTpVrRes,2250
|
|
2285
|
+
pyrogram/raw/types/page_block_list.py,sha256=t5dK1oL09zSifThhoTU80OvSFYuRKU30453NTzS4nG4,2289
|
|
2286
|
+
pyrogram/raw/types/page_block_map.py,sha256=F65GdDorLnTEN3FGX4zOIHa5ZLuR-ocbTg4d3HWNlT8,3065
|
|
2287
|
+
pyrogram/raw/types/page_block_ordered_list.py,sha256=W2bQHmHoDMjGXeEtJqJU1xLbft9aH_uioWqZHtGET1g,2345
|
|
2288
|
+
pyrogram/raw/types/page_block_paragraph.py,sha256=kdrb8_EYlgFVNRP00bHE_eGdpT9UPLl-Us_wji57ASQ,2262
|
|
2289
|
+
pyrogram/raw/types/page_block_photo.py,sha256=FZRmEBezS8mZfBe84dWUoXkKlowisrdcjPIYT-9za-g,3334
|
|
2290
|
+
pyrogram/raw/types/page_block_preformatted.py,sha256=RKpLt1dzoUuXwqI8at__lJzpOMG8toIyZKFiKz2LHLw,2507
|
|
2291
|
+
pyrogram/raw/types/page_block_pullquote.py,sha256=Xdio9BSQjqPg9sem56ppx4URutg2bMG2jv3vNC1kszQ,2543
|
|
2292
|
+
pyrogram/raw/types/page_block_related_articles.py,sha256=9TkGmIN3FdJ6ctRpMDnPOo713muhXqauicKaPuQ7G3E,2647
|
|
2293
|
+
pyrogram/raw/types/page_block_slideshow.py,sha256=UDzt954xTyTYnxhipPnUMonWqTzJ6s09J08Ln5i1eS0,2588
|
|
2294
|
+
pyrogram/raw/types/page_block_subheader.py,sha256=A5hN3W29Xso7oonvkycjV6WQe10yy5DwaDbd4yCnWL4,2262
|
|
2295
|
+
pyrogram/raw/types/page_block_subtitle.py,sha256=8j6vOXQh3uYP7HqQdtGZejcFg2lOJcole_4xkgputWM,2258
|
|
2296
|
+
pyrogram/raw/types/page_block_table.py,sha256=5Ag74J5cF4mXWHkcFd0S0ixakXf6h1iokdqVR1fEUZc,3149
|
|
2297
|
+
pyrogram/raw/types/page_block_title.py,sha256=d96KSImHFUNYQadScdjJ5kF1ZcJQ8qNtN_W2Tubuev8,2246
|
|
2298
|
+
pyrogram/raw/types/page_block_unsupported.py,sha256=Sfxx15bbroGqknFiJ8lj95Yqf5-Zx3Mvfh5kJ3IV_ks,2066
|
|
2299
|
+
pyrogram/raw/types/page_block_video.py,sha256=92v6gxHf3JzbrBNypyBW3XSOHo_ST9ePPUaBPpBJyu4,3098
|
|
2300
|
+
pyrogram/raw/types/page_caption.py,sha256=cj8zl20okeKjEd6k-h3co72XRnuib9Krp9flBEDCMdk,2508
|
|
2301
|
+
pyrogram/raw/types/page_list_item_blocks.py,sha256=Rm2eqXVYOtFe1u8IbpsmQemfxtEbJpIU6iCJrDHBqWE,2309
|
|
2302
|
+
pyrogram/raw/types/page_list_item_text.py,sha256=hMXIFIjoyJpDF2VORPy5CQZ0Ac93ZlzpTluGH42NlwY,2257
|
|
2303
|
+
pyrogram/raw/types/page_list_ordered_item_blocks.py,sha256=X5g8N8RIo09MGfsKIruPrublD8GYmgMnnHGbVONXAu4,2532
|
|
2304
|
+
pyrogram/raw/types/page_list_ordered_item_text.py,sha256=f1CIDc1QwMAbIIGAPmOblMc6XYpROuDxUcuO9A4lpFM,2480
|
|
2305
|
+
pyrogram/raw/types/page_related_article.py,sha256=XR7GJIn3MeQGS8ra8qbk2jLyqx0OweToCIgA5GjxuQg,4539
|
|
2306
|
+
pyrogram/raw/types/page_table_cell.py,sha256=xJ_8lHP6wjkUYt208nRxIdLkZ0_0n-56oZv45AAvB8w,4767
|
|
2307
|
+
pyrogram/raw/types/page_table_row.py,sha256=eLGA6FDECfnT_F7MBrbkXaRq70lFNocwBjBSXtvt2ZM,2292
|
|
2308
|
+
pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py,sha256=o9IQ4DDVsKqXc4awE6kVVzYW-ZC32FS8pH1WYbFuCQI,2959
|
|
2309
|
+
pyrogram/raw/types/password_kdf_algo_unknown.py,sha256=dmvwcFx4Y6rWS6RZe7ZyB8hnzjSyPKKgy6K6AhoMONo,2080
|
|
2310
|
+
pyrogram/raw/types/payment_charge.py,sha256=EjhuKGYHPrBfGYDcPpk8bKCRPQQ8aWevHsY5Qah-a7g,2494
|
|
2311
|
+
pyrogram/raw/types/payment_form_method.py,sha256=mnaOeRHXANrQvHystBPOrz6eD0QQH2tTAN1ClKiC7cA,2406
|
|
2312
|
+
pyrogram/raw/types/payment_requested_info.py,sha256=Gtq-KlvEx8Q-CPENKHBTVlYdEFwsFf5pkdKUPZoJaCA,3705
|
|
2313
|
+
pyrogram/raw/types/payment_saved_credentials_card.py,sha256=HuOlXXws48fkvWnrcOkrdbdM1ZQXFDgCCv6bd-lLXpE,2443
|
|
2314
|
+
pyrogram/raw/types/peer_blocked.py,sha256=ofitEBLPGHYRZjNrWk3PCpScComN_j3Fz-f_9aLbUV4,2446
|
|
2315
|
+
pyrogram/raw/types/peer_channel.py,sha256=YZP4o7sLQ7yww5Kgh4bY7kgpRHTzXVIRDdX-GAAdq4M,2461
|
|
2316
|
+
pyrogram/raw/types/peer_chat.py,sha256=ktbfEHqQooOj_0aDN-2wJN65edBHdOVexlu2tIXCY3U,2422
|
|
2317
|
+
pyrogram/raw/types/peer_color.py,sha256=WlxkE6uMCLaAvIbotfGqeBbmaoFd5NK6y87LnCMpVYM,2906
|
|
2318
|
+
pyrogram/raw/types/peer_located.py,sha256=choaC-GPSVRWCEDHa85fO9tzoqk7Wr0TeAsKy8yFcJs,2681
|
|
2319
|
+
pyrogram/raw/types/peer_notify_settings.py,sha256=DzSZ2v8A6HgDOCP876WE0DEwE5LRiq1ED3Wsor39cXE,7878
|
|
2320
|
+
pyrogram/raw/types/peer_self_located.py,sha256=g1cS0G86MoDixlcHxO9kbIJQAq0O6Q_NOLyA5tW4YHM,2224
|
|
2321
|
+
pyrogram/raw/types/peer_settings.py,sha256=D5_3CYEOJ4csEAIzO0AAQDFl_kpCF-gI8I4t_CVqn_k,8373
|
|
2322
|
+
pyrogram/raw/types/peer_stories.py,sha256=w2Eol24VjK0mnddtTRf_1Vmzi_V1jPVjL1LrTNZCeWU,3005
|
|
2323
|
+
pyrogram/raw/types/peer_user.py,sha256=aFnTb7sK-4cuCQzpSFJx7hqETcIn8jb1ZrTedXwbEP0,2422
|
|
2324
|
+
pyrogram/raw/types/phone_call.py,sha256=6JRKEN7RCSmNhPInCQj0Reg--4y1vR9Ks9-M-6jUvzs,6348
|
|
2325
|
+
pyrogram/raw/types/phone_call_accepted.py,sha256=EaqJFFUOM9LfuhWrW9lV0jyXMi6aw0ripF6LpYdA0AU,4553
|
|
2326
|
+
pyrogram/raw/types/phone_call_discard_reason_allow_group_call.py,sha256=72_ZfIokDDy_LOOPLs6fDHRSdrG4cpKy8bdWzkEKtrU,2372
|
|
2327
|
+
pyrogram/raw/types/phone_call_discard_reason_busy.py,sha256=d9Ql6Ta44oZHGMwFjWqpAR3m7e-wMk2abS6odPduofY,2103
|
|
2328
|
+
pyrogram/raw/types/phone_call_discard_reason_disconnect.py,sha256=WITau3lcCWsb1UC3ywXfFnt06xNE2pdhZUidvaXCTwk,2127
|
|
2329
|
+
pyrogram/raw/types/phone_call_discard_reason_hangup.py,sha256=C1wx10EFqri8lZdk467uWCyrR3dSREz49iccslmJ4vc,2111
|
|
2330
|
+
pyrogram/raw/types/phone_call_discard_reason_missed.py,sha256=8d98LBDubRKA7jKghqbPZhftNtELTSgO4EQXgnv1Le4,2111
|
|
2331
|
+
pyrogram/raw/types/phone_call_discarded.py,sha256=SjVVa-sNJPRobQzNuSNGA6zaLqyNDjgvI2EwQlTIZSw,4542
|
|
2332
|
+
pyrogram/raw/types/phone_call_empty.py,sha256=oIodljSF95TAi39zSYifZeeCeIdhtMcFIP53yzNYFxo,2176
|
|
2333
|
+
pyrogram/raw/types/phone_call_protocol.py,sha256=8cB01uKpidPgi8NUj9hgN-fsOu3dFkWaX9YhxBdQTLU,3492
|
|
2334
|
+
pyrogram/raw/types/phone_call_requested.py,sha256=9WFEkpNiZDqI91bV_pyJBUT7kGOMV2e_Kas3rGhTZNg,4602
|
|
2335
|
+
pyrogram/raw/types/phone_call_waiting.py,sha256=HyAyoK5mnatjfh87kpzrwVdIIQuE6Olagz33EonUFVg,4802
|
|
2336
|
+
pyrogram/raw/types/phone_connection.py,sha256=ChM01UFT1yE86FsSdQ01UJGIgnP9vw6Zge-njVJ8Mso,3279
|
|
2337
|
+
pyrogram/raw/types/phone_connection_webrtc.py,sha256=cvUM-63VH5-qB9med5rkfUQEHTd-YUtnx4wNHdXTJo8,3790
|
|
2338
|
+
pyrogram/raw/types/photo.py,sha256=J2JihnYemDROpsrK5IFwqkWuLKCUGEJ2DgwgEJEvoY4,4258
|
|
2339
|
+
pyrogram/raw/types/photo_cached_size.py,sha256=TpjiFSmD5ZQccptyJOkvWLJREbYi_k3Z_9YwMtoYays,2742
|
|
2340
|
+
pyrogram/raw/types/photo_empty.py,sha256=Jf4Ok8jBMfCvPK79XgUatwLaxNDM60cl2Zr8tkayNZI,2156
|
|
2341
|
+
pyrogram/raw/types/photo_path_size.py,sha256=5Z3Ciy90ApF40Ono-P1QRv51AJaLPtn08_t71V_sYoU,2392
|
|
2342
|
+
pyrogram/raw/types/photo_size.py,sha256=vtgUvLuZrjeT8kzhDevUbEqFVpZCc3Lyu0miMRPM04w,2712
|
|
2343
|
+
pyrogram/raw/types/photo_size_empty.py,sha256=0eVvZ3164dCLBtndlTZn0YFUkupSDQRLdDW7xzJ4Bts,2187
|
|
2344
|
+
pyrogram/raw/types/photo_size_progressive.py,sha256=jWHtTLBG9qkq1UBLh4CVW-IIPO6aXhwaEid_cFW0QWI,2805
|
|
2345
|
+
pyrogram/raw/types/photo_stripped_size.py,sha256=-P2AXuZ4_ZoByUx3eSGy2wsB1yvLWQ1abzYOcSw6oa4,2408
|
|
2346
|
+
pyrogram/raw/types/poll.py,sha256=wTj2dF9I0ZcuQe2TReajJDvgOLIgypj9F3UlKh1osls,4855
|
|
2347
|
+
pyrogram/raw/types/poll_answer.py,sha256=airedyAREmymgDgWA7yLhxM-ymA-DTwOq8NDobPAfW8,2479
|
|
2348
|
+
pyrogram/raw/types/poll_answer_voters.py,sha256=HDDL0Mp4sueCSd9v229KDtYDcGf6nmfv_ZAD60ahSTE,3024
|
|
2349
|
+
pyrogram/raw/types/poll_results.py,sha256=4Nl2JOxFL01UpTDMQNO0wAOCEN6711-AciZSZYyOXok,4696
|
|
2350
|
+
pyrogram/raw/types/pong.py,sha256=4Uhd5Rin-apx4OwxSq0p_goR3Z9IRQXpeAHAYee53Z4,2627
|
|
2351
|
+
pyrogram/raw/types/popular_contact.py,sha256=OI4qWC6_RGOYxBvEFROM6tIm6RMBJUzl-PTcToviq4k,2488
|
|
2352
|
+
pyrogram/raw/types/post_address.py,sha256=U78V_pA-OaeMB2jJzaOJdHaebcKldJ1QVeuu3X3gdnU,3434
|
|
2353
|
+
pyrogram/raw/types/post_interaction_counters_message.py,sha256=ZrAn5n1oY027wcmUrfnVbMD1N-AvPoMeumA_n29Rgtk,2974
|
|
2354
|
+
pyrogram/raw/types/post_interaction_counters_story.py,sha256=rFEbLcjX0aKndKqVZ9ob6ayoNhCE3gnkXShc7RXhJvM,2984
|
|
2355
|
+
pyrogram/raw/types/pq_inner_data.py,sha256=VTsD5FpQW86mt5_cB_UK4MNJk5gWrNS9weo0VNRNLvI,3257
|
|
2356
|
+
pyrogram/raw/types/pq_inner_data_dc.py,sha256=0ADd_rPyW1Jmp7Kj9Mp0oiPe4QILXRi4aV__6o4Gj4Q,3446
|
|
2357
|
+
pyrogram/raw/types/pq_inner_data_temp.py,sha256=b5CAACQj7wuXJjCPgy9t8tgCg7L8bmBCY_RuSB5s69M,3526
|
|
2358
|
+
pyrogram/raw/types/pq_inner_data_temp_dc.py,sha256=wSQjKSabiUpkopHjMpSPl-EToNyhTZmxAqfwkFGiklo,3715
|
|
2359
|
+
pyrogram/raw/types/premium_gift_code_option.py,sha256=Jspl6hsboomkZ4UoePJAU00B6kye9F2LLlJ2VW13_uQ,4099
|
|
2360
|
+
pyrogram/raw/types/premium_gift_option.py,sha256=ZDChmLxqG4UmbUg7E-q5r7bQcTaEDIc8xrojlgmnq7A,3404
|
|
2361
|
+
pyrogram/raw/types/premium_subscription_option.py,sha256=Et-MNASo1CIqbWo2cC5WiGUePbc59ZHqQSslH5q0_vE,4536
|
|
2362
|
+
pyrogram/raw/types/prepaid_giveaway.py,sha256=3BQjn7YQK4brib4zzdpql29r1EVi7QC2CDSISanjv5I,2837
|
|
2363
|
+
pyrogram/raw/types/prepaid_stars_giveaway.py,sha256=KbdQPBUAlw9x8EWObc12dJWfr4C1Kaz2eFlvR0JTVwg,3068
|
|
2364
|
+
pyrogram/raw/types/privacy_key_about.py,sha256=Unj-W1YJQscjQmepHAukUBwS1QWuuVEqaH5mC84RP1c,2047
|
|
2365
|
+
pyrogram/raw/types/privacy_key_added_by_phone.py,sha256=heWgaDtXvTWfJtC1jIF2t5fhulmKHPgnb2eYkadaqRc,2075
|
|
2366
|
+
pyrogram/raw/types/privacy_key_birthday.py,sha256=9uQsMPbMCJom_eITbtU_D6iUxjB2_pgDy0LQ-1I0aM4,2059
|
|
2367
|
+
pyrogram/raw/types/privacy_key_chat_invite.py,sha256=bqu-4QilVh78y1ugZ-jS8-QHPePn-sg2N7jrTTiNo90,2067
|
|
2368
|
+
pyrogram/raw/types/privacy_key_forwards.py,sha256=efFCACW7DnTi39lHAwK8nNXhhwosWgfWeB72Nc48Q9w,2059
|
|
2369
|
+
pyrogram/raw/types/privacy_key_phone_call.py,sha256=vIigOio-klHW8ZpzOlgNmTxwCE7X73HQ2Ot2qH0TnNA,2063
|
|
2370
|
+
pyrogram/raw/types/privacy_key_phone_number.py,sha256=d-CAG9SioccRyZ3tfmw9L1MsDiWgt2Z0_DChZ_GxelU,2071
|
|
2371
|
+
pyrogram/raw/types/privacy_key_phone_p2_p.py,sha256=QsADCjNGAyHjOE6DcNnLv53Dks87O8Y2fswj-oWdW74,2059
|
|
2372
|
+
pyrogram/raw/types/privacy_key_profile_photo.py,sha256=CxzPwXxKsz5qRTpyHP60DlubWDavZaH2bZd-rDO7DzY,2075
|
|
2373
|
+
pyrogram/raw/types/privacy_key_star_gifts_auto_save.py,sha256=j5pJGKhQpGcRSvvRShCOpv4wYicwhLPRf88MY01Gwio,2095
|
|
2374
|
+
pyrogram/raw/types/privacy_key_status_timestamp.py,sha256=jFd8vmPn59wwR2DQSkHK4jOu4ukoIMAo0Mo_q0FYd64,2087
|
|
2375
|
+
pyrogram/raw/types/privacy_key_voice_messages.py,sha256=wHk2-v9zZE4t5pn-gxaAkul5_r7XsyGLxDjr0y1ETcg,2077
|
|
2376
|
+
pyrogram/raw/types/privacy_value_allow_all.py,sha256=axi1bAvS7rkH63In-zURTOjfbq15Sal8qJBv4vETCvE,2068
|
|
2377
|
+
pyrogram/raw/types/privacy_value_allow_bots.py,sha256=l-Sh6nt3QrkGJsyTshJijxqUVgCup0qVTPPWLt3g2B8,2072
|
|
2378
|
+
pyrogram/raw/types/privacy_value_allow_chat_participants.py,sha256=xR_zFv_8zldUzfuJK1O9cvzPOcROliHZdRuNkUlmxSw,2321
|
|
2379
|
+
pyrogram/raw/types/privacy_value_allow_close_friends.py,sha256=4gUwkN5QZuFpObAraNImMcwgvzXdSmI9U5y_moF03rk,2104
|
|
2380
|
+
pyrogram/raw/types/privacy_value_allow_contacts.py,sha256=Ejxe_EEBH33mij9Z230eRwif2I86vRB6YKR6ifNI06Q,2088
|
|
2381
|
+
pyrogram/raw/types/privacy_value_allow_premium.py,sha256=w76OmCvDC6TPrRyJaEwQhuOTFM2kv6vb26EM67YPoIA,2084
|
|
2382
|
+
pyrogram/raw/types/privacy_value_allow_users.py,sha256=DPiwKwdeajv_gS3fanw5alrzBgiH3pBAUO-wTjarejg,2277
|
|
2383
|
+
pyrogram/raw/types/privacy_value_disallow_all.py,sha256=9MBVz_t4gIFrlp9cB28gHX9Xby2MfEQfZmzeUs_K594,2080
|
|
2384
|
+
pyrogram/raw/types/privacy_value_disallow_bots.py,sha256=uJl4dp0BQlF6UrYD7C9U_uM-RTCZKy4tvE-5zDJOtZE,2084
|
|
2385
|
+
pyrogram/raw/types/privacy_value_disallow_chat_participants.py,sha256=1d-A6lTBFL55bMUjM1sIc8iIVP4kepGLcPw7BqedLmA,2333
|
|
2386
|
+
pyrogram/raw/types/privacy_value_disallow_contacts.py,sha256=oIB-I5cIq2Rj4nHbr5E9ZUtpwl8m5O8JKzaHMUZ2I-Y,2100
|
|
2387
|
+
pyrogram/raw/types/privacy_value_disallow_users.py,sha256=PZJELMCVuOSyWisEAGd2TuabQnmYGMx06EaMXudAffA,2289
|
|
2388
|
+
pyrogram/raw/types/public_forward_message.py,sha256=cdGX00CKW-OSJhMZIs_OLqw00tWZl-Zuwt9-FpmCslU,2295
|
|
2389
|
+
pyrogram/raw/types/public_forward_story.py,sha256=bpw7_CHfxiqU2hmu7RXCnf6qA51Ai1U5wTeZNJFUQLA,2517
|
|
2390
|
+
pyrogram/raw/types/quick_reply.py,sha256=gl9MpBQBTtr65WiTqAIFPzI-FWqvbKb_QGS-Zr8xCFI,2940
|
|
2391
|
+
pyrogram/raw/types/reaction_count.py,sha256=h8yWLLjxlAqBkpr1-8W9w9iODFR4S9cBxMWNQQSVoQ8,2979
|
|
2392
|
+
pyrogram/raw/types/reaction_custom_emoji.py,sha256=lWS5LNwbYuw3JqvRWqXUHlPFPQ-flqVd-MopF-dUfCo,2276
|
|
2393
|
+
pyrogram/raw/types/reaction_emoji.py,sha256=22ORpMay2_ZkqEATPqI20Q-p8eJ0HSHtfBXx-7oLn88,2220
|
|
2394
|
+
pyrogram/raw/types/reaction_empty.py,sha256=jd4Qp_yi5-GK6TaTA3Sd4qpVG3xT43R79W1Ww8RqPyM,2037
|
|
2395
|
+
pyrogram/raw/types/reaction_notifications_from_all.py,sha256=GHSQICmHjAscCqZpWTyEiANyV6hdXeNUSFFoVPFntr0,2114
|
|
2396
|
+
pyrogram/raw/types/reaction_notifications_from_contacts.py,sha256=La51v2so44tvhi2yvHWKrwEg84XMmyIwakHMkVHIT6I,2134
|
|
2397
|
+
pyrogram/raw/types/reaction_paid.py,sha256=xHTRmQ-7hk-G3jxZFOqs-fY0pAV-pCTH6YP-0_skAt4,2033
|
|
2398
|
+
pyrogram/raw/types/reactions_notify_settings.py,sha256=C6XAKYXh1tSHDSLt1sztgmCXC8w2FrBjIwOtTSgo7Mc,4233
|
|
2399
|
+
pyrogram/raw/types/read_participant_date.py,sha256=_wIEBC_mW0q4_AebjBApCe74VFth9IZ03LgpNXJnYMM,2678
|
|
2400
|
+
pyrogram/raw/types/received_notify_message.py,sha256=Xq5pnQee4KARo8EZr-xbFJArJrv9h3wMvu8NzuMebWU,2639
|
|
2401
|
+
pyrogram/raw/types/recent_me_url_chat.py,sha256=0BaI9EFhc0J8TXKneHGssbgVfZXBwOWLse7iX_RXYWY,2415
|
|
2402
|
+
pyrogram/raw/types/recent_me_url_chat_invite.py,sha256=O28VJODUXkztNiSHzTGoco1rH7GaioA6catMWRQBeNM,2535
|
|
2403
|
+
pyrogram/raw/types/recent_me_url_sticker_set.py,sha256=-2nQ91zZ79hfMbE1C-hxXTTFeVfrjbMEHbCWOIqOoeE,2491
|
|
2404
|
+
pyrogram/raw/types/recent_me_url_unknown.py,sha256=WbdV-98fqslwERpEr1bA0htK5nCUjNjTMCIdF5DdtCQ,2198
|
|
2405
|
+
pyrogram/raw/types/recent_me_url_user.py,sha256=8v07cQtB_LzUMHgj6VdJS6dulSX_5yt0xm7X3ORyUP8,2415
|
|
2406
|
+
pyrogram/raw/types/reply_inline_markup.py,sha256=6KtFKwiAHWIuPPk-ykiJX3lRwlIk7J88VJLDC9Jhxqg,2318
|
|
2407
|
+
pyrogram/raw/types/reply_keyboard_force_reply.py,sha256=TmrLeDLWJnFPtMQcwjwAfBAnxD8Q7x7rffT_Du4ygtw,3097
|
|
2408
|
+
pyrogram/raw/types/reply_keyboard_hide.py,sha256=XW2F4LEiCFFV3yL4YaS4_aiQOVuzAnKcyBA3lExgZw4,2344
|
|
2409
|
+
pyrogram/raw/types/reply_keyboard_markup.py,sha256=j7h-PIjg840DR2w-B6ZEozqQs9A14lzJyPqbJmoepVY,3957
|
|
2410
|
+
pyrogram/raw/types/report_result_add_comment.py,sha256=u36ah1VJ42HWjzhzis9D02Ppb68ae7r1TmyrSJ2a0xk,2809
|
|
2411
|
+
pyrogram/raw/types/report_result_choose_option.py,sha256=VTp3dhqR6YkbUECvhmJZ2ULb-C2VTp6t3XU0dffm7Ko,2825
|
|
2412
|
+
pyrogram/raw/types/report_result_reported.py,sha256=c9RtNIalKmxO1tNmZNaHP9ckpAKZGNu1QjN41SYM37w,2306
|
|
2413
|
+
pyrogram/raw/types/request_peer_type_broadcast.py,sha256=icKdUU3W5Z2Rmdzf_3abMa6SCMfmzIFlHizsYw07h_g,3943
|
|
2414
|
+
pyrogram/raw/types/request_peer_type_chat.py,sha256=TPzEJ9tgwwWIe6dKygPSY3MfoQgAIRhx5hFSpgvKzCQ,4627
|
|
2415
|
+
pyrogram/raw/types/request_peer_type_user.py,sha256=jAJTzTd-vEC78nEphBWQIMmEUNv9jAcDRoS4i_fne2Q,2783
|
|
2416
|
+
pyrogram/raw/types/requested_peer_channel.py,sha256=lvKMwYWSGAYkqJhRY2Z8w8RKCWUWdqOD1F8kslJ1ob0,3490
|
|
2417
|
+
pyrogram/raw/types/requested_peer_chat.py,sha256=L9xIxMilVWCMc5xm10dPwgP6a8t2x-NFowxp8jWs05c,3055
|
|
2418
|
+
pyrogram/raw/types/requested_peer_user.py,sha256=5Ej1c8YTc6TcQPgx5quCpVBxT4SDGzzU5vhN858FiWw,3913
|
|
2419
|
+
pyrogram/raw/types/res_pq.py,sha256=KgkvMiiwhHSdlNpBJL2fDyKLsKIfW33sRY4dAZu0K5A,3330
|
|
2420
|
+
pyrogram/raw/types/restriction_reason.py,sha256=HRxvS7cU2bzHj-JAOq-0J8zZwmpHBYtKv0wfYPrNVX0,2657
|
|
2421
|
+
pyrogram/raw/types/rpc_answer_dropped.py,sha256=lQQZnK21vGYB3vWUlBnTvwdOCBNgi0m5X6iWxlk2hOo,2855
|
|
2422
|
+
pyrogram/raw/types/rpc_answer_dropped_running.py,sha256=SBLF29QvFQG9wkARm1CXUHwZDrPp9taYpQV1cdoWTnE,2288
|
|
2423
|
+
pyrogram/raw/types/rpc_answer_unknown.py,sha256=BuA_PbAAXzO6a-QlnDNXbF4tM3k1-6aMOtpiM1Phtpg,2260
|
|
2424
|
+
pyrogram/raw/types/rpc_error.py,sha256=PW6LQM114r0qiDIYNYWgueQAs5vzfzNguEkXnWcPw3E,2498
|
|
2425
|
+
pyrogram/raw/types/rpc_result.py,sha256=d1S7aLF0L4HqqfjRcJi7BXh5kTA2Rtjn4Y4hHSr3Aw4,2483
|
|
2426
|
+
pyrogram/raw/types/saved_dialog.py,sha256=GzXxkePlqRfa0UvnK-J_hytso5adsabfZfQRVVds_GE,2793
|
|
2427
|
+
pyrogram/raw/types/saved_phone_contact.py,sha256=jp9hi5r6-f9h2kUS_cVoe-ZPc55X1i-RA33jrbNfdK4,3115
|
|
2428
|
+
pyrogram/raw/types/saved_reaction_tag.py,sha256=YY6xK-PN41ldQ8iQeMstYeVfZf4j3bl8S6LkprR-0Uo,2915
|
|
2429
|
+
pyrogram/raw/types/saved_star_gift.py,sha256=pOC5qzglOGdCcU0-PQrt2ZTMpdpuNPBN4ftoFRGSM6I,7180
|
|
2430
|
+
pyrogram/raw/types/search_result_position.py,sha256=ToGC1LNdV6B8Ej8w5m46IWtMjkHGq0ssSnM3aIU_HGA,2661
|
|
2431
|
+
pyrogram/raw/types/search_results_calendar_period.py,sha256=z_OX_z52Bv21t5AuXxXOTWRg3ToFy6tQGSNc9TXKvIM,2975
|
|
2432
|
+
pyrogram/raw/types/secure_credentials_encrypted.py,sha256=1nw6uGwYYeD0T9mZE_W0S4jb1g6A4wAdKQ1AV9n1HoY,2669
|
|
2433
|
+
pyrogram/raw/types/secure_data.py,sha256=hZoHdhkuJIVOC_BF5owXtfx9D9kEgsLk3bj2W_1i_8E,2634
|
|
2434
|
+
pyrogram/raw/types/secure_file.py,sha256=XURKSu7XolGNZlOmY-R57V8wxo_AtIe7iOIkFC9xL7Q,3494
|
|
2435
|
+
pyrogram/raw/types/secure_file_empty.py,sha256=l80vGSzl7sgeHggDNL2EqB7WTlqQErwR6_RJIdwj91o,2047
|
|
2436
|
+
pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py,sha256=e-2eAYeB7-wLj67wXibTnJpEm-9Mwkv3n2kSoZKzmp0,2334
|
|
2437
|
+
pyrogram/raw/types/secure_password_kdf_algo_sha512.py,sha256=Z2lPvFYLOuo7VFWztIkCbrBMpc_ucOS3qjdm_lAOwW0,2254
|
|
2438
|
+
pyrogram/raw/types/secure_password_kdf_algo_unknown.py,sha256=vNUEnqkt6wwbEfYiQbupgR3vQzcAz--WDXu8H3if1bA,2106
|
|
2439
|
+
pyrogram/raw/types/secure_plain_email.py,sha256=EBXKfVCGNn0VjHP0dV1QD9c9xa8HJ_S98az2nj5r5AM,2212
|
|
2440
|
+
pyrogram/raw/types/secure_plain_phone.py,sha256=jCx5QLU0LfMD-4XeKpdq-ywz1MSw4Z-pT_awFyEGSmU,2212
|
|
2441
|
+
pyrogram/raw/types/secure_required_type.py,sha256=Nyff-jviOnVYgBcKFsGyrXIXEJBO7V8Hq29WT4lwlbc,3399
|
|
2442
|
+
pyrogram/raw/types/secure_required_type_one_of.py,sha256=GNBy5qP8J3xEpHZTpWNJOemzllMNdCGE6V64MgXOsfo,2360
|
|
2443
|
+
pyrogram/raw/types/secure_secret_settings.py,sha256=wFg5BwiUM8TY29i7oFgnhlojKmdKIxFs100Oe4SyiaM,2985
|
|
2444
|
+
pyrogram/raw/types/secure_value.py,sha256=Jk2W55HR0toAx0_opLkwILS0oIDFShld4jUHXWFXsLI,6107
|
|
2445
|
+
pyrogram/raw/types/secure_value_error.py,sha256=xuBHbhOqzZM_XOYiVCVnYJXghGzMzRrLYoHRKMphz14,2684
|
|
2446
|
+
pyrogram/raw/types/secure_value_error_data.py,sha256=jAoq3WO3Ie_L4ZJWs8HD9GZwKEmKkOBFYoXfQquWsuY,2951
|
|
2447
|
+
pyrogram/raw/types/secure_value_error_file.py,sha256=rshrfO6UgnDPmDXphcGajdaGpAHotK-qkYHsTXjwaLo,2745
|
|
2448
|
+
pyrogram/raw/types/secure_value_error_files.py,sha256=GoKPU2C7fBc64COyMHLwYaxb7TWs-Zt_k-GqEpS36bM,2789
|
|
2449
|
+
pyrogram/raw/types/secure_value_error_front_side.py,sha256=83nAbNycTDx5AwRrw8auLW9lJXITvAgayXXIjV-MI3A,2761
|
|
2450
|
+
pyrogram/raw/types/secure_value_error_reverse_side.py,sha256=Lz_txkBtIBtUXO6hCcpkOZQrVe2tRMg2QfMsnGOjjfE,2773
|
|
2451
|
+
pyrogram/raw/types/secure_value_error_selfie.py,sha256=kTyMhqOvRCIkVzqZ-4hZcQy5SST9Jltb-tNeOzA5mKM,2753
|
|
2452
|
+
pyrogram/raw/types/secure_value_error_translation_file.py,sha256=UrbBMlHZd9PT-NAp-3yGbft4mo2mg3qvevmn2t__mk8,2789
|
|
2453
|
+
pyrogram/raw/types/secure_value_error_translation_files.py,sha256=3wAp_2eHXf00S1gtoRAkNHo1GpEa9drlWu1Qb0sQfec,2833
|
|
2454
|
+
pyrogram/raw/types/secure_value_hash.py,sha256=YsDy8YeiIf_0f7bodlAK1sn9-8sy6be1HURVkRWD8-Y,2482
|
|
2455
|
+
pyrogram/raw/types/secure_value_type_address.py,sha256=C8-5fySVc0FCeX5e3iML47lubiPwyVye2FS0uXkJ6eY,2080
|
|
2456
|
+
pyrogram/raw/types/secure_value_type_bank_statement.py,sha256=2cEQKsyOXP0NxSzVLv1FeQuPatnZFrw3zKUJ4QPpSDw,2104
|
|
2457
|
+
pyrogram/raw/types/secure_value_type_driver_license.py,sha256=p4LpKQR0BeL2VaiKjGEIXc_gCE9veMbTdM5pOTARTbA,2102
|
|
2458
|
+
pyrogram/raw/types/secure_value_type_email.py,sha256=wEf3Cc5HuAqF-KYbychN33796snzLycjn0DlJnpK8lU,2072
|
|
2459
|
+
pyrogram/raw/types/secure_value_type_identity_card.py,sha256=ykMc10A4gOi8CL8f4e5IqhJwCjmxJk9uhmfc6IpwA5g,2100
|
|
2460
|
+
pyrogram/raw/types/secure_value_type_internal_passport.py,sha256=0UC67Dz32aJP13nPxk1-yaN0Lw8GXfEF5eqysqmWXkQ,2116
|
|
2461
|
+
pyrogram/raw/types/secure_value_type_passport.py,sha256=Fep-al4R2FSHCZUgflqte2JzmRZITKGCJ-jWQc3Ofdw,2084
|
|
2462
|
+
pyrogram/raw/types/secure_value_type_passport_registration.py,sha256=r5XQWXmxnj85h1AW-3kFKerozGfaulAhmCtw_nThM3k,2132
|
|
2463
|
+
pyrogram/raw/types/secure_value_type_personal_details.py,sha256=DaDZ6zQ_-QHzYpOJD94y92X1bR13BH2eLbZNqY3VBmE,2112
|
|
2464
|
+
pyrogram/raw/types/secure_value_type_phone.py,sha256=lk5nFv3rUv0KRwhmHn6f1Z59pVS_WNhjNchQ9shgb_k,2072
|
|
2465
|
+
pyrogram/raw/types/secure_value_type_rental_agreement.py,sha256=FRj5KAeexVKKjmOdw7v2mcqx2SiwIiaB8Jt1i8A1pgE,2112
|
|
2466
|
+
pyrogram/raw/types/secure_value_type_temporary_registration.py,sha256=Zzxp7JbsE7dieD5UqQA-641iKPE5v9bNGtZXsMie7OI,2136
|
|
2467
|
+
pyrogram/raw/types/secure_value_type_utility_bill.py,sha256=qEX_HwWd6n0uFAQvQvX4r3tuyKTzy2Mp1bdbM0Wlyu8,2096
|
|
2468
|
+
pyrogram/raw/types/send_as_peer.py,sha256=Xb0yHqP7DD3nhQQ3vXjJuQgwziMzcj5Cg_fduoGUNx4,2616
|
|
2469
|
+
pyrogram/raw/types/send_message_cancel_action.py,sha256=DyWisFv_PJsz73PfAh0Dwz_L1DfMXVR1Nh_d0P0klVs,2086
|
|
2470
|
+
pyrogram/raw/types/send_message_choose_contact_action.py,sha256=S0iRcGb2qtxs6u43NW6fAUXLhazmqMhi9NhoyCdEzyA,2114
|
|
2471
|
+
pyrogram/raw/types/send_message_choose_sticker_action.py,sha256=_WOsvwOzS6p7g4ItpnBWtTYxgqy3ydXZc9m_3dr1DM8,2114
|
|
2472
|
+
pyrogram/raw/types/send_message_emoji_interaction.py,sha256=VoYQzrOYQNqR71qkNLtBBH1hVF4EnSShMM64CqKBbos,2819
|
|
2473
|
+
pyrogram/raw/types/send_message_emoji_interaction_seen.py,sha256=iLY88aIekrrteOcEiSTN2jpPQeE9jgn7VVZL5MAElmE,2301
|
|
2474
|
+
pyrogram/raw/types/send_message_game_play_action.py,sha256=XvBkQ7gkvkgKizUmro2z0gg5PZ0sKnjDRvQ0GPV80-8,2094
|
|
2475
|
+
pyrogram/raw/types/send_message_geo_location_action.py,sha256=CFUJuFG980spnfbZky7-xLB4X15gYeOa1I1GAZLZwLg,2106
|
|
2476
|
+
pyrogram/raw/types/send_message_history_import_action.py,sha256=7OR-9HPC1B_mSanJXD_SoFyEI5YYvH4D6ixxQbZAO8c,2299
|
|
2477
|
+
pyrogram/raw/types/send_message_record_audio_action.py,sha256=3rY1FtluqnpgzWjO9xYB-pDoM_vO_jPpRaqPfXhmCWU,2106
|
|
2478
|
+
pyrogram/raw/types/send_message_record_round_action.py,sha256=9z7K83gteWvsc52wXkm6gnRSSZiAue6BqBS0xFddBS8,2106
|
|
2479
|
+
pyrogram/raw/types/send_message_record_video_action.py,sha256=TUTV15zuHf0CWBhjeeXSBai_QDv2abNUUE33yVl8qWs,2106
|
|
2480
|
+
pyrogram/raw/types/send_message_typing_action.py,sha256=HHGjVc_smOg_42aZBj_0n_aOinUAcjj8Ah2VUQITr6Y,2086
|
|
2481
|
+
pyrogram/raw/types/send_message_upload_audio_action.py,sha256=9zeYM87DFXDOS7i-oIfw8vgSW90iH_GtFOQx30Z1rZk,2291
|
|
2482
|
+
pyrogram/raw/types/send_message_upload_document_action.py,sha256=vwnKbgMn6puyz8MEfekimTgat1r3lyhzdtdfMmIV7zY,2303
|
|
2483
|
+
pyrogram/raw/types/send_message_upload_photo_action.py,sha256=Q-1dZJNHCuGBn99IMLXsWXBMzpDhgf4b8KkE6nF5xVY,2291
|
|
2484
|
+
pyrogram/raw/types/send_message_upload_round_action.py,sha256=GRTD3S3OEvDDFSz0vlo2nEkK0Tz88-TlcuCp4xMYbT0,2291
|
|
2485
|
+
pyrogram/raw/types/send_message_upload_video_action.py,sha256=ceMy6DgmrKxuW___RGTMfJMqt7h-6SCxtzFTedCZW80,2291
|
|
2486
|
+
pyrogram/raw/types/server_dh_inner_data.py,sha256=LtOn7tJapnkO_tg8zV8Yg2VKhFKP1A5Mxp1HywQaSWk,3368
|
|
2487
|
+
pyrogram/raw/types/server_dh_params_fail.py,sha256=J2NV0cwR9s7LZtX2NThgxgPp4d4ThVa9o1QzEo2YPco,3015
|
|
2488
|
+
pyrogram/raw/types/server_dh_params_ok.py,sha256=VCI8wrGfOxJhudy4AsyTiwo5isc08rsCM40ns9WIy0g,3014
|
|
2489
|
+
pyrogram/raw/types/shipping_option.py,sha256=BJ--7nYVg8XI1I9Y2SuwKauq5rK84upuFg-tucqCilU,2692
|
|
2490
|
+
pyrogram/raw/types/sms_job.py,sha256=SHlQHp3WSjqzivtzY56j6sZS_KcH4v_ubvEK3qsZIaA,2848
|
|
2491
|
+
pyrogram/raw/types/speaking_in_group_call_action.py,sha256=WkTEVHt1VMLbhDlj5hT89RdBJ-gLFnUW4nSGA2b_Q_k,2094
|
|
2492
|
+
pyrogram/raw/types/sponsored_message.py,sha256=ofri2RJR5PmcfxrM_zf1-RobmtsmnbW9ygfBPBy4oDY,6465
|
|
2493
|
+
pyrogram/raw/types/sponsored_message_report_option.py,sha256=xebM--q6bLTRb2ckPkzk2HXnjqnYfV-xYD3vn5qnVuc,2480
|
|
2494
|
+
pyrogram/raw/types/star_gift.py,sha256=fnJnn5vtBpuSt9LScwCiRFB2q8IKP-UkMWEHrvk210Y,6241
|
|
2495
|
+
pyrogram/raw/types/star_gift_attribute_backdrop.py,sha256=hDb26MByIC23JYUNvOkbMs3nhfFU0DCvmpq9DZXLNsU,3596
|
|
2496
|
+
pyrogram/raw/types/star_gift_attribute_model.py,sha256=U8pvR72JMx5Vb4p0tuF6zFD2Yg4FBYI2bvrwgGI2TZs,2817
|
|
2497
|
+
pyrogram/raw/types/star_gift_attribute_original_details.py,sha256=Kxfss1nO7ymFGCy1tOliPt_Ys-ZKOJ5IMhGig2LYwiY,3550
|
|
2498
|
+
pyrogram/raw/types/star_gift_attribute_pattern.py,sha256=iK9k_s_Xjrj564vL_IQpmOwYv3nChc0j-6r4nAFeOEY,2825
|
|
2499
|
+
pyrogram/raw/types/star_gift_unique.py,sha256=Lp411cN0D6hRqKDLhTlRTe5o4W0a-G1LhtGR9G7jPDA,5146
|
|
2500
|
+
pyrogram/raw/types/star_ref_program.py,sha256=6n_zSIXlwP2WNseR5l2u-zEMmtihCVnh-EGxAw-Szvs,4308
|
|
2501
|
+
pyrogram/raw/types/stars_amount.py,sha256=RB-g5QSGOlVz3jvVN0h5EePH5b-k53rLsx-bw_oT1n8,2410
|
|
2502
|
+
pyrogram/raw/types/stars_gift_option.py,sha256=B3FOoRDw6eBcsoIlWq8ufOK1AXkT9E_ua-Bkhz55xNY,3667
|
|
2503
|
+
pyrogram/raw/types/stars_giveaway_option.py,sha256=9BO0Y9-I4E_U-dv-1TNvOkZC2Cv_1Z4o1J6pwqOMIas,4619
|
|
2504
|
+
pyrogram/raw/types/stars_giveaway_winners_option.py,sha256=pyTWYWNVBUo8VNyo7GNqNbNpWQNial-w4q1mZQCmZLI,2877
|
|
2505
|
+
pyrogram/raw/types/stars_revenue_status.py,sha256=g8w2EmEFct5EOKdFQZV4Y2wfkChzZAbgTRjrX0TlOYE,4057
|
|
2506
|
+
pyrogram/raw/types/stars_subscription.py,sha256=F5VBkXpNlzv5Y5jFSwK97anAlzHtWnMhtDWiJEw_8uc,6065
|
|
2507
|
+
pyrogram/raw/types/stars_subscription_pricing.py,sha256=aNVKLQ6eXbuVSUOnLxGZwCEE3eTbaIskruptb3_849E,2482
|
|
2508
|
+
pyrogram/raw/types/stars_topup_option.py,sha256=4W8hv2CAbHER_qAzwRiqZ1S5Q5cBeWYZdtvwybog-AI,3671
|
|
2509
|
+
pyrogram/raw/types/stars_transaction.py,sha256=LG4DawMKRvFjebWZnEBUasJGYrzaBX9uWq6HAKTr9_w,11827
|
|
2510
|
+
pyrogram/raw/types/stars_transaction_peer.py,sha256=7u2NrkPJ_SLhkIip8Evg8Ykz3xH9KWxHXVxLf_H2Eq0,2265
|
|
2511
|
+
pyrogram/raw/types/stars_transaction_peer_ads.py,sha256=I_TuWpga5bFa6IS_YRs2mhb7Q2O-ptJpb4G6IyLS_7U,2089
|
|
2512
|
+
pyrogram/raw/types/stars_transaction_peer_api.py,sha256=-FD6i3GCbWznx744c_scIhMwrPDpMP6mZG3PhTYnIpE,2089
|
|
2513
|
+
pyrogram/raw/types/stars_transaction_peer_app_store.py,sha256=f6BuEjf9g55PFQ9cAbK_K5r76ZlRkdGaSN5v6gAYhLA,2109
|
|
2514
|
+
pyrogram/raw/types/stars_transaction_peer_fragment.py,sha256=VjLTRmxvGGIDwsJb2oenCZ50IwGXXQq3mMYGgoL9DmY,2109
|
|
2515
|
+
pyrogram/raw/types/stars_transaction_peer_play_market.py,sha256=V-gGRzMVZim3sH87ZqeiwR3P6ECnwOkk-5A3DgjW01Y,2117
|
|
2516
|
+
pyrogram/raw/types/stars_transaction_peer_premium_bot.py,sha256=Uyzls5fRM2S3zQhQPTgWqJuDUfIdzrDzw_xObhWThzo,2117
|
|
2517
|
+
pyrogram/raw/types/stars_transaction_peer_unsupported.py,sha256=xNID8D73AmYxNykBAwyi2-LWJg2V9YpoCnNR2qy7bUE,2121
|
|
2518
|
+
pyrogram/raw/types/stats_abs_value_and_prev.py,sha256=SBWg-r51eyq7Qid63UNRWaaGFAvwYyViun_0esDdKD0,2514
|
|
2519
|
+
pyrogram/raw/types/stats_date_range_days.py,sha256=VZD9yV8yYAE0oROwlmwtjY2Xyea-t-QzNnSRbS8OQZc,2487
|
|
2520
|
+
pyrogram/raw/types/stats_graph.py,sha256=iC70ir067M3WoO2hdXQ4iTbMJZ6d81k0dHC7hOq1JmA,2909
|
|
2521
|
+
pyrogram/raw/types/stats_graph_async.py,sha256=dFXCD_zB-gVPXEJaN6d0sgUMxj5kQKlJeFJHwmHocO8,2416
|
|
2522
|
+
pyrogram/raw/types/stats_graph_error.py,sha256=_IYYsMDzey5aqtAjzON4M_XVFzlM1RZ0XUZ8PLQuTgU,2416
|
|
2523
|
+
pyrogram/raw/types/stats_group_top_admin.py,sha256=jeijoDgyDAuzBs4ad-_LeI8cKFz-DWB4jvsiHHmZtL8,2906
|
|
2524
|
+
pyrogram/raw/types/stats_group_top_inviter.py,sha256=HxIvFOLCf3Z35UK5msv6-_G3xT0sKSVn9PnK49jEXTk,2518
|
|
2525
|
+
pyrogram/raw/types/stats_group_top_poster.py,sha256=NEQGcZWIF3dxsyv1Wt751_FZWqTne0api54EEsbvsrI,2730
|
|
2526
|
+
pyrogram/raw/types/stats_percent_value.py,sha256=za4aLzj3JmqbGSHKsUoWXTm3LKfKdPHhEg4ZeJBM0xw,2445
|
|
2527
|
+
pyrogram/raw/types/stats_url.py,sha256=gDE4StnakCuyhotwiDmc1Q9j03eXdeOlLzYURmdG2Wo,2155
|
|
2528
|
+
pyrogram/raw/types/sticker_keyword.py,sha256=Nj5HBJInNiycDC-yw2k8m8F1Gk-BavkZQUZm5JICKxk,2526
|
|
2529
|
+
pyrogram/raw/types/sticker_pack.py,sha256=pgye6UuzWNH7ZLiuEMrzbgN4M15JHg2YmL-WsJM5sAw,2502
|
|
2530
|
+
pyrogram/raw/types/sticker_set.py,sha256=i3XBOslIr1gaQEru0qcOMAQGUpBYyESxgf6NPFVzrAk,7690
|
|
2531
|
+
pyrogram/raw/types/sticker_set_covered.py,sha256=TOKKbYjy1nqbBt_zn0dWyQYR8bXfQeNtMCyptY7HQo0,2749
|
|
2532
|
+
pyrogram/raw/types/sticker_set_full_covered.py,sha256=QQt90CTkbraLOIzu5v5VHU7qe1wZrrBRHC-Wlq3RNCQ,3456
|
|
2533
|
+
pyrogram/raw/types/sticker_set_multi_covered.py,sha256=-mujiyfohk2kDj1J5dsUjQjji3MN7Iv_UHQxBLxh4Tc,2800
|
|
2534
|
+
pyrogram/raw/types/sticker_set_no_covered.py,sha256=pm0qvYXjJqD6A3_sVXWGUd6WPG6IJghdFz0RVtqmfiU,2494
|
|
2535
|
+
pyrogram/raw/types/stories_stealth_mode.py,sha256=BdnSJ5n5tli2X5hpG8WPMJ23oZZFrNJJEjVLU_ymsRI,3080
|
|
2536
|
+
pyrogram/raw/types/story_fwd_header.py,sha256=ieQo9hOWFCCF9aDC9YOyovtWDuU2ZUKGhw9NTrwObjI,3524
|
|
2537
|
+
pyrogram/raw/types/story_item.py,sha256=qYzakePlQJQklaMwseHRuUywdALPHdiHZ0JiZqkDlB0,9200
|
|
2538
|
+
pyrogram/raw/types/story_item_deleted.py,sha256=RhU9uYHZ7a36vwTBvMC-LUbFKxQRZwcTKesWTs2jLA4,2181
|
|
2539
|
+
pyrogram/raw/types/story_item_skipped.py,sha256=gByH1b_MuJ9MTftS7fCHq9DXsbPdInvXDY05-h2zYAA,3016
|
|
2540
|
+
pyrogram/raw/types/story_reaction.py,sha256=JTSbk0vS2WAmws4eejA3l8nfzOi-B54UqEcTC29WDzA,2746
|
|
2541
|
+
pyrogram/raw/types/story_reaction_public_forward.py,sha256=rv9pkri0AGievLDYzY5cWNBNgufEWaRtPNALf5LtbRE,2321
|
|
2542
|
+
pyrogram/raw/types/story_reaction_public_repost.py,sha256=ffP_X_ZYvgOK1W4qEafWdrdRrdvRsig6A0dgLsg3hWc,2572
|
|
2543
|
+
pyrogram/raw/types/story_view.py,sha256=QlzcigaZq70UkvDjeJyd9FL_MFGLQzwBufTUXISS8Ig,3590
|
|
2544
|
+
pyrogram/raw/types/story_view_public_forward.py,sha256=BNyMekqfNMijnrp4DbPB9zL-TFuQGRd7iZC53brJj58,3038
|
|
2545
|
+
pyrogram/raw/types/story_view_public_repost.py,sha256=G7-GBIy0xegHYMu_I7J1J6Qv_5jOEdxq-XLbqkuy5W8,3289
|
|
2546
|
+
pyrogram/raw/types/story_views.py,sha256=3I2xisoBgckPTMlHnsbP8UCIOtPc4gbSWKifx1yeQBk,4539
|
|
2547
|
+
pyrogram/raw/types/text_anchor.py,sha256=J062dPIJ97x3xhgoHJ-mdmdx0ZDKnoSYlus0dgJpFBI,2426
|
|
2548
|
+
pyrogram/raw/types/text_bold.py,sha256=C17z9e9I0uOvU6M9BOF6TpA5jYH-X74OewhNqPYRr1A,2221
|
|
2549
|
+
pyrogram/raw/types/text_concat.py,sha256=98FIkzo2K7D1Bk5Y6xqX719ZN4KIXngRzwVZ3sTjG9M,2260
|
|
2550
|
+
pyrogram/raw/types/text_email.py,sha256=kuhA-9tJQyzhHul3AwQiiTQHaZ1FNju78YYjA0sIFgI,2431
|
|
2551
|
+
pyrogram/raw/types/text_empty.py,sha256=hazYZKGxdV3B0WGMdtYqiWp0bIadsTSf_jyczfTZSGA,2021
|
|
2552
|
+
pyrogram/raw/types/text_fixed.py,sha256=SRFWmqISPlOUzdRMULwEuJAqwFoTulITSTadUWEgrXw,2225
|
|
2553
|
+
pyrogram/raw/types/text_image.py,sha256=wf-0PxPauUwOAhR6J9gxYl8O3xwzJCW3WusKoRUaTqc,2578
|
|
2554
|
+
pyrogram/raw/types/text_italic.py,sha256=OxoxoPDGXuzude4073524KO0xTk-O0QsjDGAt1UQmLA,2229
|
|
2555
|
+
pyrogram/raw/types/text_marked.py,sha256=9WAVIHmqjaTsA4jHnXdPfZgEpXlUXqLbacNWRaPh2u4,2227
|
|
2556
|
+
pyrogram/raw/types/text_phone.py,sha256=MA8hICJkINBoz4YiscXUWXThhnnr1-UgSmy1cOO3dR0,2431
|
|
2557
|
+
pyrogram/raw/types/text_plain.py,sha256=HBdR6lurg7gpPR0lEBp9Xx3YPCllU45FeluOqCRvJDc,2168
|
|
2558
|
+
pyrogram/raw/types/text_strike.py,sha256=XJjhJHkX--aKzH67PdvOplKhvwvuBm-qyhG4JiUNkdg,2229
|
|
2559
|
+
pyrogram/raw/types/text_subscript.py,sha256=PIb8gJTnRuIz9eXdpHCUZ1-1fZoMnoYP-ruRpt3RwbE,2241
|
|
2560
|
+
pyrogram/raw/types/text_superscript.py,sha256=Ci7boCpFamAx1P4xtqS7w34gR5iOR5FOrjh40bOOfIU,2249
|
|
2561
|
+
pyrogram/raw/types/text_underline.py,sha256=EHNtSkmZiIJUxS3RTvyV32hG7lLXm4rMGLvMK-1FG00,2241
|
|
2562
|
+
pyrogram/raw/types/text_url.py,sha256=ODfkF8T8e6goJphJUt_0w_XR5GpQqzbhaiSoyUbijJw,2661
|
|
2563
|
+
pyrogram/raw/types/text_with_entities.py,sha256=rfhj_M0dmnkIvZKG8Wo057p5HXTO-zwNZbIZ6jAEA84,2536
|
|
2564
|
+
pyrogram/raw/types/theme.py,sha256=KWRkZvFVbAtSbgzjGj7PgzBARDYOhhrTJwRoflK4sJs,5759
|
|
2565
|
+
pyrogram/raw/types/theme_settings.py,sha256=DHf_MkvZphtlr908vaNFvikAGafYsLhKp7xWjf8tEyg,4526
|
|
2566
|
+
pyrogram/raw/types/timezone.py,sha256=A2lb_YwbP5J8HwLmXPV6WRw-wDwh1OO6n_J0BClvfS0,2596
|
|
2567
|
+
pyrogram/raw/types/top_peer.py,sha256=Qfmz2c8stQRxSQWX1zNLV8bMp-RKrazWoDRB4djn0sM,2430
|
|
2568
|
+
pyrogram/raw/types/top_peer_category_bots_app.py,sha256=pk-svRmBKj0pFS5zJaFi0nDzB9reSexQ9erjUjWHIEE,2080
|
|
2569
|
+
pyrogram/raw/types/top_peer_category_bots_inline.py,sha256=a8w9IBzAiiYpZk981VVmGK4oxdor0pdmlKHO5KGOLhg,2092
|
|
2570
|
+
pyrogram/raw/types/top_peer_category_bots_pm.py,sha256=WNdEcdqS0foMhwLEFZLHl1msefcZLEHMod-sL-IQOO4,2076
|
|
2571
|
+
pyrogram/raw/types/top_peer_category_channels.py,sha256=JHdnunQCZsqhj6-7QmJfuStg88UQzuAGDk6JUtziFxs,2084
|
|
2572
|
+
pyrogram/raw/types/top_peer_category_correspondents.py,sha256=_j8G2uABoB316WVdi_rMZF9RgO-iz4E4KPahhsiJSvc,2106
|
|
2573
|
+
pyrogram/raw/types/top_peer_category_forward_chats.py,sha256=NtP92y_oEJlyPN8vQkYI1xYlgo4_hNYi4xRJ3PqZ2Mo,2100
|
|
2574
|
+
pyrogram/raw/types/top_peer_category_forward_users.py,sha256=oCe2nmizjEr1Lhu0oH2DF4dWDVeK7HOHiTDn9ppbTTs,2100
|
|
2575
|
+
pyrogram/raw/types/top_peer_category_groups.py,sha256=L80NMlADOKxeLr3r1YIQQjC4PyxgobCztCEfLocCAGA,2076
|
|
2576
|
+
pyrogram/raw/types/top_peer_category_peers.py,sha256=pU5AGalhZ9amZ7b3qJb6rJpYF8ohL6O0PrabX2oCoj8,2834
|
|
2577
|
+
pyrogram/raw/types/top_peer_category_phone_calls.py,sha256=rIgdLz48oGOWEauE4UZvfNaKbwztx3GP00r3N8q8JOA,2092
|
|
2578
|
+
pyrogram/raw/types/update_attach_menu_bots.py,sha256=Uz1NJ-cSnAzsMmZ2uVKyAKTo8Ozorw6OXmA8kgxknTs,2063
|
|
2579
|
+
pyrogram/raw/types/update_auto_save_settings.py,sha256=3nLaghQiXuw_ryajO1TiuAyQ7UW8n7VbfqNOEocX_Ag,2071
|
|
2580
|
+
pyrogram/raw/types/update_bot_business_connect.py,sha256=9gIrqMgdV3JEZG2XuHxWGPTHKCF3oxul9zYarsANVuk,2579
|
|
2581
|
+
pyrogram/raw/types/update_bot_callback_query.py,sha256=k3O356U_0ERSMOLcsqMN6vEj81xH3KMJxhELRa9tma0,4099
|
|
2582
|
+
pyrogram/raw/types/update_bot_chat_boost.py,sha256=h5rRW6wo7ZUwaSPkswrkOxq4Xd-3Dn0Ad-54Sj6kgHA,2684
|
|
2583
|
+
pyrogram/raw/types/update_bot_chat_invite_requester.py,sha256=HskVjjoEy6srpJaiQt42zsbNGLZvVE8Q_1E-kODRdRg,3419
|
|
2584
|
+
pyrogram/raw/types/update_bot_commands.py,sha256=BMrbOmSDU8Fus5e_Nf07JbeA5K0W0RoFVIaJvhBB9Ao,2779
|
|
2585
|
+
pyrogram/raw/types/update_bot_delete_business_message.py,sha256=VakcUx4WVmrd0xQIKaN00RHYNfHPBe_SzsHhUE6N4MQ,3034
|
|
2586
|
+
pyrogram/raw/types/update_bot_edit_business_message.py,sha256=H2T7vQfIETZ9t7epNWNe9-rc6Z6UbKWeuPguY5OO27Q,3372
|
|
2587
|
+
pyrogram/raw/types/update_bot_inline_query.py,sha256=xwvKsBPWSFbrrmOkImJW9Da-Wr4-hxbrpXF2BB15abg,3854
|
|
2588
|
+
pyrogram/raw/types/update_bot_inline_send.py,sha256=JXMJQtQpEdPeErmzysOk5eaSyVuxVgK9t7vJgQ_T4aE,3559
|
|
2589
|
+
pyrogram/raw/types/update_bot_menu_button.py,sha256=aYkNWX2M7W8ejebMWaoeK7rsunjJWPBUpF7crGSUdV4,2521
|
|
2590
|
+
pyrogram/raw/types/update_bot_message_reaction.py,sha256=eyRGlTNCZyTFhARnzzMl037qCp0_lwRgrBV2Yu5d4OE,3834
|
|
2591
|
+
pyrogram/raw/types/update_bot_message_reactions.py,sha256=RFnBBjeTuHHuTKoqKIZSLZ3_1xi2s8u-RrpGZukrwlI,3216
|
|
2592
|
+
pyrogram/raw/types/update_bot_new_business_message.py,sha256=fEf3gDRpT7eYRzMizJf9s3F72mKF3KwW-qcamtB01io,3370
|
|
2593
|
+
pyrogram/raw/types/update_bot_precheckout_query.py,sha256=qCUqxQaA-ka-R5oE0fH-osSn0Waez5zJzKWhyiSwhcQ,4242
|
|
2594
|
+
pyrogram/raw/types/update_bot_purchased_paid_media.py,sha256=REUfoxJI7XCEfkt5iZQ0fVEkLyfZWYieA3R3ptNQmMM,2684
|
|
2595
|
+
pyrogram/raw/types/update_bot_shipping_query.py,sha256=iwgJA07ubnxRPHM9At_ubmP1ZAyoUNqIsmKeYsP3qSU,3087
|
|
2596
|
+
pyrogram/raw/types/update_bot_stopped.py,sha256=H0XzJer_5Rqgf1p4T-Xv5kH0j4Eyx1UXvvHsERLTIrY,2835
|
|
2597
|
+
pyrogram/raw/types/update_bot_webhook_json.py,sha256=_C90KtG3W5YdhLsxAiEKpDLwJo_zNQTIux9E1TBCP5I,2267
|
|
2598
|
+
pyrogram/raw/types/update_bot_webhook_json_query.py,sha256=WE-_UZuMfZB5C_U51gJSDzJ-GFggx6ff6LOnhZw0bAw,2751
|
|
2599
|
+
pyrogram/raw/types/update_broadcast_revenue_transactions.py,sha256=1Pc0M6e85cDFP8LlvRoIuh0TVSMsWHuxWvP9K8a-L5s,2661
|
|
2600
|
+
pyrogram/raw/types/update_business_bot_callback_query.py,sha256=AcyslPj3VRcKqwPGy1KxzGR3yFgD2mh3siw1G80jQ98,4295
|
|
2601
|
+
pyrogram/raw/types/update_channel.py,sha256=jj0d66mzAz3fyMrs71t0sI0E_o_qv4gn3lGB8xKiqgs,2241
|
|
2602
|
+
pyrogram/raw/types/update_channel_available_messages.py,sha256=dtfqBwMHG-AFmbDV-c9U3_paG_9f-o-7QYFCFGayJrY,2616
|
|
2603
|
+
pyrogram/raw/types/update_channel_message_forwards.py,sha256=zXF7TUtwMZqT2Ig7ikKRtXWg4M3aO5EreCTSS4TzcEw,2717
|
|
2604
|
+
pyrogram/raw/types/update_channel_message_views.py,sha256=W3_CEKNm0zD20aEvnbV49tVh8FGPTwKD5EA12sW6NmQ,2678
|
|
2605
|
+
pyrogram/raw/types/update_channel_participant.py,sha256=bSwbBlRuo1zRKuWeVKfD1mLwzFgX9-VkqXt-nx5Fw4o,5128
|
|
2606
|
+
pyrogram/raw/types/update_channel_pinned_topic.py,sha256=IoQ5zaZvYHJGwNupxEgVf71F6ntXWhjp4jme0_LHdkI,2831
|
|
2607
|
+
pyrogram/raw/types/update_channel_pinned_topics.py,sha256=DmlmFXWZjtmL_t9w0vIhyJsVq8xV6K2eHG9RJF6kSnU,2737
|
|
2608
|
+
pyrogram/raw/types/update_channel_read_messages_contents.py,sha256=k3XWxPJDakCJY70KlxetJFduE901X-9DdssWxQ5gkQ0,3063
|
|
2609
|
+
pyrogram/raw/types/update_channel_too_long.py,sha256=gf-fINA6oe-IaE9XQrmfzUHnxsFca5e3IXm6l1LCuVA,2659
|
|
2610
|
+
pyrogram/raw/types/update_channel_user_typing.py,sha256=aaK7aiQmtdLuPGnugG7NLbS8ygO7kx_iu27YDFdR8zM,3321
|
|
2611
|
+
pyrogram/raw/types/update_channel_view_forum_as_messages.py,sha256=MYMF8y6u9QxWVZ0OEbMPHhTpuEzW-wsfRJgKseBoVfU,2535
|
|
2612
|
+
pyrogram/raw/types/update_channel_web_page.py,sha256=ObmeRcrZaRuGi4DeRaTMHQoxGJm__Gs6KHdbl4tIsJ4,2980
|
|
2613
|
+
pyrogram/raw/types/update_chat.py,sha256=niw-zZoudirw4E0NZjT0B0pfYmAprteR0ADTk2mBwkk,2202
|
|
2614
|
+
pyrogram/raw/types/update_chat_default_banned_rights.py,sha256=PBSbyeYOSK-81Kt2ThRMYrRf9BPXuuuudEc8lB9x5z8,2952
|
|
2615
|
+
pyrogram/raw/types/update_chat_participant.py,sha256=9yomN-bcPra_CXhTky_nbMd_PzqAfhQMjhPYhKy8iMQ,4747
|
|
2616
|
+
pyrogram/raw/types/update_chat_participant_add.py,sha256=Iqr-c__siS1NNwsIGfW84poaLBAlJerOHwqVjWAI1e4,3168
|
|
2617
|
+
pyrogram/raw/types/update_chat_participant_admin.py,sha256=IzLYRxKjh_VpBLOelHsvJzM2Ap2ytr7oA3nKHHMesjQ,2950
|
|
2618
|
+
pyrogram/raw/types/update_chat_participant_delete.py,sha256=DlQ3zuxxPDKOmIIo4sggrVsH0HZKq1_3VgzgcBRWjL8,2725
|
|
2619
|
+
pyrogram/raw/types/update_chat_participants.py,sha256=My95y-a8JRCOwAob-Bju1mdV_Lj4he_X-wm5wHbI0XQ,2377
|
|
2620
|
+
pyrogram/raw/types/update_chat_user_typing.py,sha256=vUE7vaiEd2bi2hIWKV6NWd_9KlVqF19v-YmluKPhGgc,2815
|
|
2621
|
+
pyrogram/raw/types/update_config.py,sha256=ZMCG7uRWjENWnHhQQ7aVvj-i3gM44wMP-RGkm_oxt9s,2031
|
|
2622
|
+
pyrogram/raw/types/update_contacts_reset.py,sha256=WYFvy49rdCiciVhRznWYKPROm9SNtdODcwYzpws_Gek,2059
|
|
2623
|
+
pyrogram/raw/types/update_dc_options.py,sha256=OQOtRwOsTlOQUNfjkphX8GlVfBuPbyxovglFOfuamQo,2323
|
|
2624
|
+
pyrogram/raw/types/update_delete_channel_messages.py,sha256=YtORUIledZiDuxLjrnKZnyskr8f7r1aAdoSh6k4WMYU,3006
|
|
2625
|
+
pyrogram/raw/types/update_delete_messages.py,sha256=6uyy7zjFTVlT-lMvAPLZP6i0S1sdIxE4ndsTr1IYOsM,2722
|
|
2626
|
+
pyrogram/raw/types/update_delete_quick_reply.py,sha256=J_jjVX52OJMo3lEvgGrKAmB0puau-K2-AYsHmU5nwYs,2283
|
|
2627
|
+
pyrogram/raw/types/update_delete_quick_reply_messages.py,sha256=EAOhWT8FNiap_Qn6ZlTDEKQ0NKDRT6liCECYvLg7wZo,2590
|
|
2628
|
+
pyrogram/raw/types/update_delete_scheduled_messages.py,sha256=X7lJ-KaKKeuz5zWBnbnASOAFVOzOiJsvlo9cNV-Ikfk,3098
|
|
2629
|
+
pyrogram/raw/types/update_dialog_filter.py,sha256=no5-0C_ay_1jSZiFwQrmR_yt5QNmtyV9O9PFK-WNcn8,2680
|
|
2630
|
+
pyrogram/raw/types/update_dialog_filter_order.py,sha256=8xwlUdN6p3y-ZGtiI56KjGkuLwvLv9935jqVXWM--Ek,2273
|
|
2631
|
+
pyrogram/raw/types/update_dialog_filters.py,sha256=sdU8HcxSSo1oelzJLwkvdSeoZgN5e8Zc6q-mmbz5bck,2059
|
|
2632
|
+
pyrogram/raw/types/update_dialog_pinned.py,sha256=yZPUM9BTEMQEczMZywzWGMJNwsBIAnzWUTPX7oiAh9Y,2987
|
|
2633
|
+
pyrogram/raw/types/update_dialog_unread_mark.py,sha256=xyn5iAzvbqGK-_CPyIEP4nT3OO909yEg2V8sLD9dsWw,2594
|
|
2634
|
+
pyrogram/raw/types/update_draft_message.py,sha256=gQqPsEoQ_W_3s-RHi4diaOmvBd_QA5F0z2FSw2Uakw0,2989
|
|
2635
|
+
pyrogram/raw/types/update_edit_channel_message.py,sha256=iVpLa3OL3gk0x7Nx6nL3j7cVzO3H5i-K5iv9giZI_dg,2740
|
|
2636
|
+
pyrogram/raw/types/update_edit_message.py,sha256=M0RBgPBkhf3iecsPKZKbbLc-M9Cm654EczJoqnINZuo,2712
|
|
2637
|
+
pyrogram/raw/types/update_encrypted_chat_typing.py,sha256=PAHQSVQIT_Gh9WvOAG7IlEGglnbLdnOCrbY03ihoXvU,2259
|
|
2638
|
+
pyrogram/raw/types/update_encrypted_messages_read.py,sha256=F0A-uJw-htKVI0_nomSKHAYgNeyJRS_4uWzUNr0fvlI,2701
|
|
2639
|
+
pyrogram/raw/types/update_encryption.py,sha256=JYuQmz6j7-5bvUjNhmJvP3jbTZdkR5RtK1mxXkiT9xc,2470
|
|
2640
|
+
pyrogram/raw/types/update_faved_stickers.py,sha256=cgSWplsTfeS1ZaRSKlhgGCAswIwk4Xk6zDSaRiq7X0s,2059
|
|
2641
|
+
pyrogram/raw/types/update_folder_peers.py,sha256=r2fuc3sab9nlZFygzCHxX53c1p951sXzkFsnaz-uUgA,2791
|
|
2642
|
+
pyrogram/raw/types/update_geo_live_viewed.py,sha256=_NgnBv6Noo5jNF1fpguUtZd4Sm1AIGcFoFeD1XU9qnY,2464
|
|
2643
|
+
pyrogram/raw/types/update_group_call.py,sha256=Nlx3G3t12FvAhb7MV9VcmyTrpLEjyVMQ5Q070G96U0w,2688
|
|
2644
|
+
pyrogram/raw/types/update_group_call_connection.py,sha256=vUhisSSdznclFcR2tdFmi6VbEmVhxsv0cMFpI3qci-Y,2668
|
|
2645
|
+
pyrogram/raw/types/update_group_call_participants.py,sha256=lTFlLm6XFZMkKBBhA2LeHjz2xs7-Xr364QnTHEJ_YR4,2941
|
|
2646
|
+
pyrogram/raw/types/update_inline_bot_callback_query.py,sha256=Ed6nxbsZaor0h51DGhIp1iamahYDbVwEpi1VGX8LJmo,4000
|
|
2647
|
+
pyrogram/raw/types/update_lang_pack.py,sha256=dzSx7itwL4_oG9D0W-SE1nndvnWREPalx-67ccqJRX4,2337
|
|
2648
|
+
pyrogram/raw/types/update_lang_pack_too_long.py,sha256=tcZijP_O499X9ept1WljvUrmqgeTQYaU5XTPEvAlQUE,2259
|
|
2649
|
+
pyrogram/raw/types/update_login_token.py,sha256=piHkEa3Zci-5MgBBQTv0sFtAwxXDTprh7f6WxZl_1Jo,2047
|
|
2650
|
+
pyrogram/raw/types/update_message_extended_media.py,sha256=NkTFxO0CKNhFpJFldrsBHhcR5KiwhQz1hYafOSTOXHQ,2906
|
|
2651
|
+
pyrogram/raw/types/update_message_id.py,sha256=jy5KF8h2J779S4wneCRXhOW7xQoSnywhfRqpLAkiZCc,2421
|
|
2652
|
+
pyrogram/raw/types/update_message_poll.py,sha256=mJU_YleAtrQKcHHbK7WDDnp0Qm0oTCCa_g8RKsW9YTw,2963
|
|
2653
|
+
pyrogram/raw/types/update_message_poll_vote.py,sha256=2W9vINwlBFciBSZTz7uhSj3IusFGdx6dd57RESn0LQY,2939
|
|
2654
|
+
pyrogram/raw/types/update_message_reactions.py,sha256=23W53W2tQqnwRYOomAaTTAt9EawUjHjuCgrMV2u-XdQ,3274
|
|
2655
|
+
pyrogram/raw/types/update_move_sticker_set_to_top.py,sha256=xoimuq5gLnt82ESXp8rAZSR0dnUOXnwStOg7HKPakec,2855
|
|
2656
|
+
pyrogram/raw/types/update_new_authorization.py,sha256=Qt2KZcB4yx1ExI4zHcmC3G7fN31MELQoX1R9HowiG-A,3703
|
|
2657
|
+
pyrogram/raw/types/update_new_channel_message.py,sha256=BO314bp2QtlIyu70jMDBXr3vkeDVscpYwDKszFXcROk,2736
|
|
2658
|
+
pyrogram/raw/types/update_new_encrypted_message.py,sha256=8AJ3XgXvpEct89Qx9djQ4MB4K0Mw6JDxFdX5V9xpXLI,2536
|
|
2659
|
+
pyrogram/raw/types/update_new_message.py,sha256=mx84yxlWGbSghm_SpNLt0EFpmn0nY1iElnBvHYeAc1k,2708
|
|
2660
|
+
pyrogram/raw/types/update_new_quick_reply.py,sha256=34C5MZ8KzveEsFcKcKHDJNW_SWey_vRuw6TtVGvprC8,2334
|
|
2661
|
+
pyrogram/raw/types/update_new_scheduled_message.py,sha256=Up18kEKdLIN4mA6lNNHE3_HP4bhwQsSMNageZU4jiXI,2310
|
|
2662
|
+
pyrogram/raw/types/update_new_sticker_set.py,sha256=mTfbCu58QxYYNEJjeuI0wlLPXWGpTVMozPAYrOsSvlo,2361
|
|
2663
|
+
pyrogram/raw/types/update_new_story_reaction.py,sha256=QorWD2XOzNwUQwtycEwr2vNDpRke_vGOKDx-R1sg0Ss,2784
|
|
2664
|
+
pyrogram/raw/types/update_notify_settings.py,sha256=gzcp9ohPjWx2g4WabJ04MBqkkBfV6ktfT43577Rg7kU,2668
|
|
2665
|
+
pyrogram/raw/types/update_paid_reaction_privacy.py,sha256=WFvB3HoUtUC_9Wg-X-sSxjlkBcIE7kNqElXFKe-y0oA,2253
|
|
2666
|
+
pyrogram/raw/types/update_peer_blocked.py,sha256=7kmCMbE-rYERkO1QT0tA7D4dT6hpp3Fr5jk6XM6cwTg,3003
|
|
2667
|
+
pyrogram/raw/types/update_peer_history_ttl.py,sha256=0Prdz-ePDNkucePBsC7qa34bVwT9wtU_G_xLN4XS2i0,2718
|
|
2668
|
+
pyrogram/raw/types/update_peer_located.py,sha256=NJYmfddsW7rtXW9lrnuh3_fHlpLEPWnRpQOtIOWLXig,2298
|
|
2669
|
+
pyrogram/raw/types/update_peer_settings.py,sha256=JiP9y27aJhPTSqT_o4vsV1qhxygdUWrtxWDUTbr1da0,2549
|
|
2670
|
+
pyrogram/raw/types/update_peer_wallpaper.py,sha256=Yr5d5FaUbDxsrMl1akkpNwgNbuNpHSqPfwTmmWAQqhk,3152
|
|
2671
|
+
pyrogram/raw/types/update_pending_join_requests.py,sha256=rCbME99RIevSF15a7f80TusRVNAAIR3RIvapEfKlzCE,2937
|
|
2672
|
+
pyrogram/raw/types/update_phone_call.py,sha256=xCTmyYkJ-O3wpwp8mtcjPmkT5Yhct5raGRmRsMqRejI,2305
|
|
2673
|
+
pyrogram/raw/types/update_phone_call_signaling_data.py,sha256=LclmGKFD7sajQFqxEgLaX0Zomo5Z6Ju451Qo-1294VE,2526
|
|
2674
|
+
pyrogram/raw/types/update_pinned_channel_messages.py,sha256=AA7nIf7gsbH0szz-u3WU-KwIy8geweCL6g59OVEyaTU,3317
|
|
2675
|
+
pyrogram/raw/types/update_pinned_dialogs.py,sha256=jtuUJIiFiC4u6ZMzBIIRbnpQqMC6nqOToyfampsFuxo,2911
|
|
2676
|
+
pyrogram/raw/types/update_pinned_messages.py,sha256=-RVSUMVWOBY0KQ-0Equ2PrWlgPL6UK50b_vdYFAsBLU,3271
|
|
2677
|
+
pyrogram/raw/types/update_pinned_saved_dialogs.py,sha256=ZDiCpnppYhAcW2EjukFYt8bndd_W6oPCoceNGnsyBPU,2522
|
|
2678
|
+
pyrogram/raw/types/update_privacy.py,sha256=oRUIQksis2GL0iN0BCqz_r5qYYENccHpKf9AC7VCWXo,2535
|
|
2679
|
+
pyrogram/raw/types/update_pts_changed.py,sha256=C7HXaOgiuc_JxEM7gbfVSAQD0HpXKGdBmiI3yK2YrW0,2047
|
|
2680
|
+
pyrogram/raw/types/update_quick_replies.py,sha256=irz33cdereol1Rq9fMfwydzJ7f-wkRXBmX44mNJxsJw,2370
|
|
2681
|
+
pyrogram/raw/types/update_quick_reply_message.py,sha256=NKw8U_Djsz36FW4nmt6S4CcUI8NNQVje40ktNDvVRZE,2302
|
|
2682
|
+
pyrogram/raw/types/update_read_channel_discussion_inbox.py,sha256=y8t-79h2pw_Zi6DsFTW0CsSi5JFZKfmVQW7rr6rRQQg,3788
|
|
2683
|
+
pyrogram/raw/types/update_read_channel_discussion_outbox.py,sha256=IoMf-xIngK0y8TWBeDb8ONJQYgbxZd7qzjAsbMBALR8,2836
|
|
2684
|
+
pyrogram/raw/types/update_read_channel_inbox.py,sha256=XLSOLlht-iIVmf-0sOaJ8B3Wo6rKU_obO07qA3GVxqI,3465
|
|
2685
|
+
pyrogram/raw/types/update_read_channel_outbox.py,sha256=vyE_O6M2UHw1FqkofAxQ5pH2l9rTqV5TaKy1RD3DEwk,2498
|
|
2686
|
+
pyrogram/raw/types/update_read_featured_emoji_stickers.py,sha256=B5Qu04RKYc6dqDhKrTnGyiOexPAf2Y1ZAAik1ue2xQ0,2107
|
|
2687
|
+
pyrogram/raw/types/update_read_featured_stickers.py,sha256=MHXnNGXBe8tzNej5R9MIHkXgphsHtIyCDoqJ2pRp5MI,2087
|
|
2688
|
+
pyrogram/raw/types/update_read_history_inbox.py,sha256=7ia6Wk3z3v2FKCDPvrgkr__JJPZyxmFJWYB6iulZ_wM,3691
|
|
2689
|
+
pyrogram/raw/types/update_read_history_outbox.py,sha256=Fg0c8Hc5W3g9AC8ry-GNkYvj1H8v_muj98O8N1gxuWc,2914
|
|
2690
|
+
pyrogram/raw/types/update_read_messages_contents.py,sha256=BOA1BC95zrNzb7yyPlSFi7jfvLF1vzJOVnAS8AWrKE0,3147
|
|
2691
|
+
pyrogram/raw/types/update_read_stories.py,sha256=UWOw4vmYozhyht-4ugWzJKu7y-7WlDUkKftp1NOo-Qc,2456
|
|
2692
|
+
pyrogram/raw/types/update_recent_emoji_statuses.py,sha256=YLaqtwljmh5cL08wg_dRCppRsGnwowyi9sgPm-IztUM,2083
|
|
2693
|
+
pyrogram/raw/types/update_recent_reactions.py,sha256=vk8Hp6LwtdLOlBgpsD7U80heB2xuBxcdq7whz30-GPA,2067
|
|
2694
|
+
pyrogram/raw/types/update_recent_stickers.py,sha256=eNwjWLyNWVA17UNRL3lB9JYT0-9IoAg9GBUgrFwmw2Q,2063
|
|
2695
|
+
pyrogram/raw/types/update_saved_dialog_pinned.py,sha256=UjQE69dcQXmGWtlDobwhBwHyrPekWgcWsX1gC0ah6z8,2598
|
|
2696
|
+
pyrogram/raw/types/update_saved_gifs.py,sha256=aODnNSItGggteSCpNSIhaq-Em9SybKDEfKq8imJY1ds,2043
|
|
2697
|
+
pyrogram/raw/types/update_saved_reaction_tags.py,sha256=jwt8OrZEpaub0GdWpPuzx5Jl5QfrL5ss6DDD309EnkY,2075
|
|
2698
|
+
pyrogram/raw/types/update_saved_ringtones.py,sha256=6me3yGpSNJYwgSdXHtnXbjzIq_tLqquPGEWkF6QPl9Y,2063
|
|
2699
|
+
pyrogram/raw/types/update_sent_story_reaction.py,sha256=keVhcPFuKJjDyNa1zhD_foRp8CsbcZ0wNLj0-eafBYU,2788
|
|
2700
|
+
pyrogram/raw/types/update_service_notification.py,sha256=zmKDuGpWOQRe8uOWP30HdvdU-S_3LhV4ReR7O4MB_Ns,4105
|
|
2701
|
+
pyrogram/raw/types/update_short.py,sha256=eRGwJZuOnTeoQQ-18FK0Ab8oe0o9YxPUBBC8gpltPkE,6810
|
|
2702
|
+
pyrogram/raw/types/update_short_chat_message.py,sha256=CLjy4g4RQ-fD5G6Ut41xp05LFEIJoXUzBfylheX0GD4,11365
|
|
2703
|
+
pyrogram/raw/types/update_short_message.py,sha256=kq7SV4u6bJGokfq9Ozsy6o8U3RDnSDkoyfaA44zLEQU,11120
|
|
2704
|
+
pyrogram/raw/types/update_short_sent_message.py,sha256=YG5rhmtdXVTHQxtzJLsbX65mcOdcC5W_NWe8ty0U8MQ,8839
|
|
2705
|
+
pyrogram/raw/types/update_sms_job.py,sha256=YKGF5UCyBObV7r3olAyMfy30045CIZPL-Ip329_Tw2k,2196
|
|
2706
|
+
pyrogram/raw/types/update_stars_balance.py,sha256=3Lar7UGqtKcXfNtOJBjMcv4a9yobxdJ_1jzi7z22WPo,2298
|
|
2707
|
+
pyrogram/raw/types/update_stars_revenue_status.py,sha256=t1XqzxhPnbdwsXmLCMIBRoEZBGLqLf3D_jW6P40OxuA,2579
|
|
2708
|
+
pyrogram/raw/types/update_sticker_sets.py,sha256=WbQ6b9tiptrDfEEl0L_MLT5TPXKkbnWivZNhGr4JGsE,2567
|
|
2709
|
+
pyrogram/raw/types/update_sticker_sets_order.py,sha256=SYmbGx9Np_EpnIPVj-I6cZYFEuZF-Qc8DBRgXvFLJfE,2836
|
|
2710
|
+
pyrogram/raw/types/update_stories_stealth_mode.py,sha256=Vd3EMm7Kr_WZE2qXSr9HYdfNg6e57CmD8q_f43x9Gkg,2395
|
|
2711
|
+
pyrogram/raw/types/update_story.py,sha256=PlpExjxgT4eRkXFF4Zxc1FHnzMVzoDal6CuQEqq0KpI,2482
|
|
2712
|
+
pyrogram/raw/types/update_story_id.py,sha256=E00yIvG53YX51jL16zRUrdaMh4QD-3hkbmW6ZYZ74Os,2413
|
|
2713
|
+
pyrogram/raw/types/update_theme.py,sha256=6L7RnW3B45HiIoNhviKlBgCcXmwo11hG0_s9bDColPo,2228
|
|
2714
|
+
pyrogram/raw/types/update_transcribed_audio.py,sha256=0CiufwOQbqu0DU9M8ydMp853xsNhEADCveo047w8uqw,3299
|
|
2715
|
+
pyrogram/raw/types/update_user.py,sha256=AMPe8dgNh3GSXFXnVEEnTJvqyzLyxGZEFfZ1yk-cV_k,2202
|
|
2716
|
+
pyrogram/raw/types/update_user_emoji_status.py,sha256=ApKE7KDZQahv5ht7I7yNJatj_xRfn1MzXxFTgU10Ma4,2584
|
|
2717
|
+
pyrogram/raw/types/update_user_name.py,sha256=vcwCuz_LJFLLzWEZgpjPilx2Hj0BrGJ0Bp0m0vJmCN0,3032
|
|
2718
|
+
pyrogram/raw/types/update_user_phone.py,sha256=Gpkw0aXp6KTdUph36ubsSP18ADg_Ap8u1HUV89LvPOU,2426
|
|
2719
|
+
pyrogram/raw/types/update_user_status.py,sha256=uet0SellT8fGi5jFMTPfYnvP4LyPC_LafUNzs2vzB-A,2506
|
|
2720
|
+
pyrogram/raw/types/update_user_typing.py,sha256=5Sa4Ece5-axDbkHAkoIrvRZ-LuQObFg3Dkpal-GkeZE,2534
|
|
2721
|
+
pyrogram/raw/types/update_web_page.py,sha256=M6sJ4IPYYk9L_bdB53_QQ7YyUOxxxwe90dDxdEvgkLY,2696
|
|
2722
|
+
pyrogram/raw/types/update_web_view_result_sent.py,sha256=g4nyd320j4_TJmYEb1UBCq2ZGRnhY63DFXgQ5QrEVcg,2263
|
|
2723
|
+
pyrogram/raw/types/updates_combined.py,sha256=nvpUresCK1qhpfLaZUHDdV1zAy0u1UQrl27amr2lVJg,7829
|
|
2724
|
+
pyrogram/raw/types/updates_t.py,sha256=JHOYu-Ws5OSf5oSoZzGo_HcYoSyznAKlwAcXmfK7wik,7553
|
|
2725
|
+
pyrogram/raw/types/updates_too_long.py,sha256=pv5StB1ArpU9o31noRn_0YnYfL6sE9HDwnBGJwFt4J0,6409
|
|
2726
|
+
pyrogram/raw/types/url_auth_result_accepted.py,sha256=SLtj8k_wWOkZ8xLJqC28NwhI9k9TQ7vd64mMTUIJK3g,2465
|
|
2727
|
+
pyrogram/raw/types/url_auth_result_default.py,sha256=g39XGCEoCmiK1_kuM_lq_ZpLo4dVaZm02Tc1TWNLuBs,2323
|
|
2728
|
+
pyrogram/raw/types/url_auth_result_request.py,sha256=-KVk1Cu80PZ6-l_diaIJnGH7qxFQMUFHr5paHSaA8m8,3154
|
|
2729
|
+
pyrogram/raw/types/user.py,sha256=ulvA_Ld192Z_OI6TSfhuMjI0Kl-xIs47h_6a0QPq070,18928
|
|
2730
|
+
pyrogram/raw/types/user_empty.py,sha256=A4W27DZxEldy8yFytWSZyovuINGRJWBn3dDN0KYQZcA,2537
|
|
2731
|
+
pyrogram/raw/types/user_full.py,sha256=wKXNuhk7UMJiS8449UQww9b_GKPbb5udvordYGpP4dM,23176
|
|
2732
|
+
pyrogram/raw/types/user_profile_photo.py,sha256=cWtGNa95S8JMnx8pCCcoftG9DqOvEsHfd2QqXeADrXY,3536
|
|
2733
|
+
pyrogram/raw/types/user_profile_photo_empty.py,sha256=oJsANPenewPM0_aCzb_KqaaQ57LccBxYc40bo3HJFGU,2077
|
|
2734
|
+
pyrogram/raw/types/user_status_empty.py,sha256=bD-P6A-88qccJLG0unS1FO4sZVc6MevNaeadcKRFAU8,2045
|
|
2735
|
+
pyrogram/raw/types/user_status_last_month.py,sha256=Dm60cpEF-HKb8MGRLGQ48uaNP6l9XH42tuXUuqv1scc,2315
|
|
2736
|
+
pyrogram/raw/types/user_status_last_week.py,sha256=XMARALP46YFZs-gMN_7BsunL9X88WEm4tH8xY0Knz6o,2311
|
|
2737
|
+
pyrogram/raw/types/user_status_offline.py,sha256=OY5JOFLidIOlbZ2UQt0ZlTIkqGANuPlaUjDPc9Kleuw,2254
|
|
2738
|
+
pyrogram/raw/types/user_status_online.py,sha256=fU4_LD-F3sng18Bow_5nDidmtnpBuHCONtgn1qbioJo,2227
|
|
2739
|
+
pyrogram/raw/types/user_status_recently.py,sha256=Q6Nr_AL5WODz4qbW92245ebbDi350f0jaVIRCOJVg1g,2311
|
|
2740
|
+
pyrogram/raw/types/username.py,sha256=cP0_MXQOS4X5JqUsrfAFdaMbchkHrm3sjNCPauFYORw,2793
|
|
2741
|
+
pyrogram/raw/types/video_size.py,sha256=rIG63wh3HEa-2FHh0oiXaxvawS8YQq9XfH_PvfBW0EI,3236
|
|
2742
|
+
pyrogram/raw/types/video_size_emoji_markup.py,sha256=e0vUB-NZpn4r6vNeriMC9o1wRFd5RqrckSBXo-O7s-c,2610
|
|
2743
|
+
pyrogram/raw/types/video_size_sticker_markup.py,sha256=DYPKE3DmPl6Gk4r17n3cAglU-0s9z4cOjQEBC2oOF0U,2970
|
|
2744
|
+
pyrogram/raw/types/wall_paper.py,sha256=n58Y0qxuCLEpCMWi6WwPIuKFlbJ3_W06erKqc81kQBA,4800
|
|
2745
|
+
pyrogram/raw/types/wall_paper_no_file.py,sha256=eIghC40db1mZpYREOmySjNdf1v_NS9L1j8ogikN7sQU,3526
|
|
2746
|
+
pyrogram/raw/types/wall_paper_settings.py,sha256=WO_8MupaVWFbEXx5Tdbj93SSDebdMRQ12Gnnamre3sQ,5936
|
|
2747
|
+
pyrogram/raw/types/web_authorization.py,sha256=qhYQu1RP3jPbuq9yPWjuj2h1YbX1M-LjR8oH1D18e6Y,4028
|
|
2748
|
+
pyrogram/raw/types/web_document.py,sha256=WeQ7BsWQjKt0tgNlBPML3M8U19RCmlKdbUcdvBMdsJw,3242
|
|
2749
|
+
pyrogram/raw/types/web_document_no_proxy.py,sha256=JGFkaAZOFs2ic4xQvs1H3p8bftGDQmh4gQ4G03xSWAc,3005
|
|
2750
|
+
pyrogram/raw/types/web_page.py,sha256=Hzu66lIRy2bTN2LjAkG_zJTtX1bP0_WuXI3NvCtUInM,9071
|
|
2751
|
+
pyrogram/raw/types/web_page_attribute_sticker_set.py,sha256=wrOEcD_vvVKltpri0aQ-2DnFHADP2YTXYLI-mq6eGhE,2970
|
|
2752
|
+
pyrogram/raw/types/web_page_attribute_story.py,sha256=mI9lx0LKKv3dV8yVOoOdoPkMcp8RZ52jp7lfuSAe2Nk,2917
|
|
2753
|
+
pyrogram/raw/types/web_page_attribute_theme.py,sha256=qkcVef4PmAU_7GOib9u-roPA5_5gGyJCzt54v4qXaKw,3029
|
|
2754
|
+
pyrogram/raw/types/web_page_attribute_unique_star_gift.py,sha256=fs_-HctEHh4EZsjpvtWhvN1Na1thlHGjcP0NfJPf-fc,2317
|
|
2755
|
+
pyrogram/raw/types/web_page_empty.py,sha256=vRXTYr-hLgpPpxDxkMDzSONiAeDDvlXqwSVIis_ZvOE,2554
|
|
2756
|
+
pyrogram/raw/types/web_page_not_modified.py,sha256=snpNrUdAh2d4Kc8hvgQvWRXzztNy_iX_vTAXL7KPb7o,2550
|
|
2757
|
+
pyrogram/raw/types/web_page_pending.py,sha256=DIHx4j7VXwiGQoCVFXaLSgODS3DyHd5GQAMZAY8SV0U,2761
|
|
2758
|
+
pyrogram/raw/types/web_view_message_sent.py,sha256=sSsKfj8wk38Lzcu43Tw7EaiXCVCuoTnbKNipf-LyzDI,2779
|
|
2759
|
+
pyrogram/raw/types/web_view_result_url.py,sha256=hFfEnZoLAHpkHFM0SKkNlynKmHT0FkbDtD563wAGVv8,3563
|
|
2760
|
+
pyrogram/raw/types/account/__init__.py,sha256=t_3sui1AEJzePp1uUyyJRhNZFKVVXztfD7JugOpngQs,2632
|
|
2761
|
+
pyrogram/raw/types/account/authorization_form.py,sha256=Y4-APZnGJRpjL4jyaY1mYFpbqqAb6xqtTtyBChV8nfk,4109
|
|
2762
|
+
pyrogram/raw/types/account/authorizations.py,sha256=ovCDzwkSgeKP1sNQBk5Dzb3lx45W_SZt6_cFtZIc6JU,2978
|
|
2763
|
+
pyrogram/raw/types/account/auto_download_settings.py,sha256=zOIJuTUQTJsIdhYaojlkgacl_k51x55NDPjI4iRat0Q,3182
|
|
2764
|
+
pyrogram/raw/types/account/auto_save_settings.py,sha256=9949xVsn7bwdlGxDIn6Wr8e-paouhAQ_VnS2hYsfWVQ,4320
|
|
2765
|
+
pyrogram/raw/types/account/business_chat_links.py,sha256=ji-JuXTXB4HfYqfn-hDVgsc0hyVGQ3FdV1fF-mlpoN8,3104
|
|
2766
|
+
pyrogram/raw/types/account/connected_bots.py,sha256=D2X3nNNXdet7MCJFTI4mK8-CtHNwkOqVHSMfHyRArZ0,2876
|
|
2767
|
+
pyrogram/raw/types/account/content_settings.py,sha256=v7f2ppXt_mL0j1M8DqPjrem-_d_zLZueVD7TAKsozlk,3037
|
|
2768
|
+
pyrogram/raw/types/account/email_verified.py,sha256=QT19aJtW6NeAVwoCyLaMCVC_KdRSu-HUtewC7n5VHEM,2426
|
|
2769
|
+
pyrogram/raw/types/account/email_verified_login.py,sha256=cFHeJwNLNdmNbafBLpbYMQH4jStN9Uv6dJ01XATwpHg,2765
|
|
2770
|
+
pyrogram/raw/types/account/emoji_statuses.py,sha256=t9d6JBUPYgZ_5pzv6SltCqzMzAdX62zSsysOfsieFIY,2904
|
|
2771
|
+
pyrogram/raw/types/account/emoji_statuses_not_modified.py,sha256=vbhW-QcqysITYoLqspr-fIka0FyhHIR3Pzf7O7MlHyY,2472
|
|
2772
|
+
pyrogram/raw/types/account/password.py,sha256=mQSPoft1G20uoyDtqteooJdnRUbIDjGRf-M1KXtfNqQ,7471
|
|
2773
|
+
pyrogram/raw/types/account/password_input_settings.py,sha256=mRQfVjs5LMaIzJTVUiB2g3SYlSGmFHwMFr9uTj755Ts,4409
|
|
2774
|
+
pyrogram/raw/types/account/password_settings.py,sha256=82bDPoBJtRGx2qqm_0_pjNLwYuDC2suFzuMmTPc_1qo,3231
|
|
2775
|
+
pyrogram/raw/types/account/privacy_rules.py,sha256=T3yBzJWwkKBxry9BZLVTPTJLMCCUk6tY6-73JYtCqJQ,3082
|
|
2776
|
+
pyrogram/raw/types/account/reset_password_failed_wait.py,sha256=sycoILA13Se5bZ148f_M7Idd9x_-w_9dmRs_YdCHo3A,2521
|
|
2777
|
+
pyrogram/raw/types/account/reset_password_ok.py,sha256=yeObjY9wbNB3Np-62ylgjTAuz5boSt6zkB2eFqHdyro,2286
|
|
2778
|
+
pyrogram/raw/types/account/reset_password_requested_wait.py,sha256=9zq-4kN-chKjb0JufRAQdP9AXTIVYA1L8Awmd5BUp_I,2533
|
|
2779
|
+
pyrogram/raw/types/account/resolved_business_chat_links.py,sha256=D1LfYitHiFILwAglSEoV5eW4QbSYzz19Lfqz2BA5QZ0,3830
|
|
2780
|
+
pyrogram/raw/types/account/saved_ringtone.py,sha256=P38Ttuhg5JOgVa-bkIcP05I6jJBUo8G2vsC04bpfRUg,2271
|
|
2781
|
+
pyrogram/raw/types/account/saved_ringtone_converted.py,sha256=mcJLyRQF0SEVA6DAXiQ7j5HyK3YMIbsbwHUNNOqCqMA,2547
|
|
2782
|
+
pyrogram/raw/types/account/saved_ringtones.py,sha256=r1AfHrWh2xy6veK7q6MeYy5tJUOqvuev2-OiMGNOrnY,2754
|
|
2783
|
+
pyrogram/raw/types/account/saved_ringtones_not_modified.py,sha256=vi1OY4TfKYd1a-6TcZ3csV79InYMN3Sd5ThJTrPRflA,2325
|
|
2784
|
+
pyrogram/raw/types/account/sent_email_code.py,sha256=6EMUYKWOjL4Ae0CF5a-srZB6AYrbcoZZ_6YMecA0vX8,2723
|
|
2785
|
+
pyrogram/raw/types/account/takeout.py,sha256=dzjT65yz7jehuMmS4gD6Q3iTRA4y1SHwHgknc78XlKc,2381
|
|
2786
|
+
pyrogram/raw/types/account/themes.py,sha256=03uNyusydnK4_6bJaHl8Fms0t7o-QqEoUhKleYJ3sc8,2703
|
|
2787
|
+
pyrogram/raw/types/account/themes_not_modified.py,sha256=BSufktoqcDBntC_PirrzOvxDITHiyPjyRHCmKDXaFt0,2313
|
|
2788
|
+
pyrogram/raw/types/account/tmp_password.py,sha256=-UWk8AEKgKB2tBdNZLGmcHtvyVwghYkeu9DPJCFF2o4,2745
|
|
2789
|
+
pyrogram/raw/types/account/wall_papers.py,sha256=vXiVemYZSGazIIngMLjB6R_1tDlnhAqmGxuy5mOJgwI,2743
|
|
2790
|
+
pyrogram/raw/types/account/wall_papers_not_modified.py,sha256=V0-f__5LmCeD361bwrqewJcM6AxC0gMPRyhyjlZwycU,2301
|
|
2791
|
+
pyrogram/raw/types/account/web_authorizations.py,sha256=MvoFQZ2kPzxSCAzFVW1HFL4p8oydW6oUlBvlP-EWTTw,2916
|
|
2792
|
+
pyrogram/raw/types/auth/__init__.py,sha256=MPlxLpy4mZg4LQKu_gk9o4b9NDCbEEP7GN4M7XL4GbU,2487
|
|
2793
|
+
pyrogram/raw/types/auth/authorization.py,sha256=Hb9j2QJ7VrUkSkcMYfGYsSwRnhYcXQBTwej-RityHMw,4615
|
|
2794
|
+
pyrogram/raw/types/auth/authorization_sign_up_required.py,sha256=SHzepJZ5NO21YRCOyfdpCt6ihnJ3Qnx1UvboGM1VlXU,3111
|
|
2795
|
+
pyrogram/raw/types/auth/code_type_call.py,sha256=8-UIT6LFQkSYhWKsKChOu8NGeoz7qBt_Ro5lwQb2vvo,2043
|
|
2796
|
+
pyrogram/raw/types/auth/code_type_flash_call.py,sha256=AlN0u0Mb8d2N-elvkNvKelPAoQP77Jts1zGOQsyApu0,2063
|
|
2797
|
+
pyrogram/raw/types/auth/code_type_fragment_sms.py,sha256=z1Af9FQjfF4MS9viznex26DmWhwaYHH8gP2a8AWeKZM,2069
|
|
2798
|
+
pyrogram/raw/types/auth/code_type_missed_call.py,sha256=YAHc9KwmVda9BMoJw4o02im_JfAEjsaLxFFAcQEqWYI,2067
|
|
2799
|
+
pyrogram/raw/types/auth/code_type_sms.py,sha256=nPYhZOeah73YltrgohftrV1eWB-LEMRnK_wj4-Lkka0,2039
|
|
2800
|
+
pyrogram/raw/types/auth/exported_authorization.py,sha256=epEkT0y9l7L5zvRFOwEEFvM51jnUqTf6m6BW2tlsnS4,2650
|
|
2801
|
+
pyrogram/raw/types/auth/logged_out.py,sha256=HEFZi1trSSvjl5WYFFJIj_nayPKaeKXTeDTuW5Zsj8g,2729
|
|
2802
|
+
pyrogram/raw/types/auth/login_token.py,sha256=VJCIZ8QVYEmF8drAQaRsNIWWYtSrdba3iN1XhT3D0eA,2670
|
|
2803
|
+
pyrogram/raw/types/auth/login_token_migrate_to.py,sha256=XVcxFq0I4rpevq7YyvSO5ihIr9EnZKL_kxiyLTkqUUw,2686
|
|
2804
|
+
pyrogram/raw/types/auth/login_token_success.py,sha256=ZOd0jOJKTI6vlszquEccYshogW-yrpbz6skh9K79jjo,2640
|
|
2805
|
+
pyrogram/raw/types/auth/password_recovery.py,sha256=qd_kmOcMgcoWY6PiBs5ZAy-6jzJr4THCSJyMKCE8l7I,2516
|
|
2806
|
+
pyrogram/raw/types/auth/sent_code.py,sha256=TbddKHXoJnjYkhDlf42yYRtugnvN9oDuTIQBMf9Fl2U,3875
|
|
2807
|
+
pyrogram/raw/types/auth/sent_code_success.py,sha256=zmwJDxFbH2b3ZHM8LARfG2YFTR5Y769kkT2w4WQoLSQ,2774
|
|
2808
|
+
pyrogram/raw/types/auth/sent_code_type_app.py,sha256=wr0f2chdkupP_T_Lwa03kEPM4-_Vpv4Of5u03Kdt7eY,2226
|
|
2809
|
+
pyrogram/raw/types/auth/sent_code_type_call.py,sha256=kuKoFCrbBltQGUPOg8BzccoTSDjOSrl4073u-3_QR0c,2230
|
|
2810
|
+
pyrogram/raw/types/auth/sent_code_type_email_code.py,sha256=8hfjpg2l1g6AkLbo7emCHS7ElLCms2IQsv6GwMthruM,4424
|
|
2811
|
+
pyrogram/raw/types/auth/sent_code_type_firebase_sms.py,sha256=Hps7NrX6KLcf9n13B9JRdBG-XEh86wOjkTFWgO-hHd4,4609
|
|
2812
|
+
pyrogram/raw/types/auth/sent_code_type_flash_call.py,sha256=T0XgaN-W0v2pJ1afFfw05Ozg5NoRRx4rOqxUguY4-fY,2257
|
|
2813
|
+
pyrogram/raw/types/auth/sent_code_type_fragment_sms.py,sha256=hjaMFJZpOTJ3hryfEVjiPAyrwrq7hjT7RNjYVLVrImk,2446
|
|
2814
|
+
pyrogram/raw/types/auth/sent_code_type_missed_call.py,sha256=ZlR0Xm9qoN10bAzHHsQGt6eE8ynuvwh_-vUyEm5WaAY,2469
|
|
2815
|
+
pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py,sha256=3ODIXRbgndpervFyk4TsC7eilwCCt9CXCf0L5jb-Hg8,2905
|
|
2816
|
+
pyrogram/raw/types/auth/sent_code_type_sms.py,sha256=zb9vUGBP5A6QxcTarTgJa0qRXK79QCImshZOaUpENEA,2226
|
|
2817
|
+
pyrogram/raw/types/auth/sent_code_type_sms_phrase.py,sha256=HE-V4ZUoMFad8U4iCJ8Nm72KHqKts0-wdT1U17BPg0c,2487
|
|
2818
|
+
pyrogram/raw/types/auth/sent_code_type_sms_word.py,sha256=yWRI-m24-aaY025ijnyBSVlBpKotlaf8ShFBdvW7v9c,2479
|
|
2819
|
+
pyrogram/raw/types/bots/__init__.py,sha256=N6qkl7XFYnX1fw66Pe6ujNLiYDTZBl3z2sV77NNQcbk,1200
|
|
2820
|
+
pyrogram/raw/types/bots/bot_info.py,sha256=pyyTCm8ssTyg3-zupOy3E1fUXsvLF3qxxm9LH_iuM8g,2843
|
|
2821
|
+
pyrogram/raw/types/bots/popular_app_bots.py,sha256=glCAgbz4wb01neUP9v0BvZV5xqPg-567cN132-KcnoQ,2967
|
|
2822
|
+
pyrogram/raw/types/bots/preview_info.py,sha256=4CrQbx6R-R4W1ZnhnYIvIwzwJgkEPzIoNYF2snPnZEY,2806
|
|
2823
|
+
pyrogram/raw/types/channels/__init__.py,sha256=9W0NaShsC3ZHmVrocffp1is79wfB2slpeNwmXMaHznM,1647
|
|
2824
|
+
pyrogram/raw/types/channels/admin_log_results.py,sha256=KtVhOCduuJ3bVwYe6djbjE8Iqmbnjz7SifbTpyGd4bU,3113
|
|
2825
|
+
pyrogram/raw/types/channels/channel_participant.py,sha256=gVycHjXYJPUKhJaSdCP2mTg9dVy53F9oN37mvxIAZEc,3146
|
|
2826
|
+
pyrogram/raw/types/channels/channel_participants.py,sha256=bh6pcb78UsILYoad3YWKWwmVL8F6MaTVt3p7tpPn2K8,3391
|
|
2827
|
+
pyrogram/raw/types/channels/channel_participants_not_modified.py,sha256=XaZlSHFOTSjn2UojqhRbCfsdnw8oTdu891p9JfpDeIM,2351
|
|
2828
|
+
pyrogram/raw/types/channels/send_as_peers.py,sha256=MG3ezFbvBSXK_Geojn6o8ejmlF7vhZn4e2JT3zsGAgY,3042
|
|
2829
|
+
pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py,sha256=dXvZo2OUebQEmugfrmlto3c292aJxVJ0RuulYzKvMbU,2395
|
|
2830
|
+
pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py,sha256=a5a0XZd5xFo5SaXesNvY7uuuhYlv9d6ssYnPFpZpre4,2946
|
|
2831
|
+
pyrogram/raw/types/channels/sponsored_message_report_result_reported.py,sha256=KNW97Y5XXfJcxJgW1OIavcGoGPTCM_Bv3gxjd-yii_Y,2391
|
|
2832
|
+
pyrogram/raw/types/chatlists/__init__.py,sha256=17Dp_QHe7hIvMvqhbGs9vQwEkGdU1QLz6jPz_m4wZoU,1345
|
|
2833
|
+
pyrogram/raw/types/chatlists/chatlist_invite.py,sha256=Q3E2TGF7gCXohbvmu_TCxElwFwhHggQU_RNRalr_-IQ,4129
|
|
2834
|
+
pyrogram/raw/types/chatlists/chatlist_invite_already.py,sha256=Y6fcAvcqvDPEeSAhwfYLi5hwVOFYqS7PgUJedWvTQiU,3731
|
|
2835
|
+
pyrogram/raw/types/chatlists/chatlist_updates.py,sha256=4CFRQDVgh8JV8AsZZZ33fEghMEYY0o582SVZDbTMseY,3122
|
|
2836
|
+
pyrogram/raw/types/chatlists/exported_chatlist_invite.py,sha256=PCBDQFCexjjuumxtV0IQLYM3EwTVRzOVoIv534ycBhc,2896
|
|
2837
|
+
pyrogram/raw/types/chatlists/exported_invites.py,sha256=bXptyh7SNEslC_N1GJSYP8vx8RHxzYWOOBSyuhAnuks,3140
|
|
2838
|
+
pyrogram/raw/types/contacts/__init__.py,sha256=ILyf08xtysxsnEGpxMaM1OHl8-wtLiiWBb7UPN3gPWo,1548
|
|
2839
|
+
pyrogram/raw/types/contacts/blocked.py,sha256=lxzpZ0AKz2C5V0H0TXLQa-IQzMAEY98xMAjdsob_KzM,3043
|
|
2840
|
+
pyrogram/raw/types/contacts/blocked_slice.py,sha256=SSxIh_bGfS-Bx9JdRY7mp1oqNYZezeoEUGKTPSt_RaY,3273
|
|
2841
|
+
pyrogram/raw/types/contacts/contact_birthdays.py,sha256=he3lTbCpTsZdxZIUI2F5pdWtO0nilESIjii3tauqEnc,2848
|
|
2842
|
+
pyrogram/raw/types/contacts/contacts.py,sha256=xCiqWtxn29GMU96aVOSpToc_TgiI52YgxSEmJ1ygKwI,3037
|
|
2843
|
+
pyrogram/raw/types/contacts/contacts_not_modified.py,sha256=S_C8qfsOpaauIa5XdlN2GugfoUndVpCT4F4VDekcKHY,2292
|
|
2844
|
+
pyrogram/raw/types/contacts/found.py,sha256=Q1KtZ0yM9cf9RGELylu8uiIyOvXKwmjEOPInAQivPXA,3317
|
|
2845
|
+
pyrogram/raw/types/contacts/imported_contacts.py,sha256=lz10c27EUCmA7QKOT2_1CvxBzqTnMvA5W72tKCGhoqU,3581
|
|
2846
|
+
pyrogram/raw/types/contacts/resolved_peer.py,sha256=S1Rr_YY67VOJa4-zdt3xVwMquvo26HiRpavEEEe5fkU,3034
|
|
2847
|
+
pyrogram/raw/types/contacts/top_peers.py,sha256=Bg9H3YPXJGCtvbNRhiEHaFv7bwl2tMY6GMAeiOQ3pX4,3114
|
|
2848
|
+
pyrogram/raw/types/contacts/top_peers_disabled.py,sha256=nFOFRhB9SOtqgkI3w9nE_1aZ7STwkVxnTSzfpUEccHQ,2280
|
|
2849
|
+
pyrogram/raw/types/contacts/top_peers_not_modified.py,sha256=x5Ndn6Khya24GAHwvYpI_8BarRv6EMg4zwARSZQDMuI,2292
|
|
2850
|
+
pyrogram/raw/types/fragment/__init__.py,sha256=cBiBaN-W6RbD3OEe1NNToHTnImwBYg_DEljb_zDNz04,1131
|
|
2851
|
+
pyrogram/raw/types/fragment/collectible_info.py,sha256=fn_Zyl3irERxiuQTOo_VUVVSbNjttIorjQQ-3-XEPe8,3740
|
|
2852
|
+
pyrogram/raw/types/help/__init__.py,sha256=xZeM9RSzhurzPD75lc1NGEXq-MQcO3aQ_si6StiJAUU,2559
|
|
2853
|
+
pyrogram/raw/types/help/app_config.py,sha256=KfBD6iB0gWB5Z2OqAD-SdW7_EBFcFRKuANBqqkxHcFM,2667
|
|
2854
|
+
pyrogram/raw/types/help/app_config_not_modified.py,sha256=IPkGfD6L6-N8IqIssxr4FXCMisynye9jENkr8Asu2dw,2286
|
|
2855
|
+
pyrogram/raw/types/help/app_update.py,sha256=2cYHdRv7XqZvjat2a9PdEBZk2BE7AuaKGhsgqbN6F8M,4727
|
|
2856
|
+
pyrogram/raw/types/help/config_simple.py,sha256=C1NH-sqyjr1QoWRiiQv6kOnn22Siiu_dXPqASp57Vj0,2735
|
|
2857
|
+
pyrogram/raw/types/help/countries_list.py,sha256=tgINTjlv8jTV3aAH_4VkYPJL8R5M2kuFoEVL_kUVFz4,2752
|
|
2858
|
+
pyrogram/raw/types/help/countries_list_not_modified.py,sha256=cJuEcwf2V-Nancp01zrnpNe8RN-v9QnWHHXj-gPeNlU,2310
|
|
2859
|
+
pyrogram/raw/types/help/country.py,sha256=uFtP6ZcPjhN0DQ-xd-lAhpgzrpLEQKtQox00uE34vUc,3490
|
|
2860
|
+
pyrogram/raw/types/help/country_code.py,sha256=d7TJtdXyIAswVVHAnGfo9HrUuzIwCIIdt-wbtRifNvQ,3172
|
|
2861
|
+
pyrogram/raw/types/help/deep_link_info.py,sha256=AX_erfBLdEyQG82w2H_kKShGcvq_02Pnng8SR0Xptnk,3272
|
|
2862
|
+
pyrogram/raw/types/help/deep_link_info_empty.py,sha256=N65oT9V2doDPGAB0h6MUeNDAfs5iJx3-PVYB3ldUP_M,2280
|
|
2863
|
+
pyrogram/raw/types/help/invite_text.py,sha256=VIJK7dmS8xxBLE-BbQbWdmHGbram4NLrqjPJ7iaiLk4,2422
|
|
2864
|
+
pyrogram/raw/types/help/no_app_update.py,sha256=SBb0h_XRTATRv6sx4J904Ux2hVTu_PI6Tl1ksKtYVAc,2250
|
|
2865
|
+
pyrogram/raw/types/help/passport_config.py,sha256=rBae_o-lpenP3Bc-oW9wt9k088JEw1ozsbRVEX76AYs,2774
|
|
2866
|
+
pyrogram/raw/types/help/passport_config_not_modified.py,sha256=SgE5cwQR5B5Fa7-ktX3k4SWcOhLWpN2S9bZz2D7TYE4,2316
|
|
2867
|
+
pyrogram/raw/types/help/peer_color_option.py,sha256=bhZsygzYoltyajJjXS9TkHD6HMtXO1XUyZNgUDQVnzc,4519
|
|
2868
|
+
pyrogram/raw/types/help/peer_color_profile_set.py,sha256=YCPj53_N_GIbeHJJBS51RHuEj6maQ9v5PRb6WXmppHk,2949
|
|
2869
|
+
pyrogram/raw/types/help/peer_color_set.py,sha256=mfIsLSoyh6YX0fGnureY0NwlUdEtcR1zN80ydmWXAjw,2254
|
|
2870
|
+
pyrogram/raw/types/help/peer_colors.py,sha256=Xyk-sDo5nWBN5pem1SE26v7G97hWzemMckPncEtMseY,2775
|
|
2871
|
+
pyrogram/raw/types/help/peer_colors_not_modified.py,sha256=T4_E7uwl0NOeDA2U_RSRpltJPrqjb1EKT5Ux3H-Dh6E,2332
|
|
2872
|
+
pyrogram/raw/types/help/premium_promo.py,sha256=48UrXEO-H1sSqt72yMQNTa9WQP-1ZLEhJ7Bw7TScaN0,4189
|
|
2873
|
+
pyrogram/raw/types/help/promo_data.py,sha256=0YhX5JSBU3-c45oOai3j7RBm2iBff2LIFa72ZcruYJo,4321
|
|
2874
|
+
pyrogram/raw/types/help/promo_data_empty.py,sha256=2ZnVgbBGRv8YXIpdpEqO2tb-qauq4FVJJGaQPU72JvI,2438
|
|
2875
|
+
pyrogram/raw/types/help/recent_me_urls.py,sha256=Ce5QDiWWo9S9_d0W99_atNeL0kOOO087ugn6MbKb_3s,3034
|
|
2876
|
+
pyrogram/raw/types/help/support.py,sha256=MyPxMIjkMDN3cPk-2FMi3kLD2FopDn_uR4xOC_DJOTc,2687
|
|
2877
|
+
pyrogram/raw/types/help/support_name.py,sha256=wLdnH5KzdgfN-pJftkWNqE-62c04tIpljA34b20b154,2401
|
|
2878
|
+
pyrogram/raw/types/help/terms_of_service.py,sha256=uRXk5aA-0ywZ_Nn0SZlci9kLBE5DxBbY5LU4sTnsfDI,3549
|
|
2879
|
+
pyrogram/raw/types/help/terms_of_service_update.py,sha256=y0Rf6bgJpJ-VTJLuFdBFoTZLaRV3NO1Qwo52hcNkqnM,2890
|
|
2880
|
+
pyrogram/raw/types/help/terms_of_service_update_empty.py,sha256=WJdU_mp_G4KMO3mkstJOCCY0RayNYGoPSwB96LpzlR4,2504
|
|
2881
|
+
pyrogram/raw/types/help/timezones_list.py,sha256=JDnYw_xuRBaxvabpjL4cQnkrwvhVn7sxhTfMyoj6K38,2736
|
|
2882
|
+
pyrogram/raw/types/help/timezones_list_not_modified.py,sha256=oXsx968r0wc7p19USh9qsQfABQrdtvOrfDzAZzSUYwI,2310
|
|
2883
|
+
pyrogram/raw/types/help/user_info.py,sha256=0hV4-U3h5YbfHfte8QUOL1Q0cRnUT62AA0T7rE02L9Y,3186
|
|
2884
|
+
pyrogram/raw/types/help/user_info_empty.py,sha256=Us557-O2WQP-0KHW38mhdgwl0s9WwTxObreERP8Bzik,2288
|
|
2885
|
+
pyrogram/raw/types/messages/__init__.py,sha256=L2lXOv490lO67qzLERB-vHWQxFHls-D_etpSqTIEV5c,5561
|
|
2886
|
+
pyrogram/raw/types/messages/affected_found_messages.py,sha256=AuFnvbT-FC8RptHxG87rML_45yCNB7EMgJPmw_9Wipc,3200
|
|
2887
|
+
pyrogram/raw/types/messages/affected_history.py,sha256=_gB7pcVnh4L235kGuTmajIlhqJHNDA_4Mxj9nQ1Z5hU,3126
|
|
2888
|
+
pyrogram/raw/types/messages/affected_messages.py,sha256=g6D8Rw0WOtBzyUzyQsBHFYTZSn7UC-vX8dwsmd4nfiI,2789
|
|
2889
|
+
pyrogram/raw/types/messages/all_stickers.py,sha256=H5QgvNydmNR71GSRqxftImjnGHeQBRxI3Ng5_zV90gc,2780
|
|
2890
|
+
pyrogram/raw/types/messages/all_stickers_not_modified.py,sha256=vDJyZcUl7v6ZqTdNzZ-kq8uLBZ-z3vKsg_mL0RhRkGQ,2388
|
|
2891
|
+
pyrogram/raw/types/messages/archived_stickers.py,sha256=U72LFgcr3bn5MPxZPkrFxI4jxgOXHxd0A1Ix-YFExnQ,2766
|
|
2892
|
+
pyrogram/raw/types/messages/available_effects.py,sha256=RBchmhes_hF7LriLN0OLr-__-IAIP8bQIqT8X9oECFo,3097
|
|
2893
|
+
pyrogram/raw/types/messages/available_effects_not_modified.py,sha256=_Lok1QvLIglq4W8qS30WruAdPsChRagwwY3eeQlvME0,2340
|
|
2894
|
+
pyrogram/raw/types/messages/available_reactions.py,sha256=6cd7UhLb0HiqERmZKlhRBq3aoyHDhTLRF6mgJxf-rLI,2814
|
|
2895
|
+
pyrogram/raw/types/messages/available_reactions_not_modified.py,sha256=XJTtLftQwFHS1jEbA60_NxPz2KLGv4z-8pMqfc7lnvk,2352
|
|
2896
|
+
pyrogram/raw/types/messages/bot_app.py,sha256=9GuxIQ1fxBUfBeVH9kMk1M7EmsKBYISPIMVzi4VbamI,3460
|
|
2897
|
+
pyrogram/raw/types/messages/bot_callback_answer.py,sha256=uq35eUZb7HjyPFHb46TjJKsEHlSWR2OeBv9Ebdr3l8w,4097
|
|
2898
|
+
pyrogram/raw/types/messages/bot_prepared_inline_message.py,sha256=hSXGQWu9OZU5ZItE5AklCKihBpgvRv3JKATH7NAfMcg,2733
|
|
2899
|
+
pyrogram/raw/types/messages/bot_results.py,sha256=YmpFQQmkO508OcIveqSi9Ki-jazV1AFh0TusFuqRijE,5107
|
|
2900
|
+
pyrogram/raw/types/messages/channel_messages.py,sha256=P6fk_eKHwKdCA-PV7F7gfoj5qGNj_gxNRLaZ_4gJ714,5105
|
|
2901
|
+
pyrogram/raw/types/messages/chat_admins_with_invites.py,sha256=Vtb2xREqz0MrV4wo485St63J6Fy-U-3gwnYQRWHGbhQ,2883
|
|
2902
|
+
pyrogram/raw/types/messages/chat_full.py,sha256=gzHAUJdo2raotAMOxneVicTCaxbgnVnXbWNlAkPppQs,3073
|
|
2903
|
+
pyrogram/raw/types/messages/chat_invite_importers.py,sha256=a-SAVC3RnO5LEa2bzZjzpodlYFg-OAx7YADah3T0l4o,3102
|
|
2904
|
+
pyrogram/raw/types/messages/chats.py,sha256=QrWXlgw8xLaYIyQ463Q3ad6Lu6jxLZE822jF9HFGkvQ,2735
|
|
2905
|
+
pyrogram/raw/types/messages/chats_slice.py,sha256=NcFqtTIiZH5h0w8qShkeAB3uh558OHaqoOGDFmdUzKc,2963
|
|
2906
|
+
pyrogram/raw/types/messages/checked_history_import_peer.py,sha256=0Jxdx7liTASweMvM5vPGu5aM0bVp31J2CL5d48_Hv3M,2558
|
|
2907
|
+
pyrogram/raw/types/messages/dh_config.py,sha256=L-PKE9FoppzkKF7TJyOx1wyk4-X4SGqPg_VAlhtgyHU,2983
|
|
2908
|
+
pyrogram/raw/types/messages/dh_config_not_modified.py,sha256=z5SYr6fbNQTPwQI2m_NUvY03Jw7uUzVVUI59bHFOr-g,2458
|
|
2909
|
+
pyrogram/raw/types/messages/dialog_filters.py,sha256=kPR2Tg9xndvNjgjtnmL89zgRabyVjhsEhKVlEOLlUdM,2912
|
|
2910
|
+
pyrogram/raw/types/messages/dialogs.py,sha256=-poZSAQe_KgFly7I5-7NulhE4bQylSZNW9YW9BynNgA,3333
|
|
2911
|
+
pyrogram/raw/types/messages/dialogs_not_modified.py,sha256=USCS6aIAsMiGhwWJxEaVl6KOHCvgcURWPOLmzAyq938,2444
|
|
2912
|
+
pyrogram/raw/types/messages/dialogs_slice.py,sha256=Xfnmzj3VCtrgiWaq3UKOzTPYs3MDOBzngIz3r3Bh4ZU,3561
|
|
2913
|
+
pyrogram/raw/types/messages/discussion_message.py,sha256=2h54DuE09YimGYanoOdXGW7Gc_CgPTT8_XA2P9MBG2w,4797
|
|
2914
|
+
pyrogram/raw/types/messages/emoji_groups.py,sha256=MKPHmhEn_ZX58kMuSgUcCkKuIiUMHCTJyV3fAF3LfuY,2854
|
|
2915
|
+
pyrogram/raw/types/messages/emoji_groups_not_modified.py,sha256=MpQo8--cVV6u-oxxb-TexSC7roIFmDkfgxS0EURWVps,2447
|
|
2916
|
+
pyrogram/raw/types/messages/exported_chat_invite.py,sha256=APdYA6JXwi7rGKIulHWMqZHHBpkP4Ko0A9GgDtaCTF4,2885
|
|
2917
|
+
pyrogram/raw/types/messages/exported_chat_invite_replaced.py,sha256=eupzYsbldT8EC1Dr_xyamPPwh8tfi5GHfrs7P9lLvMs,3265
|
|
2918
|
+
pyrogram/raw/types/messages/exported_chat_invites.py,sha256=1wLgjxg0xzC4aHcLLbd6E5m8JtVbsTDW6SFa7mgqzB0,3084
|
|
2919
|
+
pyrogram/raw/types/messages/faved_stickers.py,sha256=lUv2rJVTdRj83dTeq33BuVNXaHHmWVQjJU02vYKDB8A,3039
|
|
2920
|
+
pyrogram/raw/types/messages/faved_stickers_not_modified.py,sha256=-JSzU4fI4N7C38udt6YZIkh-FWNoSnXxT6SCp3v7zsY,2322
|
|
2921
|
+
pyrogram/raw/types/messages/featured_stickers.py,sha256=8uTNRTD6BvlWwc5qySpWBX1KfiHlkIYJw6hTDHrVjis,3641
|
|
2922
|
+
pyrogram/raw/types/messages/featured_stickers_not_modified.py,sha256=Mq6S0c12hWD6ZdKW0pLctX6GLWMXMVQsmEH5ZfnuJ0Q,2591
|
|
2923
|
+
pyrogram/raw/types/messages/forum_topics.py,sha256=73Kl171WFNHi3cMajF7iZAzTfKlVOn-Ad5UVetFEKGE,4241
|
|
2924
|
+
pyrogram/raw/types/messages/found_sticker_sets.py,sha256=IVjQEHQXnra_-LWqixXAISxCs5GGaDyOrEv0FkDHxc4,2804
|
|
2925
|
+
pyrogram/raw/types/messages/found_sticker_sets_not_modified.py,sha256=ZhPfoD87BteEnLWD9_IX6i-njxhNlshuC8UsbAAJOGI,2382
|
|
2926
|
+
pyrogram/raw/types/messages/found_stickers.py,sha256=_cEYpC5WgN4AwLAwkv7QJyjxPsaENvC1DuxxBrYvX3w,3218
|
|
2927
|
+
pyrogram/raw/types/messages/found_stickers_not_modified.py,sha256=9kwQMIS7n-ixexgF-zCs9yUOV15pdP9yiWNfQMud0ME,2748
|
|
2928
|
+
pyrogram/raw/types/messages/high_scores.py,sha256=TI4MVWXdEA1c6YtE3wiLZEql9jOPbQixYucOY90HcXs,2828
|
|
2929
|
+
pyrogram/raw/types/messages/history_import.py,sha256=mXU2DNbIBKkZ1kptwyx43CMyhlZ39y-w2VjKLfzOkX4,2413
|
|
2930
|
+
pyrogram/raw/types/messages/history_import_parsed.py,sha256=mhTsu9ZLfjPAS-NbXudvVg6eFA7SOplvzL_ef3q-9hc,3153
|
|
2931
|
+
pyrogram/raw/types/messages/inactive_chats.py,sha256=IgCZugywUq6AkvKKx1g0VPmc02XCsCsOXI2f0qk68-c,3017
|
|
2932
|
+
pyrogram/raw/types/messages/invited_users.py,sha256=VEdHow4jWkYWVhVEKuKXUhMfg25cwsQMBkAmX_fNyR0,2975
|
|
2933
|
+
pyrogram/raw/types/messages/message_edit_data.py,sha256=swqK7E8mv-IZ8squCLfd85zEE377hOEEV6vKu4bE0dY,2560
|
|
2934
|
+
pyrogram/raw/types/messages/message_reactions_list.py,sha256=LrWgJ1Qy8VsPPpIXzEZ529MCUnLUGePSHK3CL0DMpRE,3857
|
|
2935
|
+
pyrogram/raw/types/messages/message_views.py,sha256=s3RPScXdow8XavsYzRv8Ve8pNsAKWsOwIRf_-HbWwPw,3062
|
|
2936
|
+
pyrogram/raw/types/messages/messages.py,sha256=ECHIgKAteVwrbjAxZwPZEVbTwIqHQ32VcDRo1yVpqIo,3571
|
|
2937
|
+
pyrogram/raw/types/messages/messages_not_modified.py,sha256=tjG0NbE3GUxZJD34_G2mzsuWLbRxJnUA10SfxruRRJc,2977
|
|
2938
|
+
pyrogram/raw/types/messages/messages_slice.py,sha256=ykT8YoxmDJ8pGkUr4DjLfyUKz6dYxAJ3lUBxwXYnn4Y,5014
|
|
2939
|
+
pyrogram/raw/types/messages/my_stickers.py,sha256=SmkiZ-Iyv-hHDfKqdq2vXnr8pzU0Uo5YMLcTnUdS-y8,2730
|
|
2940
|
+
pyrogram/raw/types/messages/peer_dialogs.py,sha256=y31l_frwfGJ1QePn2_IpVMLPJ5LSQe8tHL1jD4hHUwg,3680
|
|
2941
|
+
pyrogram/raw/types/messages/peer_settings.py,sha256=eaJuQlVpk73XgG_IebyUC_wm09azpfZr57qVxyscmeE,3066
|
|
2942
|
+
pyrogram/raw/types/messages/prepared_inline_message.py,sha256=RJquiGauWgEMXA0jrZoHHQro4Kd6KxchDyfrs5DyPZE,3710
|
|
2943
|
+
pyrogram/raw/types/messages/quick_replies.py,sha256=ycxxBlQFf2SIue1Y-B0p1F4r8S1h0GKCLam1mAymiiw,3433
|
|
2944
|
+
pyrogram/raw/types/messages/quick_replies_not_modified.py,sha256=IN1rKwyz-iawrZM5X3dRo1TOVe-Gsmc3kZY8_Y7dFBU,2316
|
|
2945
|
+
pyrogram/raw/types/messages/reactions.py,sha256=TkjN_GLzTMof3S0mUbzJSFjxUqVJXxH-eMSVvhrBTvY,2817
|
|
2946
|
+
pyrogram/raw/types/messages/reactions_not_modified.py,sha256=lG1BQEH1CgUHY4afq-52-NMK_qgkPCndQxTRj6RbKXc,2388
|
|
2947
|
+
pyrogram/raw/types/messages/recent_stickers.py,sha256=-QgFFjqMoKSUlimr4frMGxXhpfjJwKifqzkyKBlr3uM,3293
|
|
2948
|
+
pyrogram/raw/types/messages/recent_stickers_not_modified.py,sha256=0w6ShZ218rzabZSw0FS1LouhHtjD0rGnKIkHgK9Adu4,2326
|
|
2949
|
+
pyrogram/raw/types/messages/saved_dialogs.py,sha256=CLbs09pyD-7DQPabWSSQZGhBJHiu2_vmy-_c_PNwU20,3428
|
|
2950
|
+
pyrogram/raw/types/messages/saved_dialogs_not_modified.py,sha256=-2jOPtUlKV0nBMehdqYKyF90wAbUwUXv_GsuhwG7U9o,2519
|
|
2951
|
+
pyrogram/raw/types/messages/saved_dialogs_slice.py,sha256=Gt566FpOwZWa4IRCiRcEZuLICfjVHYLbj-6pK43Agnw,3656
|
|
2952
|
+
pyrogram/raw/types/messages/saved_gifs.py,sha256=9LhgeS1mefjzEiZ-f5fL935-FbpXxu9XI-NVyGsmBYg,2682
|
|
2953
|
+
pyrogram/raw/types/messages/saved_gifs_not_modified.py,sha256=MuzbZvAG1N7V-TIHH8SthQ5gr42VgWZWDd5KPv5_mJM,2298
|
|
2954
|
+
pyrogram/raw/types/messages/saved_reaction_tags.py,sha256=O6QEfYyWBxzn5RTmaW-fql90XbidLKEdDI2an97R9sw,2762
|
|
2955
|
+
pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py,sha256=dRPSlRofami3xcRsu915TeeA-oTrrQ2tnAKndyMGmSU,2346
|
|
2956
|
+
pyrogram/raw/types/messages/search_counter.py,sha256=rLOOR4jww_zyUDgSSXNDECvf7rpgshuwHEhsWNQZYnM,3053
|
|
2957
|
+
pyrogram/raw/types/messages/search_results_calendar.py,sha256=LcIIP5rAUJKYTr0ZhdOJ6kdkb2Fjzz2XhloEuNfcAek,5003
|
|
2958
|
+
pyrogram/raw/types/messages/search_results_positions.py,sha256=afZFA3evWpTPidGlIn19G0Cb71_IEjtZwinXjtA7Ziw,2863
|
|
2959
|
+
pyrogram/raw/types/messages/sent_encrypted_file.py,sha256=RCGudel8NW9KTw-hfdojpx1FC1dF_LbkeJAnmExbUsw,2805
|
|
2960
|
+
pyrogram/raw/types/messages/sent_encrypted_message.py,sha256=zPSggnKE13jWKL4TIENr95DhsTdboTSN5xwHzzGbhQ8,2543
|
|
2961
|
+
pyrogram/raw/types/messages/sponsored_messages.py,sha256=1k3lIpUe2jG-4jF6bUJo19AIVqAP_HCMOlMDtNq371o,3634
|
|
2962
|
+
pyrogram/raw/types/messages/sponsored_messages_empty.py,sha256=eriE1bLu6LTOqWHwtV5UBQ9FCUvOEQgKogJOE9z5pQs,2322
|
|
2963
|
+
pyrogram/raw/types/messages/sticker_set.py,sha256=-eIYi7oPeA9wGum6xlcSYS9M0jGYYMhTbbeHcaAr9H0,3735
|
|
2964
|
+
pyrogram/raw/types/messages/sticker_set_install_result_archive.py,sha256=dlYry0kEpNs8y6QoRCGS2jMYjmhD252QpxNA_D6Y_8w,2619
|
|
2965
|
+
pyrogram/raw/types/messages/sticker_set_install_result_success.py,sha256=s8eCb3tfuRTSc5Uosg3Q23Eil7RlUDwYwVZWmShy3m8,2357
|
|
2966
|
+
pyrogram/raw/types/messages/sticker_set_not_modified.py,sha256=3ylQCx0PiYBJ8R16LpzkSfD-Cl92ga2mnhs71qjjLXc,2622
|
|
2967
|
+
pyrogram/raw/types/messages/stickers.py,sha256=tkstR_hGn2jW99wewkeZIiDhP_F49VIBu1M_sbtgAQE,2712
|
|
2968
|
+
pyrogram/raw/types/messages/stickers_not_modified.py,sha256=DiI6SyoEeyW3jOdglwnqyM_zjeZz8-453vIhahRLo18,2292
|
|
2969
|
+
pyrogram/raw/types/messages/transcribed_audio.py,sha256=3L6T_E1rBhlbldQlstehXf1tpugMzx13UHhZhMAPaBI,4140
|
|
2970
|
+
pyrogram/raw/types/messages/translate_result.py,sha256=rSfK7-6I2NJh8fNq2c7J2Ik1zaP7DV6BGD3g7N1SK_o,2560
|
|
2971
|
+
pyrogram/raw/types/messages/votes_list.py,sha256=5qfzkjohPajWY5_evIrkjv_y5B9FMymmTUbUOmIaslQ,3739
|
|
2972
|
+
pyrogram/raw/types/messages/web_page.py,sha256=focSUf4V2ZBGoZ-fIQ5604pt5JhX5-0_g77W2JQ_VmA,3007
|
|
2973
|
+
pyrogram/raw/types/messages/web_page_preview.py,sha256=6BhrE6055bDSquQJQ89HVplT_OPuFcLFtNkTubsUlMA,2782
|
|
2974
|
+
pyrogram/raw/types/payments/__init__.py,sha256=xW-MWHHZn20NaVO7Xli4ZwHKIZe411htnV7yJRAzz9k,2431
|
|
2975
|
+
pyrogram/raw/types/payments/bank_card_data.py,sha256=KjaT4BZKN-I_2PaCTw70Cye60LQW9uhJgLg2HcNMtQw,2777
|
|
2976
|
+
pyrogram/raw/types/payments/checked_gift_code.py,sha256=bCiOzvW_psRwijB9luIbvhPsQzklWO8yWH0V_eLJN5g,5232
|
|
2977
|
+
pyrogram/raw/types/payments/connected_star_ref_bots.py,sha256=-XUKnP-LSKQi3gzqUuaL5IAXdU1ATzUBlOtO_Ac9Y5w,3289
|
|
2978
|
+
pyrogram/raw/types/payments/exported_invoice.py,sha256=UIRv3ka_mU8HgN3E_me5L-0VaCBY6td6FcYdCS0EgKo,2423
|
|
2979
|
+
pyrogram/raw/types/payments/giveaway_info.py,sha256=vNi2CGdV92p1x5aE-uVBJV4GENeLYMGm6-io802Li0c,4836
|
|
2980
|
+
pyrogram/raw/types/payments/giveaway_info_results.py,sha256=GGcgk4ff8SBqswHwvJQHo6ZXqcuV7P23ugzH4KaNYvU,5009
|
|
2981
|
+
pyrogram/raw/types/payments/payment_form.py,sha256=ElQSv1ArI3dGfei33OTqQ0rzteiIRMDo-MDw51RlBv4,8104
|
|
2982
|
+
pyrogram/raw/types/payments/payment_form_star_gift.py,sha256=oaG5fR8MKSWq_aye0cP8KfErVhN0h0WBQrrUyc57ljg,2754
|
|
2983
|
+
pyrogram/raw/types/payments/payment_form_stars.py,sha256=f0nXf33BBcZGzTHpgNDdFXOjoEBwuXuZysgw2b0sij4,4176
|
|
2984
|
+
pyrogram/raw/types/payments/payment_receipt.py,sha256=Tf6Fyk06OAWOFrAI7hP2RxchgGe-Cf9zPd1gZUHG4CU,6587
|
|
2985
|
+
pyrogram/raw/types/payments/payment_receipt_stars.py,sha256=F-5tY4YcpBlYJ-Nfof7k1nLSY_Ww5Q9sRhkQsgW5bWk,4958
|
|
2986
|
+
pyrogram/raw/types/payments/payment_result.py,sha256=ideJr7sKRfj5qbvg9B81tUzloTKvs0QoXGwx8Fbmo7g,2541
|
|
2987
|
+
pyrogram/raw/types/payments/payment_verification_needed.py,sha256=UCo6rLr0KqNNA1iAtGRVysG9xmhQMCA_ODWmRmGF4ok,2500
|
|
2988
|
+
pyrogram/raw/types/payments/saved_info.py,sha256=B_QmHJa-xHGKaolDRsZNpHMUJ9MhlFOwpfTQI8SiQG8,3173
|
|
2989
|
+
pyrogram/raw/types/payments/saved_star_gifts.py,sha256=7Xcv2H0wDpNh-Ckdt1BGblFyRaVfiojYt5r1eNjHgU0,4391
|
|
2990
|
+
pyrogram/raw/types/payments/star_gift_upgrade_preview.py,sha256=UURP8JeW34s44wRYV83kLOc3L6UWjCTJmECK4QIlS8w,2711
|
|
2991
|
+
pyrogram/raw/types/payments/star_gift_withdrawal_url.py,sha256=r1KiifUJLstHZOloVaLMP_5w9j568sqX0zfcHjQEULI,2464
|
|
2992
|
+
pyrogram/raw/types/payments/star_gifts.py,sha256=HjTR42NXiRhAwkICyzhRXeHPp7l43D2Vjx3cHQcDCjs,2688
|
|
2993
|
+
pyrogram/raw/types/payments/star_gifts_not_modified.py,sha256=mC7VbqnSPGI6JP-o8GVheZMYqhkIahluf7Ag5Bz335Y,2298
|
|
2994
|
+
pyrogram/raw/types/payments/stars_revenue_ads_account_url.py,sha256=WN-Flp8kXGOECtPDsuVLdmVQZegG2ryVdicvffCYzmU,2488
|
|
2995
|
+
pyrogram/raw/types/payments/stars_revenue_stats.py,sha256=W71KKVwz2QbrJnfbaN8n7-g4MOUpObHdesfRfPtFjHo,3155
|
|
2996
|
+
pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py,sha256=Oo9ItxwBoH51pH-UBbmJ4_DExrKsOF17CkEpnNKi6GQ,2488
|
|
2997
|
+
pyrogram/raw/types/payments/stars_status.py,sha256=WRrFzvNQo3znmUKT_ucs6Y8LHYdsoLy8bmWx2wO98hU,5927
|
|
2998
|
+
pyrogram/raw/types/payments/suggested_star_ref_bots.py,sha256=05ukCdY5kxIb_KWiq3UvtlhosVGYxlPvcw0ZFfx_3kY,3613
|
|
2999
|
+
pyrogram/raw/types/payments/unique_star_gift.py,sha256=aSVs0y0NICiesqm0swIK-YB7UmWu8-wMFZx92fJ_x4c,2757
|
|
3000
|
+
pyrogram/raw/types/payments/validated_requested_info.py,sha256=UF0jLEaCiIm_FiwNJc52qo013r42NPgcQvQOs2N54Gk,3238
|
|
3001
|
+
pyrogram/raw/types/phone/__init__.py,sha256=ARKD444DOIcaCYZauNlP3LvBRVDbPKt28x40fPqKyiU,1439
|
|
3002
|
+
pyrogram/raw/types/phone/exported_group_call_invite.py,sha256=5klWR0PQUpY9IaGF7FJaSh-k15aOsQR7wSJiLGxV7-A,2471
|
|
3003
|
+
pyrogram/raw/types/phone/group_call.py,sha256=zEMRMejD5VUM1S76-TB_sTb-eQz_R7mz9oanP04e8TM,3764
|
|
3004
|
+
pyrogram/raw/types/phone/group_call_stream_channels.py,sha256=gnKBWidbooRWn8sc5I9I0fUb8qouuKmfrtJQnbc9y_k,2647
|
|
3005
|
+
pyrogram/raw/types/phone/group_call_stream_rtmp_url.py,sha256=YNVdn7a1gfhQQ0toO7NRXetKbgvUPOth7qaWSLC0dZE,2649
|
|
3006
|
+
pyrogram/raw/types/phone/group_participants.py,sha256=4UIF-If4a-TvR2oh4Gr6RIkICVd4BLC0SIUbU8YQ_HY,3871
|
|
3007
|
+
pyrogram/raw/types/phone/join_as_peers.py,sha256=yJNrhCigjUtxXTggHsTi5HFP6YQFrMAxHOEalNoMGrc,3018
|
|
3008
|
+
pyrogram/raw/types/phone/phone_call.py,sha256=sWlr0PQGlgm_kJdb5PeXHWxy1Kl-uldF_YVjchyDSuE,2877
|
|
3009
|
+
pyrogram/raw/types/photos/__init__.py,sha256=xAnIelyD9qbRrJzDomST9LK0pxvsINh4rAVzHwuxP2o,1177
|
|
3010
|
+
pyrogram/raw/types/photos/photo.py,sha256=C2eUTrNRQ0bE5g0w-N7ljAS1jKESUKW3DEqZ9z73jgM,2790
|
|
3011
|
+
pyrogram/raw/types/photos/photos.py,sha256=Q_h1_dXT82baFjzOjCXt1J7iDDD0DDhixIO73dGfjjI,2735
|
|
3012
|
+
pyrogram/raw/types/photos/photos_slice.py,sha256=W1HfhbSsRvjYqyCdU2XNFFmtL-LH8tvyB8GbwaCGUr4,2963
|
|
3013
|
+
pyrogram/raw/types/premium/__init__.py,sha256=MIFdQMZ6JGZKWtvPpe7-L6jErkjqb6rUjrOLUGlsgA4,1195
|
|
3014
|
+
pyrogram/raw/types/premium/boosts_list.py,sha256=Mn_z6G3gw4C8RZZCWjuu3w3P-luVQ_CjYC_TKdv-Dr0,3478
|
|
3015
|
+
pyrogram/raw/types/premium/boosts_status.py,sha256=7aepBLJN-m29xa93nTrCaKMiH4O5ja-M2N1onDlVEEw,6161
|
|
3016
|
+
pyrogram/raw/types/premium/my_boosts.py,sha256=GeEsgyp4pcGchYTTdwZfAi5z6CEqNJbfI9oBBzZic58,3083
|
|
3017
|
+
pyrogram/raw/types/smsjobs/__init__.py,sha256=xFOQjS_4VkZeX5Qk_KoFUT3OAF2-6FdKbwRH-u73jb0,1158
|
|
3018
|
+
pyrogram/raw/types/smsjobs/eligible_to_join.py,sha256=XmImd4rkJKT-0Q56SS-yLQryGpkWjb2z4-x0vTAb2fE,2782
|
|
3019
|
+
pyrogram/raw/types/smsjobs/status.py,sha256=HKTwJx_6rrHm18R718rnxf1WKoMMq77ywHM7eukhqjc,4652
|
|
3020
|
+
pyrogram/raw/types/stats/__init__.py,sha256=iqnfpGU9T1KCSu5upqS5pEtUkySHgChiyDDpHaxx1nQ,1508
|
|
3021
|
+
pyrogram/raw/types/stats/broadcast_revenue_stats.py,sha256=UG9MrEIu7Y8-1DsnugP39PBdqmmkZeQr5fVVL1-38Mo,3573
|
|
3022
|
+
pyrogram/raw/types/stats/broadcast_revenue_transactions.py,sha256=PCEuJ9OrqBwNdat6LS4IsKi_kdTD1IPpoSw73QAvPRY,2941
|
|
3023
|
+
pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py,sha256=tv2nlNdPzyIKA_fS9yi-ZVfRI3ZG5f2kfq2wgS4Ft4E,2503
|
|
3024
|
+
pyrogram/raw/types/stats/broadcast_stats.py,sha256=OTsodIPUjhiySoaY--LyRKRSGysIm-zMGcl1USdPqQI,11175
|
|
3025
|
+
pyrogram/raw/types/stats/megagroup_stats.py,sha256=YzGFfmBu_sWVdMCWPAtBLZfVlNIfuJ-w0780wV-u7ZY,8195
|
|
3026
|
+
pyrogram/raw/types/stats/message_stats.py,sha256=r2VHFREjZ-li0uj9tNgW4TqMluOEBkw8mkY-wxBMOSU,2998
|
|
3027
|
+
pyrogram/raw/types/stats/public_forwards.py,sha256=xjZowlSxMFjX_cUwCzJU-hCuhXjrxsWchH68Rf2wj6o,3829
|
|
3028
|
+
pyrogram/raw/types/stats/story_stats.py,sha256=lsH3hqHqXOq2deC1gZjc5mhuxPnAX-XgmarZf9dvAYY,2986
|
|
3029
|
+
pyrogram/raw/types/stickers/__init__.py,sha256=9EHAJpBNqm2Yr6gK3K_Kdc7d3AHD4XMlLiMlt9h5wY8,1138
|
|
3030
|
+
pyrogram/raw/types/stickers/suggested_short_name.py,sha256=zzl2Hv5zRlLHEmil9cnfG_WyBK0Yd41wf_61t6ekdjY,2504
|
|
3031
|
+
pyrogram/raw/types/storage/__init__.py,sha256=cZQQ6rLHsEiidQ4_eRoJIsKzPxCblZ3zJAfojKUTWYc,1414
|
|
3032
|
+
pyrogram/raw/types/storage/file_gif.py,sha256=e-Wk2Cj_6OXKX8O1vUkzUiLNyTtQkegwmoEDQxwQ6_A,2029
|
|
3033
|
+
pyrogram/raw/types/storage/file_jpeg.py,sha256=GtWCiaYMOSAWtpLsPuRqZMbnIk0LwQoV7OZDkHa5p2Y,2029
|
|
3034
|
+
pyrogram/raw/types/storage/file_mov.py,sha256=AzmKo4WqeWSsFUlxlKpd4eFt85edHfdJwodpOeHixLY,2029
|
|
3035
|
+
pyrogram/raw/types/storage/file_mp3.py,sha256=4-4iV7HWt3ZIV8vYVk37NY0a-TtFYLQaBuKc1sEQcL4,2029
|
|
3036
|
+
pyrogram/raw/types/storage/file_mp4.py,sha256=HUu5beEbpMYv3-UxfVlznY_GIxd6sBfb7c3Z-XpB_5k,2029
|
|
3037
|
+
pyrogram/raw/types/storage/file_partial.py,sha256=jwzR_jVoETfst9QeFk7WKaLiHjuZq686IGHbTBKA5JY,2045
|
|
3038
|
+
pyrogram/raw/types/storage/file_pdf.py,sha256=D3Sojg4FsNSMjbZpXNZZs6OQgdFkO0OVyoCD3wdjkXs,2029
|
|
3039
|
+
pyrogram/raw/types/storage/file_png.py,sha256=SvXN-AapG02v_z3rXJ6bK2Ppuo-MIc1liD7WiIEz2Z4,2027
|
|
3040
|
+
pyrogram/raw/types/storage/file_unknown.py,sha256=Tu7I_QdD-3ni4AjGdK9i83rY5yGm6IjeMfaMxOrYens,2045
|
|
3041
|
+
pyrogram/raw/types/storage/file_webp.py,sha256=T9qRqBExfFzjVa5vuJbvxLzUIynsV5lNVTP37ZaujqI,2033
|
|
3042
|
+
pyrogram/raw/types/stories/__init__.py,sha256=b2YZVEeQGbo5Ob8jW5D0xeTxO7WprV-ZUEBAyHHrWz8,1429
|
|
3043
|
+
pyrogram/raw/types/stories/all_stories.py,sha256=vMtC-G2LRipK1A9LvZvCrW4m77AcL2hnEzQCJH3MX-Y,4214
|
|
3044
|
+
pyrogram/raw/types/stories/all_stories_not_modified.py,sha256=V2bZi2Bqwff1K1eTQiIO72Xzb5mqgUVlQwcGOIRwnBc,2880
|
|
3045
|
+
pyrogram/raw/types/stories/found_stories.py,sha256=6nsxt3TtKSffmnC-M2ZGlD7XI5bCiCDg3ktLwSYdna4,3748
|
|
3046
|
+
pyrogram/raw/types/stories/peer_stories.py,sha256=BNitomGVAUDlsgMHilynyRxhHPLq9o-N-ED3NZKpwfg,3044
|
|
3047
|
+
pyrogram/raw/types/stories/stories.py,sha256=uQNnMtWOSguRlG45c00INot-jWhET-9u5Q_3eVbXubc,3860
|
|
3048
|
+
pyrogram/raw/types/stories/story_reactions_list.py,sha256=ljMhmj9RmQr7Ay2SY4FUSqg7km6KJwOb0LP2ibrRZ3c,3818
|
|
3049
|
+
pyrogram/raw/types/stories/story_views.py,sha256=kRgi0pslWI29vjdVdL5Y8T1N0u8Q4Pd1TCtrDWosopw,2771
|
|
3050
|
+
pyrogram/raw/types/stories/story_views_list.py,sha256=fq8BhmgSj8AQN7wc4oQ90wiV3sqkf6p2T5PN1T_ku2k,4591
|
|
3051
|
+
pyrogram/raw/types/updates/__init__.py,sha256=y1hRFAh_q1C6uR4moONDjzGfklvlv19iB3wk0Jk6El4,1472
|
|
3052
|
+
pyrogram/raw/types/updates/channel_difference.py,sha256=cyQAp7k21rmN9uy4kQB5Hr7FyX7KbKqQbtMqBigd7dY,4359
|
|
3053
|
+
pyrogram/raw/types/updates/channel_difference_empty.py,sha256=qqRBo0B8coX7vaOeyVutTDF7guUh30fGl2kHuvTUV8c,3148
|
|
3054
|
+
pyrogram/raw/types/updates/channel_difference_too_long.py,sha256=dHUcJkEx3nXgcm8AkdGV0Lx5tLOJkcsWkU26E7Q0oyA,4076
|
|
3055
|
+
pyrogram/raw/types/updates/difference.py,sha256=hoV1xbQ0NJ7mamlqJyjMR-uQi8Utgre9349-qaYTC28,4187
|
|
3056
|
+
pyrogram/raw/types/updates/difference_empty.py,sha256=6cwSx5xHH7UxJGsTf4EHN5cc4xlAV_f-VLewYzkhrzw,2616
|
|
3057
|
+
pyrogram/raw/types/updates/difference_slice.py,sha256=nzRjlKF4ygtXD5c-_n0YdyKQ-ZIYWZ_UOILQAgHdQpw,4328
|
|
3058
|
+
pyrogram/raw/types/updates/difference_too_long.py,sha256=UL7pJyKxWGZ_AAq0aOsjtwCiOms6zywwlBDs8uunh_4,2425
|
|
3059
|
+
pyrogram/raw/types/updates/state.py,sha256=JPOBIcDkSqxaiz2P8dYlqdpF-I271FcSkN4ap0koZdU,3217
|
|
3060
|
+
pyrogram/raw/types/upload/__init__.py,sha256=QLa1Qzk7QfqWiAavoYhaApozM2Oz-QgKFrla9mFA-gU,1279
|
|
3061
|
+
pyrogram/raw/types/upload/cdn_file.py,sha256=AKQ_hgWjS0Ycqg1s5L3SupR_nHz6X4DbRQLJOuWkvBc,2393
|
|
3062
|
+
pyrogram/raw/types/upload/cdn_file_reupload_needed.py,sha256=HwO-EZtrmiyDZOsY3h20Z1YhfoUYmqGMgGRApwyvYEU,2521
|
|
3063
|
+
pyrogram/raw/types/upload/file.py,sha256=UO0A-ksHVTYQV2XWN3mwAscIlFrVwRKKcSn9CTZwuyA,2867
|
|
3064
|
+
pyrogram/raw/types/upload/file_cdn_redirect.py,sha256=YT8NA-c3w6NT54UsctOQcVkI7auR6QA5HEbKj6m-vHs,3578
|
|
3065
|
+
pyrogram/raw/types/upload/web_file.py,sha256=4wNz6NxlBn07iJr77sxGZOTjzvZQmQpfe4etgV-hwjI,3373
|
|
3066
|
+
pyrogram/raw/types/users/__init__.py,sha256=bi6jNKWrYwTfdxPBV07sFvUyscR8uPfilvEdHHvAXDE,1180
|
|
3067
|
+
pyrogram/raw/types/users/user_full.py,sha256=aHqupk5S2NblBHP9ZXoEYBfgXAjao-a1PYvjnBKuSy8,3026
|
|
3068
|
+
pyrogram/raw/types/users/users.py,sha256=DskS-CJB7v2bhV3Gl-lxJ2f45EvQO9rH9f6hVntes3w,2452
|
|
3069
|
+
pyrogram/raw/types/users/users_slice.py,sha256=JIIxOc3i-P_36Ya2YioIGx8jUKZgZQp7H00r2nK4G3w,2680
|
|
3070
|
+
pyrogram/session/__init__.py,sha256=eFtgBm9MjBOzLv_0j8YH6ROR7vUhtLLxMtUXlYSMS7w,871
|
|
3071
|
+
pyrogram/session/auth.py,sha256=T3Aj9URwMr0IEZlCuH-3ypSOhBSdbidKQQuS-GbV3Bo,10568
|
|
3072
|
+
pyrogram/session/session.py,sha256=oqHUBlf2n0Yr5Q_pFacg8UlFL9SL3yl8WHbhYqRDHrI,13056
|
|
3073
|
+
pyrogram/session/internals/__init__.py,sha256=S4Was2IuEOUSbUsQrHcGa-8EASzl8ji0dUK9U4NiuVM,917
|
|
3074
|
+
pyrogram/session/internals/data_center.py,sha256=U18usncIHgpPpKL6t2gEIhyJxte8sFrwGZhf2mQcqvo,2489
|
|
3075
|
+
pyrogram/session/internals/msg_factory.py,sha256=pg9cf4jqeC5WSxYxWh1ElQ5QMtjs-DVnwtoEZR4L2QY,1374
|
|
3076
|
+
pyrogram/session/internals/msg_id.py,sha256=qlBKBmxXN_wNYW1P4NC-JZA5cPfZPujuXX4AmGct6-8,1587
|
|
3077
|
+
pyrogram/session/internals/seq_no.py,sha256=qrOiiky5GMFNjQUFNYv2jhp2BNN3wUUykoCUO9yuROc,1257
|
|
3078
|
+
pyrogram/storage/__init__.py,sha256=HYYfbnWpaCI0Co2KC4M_Bg5J6NFb3Vx-xYDltcLB_Yo,968
|
|
3079
|
+
pyrogram/storage/dummy_client.py,sha256=OUza86bsHPcMC0S5wWYO0xYmcc-TUadrqlMf3CjOdQw,2165
|
|
3080
|
+
pyrogram/storage/file_storage.py,sha256=UddBQIKMhdWiHSzKNkPigAv5CGAIg3sY2FVgDiH6B1M,2159
|
|
3081
|
+
pyrogram/storage/memory_storage.py,sha256=Ol6shK6wBveAddSRCz7wsawDm3UvVfOQiJeR3Mbdt1U,2750
|
|
3082
|
+
pyrogram/storage/mongo_storage.py,sha256=UycaT7ljougSn2_xNFAcKbgOE3BFIfZGAc_UzI8ORw0,6845
|
|
3083
|
+
pyrogram/storage/sqlite_storage.py,sha256=phBHF2g8O1X58DoJ8IvTd1Zskco5czBobriq_sQjEQQ,6412
|
|
3084
|
+
pyrogram/storage/storage.py,sha256=kZ8hGYPby4TNr9HrDpQ682ujngUDSI6pbzLL_R1lMQc,2781
|
|
3085
|
+
pyrogram/types/__init__.py,sha256=A9nTGUWe18ZnKlGqRFEjAVvJFvYk_7LWA0qQ9VYx5NU,1109
|
|
3086
|
+
pyrogram/types/list.py,sha256=M6fzHa8huT5glCmbVjEDGQ2bQSr6cEkJogY68icpTn4,1093
|
|
3087
|
+
pyrogram/types/object.py,sha256=w87fklQbg9fd83kw05N44ncZJeyF7ePu2Mqz_VF8VjE,3862
|
|
3088
|
+
pyrogram/types/update.py,sha256=m2gTWW1tym4bljCwA_2-ElYFqht97Lq5N86Bfi9DyEg,1030
|
|
3089
|
+
pyrogram/types/authorization/__init__.py,sha256=gEoJATQxucLD8YZaBQa4ay9vrl7yBOcT_kIcEyZukvQ,938
|
|
3090
|
+
pyrogram/types/authorization/sent_code.py,sha256=XSZrk8LZqcxLFgRNO5uQlubSbWoItO_sH4mY0ay6hRk,2288
|
|
3091
|
+
pyrogram/types/authorization/terms_of_service.py,sha256=FcA84H4Vt502yOPO9SOP_QtcI0JTAV2zw-TbFJPBH60,1930
|
|
3092
|
+
pyrogram/types/bots_and_keyboards/__init__.py,sha256=cmSz-gYS4meUY38nno75fK7C0XByPqtDRuGrNanlX5k,3133
|
|
3093
|
+
pyrogram/types/bots_and_keyboards/bot_command.py,sha256=NP6aLIa3ZQMWmNLMRF94JL1xxKOyVPijgwExDF4Rmxw,1738
|
|
3094
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope.py,sha256=62sSsmNXBuGL4sKdMnrpPFDnZWtvaLNQyJAv2KSDes0,2788
|
|
3095
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py,sha256=XzgAkl3xRo-FU-dQHYHKf1yxbVYIoVu2ndOMxQ8dkfA,1293
|
|
3096
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py,sha256=mOSVHajP1qdLL9v9hdRWz80BPJGB_nUgsamLld7oXo8,1258
|
|
3097
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py,sha256=GgM-tIbRnSfkPd3BR5q0htyx5MJJzXvqv4CBlXecLR0,1249
|
|
3098
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py,sha256=0eMMtnwAGq6KXwq7XzYpxg-oS5FO8_5WB-mKOoxKAbY,1562
|
|
3099
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py,sha256=b_UecRe9y4cz7gFAjXuyLljavyq9jlSF6EkBBhnkbHY,1639
|
|
3100
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py,sha256=Jgt0GwFQR_5XywZnsoS4asTQ88BbWKhLhzqh9Rxn4OA,1817
|
|
3101
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_default.py,sha256=Wv5c08SZfD7xBDa7Q3MZWeidMlHoYpJtXAZh5WkXyNU,1308
|
|
3102
|
+
pyrogram/types/bots_and_keyboards/bot_info.py,sha256=QKH9DfrB1UztdSpFZcOzt8I9ux8MK26NczN2WRf-4Zs,1605
|
|
3103
|
+
pyrogram/types/bots_and_keyboards/callback_game.py,sha256=rvWwPUMRIguPQ1UEDCEav81vE9yYpXV8lVIcdaLyC5I,1029
|
|
3104
|
+
pyrogram/types/bots_and_keyboards/callback_query.py,sha256=ykLxQ70879n8sJd5HjwwxcyX-UCuMszO0ONLG6Ai68k,12797
|
|
3105
|
+
pyrogram/types/bots_and_keyboards/force_reply.py,sha256=e--OW7JxrUGIIhcX62p2iBWkUpIGzQOyQCyqrJaFQKk,2383
|
|
3106
|
+
pyrogram/types/bots_and_keyboards/game_high_score.py,sha256=UxMohtN-vUoTY-TYQkSrJb2MCrveu0XRG0j_7xHLdHQ,2216
|
|
3107
|
+
pyrogram/types/bots_and_keyboards/inline_keyboard_button.py,sha256=hiOkEeo-1TG8B8W1aLSuH045p6VXZ66O_XZvqSZCwm0,8120
|
|
3108
|
+
pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py,sha256=bHhAc-xqvMFE1dfMzBIbdIIDZxlMYdlIj2Pm10RKq_Y,2460
|
|
3109
|
+
pyrogram/types/bots_and_keyboards/keyboard_button.py,sha256=FQfRFw-fLlsRDx8IcKnWrE_zuReyGcZh1grGv99sOUU,6871
|
|
3110
|
+
pyrogram/types/bots_and_keyboards/login_url.py,sha256=Mw0cpN6n2emrowv_jYEvUKkna1vdHZ2OCd6h7Z2xI0Q,3712
|
|
3111
|
+
pyrogram/types/bots_and_keyboards/menu_button.py,sha256=G_PKC2kVkF6R3EhEyIUt5cjoE-4YmcjGi-nNT-Huuxk,1603
|
|
3112
|
+
pyrogram/types/bots_and_keyboards/menu_button_commands.py,sha256=rvKGTYpVbntf9ehG4xQ3eZRP1_XZxx3BvlgFsnLGczw,1209
|
|
3113
|
+
pyrogram/types/bots_and_keyboards/menu_button_default.py,sha256=pNCQlKmhTtFUiTRPMTwUgioyjUkMu6K716kADOmQox0,1212
|
|
3114
|
+
pyrogram/types/bots_and_keyboards/menu_button_web_app.py,sha256=2FmzeQJieKekNPjzSY7RocLWX2dpySTP_mcZTxUgCxI,1809
|
|
3115
|
+
pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py,sha256=LuxXS3PTgRXFqTQtPdz2gD98WkTOjhPspZ77e44mdfA,4575
|
|
3116
|
+
pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py,sha256=33MwLIRUS1JOtzWz-wKMIY1y9TrOzEK9xe8eLDC2Rl4,2339
|
|
3117
|
+
pyrogram/types/bots_and_keyboards/request_peer_type_channel.py,sha256=CFHiosJsnma_VexkX6K2o0C9wNiMfzrub_tsHxmQbkc,1449
|
|
3118
|
+
pyrogram/types/bots_and_keyboards/request_peer_type_chat.py,sha256=JBgfAxakSS9MIrS2lRKuoPG2vlKMMzRKrTRddFj2vXA,1803
|
|
3119
|
+
pyrogram/types/bots_and_keyboards/request_peer_type_user.py,sha256=6lIHaXTHYBnw0FSjoslDpsR7EHKu-_ihRtVo1oEAzEA,1340
|
|
3120
|
+
pyrogram/types/bots_and_keyboards/sent_web_app_message.py,sha256=ZTCnPZeMasOqvl960cRKg_qLcjEaoOoDmfc6rGa4iaE,1564
|
|
3121
|
+
pyrogram/types/bots_and_keyboards/web_app_info.py,sha256=A2QpOTxR3uTuEuEbNz9GaOXWx293OIVWrHFmOQ_0ZpY,1313
|
|
3122
|
+
pyrogram/types/inline_mode/__init__.py,sha256=FxaqeA9C5eA9ciosaFnEYsmACCopqHYzcz383Wg6jAA,2755
|
|
3123
|
+
pyrogram/types/inline_mode/chosen_inline_result.py,sha256=hm6PH5ayJWWkAEBEXuds_KcaRh5oHDCPgq14stP83qY,3662
|
|
3124
|
+
pyrogram/types/inline_mode/inline_query.py,sha256=k66FlNbIQWRY68lHuYKxZRDFZQ704aTuMBqxksys7Ag,7298
|
|
3125
|
+
pyrogram/types/inline_mode/inline_query_result.py,sha256=45SvOdJwNYCeTdf8h8j6oxuWG_vEQJO-GJM1wjFQjHI,2411
|
|
3126
|
+
pyrogram/types/inline_mode/inline_query_result_animation.py,sha256=oydetlIS0b3oh4gsHycF5saPqpmLhKx8DFfho6ToaB4,5782
|
|
3127
|
+
pyrogram/types/inline_mode/inline_query_result_article.py,sha256=fRm0nYvw8QM1cs52W6DtcdcNocvSG7QT9Q-We-rhZzE,3304
|
|
3128
|
+
pyrogram/types/inline_mode/inline_query_result_audio.py,sha256=oalfZaAO1eRNHMJx98CyuCmDfHKD0dexZm8ez_fU__8,4505
|
|
3129
|
+
pyrogram/types/inline_mode/inline_query_result_cached_animation.py,sha256=2kVHhA033R7HL1HEbni8LDWTsUYwLB1q2Gw69V9N9GQ,4245
|
|
3130
|
+
pyrogram/types/inline_mode/inline_query_result_cached_audio.py,sha256=ox6sd7wogeEchXAZyLny48GmoM-cxvoRb4V6k46snw4,4029
|
|
3131
|
+
pyrogram/types/inline_mode/inline_query_result_cached_document.py,sha256=dBYs-vZYac_uKW7tPTaKzIaHsBm6-qV9PBPqIZY8GlU,4388
|
|
3132
|
+
pyrogram/types/inline_mode/inline_query_result_cached_photo.py,sha256=8ZbKFWZKNylh1hT2olMv5Gyk1bzA_cNfiEhjCeyPgQU,4312
|
|
3133
|
+
pyrogram/types/inline_mode/inline_query_result_cached_sticker.py,sha256=Qn3ojDH_Syr5Ugt4RFDJ9HcXIBGAsplGaWJOgu7IHHY,3031
|
|
3134
|
+
pyrogram/types/inline_mode/inline_query_result_cached_video.py,sha256=ydHT4TAe_2qUUlQlLIAoVM8LU-vWrIBqVyjoCkKEIRw,4394
|
|
3135
|
+
pyrogram/types/inline_mode/inline_query_result_cached_voice.py,sha256=3144P4_gTOavyT--e6PUXrxVrpx3rtla3FsVd_eUQdU,4202
|
|
3136
|
+
pyrogram/types/inline_mode/inline_query_result_contact.py,sha256=515OfnkYPQzOS_jMvRfrDl436ms1-F3QTKpALHUbhXQ,4132
|
|
3137
|
+
pyrogram/types/inline_mode/inline_query_result_document.py,sha256=WnxRJJV10VoMLz14pCgiay3lTJ4faYsh7_Bp2kj1kIk,5240
|
|
3138
|
+
pyrogram/types/inline_mode/inline_query_result_location.py,sha256=ky178Jjm_30DHiesypXEwGMmPn-etx-7m_Sfk9--CI8,4619
|
|
3139
|
+
pyrogram/types/inline_mode/inline_query_result_photo.py,sha256=1nI3_ACZsJpRa5N__-GWA8GzeMjYLfalPHj8Q4wwdfA,5261
|
|
3140
|
+
pyrogram/types/inline_mode/inline_query_result_venue.py,sha256=uCJXgU4ir40GIosVbSuys1GnIUbqoCnT9Capii4dn-8,4754
|
|
3141
|
+
pyrogram/types/inline_mode/inline_query_result_video.py,sha256=U3DDN9bqCXsKuClqRhZcG8k3WYxo4XpYoyOYQu4BdzI,5474
|
|
3142
|
+
pyrogram/types/inline_mode/inline_query_result_voice.py,sha256=bvw6mWfGcMpIFiJCX_LFeJRgifrkAZOIDHhgvkks1wQ,4360
|
|
3143
|
+
pyrogram/types/input_media/__init__.py,sha256=BCDQSZQJb8jZ-y8QqbGNknJuTWpd1-d6c0_C5myaX80,1314
|
|
3144
|
+
pyrogram/types/input_media/input_media.py,sha256=Fdy9eM49uE1hZgZrZX94lvNTB8bQINmWKlB16Kv3t9U,1638
|
|
3145
|
+
pyrogram/types/input_media/input_media_animation.py,sha256=pAw3B595ZmFWmdnJ_MvfGsPBR6ekBDYrL3os--c_-1o,3428
|
|
3146
|
+
pyrogram/types/input_media/input_media_audio.py,sha256=JqzPIRejDAogRtkhdcrt7Pl0V0u2x5AWNSr2PtBiTIY,3282
|
|
3147
|
+
pyrogram/types/input_media/input_media_document.py,sha256=3yd4W36Gl_rht6AGDKfmgqiUvh19ywuyroKZ6B4NDYM,2771
|
|
3148
|
+
pyrogram/types/input_media/input_media_photo.py,sha256=x2vTGd0GU5APLNTHd33AOVIWkxCOU7LK6eVruVbQdpE,2685
|
|
3149
|
+
pyrogram/types/input_media/input_media_video.py,sha256=5_ykPUCRZKWGZ4RpO6VOQrZyTGPJ_qvPM4qYS_k5FNM,3620
|
|
3150
|
+
pyrogram/types/input_media/input_phone_contact.py,sha256=2bbSIhMjEXWgcfeOfz53mIPwqqP9f1zWE1zRfbph9Yo,1737
|
|
3151
|
+
pyrogram/types/input_message_content/__init__.py,sha256=a89KVveehlfwCrli_tiU7QFqJTJC0XwoIyTrPzkLaNE,1158
|
|
3152
|
+
pyrogram/types/input_message_content/input_message_content.py,sha256=rtkinfhcHQdo51AWuER5uuLf8srWhOjszGU8gBJlLTg,1413
|
|
3153
|
+
pyrogram/types/input_message_content/input_reply_to_message.py,sha256=wPYS8Kpxp3_Er__pdKfJDCADiTqg8JLfwdc2Y-6akp0,2225
|
|
3154
|
+
pyrogram/types/input_message_content/input_reply_to_story.py,sha256=IIwAj7T4u4GWTzgViegMv3hfHkY-1jI96QASqhVstTo,1527
|
|
3155
|
+
pyrogram/types/input_message_content/input_text_message_content.py,sha256=OsTd6vFLIAWKEfIKqZtj4cYgtgtD9W4hMhUSj1BZ2eM,2638
|
|
3156
|
+
pyrogram/types/messages_and_media/__init__.py,sha256=bt6oWiap8eTX8yraOnlGgSTj6JhYKm9cggtUMIp3jLQ,2103
|
|
3157
|
+
pyrogram/types/messages_and_media/animation.py,sha256=oV4kiR1xEF6NR789pMwhbwzpWcEEnkHZzgybEocQT1w,4044
|
|
3158
|
+
pyrogram/types/messages_and_media/audio.py,sha256=hzjwteB8tdVG2zUtVEpTMgxPgd1bo8MO7jqAVc53Y_c,4069
|
|
3159
|
+
pyrogram/types/messages_and_media/contact.py,sha256=aLWR0NrRva5XBOll2j4OHV4MC4FP00njo50QJgppQkc,2207
|
|
3160
|
+
pyrogram/types/messages_and_media/dice.py,sha256=QizhLYoiobEO-7OjyfHxpTlySAVF6fAxffgtcALMzYI,1587
|
|
3161
|
+
pyrogram/types/messages_and_media/document.py,sha256=qwQcClccgDPasmob2CzGdmalV7gfMmwOBdGuV4TWMus,3409
|
|
3162
|
+
pyrogram/types/messages_and_media/exported_story_link.py,sha256=tbltNqezM4L0XkD8IRMbjE0dR8Kc6NiB0IA45BoZYFM,1406
|
|
3163
|
+
pyrogram/types/messages_and_media/game.py,sha256=Bg4RQcepQKHAsNJOU_gWqcKUiCWAyohTAYWRvJ7HSmM,3044
|
|
3164
|
+
pyrogram/types/messages_and_media/location.py,sha256=IYwxV-4iv1sPQiil3wimLhf6mYl-pwfb5d_MzCc_R-Y,1660
|
|
3165
|
+
pyrogram/types/messages_and_media/message.py,sha256=gNQjh1Xplwpm_XCMXirfHkK3NXGv8Hyl4Y_qSpyRHMc,158235
|
|
3166
|
+
pyrogram/types/messages_and_media/message_entity.py,sha256=nMhl8n690ItTUTd7RjGrnSzWwKCjnFUpMEq1sDcXaAQ,4352
|
|
3167
|
+
pyrogram/types/messages_and_media/message_reactions.py,sha256=ckBrBlFujQdiKCWqV9uUZ2kInU4jMz7AztK67uYmN5A,1800
|
|
3168
|
+
pyrogram/types/messages_and_media/photo.py,sha256=NcQiePNa7fDT4Kvhpxtz9W-lNMfP-d0zpAvXXqWTork,4309
|
|
3169
|
+
pyrogram/types/messages_and_media/poll.py,sha256=SOfnz8mX7HBtdkbDWrnZoKy48YzwA38iCnXc2uZ6txw,8016
|
|
3170
|
+
pyrogram/types/messages_and_media/poll_option.py,sha256=Cc5q8FMd6sq5u4n2kA5ThWt640qGJGBdoYJtSHlj9lM,1532
|
|
3171
|
+
pyrogram/types/messages_and_media/reaction.py,sha256=H9KwyjEYyYCZQV8VyP3M4pW9JiU7an5JkoeaOq7bUfI,2617
|
|
3172
|
+
pyrogram/types/messages_and_media/sticker.py,sha256=niXemA51ocYI40fZQ6q_GlAyzsZIcuX787JP_F4Gf9I,6909
|
|
3173
|
+
pyrogram/types/messages_and_media/stickerset.py,sha256=KAnv0k3cdmud_l3T7ft92jjYUvuFLwPyURfoU3jrWnQ,2765
|
|
3174
|
+
pyrogram/types/messages_and_media/stories_privacy.py,sha256=CceTbRgKpxERNFQLpPALziO0aqg3ZUUmZwKmZGvIaHw,1838
|
|
3175
|
+
pyrogram/types/messages_and_media/story.py,sha256=V2fzIjM6OWFmqBVNppoQMvx5k_RYWd6tWs_P0blZH_8,62725
|
|
3176
|
+
pyrogram/types/messages_and_media/story_views.py,sha256=y1JjBcYNUCkaSfYLOGPJTCpwjVvJGElBaXJV__Pm-J4,1667
|
|
3177
|
+
pyrogram/types/messages_and_media/stripped_thumbnail.py,sha256=9GpKuySE66njHsJ9YRapMLyKxHKy9_p1lBfEHNDV16c,1431
|
|
3178
|
+
pyrogram/types/messages_and_media/thumbnail.py,sha256=WbeaCJoGxe84U9XGRKksATCr-BFhDor50pdQL8mdprs,3755
|
|
3179
|
+
pyrogram/types/messages_and_media/venue.py,sha256=e2TmAVi2wCsYkD5hiH6HgZmQyU_QvLtGl5456BKN8ls,2291
|
|
3180
|
+
pyrogram/types/messages_and_media/video.py,sha256=82qng6vb5uXkOndM43BfMIWyNwrFG9gbajxXHsBEkS0,4921
|
|
3181
|
+
pyrogram/types/messages_and_media/video_note.py,sha256=mF0hWg-JByhuiaPZmsCm8YGX9cU3u7j2GR_ZgZKyO3o,3601
|
|
3182
|
+
pyrogram/types/messages_and_media/voice.py,sha256=iAB72niSAg0zDxXpGf-kRKoRIZkpMv5m5bRHzVx0u2Y,3204
|
|
3183
|
+
pyrogram/types/messages_and_media/web_app_data.py,sha256=VNWWbX2sj6GprDoiY_mguKUEsB356Ni9dWU2abhwESM,1565
|
|
3184
|
+
pyrogram/types/messages_and_media/web_page.py,sha256=OwTMrzrcnRfo83-jkOkrz3lfacil2-bIlB32pEq0BOM,6351
|
|
3185
|
+
pyrogram/types/user_and_chats/__init__.py,sha256=ZBz7Wtnps_aL7OAe4sx4618SxF-bMhgvtDZPU7aj_PU,3063
|
|
3186
|
+
pyrogram/types/user_and_chats/chat.py,sha256=OP-XztgXnHBs5wLwI8npWuqPaiidz9YXHDG0uH2IEKY,34261
|
|
3187
|
+
pyrogram/types/user_and_chats/chat_admin_with_invite_links.py,sha256=b6vybS7eG30AZyBKIXcbAN1TXpt7btlBM7t8vj8evjE,2236
|
|
3188
|
+
pyrogram/types/user_and_chats/chat_event.py,sha256=1oBd5WK0diHvEWwM6dExuH7iCODhpYCRjpDWEVg5hm4,22023
|
|
3189
|
+
pyrogram/types/user_and_chats/chat_event_filter.py,sha256=uL4GSmho5BgyZY0KH-NhSPNcH13ycooE5SjnbBgarLM,5514
|
|
3190
|
+
pyrogram/types/user_and_chats/chat_invite_link.py,sha256=p2rC9YJZjJn5aCRQWh0exXzPT80STDnROvd8Ap5KM24,4579
|
|
3191
|
+
pyrogram/types/user_and_chats/chat_join_request.py,sha256=AE3UCA94-kabYJlzWDFOM1nQQkWam1w3LYHnxFdcgiA,4245
|
|
3192
|
+
pyrogram/types/user_and_chats/chat_joined_by_request.py,sha256=PRQdi-x8l_KiCB7C6RU_LYSmCGxd8W2Ct1vJt8SV1ZE,1063
|
|
3193
|
+
pyrogram/types/user_and_chats/chat_joiner.py,sha256=tlcUTDybVgDZWOA4mQ56nxbyaqNXAIeC03jzXyizh80,2564
|
|
3194
|
+
pyrogram/types/user_and_chats/chat_member.py,sha256=MpsKHTy7KGy1El15CX0zm3ZpibWaEiiCPY-LcnWjE4s,9444
|
|
3195
|
+
pyrogram/types/user_and_chats/chat_member_updated.py,sha256=b72Io0DgOGfbxCtuCMzXd0dFgelfyCNxbNAeOBfFbgE,3674
|
|
3196
|
+
pyrogram/types/user_and_chats/chat_permissions.py,sha256=nAKMO59m4vsa1dUKujkAA42dKN7h_ZIOJx2Eyb9nqNg,4718
|
|
3197
|
+
pyrogram/types/user_and_chats/chat_photo.py,sha256=ulop7zzN5vF9gHeGi7BVxeKMVLYo98SAFcwQs_g_mKc,3967
|
|
3198
|
+
pyrogram/types/user_and_chats/chat_preview.py,sha256=ycY6sCcT32gGELn3G5F4yOnyBOT0z7tJDK0FhfE5YhY,2592
|
|
3199
|
+
pyrogram/types/user_and_chats/chat_privileges.py,sha256=dhzHSfarnPRvXzvPioom8hbMO8iJ2mBnE4bEZ8aWuw4,5300
|
|
3200
|
+
pyrogram/types/user_and_chats/chat_reactions.py,sha256=xtJ--vCq1oDfap52ubajju-fo7Zin-YCtnKw8UKIzjo,2356
|
|
3201
|
+
pyrogram/types/user_and_chats/dialog.py,sha256=1aJDPA9iTf5pBh84jv31eKL1OgcTkc3XlMUzf_k3uo0,2682
|
|
3202
|
+
pyrogram/types/user_and_chats/emoji_status.py,sha256=KxY1uxEg6bm3ZtTyN9olTDVVDj99F51r53IVOtZ4kMw,2422
|
|
3203
|
+
pyrogram/types/user_and_chats/forum_topic.py,sha256=V0BH1LDDvUmmp7F9X77ohA4dvmne3np1IhoTeB6nGU0,4979
|
|
3204
|
+
pyrogram/types/user_and_chats/forum_topic_closed.py,sha256=c4U7CAnfyW03Sv34QSQoheeIqFrJD_-f4rEBLFaWJHM,1052
|
|
3205
|
+
pyrogram/types/user_and_chats/forum_topic_created.py,sha256=8I4ss244uRvsWLv9inITfh9YfePO7eEaNE1vSWCsV38,1859
|
|
3206
|
+
pyrogram/types/user_and_chats/forum_topic_edited.py,sha256=e6vy8-Kw7kLK-Gix5MzFY057UQ_x2FsFC05bITyx2yA,1870
|
|
3207
|
+
pyrogram/types/user_and_chats/forum_topic_reopened.py,sha256=nbOzzPyrBvvDMV-kau5IyFV8pw83IsQOopxvydmjEq4,1056
|
|
3208
|
+
pyrogram/types/user_and_chats/general_forum_topic_hidden.py,sha256=crxHUNlW7UGTbdQhiOZjCJK_R0GHgXqxT2SJspHS6fY,1056
|
|
3209
|
+
pyrogram/types/user_and_chats/general_forum_topic_unhidden.py,sha256=O3RJgTxJmzBodto2t42my5I0gPlMNI2VS2hkYZ759PY,1060
|
|
3210
|
+
pyrogram/types/user_and_chats/invite_link_importer.py,sha256=_haqcrW3FqNmLSIivRrbdr1JYj4ulu2LAW6Qp6rN0NI,1951
|
|
3211
|
+
pyrogram/types/user_and_chats/peer_channel.py,sha256=TCvtnIrIE4vrmqtErOXNVO3AFESbazZtEV0uMxsEWzU,1338
|
|
3212
|
+
pyrogram/types/user_and_chats/peer_user.py,sha256=T7DQI1GktbCLifRxFTj9Zwg1IaF0DfYuq8nrM1UgRkQ,1303
|
|
3213
|
+
pyrogram/types/user_and_chats/restriction.py,sha256=gxDlgdGzdx2Eza32MjKeEk7wxr1rB5XYt-hIHZkkCi0,1663
|
|
3214
|
+
pyrogram/types/user_and_chats/user.py,sha256=ZOoGUwJR7U3tfcahuKNB1lHWJN4fZ90NfadN76s4M9U,13658
|
|
3215
|
+
pyrogram/types/user_and_chats/username.py,sha256=nuy2kkFGXgs-ORYFjaC9_u9pC_Hga-in3Em8DugF71c,1691
|
|
3216
|
+
pyrogram/types/user_and_chats/video_chat_ended.py,sha256=J5xTIAMSGDz8_z-EGrKwkoJZC5tCobTY12djOi5xHpc,1346
|
|
3217
|
+
pyrogram/types/user_and_chats/video_chat_members_invited.py,sha256=9QhonApJd1XjOeJu9fqx2_u6nIOTZhfXZw_tX9XXxd8,1610
|
|
3218
|
+
pyrogram/types/user_and_chats/video_chat_scheduled.py,sha256=rUvDXF8r-2MfsAZKAcaWb_UZt5VoHebPjeJXWRDHGSo,1531
|
|
3219
|
+
pyrogram/types/user_and_chats/video_chat_started.py,sha256=WOAuM_CnkRA-W_Iedx0fIHB9RJ-AsvJIiSF05HzLRdA,1043
|
|
3220
|
+
pyroasync-2.2.11.dist-info/METADATA,sha256=toQAekQf6XHwJ6e9gI6FB9dAS5qlkO8FDXxREKXyx4M,4246
|
|
3221
|
+
pyroasync-2.2.11.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
3222
|
+
pyroasync-2.2.11.dist-info/top_level.txt,sha256=vS2-tKX7dJ1uKjistE5CoOVbv4yqglA95SK0KFEDwl0,9
|
|
3223
|
+
pyroasync-2.2.11.dist-info/RECORD,,
|