pixlib 1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2522) hide show
  1. pixlib/Pix/__init__.py +33 -0
  2. pixlib/Pix/_wrappers.py +82 -0
  3. pixlib/Pix/assistant/__init__.py +0 -0
  4. pixlib/Pix/assistant/callback.py +147 -0
  5. pixlib/Pix/assistant/host.py +29 -0
  6. pixlib/Pix/autobot.py +131 -0
  7. pixlib/Pix/database/__init__.py +783 -0
  8. pixlib/Pix/database/fitersdb.py +76 -0
  9. pixlib/Pix/database/gbandb.py +23 -0
  10. pixlib/Pix/database/global.py +42 -0
  11. pixlib/Pix/database/gmutedb.py +16 -0
  12. pixlib/Pix/database/notesdb.py +73 -0
  13. pixlib/Pix/database/pm_permit.py +23 -0
  14. pixlib/Pix/database/pmpermit.py +82 -0
  15. pixlib/Pix/database/slr.py +24 -0
  16. pixlib/Pix/database/sudodb.py +27 -0
  17. pixlib/Pix/filter.py +57 -0
  18. pixlib/Pix/helper/PyroHelpers.py +65 -0
  19. pixlib/Pix/helper/__init__.py +20 -0
  20. pixlib/Pix/helper/adminHelpers.py +68 -0
  21. pixlib/Pix/helper/aiohttp_helper.py +36 -0
  22. pixlib/Pix/helper/basic.py +55 -0
  23. pixlib/Pix/helper/constants.py +429 -0
  24. pixlib/Pix/helper/data.py +8 -0
  25. pixlib/Pix/helper/inline.py +98 -0
  26. pixlib/Pix/helper/inline2.py +97 -0
  27. pixlib/Pix/helper/interval.py +37 -0
  28. pixlib/Pix/helper/parser.py +22 -0
  29. pixlib/Pix/helper/pluginhelper.py +169 -0
  30. pixlib/Pix/helper/utility.py +81 -0
  31. pixlib/Pix/helper/what.py +84 -0
  32. pixlib/Pix/utils/__init__.py +4 -0
  33. pixlib/Pix/utils/extra.py +134 -0
  34. pixlib/Pix/utils/kang_copas.py +290 -0
  35. pixlib/Pix/utils/misc.py +142 -0
  36. pixlib/Pix/utils/pixlogs.py +39 -0
  37. pixlib/Pix/utils/tools.py +364 -0
  38. pixlib/__init__.py +65 -0
  39. pixlib/assistant.py +208 -0
  40. pixlib/client.py +1024 -0
  41. pixlib/connection/__init__.py +1 -0
  42. pixlib/connection/connection.py +68 -0
  43. pixlib/connection/transport/__init__.py +1 -0
  44. pixlib/connection/transport/tcp/__init__.py +6 -0
  45. pixlib/connection/transport/tcp/tcp.py +107 -0
  46. pixlib/connection/transport/tcp/tcp_abridged.py +39 -0
  47. pixlib/connection/transport/tcp/tcp_abridged_o.py +68 -0
  48. pixlib/connection/transport/tcp/tcp_full.py +46 -0
  49. pixlib/connection/transport/tcp/tcp_intermediate.py +27 -0
  50. pixlib/connection/transport/tcp/tcp_intermediate_o.py +61 -0
  51. pixlib/crypto/__init__.py +1 -0
  52. pixlib/crypto/aes.py +112 -0
  53. pixlib/crypto/mtproto.py +109 -0
  54. pixlib/crypto/prime.py +64 -0
  55. pixlib/crypto/rsa.py +193 -0
  56. pixlib/dispatcher.py +245 -0
  57. pixlib/emoji.py +4001 -0
  58. pixlib/enums/__init__.py +31 -0
  59. pixlib/enums/auto_name.py +9 -0
  60. pixlib/enums/chat_action.py +54 -0
  61. pixlib/enums/chat_event_action.py +109 -0
  62. pixlib/enums/chat_member_status.py +25 -0
  63. pixlib/enums/chat_members_filter.py +24 -0
  64. pixlib/enums/chat_type.py +22 -0
  65. pixlib/enums/message_entity_type.py +66 -0
  66. pixlib/enums/message_media_type.py +52 -0
  67. pixlib/enums/message_service_type.py +55 -0
  68. pixlib/enums/messages_filter.py +57 -0
  69. pixlib/enums/msg_types.py +239 -0
  70. pixlib/enums/next_code_type.py +18 -0
  71. pixlib/enums/parse_mode.py +19 -0
  72. pixlib/enums/poll_type.py +13 -0
  73. pixlib/enums/sent_code_type.py +21 -0
  74. pixlib/enums/user_status.py +25 -0
  75. pixlib/errors/__init__.py +52 -0
  76. pixlib/errors/exceptions/__init__.py +26 -0
  77. pixlib/errors/exceptions/all.py +505 -0
  78. pixlib/errors/exceptions/bad_request_400.py +2513 -0
  79. pixlib/errors/exceptions/flood_420.py +63 -0
  80. pixlib/errors/exceptions/forbidden_403.py +217 -0
  81. pixlib/errors/exceptions/internal_server_error_500.py +336 -0
  82. pixlib/errors/exceptions/not_acceptable_406.py +112 -0
  83. pixlib/errors/exceptions/see_other_303.py +63 -0
  84. pixlib/errors/exceptions/service_unavailable_503.py +42 -0
  85. pixlib/errors/exceptions/unauthorized_401.py +91 -0
  86. pixlib/errors/rpc_error.py +85 -0
  87. pixlib/file_id.py +463 -0
  88. pixlib/filters.py +899 -0
  89. pixlib/handlers/__init__.py +13 -0
  90. pixlib/handlers/callback_query_handler.py +31 -0
  91. pixlib/handlers/chat_join_request_handler.py +31 -0
  92. pixlib/handlers/chat_member_updated_handler.py +31 -0
  93. pixlib/handlers/chosen_inline_result_handler.py +32 -0
  94. pixlib/handlers/conversation_handler.py +50 -0
  95. pixlib/handlers/deleted_messages_handler.py +43 -0
  96. pixlib/handlers/disconnect_handler.py +25 -0
  97. pixlib/handlers/edited_message_handler.py +31 -0
  98. pixlib/handlers/handler.py +25 -0
  99. pixlib/handlers/inline_query_handler.py +31 -0
  100. pixlib/handlers/message_handler.py +46 -0
  101. pixlib/handlers/poll_handler.py +32 -0
  102. pixlib/handlers/raw_update_handler.py +49 -0
  103. pixlib/handlers/user_status_handler.py +29 -0
  104. pixlib/methods/__init__.py +27 -0
  105. pixlib/methods/advanced/__init__.py +11 -0
  106. pixlib/methods/advanced/invoke.py +71 -0
  107. pixlib/methods/advanced/resolve_peer.py +107 -0
  108. pixlib/methods/advanced/save_file.py +212 -0
  109. pixlib/methods/auth/__init__.py +35 -0
  110. pixlib/methods/auth/accept_terms_of_service.py +26 -0
  111. pixlib/methods/auth/check_password.py +42 -0
  112. pixlib/methods/auth/connect.py +33 -0
  113. pixlib/methods/auth/disconnect.py +22 -0
  114. pixlib/methods/auth/get_password_hint.py +20 -0
  115. pixlib/methods/auth/initialize.py +31 -0
  116. pixlib/methods/auth/log_out.py +33 -0
  117. pixlib/methods/auth/recover_password.py +39 -0
  118. pixlib/methods/auth/resend_code.py +46 -0
  119. pixlib/methods/auth/send_code.py +61 -0
  120. pixlib/methods/auth/send_recovery_code.py +25 -0
  121. pixlib/methods/auth/sign_in.py +62 -0
  122. pixlib/methods/auth/sign_in_bot.py +61 -0
  123. pixlib/methods/auth/sign_up.py +55 -0
  124. pixlib/methods/auth/terminate.py +36 -0
  125. pixlib/methods/bots/__init__.py +37 -0
  126. pixlib/methods/bots/answer_callback_query.py +63 -0
  127. pixlib/methods/bots/answer_inline_query.py +94 -0
  128. pixlib/methods/bots/answer_web_app_query.py +35 -0
  129. pixlib/methods/bots/delete_bot_commands.py +44 -0
  130. pixlib/methods/bots/get_bot_commands.py +49 -0
  131. pixlib/methods/bots/get_bot_default_privileges.py +41 -0
  132. pixlib/methods/bots/get_chat_menu_button.py +48 -0
  133. pixlib/methods/bots/get_game_high_scores.py +54 -0
  134. pixlib/methods/bots/get_inline_bot_results.py +74 -0
  135. pixlib/methods/bots/request_callback_answer.py +59 -0
  136. pixlib/methods/bots/send_game.py +82 -0
  137. pixlib/methods/bots/send_inline_bot_result.py +57 -0
  138. pixlib/methods/bots/set_bot_commands.py +55 -0
  139. pixlib/methods/bots/set_bot_default_privileges.py +63 -0
  140. pixlib/methods/bots/set_chat_menu_button.py +38 -0
  141. pixlib/methods/bots/set_game_score.py +82 -0
  142. pixlib/methods/chats/__init__.py +83 -0
  143. pixlib/methods/chats/add_chat_members.py +72 -0
  144. pixlib/methods/chats/archive_chats.py +53 -0
  145. pixlib/methods/chats/ban_chat_member.py +93 -0
  146. pixlib/methods/chats/create_channel.py +40 -0
  147. pixlib/methods/chats/create_group.py +49 -0
  148. pixlib/methods/chats/create_supergroup.py +44 -0
  149. pixlib/methods/chats/delete_channel.py +34 -0
  150. pixlib/methods/chats/delete_chat_photo.py +52 -0
  151. pixlib/methods/chats/delete_supergroup.py +34 -0
  152. pixlib/methods/chats/delete_user_history.py +37 -0
  153. pixlib/methods/chats/get_chat.py +69 -0
  154. pixlib/methods/chats/get_chat_event_log.py +91 -0
  155. pixlib/methods/chats/get_chat_member.py +74 -0
  156. pixlib/methods/chats/get_chat_members.py +140 -0
  157. pixlib/methods/chats/get_chat_members_count.py +51 -0
  158. pixlib/methods/chats/get_chat_online_count.py +33 -0
  159. pixlib/methods/chats/get_dialogs.py +86 -0
  160. pixlib/methods/chats/get_dialogs_count.py +45 -0
  161. pixlib/methods/chats/get_nearby_chats.py +60 -0
  162. pixlib/methods/chats/get_send_as_chats.py +47 -0
  163. pixlib/methods/chats/join_chat.py +56 -0
  164. pixlib/methods/chats/leave_chat.py +59 -0
  165. pixlib/methods/chats/mark_chat_unread.py +29 -0
  166. pixlib/methods/chats/pin_chat_message.py +63 -0
  167. pixlib/methods/chats/promote_chat_member.py +83 -0
  168. pixlib/methods/chats/restrict_chat_member.py +81 -0
  169. pixlib/methods/chats/set_administrator_title.py +67 -0
  170. pixlib/methods/chats/set_chat_description.py +48 -0
  171. pixlib/methods/chats/set_chat_permissions.py +69 -0
  172. pixlib/methods/chats/set_chat_photo.py +103 -0
  173. pixlib/methods/chats/set_chat_protected_content.py +35 -0
  174. pixlib/methods/chats/set_chat_title.py +60 -0
  175. pixlib/methods/chats/set_chat_username.py +50 -0
  176. pixlib/methods/chats/set_send_as_chat.py +39 -0
  177. pixlib/methods/chats/set_slow_mode.py +45 -0
  178. pixlib/methods/chats/unarchive_chats.py +53 -0
  179. pixlib/methods/chats/unban_chat_member.py +46 -0
  180. pixlib/methods/chats/unpin_all_chat_messages.py +37 -0
  181. pixlib/methods/chats/unpin_chat_message.py +43 -0
  182. pixlib/methods/contacts/__init__.py +15 -0
  183. pixlib/methods/contacts/add_contact.py +60 -0
  184. pixlib/methods/contacts/delete_contacts.py +48 -0
  185. pixlib/methods/contacts/get_contacts.py +29 -0
  186. pixlib/methods/contacts/get_contacts_count.py +23 -0
  187. pixlib/methods/contacts/import_contacts.py +40 -0
  188. pixlib/methods/decorators/__init__.py +29 -0
  189. pixlib/methods/decorators/on_callback_query.py +43 -0
  190. pixlib/methods/decorators/on_chat_join_request.py +42 -0
  191. pixlib/methods/decorators/on_chat_member_updated.py +42 -0
  192. pixlib/methods/decorators/on_chosen_inline_result.py +43 -0
  193. pixlib/methods/decorators/on_deleted_messages.py +43 -0
  194. pixlib/methods/decorators/on_disconnect.py +25 -0
  195. pixlib/methods/decorators/on_edited_message.py +43 -0
  196. pixlib/methods/decorators/on_inline_query.py +43 -0
  197. pixlib/methods/decorators/on_message.py +43 -0
  198. pixlib/methods/decorators/on_poll.py +43 -0
  199. pixlib/methods/decorators/on_raw_update.py +37 -0
  200. pixlib/methods/decorators/on_user_status.py +41 -0
  201. pixlib/methods/invite_links/__init__.py +40 -0
  202. pixlib/methods/invite_links/approve_all_chat_join_requests.py +37 -0
  203. pixlib/methods/invite_links/approve_chat_join_request.py +39 -0
  204. pixlib/methods/invite_links/create_chat_invite_link.py +69 -0
  205. pixlib/methods/invite_links/decline_all_chat_join_requests.py +37 -0
  206. pixlib/methods/invite_links/decline_chat_join_request.py +39 -0
  207. pixlib/methods/invite_links/delete_chat_admin_invite_links.py +36 -0
  208. pixlib/methods/invite_links/delete_chat_invite_link.py +34 -0
  209. pixlib/methods/invite_links/edit_chat_invite_link.py +74 -0
  210. pixlib/methods/invite_links/export_chat_invite_link.py +47 -0
  211. pixlib/methods/invite_links/get_chat_admin_invite_links.py +82 -0
  212. pixlib/methods/invite_links/get_chat_admin_invite_links_count.py +44 -0
  213. pixlib/methods/invite_links/get_chat_admins_with_invite_links.py +38 -0
  214. pixlib/methods/invite_links/get_chat_invite_link.py +38 -0
  215. pixlib/methods/invite_links/get_chat_invite_link_joiners.py +69 -0
  216. pixlib/methods/invite_links/get_chat_invite_link_joiners_count.py +38 -0
  217. pixlib/methods/invite_links/get_chat_join_requests.py +70 -0
  218. pixlib/methods/invite_links/revoke_chat_invite_link.py +50 -0
  219. pixlib/methods/messages/__init__.py +105 -0
  220. pixlib/methods/messages/copy_media_group.py +122 -0
  221. pixlib/methods/messages/copy_message.py +103 -0
  222. pixlib/methods/messages/delete_messages.py +66 -0
  223. pixlib/methods/messages/download_media.py +169 -0
  224. pixlib/methods/messages/edit_inline_caption.py +47 -0
  225. pixlib/methods/messages/edit_inline_media.py +223 -0
  226. pixlib/methods/messages/edit_inline_reply_markup.py +51 -0
  227. pixlib/methods/messages/edit_inline_text.py +70 -0
  228. pixlib/methods/messages/edit_message_caption.py +58 -0
  229. pixlib/methods/messages/edit_message_media.py +260 -0
  230. pixlib/methods/messages/edit_message_reply_markup.py +59 -0
  231. pixlib/methods/messages/edit_message_text.py +80 -0
  232. pixlib/methods/messages/forward_messages.py +92 -0
  233. pixlib/methods/messages/get_chat_history.py +103 -0
  234. pixlib/methods/messages/get_chat_history_count.py +54 -0
  235. pixlib/methods/messages/get_custom_emoji_stickers.py +37 -0
  236. pixlib/methods/messages/get_discussion_message.py +47 -0
  237. pixlib/methods/messages/get_discussion_replies.py +68 -0
  238. pixlib/methods/messages/get_discussion_replies_count.py +44 -0
  239. pixlib/methods/messages/get_media_group.py +55 -0
  240. pixlib/methods/messages/get_messages.py +101 -0
  241. pixlib/methods/messages/inline_session.py +46 -0
  242. pixlib/methods/messages/read_chat_history.py +55 -0
  243. pixlib/methods/messages/retract_vote.py +43 -0
  244. pixlib/methods/messages/search_global.py +99 -0
  245. pixlib/methods/messages/search_global_count.py +44 -0
  246. pixlib/methods/messages/search_messages.py +133 -0
  247. pixlib/methods/messages/search_messages_count.py +66 -0
  248. pixlib/methods/messages/send_animation.py +246 -0
  249. pixlib/methods/messages/send_audio.py +224 -0
  250. pixlib/methods/messages/send_cached_media.py +106 -0
  251. pixlib/methods/messages/send_chat_action.py +62 -0
  252. pixlib/methods/messages/send_contact.py +103 -0
  253. pixlib/methods/messages/send_dice.py +98 -0
  254. pixlib/methods/messages/send_document.py +202 -0
  255. pixlib/methods/messages/send_location.py +95 -0
  256. pixlib/methods/messages/send_media_group.py +387 -0
  257. pixlib/methods/messages/send_message.py +159 -0
  258. pixlib/methods/messages/send_photo.py +179 -0
  259. pixlib/methods/messages/send_poll.py +163 -0
  260. pixlib/methods/messages/send_reaction.py +55 -0
  261. pixlib/methods/messages/send_sticker.py +161 -0
  262. pixlib/methods/messages/send_venue.py +119 -0
  263. pixlib/methods/messages/send_video.py +236 -0
  264. pixlib/methods/messages/send_video_note.py +185 -0
  265. pixlib/methods/messages/send_voice.py +186 -0
  266. pixlib/methods/messages/stop_poll.py +59 -0
  267. pixlib/methods/messages/stream_media.py +88 -0
  268. pixlib/methods/messages/vote_poll.py +51 -0
  269. pixlib/methods/messages/wait_for_callback_query.py +53 -0
  270. pixlib/methods/messages/wait_for_message.py +53 -0
  271. pixlib/methods/password/__init__.py +11 -0
  272. pixlib/methods/password/change_cloud_password.py +64 -0
  273. pixlib/methods/password/enable_cloud_password.py +70 -0
  274. pixlib/methods/password/remove_cloud_password.py +46 -0
  275. pixlib/methods/users/__init__.py +31 -0
  276. pixlib/methods/users/block_user.py +36 -0
  277. pixlib/methods/users/delete_profile_photos.py +45 -0
  278. pixlib/methods/users/get_chat_photos.py +117 -0
  279. pixlib/methods/users/get_chat_photos_count.py +56 -0
  280. pixlib/methods/users/get_common_chats.py +49 -0
  281. pixlib/methods/users/get_default_emoji_statuses.py +29 -0
  282. pixlib/methods/users/get_me.py +31 -0
  283. pixlib/methods/users/get_users.py +53 -0
  284. pixlib/methods/users/set_emoji_status.py +40 -0
  285. pixlib/methods/users/set_profile_photo.py +57 -0
  286. pixlib/methods/users/set_username.py +39 -0
  287. pixlib/methods/users/unblock_user.py +36 -0
  288. pixlib/methods/users/update_profile.py +54 -0
  289. pixlib/methods/utilities/__init__.py +21 -0
  290. pixlib/methods/utilities/add_handler.py +49 -0
  291. pixlib/methods/utilities/compose.py +60 -0
  292. pixlib/methods/utilities/export_session_string.py +22 -0
  293. pixlib/methods/utilities/idle.py +69 -0
  294. pixlib/methods/utilities/remove_handler.py +45 -0
  295. pixlib/methods/utilities/restart.py +54 -0
  296. pixlib/methods/utilities/run.py +68 -0
  297. pixlib/methods/utilities/start.py +58 -0
  298. pixlib/methods/utilities/stop.py +51 -0
  299. pixlib/methods/utilities/stop_transmission.py +25 -0
  300. pixlib/mime_types.py +1863 -0
  301. pixlib/parser/__init__.py +1 -0
  302. pixlib/parser/html.py +201 -0
  303. pixlib/parser/markdown.py +155 -0
  304. pixlib/parser/parser.py +43 -0
  305. pixlib/parser/utils.py +23 -0
  306. pixlib/pixy/__init__.py +24 -0
  307. pixlib/pixy/helpers/PyroHelpers.py +71 -0
  308. pixlib/pixy/helpers/SQL/__init__.py +44 -0
  309. pixlib/pixy/helpers/SQL/afk_db.py +54 -0
  310. pixlib/pixy/helpers/SQL/cloner_db.py +38 -0
  311. pixlib/pixy/helpers/SQL/filters_sql.py +70 -0
  312. pixlib/pixy/helpers/SQL/gban_sql.py +49 -0
  313. pixlib/pixy/helpers/SQL/globals.py +51 -0
  314. pixlib/pixy/helpers/SQL/gmute_sql.py +49 -0
  315. pixlib/pixy/helpers/SQL/no_log_pms_sql.py +39 -0
  316. pixlib/pixy/helpers/SQL/notes_sql.py +60 -0
  317. pixlib/pixy/helpers/SQL/pm_db.py +91 -0
  318. pixlib/pixy/helpers/SQL/pm_permit_sql.py +39 -0
  319. pixlib/pixy/helpers/SQL/pmstuff.py +106 -0
  320. pixlib/pixy/helpers/__init__.py +11 -0
  321. pixlib/pixy/helpers/adminHelpers.py +79 -0
  322. pixlib/pixy/helpers/basic.py +55 -0
  323. pixlib/pixy/helpers/constants.py +471 -0
  324. pixlib/pixy/helpers/data.py +12 -0
  325. pixlib/pixy/helpers/expand.py +9 -0
  326. pixlib/pixy/helpers/inline.py +97 -0
  327. pixlib/pixy/helpers/interval.py +37 -0
  328. pixlib/pixy/helpers/misc.py +133 -0
  329. pixlib/pixy/helpers/msg_types.py +239 -0
  330. pixlib/pixy/helpers/parser.py +22 -0
  331. pixlib/pixy/helpers/queue.py +32 -0
  332. pixlib/pixy/helpers/shorten.py +32 -0
  333. pixlib/pixy/helpers/tools.py +364 -0
  334. pixlib/pixy/helpers/utility.py +121 -0
  335. pixlib/pixy/helpers/what.py +65 -0
  336. pixlib/pixy/resources/__init__.py +1 -0
  337. pixlib/pixy/utils/__init__.py +6 -0
  338. pixlib/pixy/utils/aiorequests.py +63 -0
  339. pixlib/pixy/utils/extra.py +134 -0
  340. pixlib/pixy/utils/kang_copas.py +290 -0
  341. pixlib/pixy/utils/misc.py +115 -0
  342. pixlib/pixy/utils/pastebin.py +49 -0
  343. pixlib/pixy/utils/sections.py +23 -0
  344. pixlib/pixy/utils/tools.py +125 -0
  345. pixlib/py.typed +0 -0
  346. pixlib/raw/__init__.py +9 -0
  347. pixlib/raw/all.py +1614 -0
  348. pixlib/raw/base/__init__.py +295 -0
  349. pixlib/raw/base/access_point_rule.py +53 -0
  350. pixlib/raw/base/account/__init__.py +43 -0
  351. pixlib/raw/base/account/authorization_form.py +63 -0
  352. pixlib/raw/base/account/authorizations.py +63 -0
  353. pixlib/raw/base/account/auto_download_settings.py +63 -0
  354. pixlib/raw/base/account/content_settings.py +63 -0
  355. pixlib/raw/base/account/email_verified.py +64 -0
  356. pixlib/raw/base/account/emoji_statuses.py +65 -0
  357. pixlib/raw/base/account/password.py +63 -0
  358. pixlib/raw/base/account/password_input_settings.py +53 -0
  359. pixlib/raw/base/account/password_settings.py +63 -0
  360. pixlib/raw/base/account/privacy_rules.py +64 -0
  361. pixlib/raw/base/account/reset_password_result.py +65 -0
  362. pixlib/raw/base/account/saved_ringtone.py +64 -0
  363. pixlib/raw/base/account/saved_ringtones.py +64 -0
  364. pixlib/raw/base/account/sent_email_code.py +63 -0
  365. pixlib/raw/base/account/takeout.py +63 -0
  366. pixlib/raw/base/account/themes.py +65 -0
  367. pixlib/raw/base/account/tmp_password.py +63 -0
  368. pixlib/raw/base/account/wall_papers.py +64 -0
  369. pixlib/raw/base/account/web_authorizations.py +63 -0
  370. pixlib/raw/base/account_days_ttl.py +63 -0
  371. pixlib/raw/base/attach_menu_bot.py +53 -0
  372. pixlib/raw/base/attach_menu_bot_icon.py +53 -0
  373. pixlib/raw/base/attach_menu_bot_icon_color.py +53 -0
  374. pixlib/raw/base/attach_menu_bots.py +64 -0
  375. pixlib/raw/base/attach_menu_bots_bot.py +63 -0
  376. pixlib/raw/base/attach_menu_peer_type.py +57 -0
  377. pixlib/raw/base/auth/__init__.py +32 -0
  378. pixlib/raw/base/auth/authorization.py +69 -0
  379. pixlib/raw/base/auth/code_type.py +56 -0
  380. pixlib/raw/base/auth/exported_authorization.py +63 -0
  381. pixlib/raw/base/auth/logged_out.py +63 -0
  382. pixlib/raw/base/auth/login_token.py +66 -0
  383. pixlib/raw/base/auth/password_recovery.py +63 -0
  384. pixlib/raw/base/auth/sent_code.py +67 -0
  385. pixlib/raw/base/auth/sent_code_type.py +59 -0
  386. pixlib/raw/base/authorization.py +63 -0
  387. pixlib/raw/base/auto_download_settings.py +53 -0
  388. pixlib/raw/base/available_reaction.py +53 -0
  389. pixlib/raw/base/bad_msg_notification.py +54 -0
  390. pixlib/raw/base/bank_card_open_url.py +53 -0
  391. pixlib/raw/base/base_theme.py +57 -0
  392. pixlib/raw/base/bind_auth_key_inner.py +53 -0
  393. pixlib/raw/base/bot_command.py +63 -0
  394. pixlib/raw/base/bot_command_scope.py +59 -0
  395. pixlib/raw/base/bot_info.py +53 -0
  396. pixlib/raw/base/bot_inline_message.py +58 -0
  397. pixlib/raw/base/bot_inline_result.py +54 -0
  398. pixlib/raw/base/bot_menu_button.py +65 -0
  399. pixlib/raw/base/cdn_config.py +63 -0
  400. pixlib/raw/base/cdn_public_key.py +53 -0
  401. pixlib/raw/base/channel_admin_log_event.py +53 -0
  402. pixlib/raw/base/channel_admin_log_event_action.py +94 -0
  403. pixlib/raw/base/channel_admin_log_events_filter.py +53 -0
  404. pixlib/raw/base/channel_location.py +54 -0
  405. pixlib/raw/base/channel_messages_filter.py +54 -0
  406. pixlib/raw/base/channel_participant.py +58 -0
  407. pixlib/raw/base/channel_participants_filter.py +60 -0
  408. pixlib/raw/base/channels/__init__.py +28 -0
  409. pixlib/raw/base/channels/admin_log_results.py +63 -0
  410. pixlib/raw/base/channels/channel_participant.py +63 -0
  411. pixlib/raw/base/channels/channel_participants.py +64 -0
  412. pixlib/raw/base/channels/send_as_peers.py +63 -0
  413. pixlib/raw/base/chat.py +57 -0
  414. pixlib/raw/base/chat_admin_rights.py +53 -0
  415. pixlib/raw/base/chat_admin_with_invites.py +53 -0
  416. pixlib/raw/base/chat_banned_rights.py +53 -0
  417. pixlib/raw/base/chat_full.py +54 -0
  418. pixlib/raw/base/chat_invite.py +65 -0
  419. pixlib/raw/base/chat_invite_importer.py +53 -0
  420. pixlib/raw/base/chat_onlines.py +63 -0
  421. pixlib/raw/base/chat_participant.py +55 -0
  422. pixlib/raw/base/chat_participants.py +54 -0
  423. pixlib/raw/base/chat_photo.py +54 -0
  424. pixlib/raw/base/chat_reactions.py +55 -0
  425. pixlib/raw/base/client_dh_inner_data.py +53 -0
  426. pixlib/raw/base/code_settings.py +53 -0
  427. pixlib/raw/base/config.py +63 -0
  428. pixlib/raw/base/contact.py +53 -0
  429. pixlib/raw/base/contact_status.py +63 -0
  430. pixlib/raw/base/contacts/__init__.py +30 -0
  431. pixlib/raw/base/contacts/blocked.py +64 -0
  432. pixlib/raw/base/contacts/contacts.py +64 -0
  433. pixlib/raw/base/contacts/found.py +63 -0
  434. pixlib/raw/base/contacts/imported_contacts.py +63 -0
  435. pixlib/raw/base/contacts/resolved_peer.py +64 -0
  436. pixlib/raw/base/contacts/top_peers.py +65 -0
  437. pixlib/raw/base/data_json.py +64 -0
  438. pixlib/raw/base/dc_option.py +53 -0
  439. pixlib/raw/base/destroy_auth_key_res.py +65 -0
  440. pixlib/raw/base/destroy_session_res.py +64 -0
  441. pixlib/raw/base/dialog.py +54 -0
  442. pixlib/raw/base/dialog_filter.py +64 -0
  443. pixlib/raw/base/dialog_filter_suggested.py +63 -0
  444. pixlib/raw/base/dialog_peer.py +64 -0
  445. pixlib/raw/base/document.py +67 -0
  446. pixlib/raw/base/document_attribute.py +60 -0
  447. pixlib/raw/base/draft_message.py +54 -0
  448. pixlib/raw/base/email_verification.py +55 -0
  449. pixlib/raw/base/email_verify_purpose.py +55 -0
  450. pixlib/raw/base/emoji_keyword.py +54 -0
  451. pixlib/raw/base/emoji_keywords_difference.py +64 -0
  452. pixlib/raw/base/emoji_language.py +63 -0
  453. pixlib/raw/base/emoji_status.py +55 -0
  454. pixlib/raw/base/emoji_url.py +63 -0
  455. pixlib/raw/base/encrypted_chat.py +68 -0
  456. pixlib/raw/base/encrypted_file.py +64 -0
  457. pixlib/raw/base/encrypted_message.py +54 -0
  458. pixlib/raw/base/exported_chat_invite.py +64 -0
  459. pixlib/raw/base/exported_message_link.py +63 -0
  460. pixlib/raw/base/file_hash.py +65 -0
  461. pixlib/raw/base/folder.py +53 -0
  462. pixlib/raw/base/folder_peer.py +53 -0
  463. pixlib/raw/base/forum_topic.py +54 -0
  464. pixlib/raw/base/game.py +53 -0
  465. pixlib/raw/base/geo_point.py +54 -0
  466. pixlib/raw/base/global_privacy_settings.py +64 -0
  467. pixlib/raw/base/group_call.py +54 -0
  468. pixlib/raw/base/group_call_participant.py +53 -0
  469. pixlib/raw/base/group_call_participant_video.py +53 -0
  470. pixlib/raw/base/group_call_participant_video_source_group.py +53 -0
  471. pixlib/raw/base/group_call_stream_channel.py +53 -0
  472. pixlib/raw/base/help/__init__.py +40 -0
  473. pixlib/raw/base/help/app_update.py +64 -0
  474. pixlib/raw/base/help/config_simple.py +53 -0
  475. pixlib/raw/base/help/countries_list.py +64 -0
  476. pixlib/raw/base/help/country.py +53 -0
  477. pixlib/raw/base/help/country_code.py +53 -0
  478. pixlib/raw/base/help/deep_link_info.py +64 -0
  479. pixlib/raw/base/help/invite_text.py +63 -0
  480. pixlib/raw/base/help/passport_config.py +64 -0
  481. pixlib/raw/base/help/premium_promo.py +63 -0
  482. pixlib/raw/base/help/promo_data.py +64 -0
  483. pixlib/raw/base/help/recent_me_urls.py +63 -0
  484. pixlib/raw/base/help/support.py +63 -0
  485. pixlib/raw/base/help/support_name.py +63 -0
  486. pixlib/raw/base/help/terms_of_service.py +53 -0
  487. pixlib/raw/base/help/terms_of_service_update.py +64 -0
  488. pixlib/raw/base/help/user_info.py +65 -0
  489. pixlib/raw/base/high_score.py +53 -0
  490. pixlib/raw/base/http_wait.py +53 -0
  491. pixlib/raw/base/imported_contact.py +53 -0
  492. pixlib/raw/base/inline_bot_switch_pm.py +53 -0
  493. pixlib/raw/base/inline_query_peer_type.py +57 -0
  494. pixlib/raw/base/input_app_event.py +53 -0
  495. pixlib/raw/base/input_bot_inline_message.py +59 -0
  496. pixlib/raw/base/input_bot_inline_message_id.py +54 -0
  497. pixlib/raw/base/input_bot_inline_result.py +56 -0
  498. pixlib/raw/base/input_channel.py +55 -0
  499. pixlib/raw/base/input_chat_photo.py +55 -0
  500. pixlib/raw/base/input_check_password_srp.py +54 -0
  501. pixlib/raw/base/input_client_proxy.py +53 -0
  502. pixlib/raw/base/input_contact.py +53 -0
  503. pixlib/raw/base/input_dialog_peer.py +54 -0
  504. pixlib/raw/base/input_document.py +54 -0
  505. pixlib/raw/base/input_encrypted_chat.py +53 -0
  506. pixlib/raw/base/input_encrypted_file.py +56 -0
  507. pixlib/raw/base/input_file.py +54 -0
  508. pixlib/raw/base/input_file_location.py +62 -0
  509. pixlib/raw/base/input_folder_peer.py +53 -0
  510. pixlib/raw/base/input_game.py +54 -0
  511. pixlib/raw/base/input_geo_point.py +54 -0
  512. pixlib/raw/base/input_group_call.py +53 -0
  513. pixlib/raw/base/input_invoice.py +54 -0
  514. pixlib/raw/base/input_media.py +67 -0
  515. pixlib/raw/base/input_message.py +56 -0
  516. pixlib/raw/base/input_notify_peer.py +57 -0
  517. pixlib/raw/base/input_payment_credentials.py +56 -0
  518. pixlib/raw/base/input_peer.py +59 -0
  519. pixlib/raw/base/input_peer_notify_settings.py +53 -0
  520. pixlib/raw/base/input_phone_call.py +53 -0
  521. pixlib/raw/base/input_photo.py +54 -0
  522. pixlib/raw/base/input_privacy_key.py +61 -0
  523. pixlib/raw/base/input_privacy_rule.py +60 -0
  524. pixlib/raw/base/input_secure_file.py +54 -0
  525. pixlib/raw/base/input_secure_value.py +53 -0
  526. pixlib/raw/base/input_single_media.py +53 -0
  527. pixlib/raw/base/input_sticker_set.py +62 -0
  528. pixlib/raw/base/input_sticker_set_item.py +53 -0
  529. pixlib/raw/base/input_stickered_media.py +54 -0
  530. pixlib/raw/base/input_store_payment_purpose.py +54 -0
  531. pixlib/raw/base/input_theme.py +54 -0
  532. pixlib/raw/base/input_theme_settings.py +53 -0
  533. pixlib/raw/base/input_user.py +56 -0
  534. pixlib/raw/base/input_wall_paper.py +55 -0
  535. pixlib/raw/base/input_web_document.py +53 -0
  536. pixlib/raw/base/input_web_file_location.py +55 -0
  537. pixlib/raw/base/invoice.py +53 -0
  538. pixlib/raw/base/ip_port.py +54 -0
  539. pixlib/raw/base/json_object_value.py +53 -0
  540. pixlib/raw/base/json_value.py +68 -0
  541. pixlib/raw/base/keyboard_button.py +67 -0
  542. pixlib/raw/base/keyboard_button_row.py +53 -0
  543. pixlib/raw/base/labeled_price.py +53 -0
  544. pixlib/raw/base/lang_pack_difference.py +64 -0
  545. pixlib/raw/base/lang_pack_language.py +64 -0
  546. pixlib/raw/base/lang_pack_string.py +65 -0
  547. pixlib/raw/base/mask_coords.py +53 -0
  548. pixlib/raw/base/message.py +55 -0
  549. pixlib/raw/base/message_action.py +87 -0
  550. pixlib/raw/base/message_entity.py +73 -0
  551. pixlib/raw/base/message_extended_media.py +54 -0
  552. pixlib/raw/base/message_fwd_header.py +53 -0
  553. pixlib/raw/base/message_interaction_counters.py +53 -0
  554. pixlib/raw/base/message_media.py +77 -0
  555. pixlib/raw/base/message_peer_reaction.py +53 -0
  556. pixlib/raw/base/message_range.py +63 -0
  557. pixlib/raw/base/message_reactions.py +53 -0
  558. pixlib/raw/base/message_replies.py +53 -0
  559. pixlib/raw/base/message_reply_header.py +53 -0
  560. pixlib/raw/base/message_user_vote.py +55 -0
  561. pixlib/raw/base/message_views.py +53 -0
  562. pixlib/raw/base/messages/__init__.py +70 -0
  563. pixlib/raw/base/messages/affected_found_messages.py +63 -0
  564. pixlib/raw/base/messages/affected_history.py +68 -0
  565. pixlib/raw/base/messages/affected_messages.py +66 -0
  566. pixlib/raw/base/messages/all_stickers.py +66 -0
  567. pixlib/raw/base/messages/archived_stickers.py +63 -0
  568. pixlib/raw/base/messages/available_reactions.py +64 -0
  569. pixlib/raw/base/messages/bot_callback_answer.py +63 -0
  570. pixlib/raw/base/messages/bot_results.py +63 -0
  571. pixlib/raw/base/messages/chat_admins_with_invites.py +63 -0
  572. pixlib/raw/base/messages/chat_full.py +64 -0
  573. pixlib/raw/base/messages/chat_invite_importers.py +63 -0
  574. pixlib/raw/base/messages/chats.py +70 -0
  575. pixlib/raw/base/messages/checked_history_import_peer.py +63 -0
  576. pixlib/raw/base/messages/dh_config.py +64 -0
  577. pixlib/raw/base/messages/dialogs.py +65 -0
  578. pixlib/raw/base/messages/discussion_message.py +63 -0
  579. pixlib/raw/base/messages/exported_chat_invite.py +65 -0
  580. pixlib/raw/base/messages/exported_chat_invites.py +63 -0
  581. pixlib/raw/base/messages/faved_stickers.py +64 -0
  582. pixlib/raw/base/messages/featured_stickers.py +66 -0
  583. pixlib/raw/base/messages/forum_topics.py +64 -0
  584. pixlib/raw/base/messages/found_sticker_sets.py +64 -0
  585. pixlib/raw/base/messages/high_scores.py +64 -0
  586. pixlib/raw/base/messages/history_import.py +63 -0
  587. pixlib/raw/base/messages/history_import_parsed.py +63 -0
  588. pixlib/raw/base/messages/inactive_chats.py +63 -0
  589. pixlib/raw/base/messages/message_edit_data.py +63 -0
  590. pixlib/raw/base/messages/message_reactions_list.py +63 -0
  591. pixlib/raw/base/messages/message_views.py +63 -0
  592. pixlib/raw/base/messages/messages.py +78 -0
  593. pixlib/raw/base/messages/peer_dialogs.py +64 -0
  594. pixlib/raw/base/messages/peer_settings.py +63 -0
  595. pixlib/raw/base/messages/reactions.py +65 -0
  596. pixlib/raw/base/messages/recent_stickers.py +64 -0
  597. pixlib/raw/base/messages/saved_gifs.py +64 -0
  598. pixlib/raw/base/messages/search_counter.py +63 -0
  599. pixlib/raw/base/messages/search_results_calendar.py +63 -0
  600. pixlib/raw/base/messages/search_results_positions.py +63 -0
  601. pixlib/raw/base/messages/sent_encrypted_message.py +66 -0
  602. pixlib/raw/base/messages/sponsored_messages.py +64 -0
  603. pixlib/raw/base/messages/sticker_set.py +69 -0
  604. pixlib/raw/base/messages/sticker_set_install_result.py +64 -0
  605. pixlib/raw/base/messages/stickers.py +64 -0
  606. pixlib/raw/base/messages/transcribed_audio.py +63 -0
  607. pixlib/raw/base/messages/translated_text.py +64 -0
  608. pixlib/raw/base/messages/votes_list.py +63 -0
  609. pixlib/raw/base/messages_filter.py +69 -0
  610. pixlib/raw/base/msg_detailed_info.py +54 -0
  611. pixlib/raw/base/msg_resend_req.py +54 -0
  612. pixlib/raw/base/msgs_ack.py +53 -0
  613. pixlib/raw/base/msgs_all_info.py +53 -0
  614. pixlib/raw/base/msgs_state_info.py +53 -0
  615. pixlib/raw/base/msgs_state_req.py +53 -0
  616. pixlib/raw/base/nearest_dc.py +63 -0
  617. pixlib/raw/base/new_session.py +53 -0
  618. pixlib/raw/base/notification_sound.py +56 -0
  619. pixlib/raw/base/notify_peer.py +57 -0
  620. pixlib/raw/base/page.py +53 -0
  621. pixlib/raw/base/page_block.py +81 -0
  622. pixlib/raw/base/page_caption.py +53 -0
  623. pixlib/raw/base/page_list_item.py +54 -0
  624. pixlib/raw/base/page_list_ordered_item.py +54 -0
  625. pixlib/raw/base/page_related_article.py +53 -0
  626. pixlib/raw/base/page_table_cell.py +53 -0
  627. pixlib/raw/base/page_table_row.py +53 -0
  628. pixlib/raw/base/password_kdf_algo.py +54 -0
  629. pixlib/raw/base/payment_charge.py +53 -0
  630. pixlib/raw/base/payment_form_method.py +53 -0
  631. pixlib/raw/base/payment_requested_info.py +53 -0
  632. pixlib/raw/base/payment_saved_credentials.py +53 -0
  633. pixlib/raw/base/payments/__init__.py +31 -0
  634. pixlib/raw/base/payments/bank_card_data.py +63 -0
  635. pixlib/raw/base/payments/exported_invoice.py +63 -0
  636. pixlib/raw/base/payments/payment_form.py +63 -0
  637. pixlib/raw/base/payments/payment_receipt.py +63 -0
  638. pixlib/raw/base/payments/payment_result.py +64 -0
  639. pixlib/raw/base/payments/saved_info.py +63 -0
  640. pixlib/raw/base/payments/validated_requested_info.py +63 -0
  641. pixlib/raw/base/peer.py +55 -0
  642. pixlib/raw/base/peer_blocked.py +53 -0
  643. pixlib/raw/base/peer_located.py +54 -0
  644. pixlib/raw/base/peer_notify_settings.py +63 -0
  645. pixlib/raw/base/peer_settings.py +53 -0
  646. pixlib/raw/base/phone/__init__.py +31 -0
  647. pixlib/raw/base/phone/exported_group_call_invite.py +63 -0
  648. pixlib/raw/base/phone/group_call.py +63 -0
  649. pixlib/raw/base/phone/group_call_stream_channels.py +63 -0
  650. pixlib/raw/base/phone/group_call_stream_rtmp_url.py +63 -0
  651. pixlib/raw/base/phone/group_participants.py +63 -0
  652. pixlib/raw/base/phone/join_as_peers.py +63 -0
  653. pixlib/raw/base/phone/phone_call.py +65 -0
  654. pixlib/raw/base/phone_call.py +58 -0
  655. pixlib/raw/base/phone_call_discard_reason.py +56 -0
  656. pixlib/raw/base/phone_call_protocol.py +53 -0
  657. pixlib/raw/base/phone_connection.py +54 -0
  658. pixlib/raw/base/photo.py +54 -0
  659. pixlib/raw/base/photo_size.py +58 -0
  660. pixlib/raw/base/photos/__init__.py +26 -0
  661. pixlib/raw/base/photos/photo.py +64 -0
  662. pixlib/raw/base/photos/photos.py +64 -0
  663. pixlib/raw/base/poll.py +53 -0
  664. pixlib/raw/base/poll_answer.py +53 -0
  665. pixlib/raw/base/poll_answer_voters.py +53 -0
  666. pixlib/raw/base/poll_results.py +53 -0
  667. pixlib/raw/base/pong.py +64 -0
  668. pixlib/raw/base/popular_contact.py +53 -0
  669. pixlib/raw/base/post_address.py +53 -0
  670. pixlib/raw/base/pq_inner_data.py +56 -0
  671. pixlib/raw/base/premium_gift_option.py +53 -0
  672. pixlib/raw/base/premium_subscription_option.py +53 -0
  673. pixlib/raw/base/privacy_key.py +61 -0
  674. pixlib/raw/base/privacy_rule.py +60 -0
  675. pixlib/raw/base/reaction.py +55 -0
  676. pixlib/raw/base/reaction_count.py +53 -0
  677. pixlib/raw/base/received_notify_message.py +63 -0
  678. pixlib/raw/base/recent_me_url.py +57 -0
  679. pixlib/raw/base/reply_markup.py +56 -0
  680. pixlib/raw/base/report_reason.py +62 -0
  681. pixlib/raw/base/res_pq.py +64 -0
  682. pixlib/raw/base/restriction_reason.py +53 -0
  683. pixlib/raw/base/rich_text.py +68 -0
  684. pixlib/raw/base/rpc_drop_answer.py +65 -0
  685. pixlib/raw/base/rpc_error.py +53 -0
  686. pixlib/raw/base/rpc_result.py +53 -0
  687. pixlib/raw/base/saved_contact.py +63 -0
  688. pixlib/raw/base/search_results_calendar_period.py +53 -0
  689. pixlib/raw/base/search_results_position.py +53 -0
  690. pixlib/raw/base/secure_credentials_encrypted.py +53 -0
  691. pixlib/raw/base/secure_data.py +53 -0
  692. pixlib/raw/base/secure_file.py +54 -0
  693. pixlib/raw/base/secure_password_kdf_algo.py +55 -0
  694. pixlib/raw/base/secure_plain_data.py +54 -0
  695. pixlib/raw/base/secure_required_type.py +54 -0
  696. pixlib/raw/base/secure_secret_settings.py +53 -0
  697. pixlib/raw/base/secure_value.py +65 -0
  698. pixlib/raw/base/secure_value_error.py +61 -0
  699. pixlib/raw/base/secure_value_hash.py +53 -0
  700. pixlib/raw/base/secure_value_type.py +65 -0
  701. pixlib/raw/base/send_as_peer.py +53 -0
  702. pixlib/raw/base/send_message_action.py +70 -0
  703. pixlib/raw/base/server_dh_inner_data.py +53 -0
  704. pixlib/raw/base/server_dh_params.py +64 -0
  705. pixlib/raw/base/set_client_dh_params_answer.py +65 -0
  706. pixlib/raw/base/shipping_option.py +53 -0
  707. pixlib/raw/base/simple_web_view_result.py +63 -0
  708. pixlib/raw/base/sponsored_message.py +53 -0
  709. pixlib/raw/base/stats/__init__.py +27 -0
  710. pixlib/raw/base/stats/broadcast_stats.py +63 -0
  711. pixlib/raw/base/stats/megagroup_stats.py +63 -0
  712. pixlib/raw/base/stats/message_stats.py +63 -0
  713. pixlib/raw/base/stats_abs_value_and_prev.py +53 -0
  714. pixlib/raw/base/stats_date_range_days.py +53 -0
  715. pixlib/raw/base/stats_graph.py +65 -0
  716. pixlib/raw/base/stats_group_top_admin.py +53 -0
  717. pixlib/raw/base/stats_group_top_inviter.py +53 -0
  718. pixlib/raw/base/stats_group_top_poster.py +53 -0
  719. pixlib/raw/base/stats_percent_value.py +53 -0
  720. pixlib/raw/base/stats_url.py +53 -0
  721. pixlib/raw/base/sticker_keyword.py +53 -0
  722. pixlib/raw/base/sticker_pack.py +53 -0
  723. pixlib/raw/base/sticker_set.py +53 -0
  724. pixlib/raw/base/sticker_set_covered.py +65 -0
  725. pixlib/raw/base/stickers/__init__.py +25 -0
  726. pixlib/raw/base/stickers/suggested_short_name.py +63 -0
  727. pixlib/raw/base/storage/__init__.py +25 -0
  728. pixlib/raw/base/storage/file_type.py +62 -0
  729. pixlib/raw/base/theme.py +65 -0
  730. pixlib/raw/base/theme_settings.py +53 -0
  731. pixlib/raw/base/top_peer.py +53 -0
  732. pixlib/raw/base/top_peer_category.py +60 -0
  733. pixlib/raw/base/top_peer_category_peers.py +53 -0
  734. pixlib/raw/base/update.py +160 -0
  735. pixlib/raw/base/updates/__init__.py +27 -0
  736. pixlib/raw/base/updates/channel_difference.py +65 -0
  737. pixlib/raw/base/updates/difference.py +66 -0
  738. pixlib/raw/base/updates/state.py +63 -0
  739. pixlib/raw/base/updates_t.py +148 -0
  740. pixlib/raw/base/upload/__init__.py +27 -0
  741. pixlib/raw/base/upload/cdn_file.py +64 -0
  742. pixlib/raw/base/upload/file.py +64 -0
  743. pixlib/raw/base/upload/web_file.py +63 -0
  744. pixlib/raw/base/url_auth_result.py +66 -0
  745. pixlib/raw/base/user.py +67 -0
  746. pixlib/raw/base/user_full.py +53 -0
  747. pixlib/raw/base/user_profile_photo.py +54 -0
  748. pixlib/raw/base/user_status.py +58 -0
  749. pixlib/raw/base/username.py +53 -0
  750. pixlib/raw/base/users/__init__.py +25 -0
  751. pixlib/raw/base/users/user_full.py +63 -0
  752. pixlib/raw/base/video_size.py +53 -0
  753. pixlib/raw/base/wall_paper.py +66 -0
  754. pixlib/raw/base/wall_paper_settings.py +53 -0
  755. pixlib/raw/base/web_authorization.py +53 -0
  756. pixlib/raw/base/web_document.py +54 -0
  757. pixlib/raw/base/web_page.py +66 -0
  758. pixlib/raw/base/web_page_attribute.py +53 -0
  759. pixlib/raw/base/web_view_message_sent.py +63 -0
  760. pixlib/raw/base/web_view_result.py +63 -0
  761. pixlib/raw/core/__init__.py +13 -0
  762. pixlib/raw/core/future_salt.py +35 -0
  763. pixlib/raw/core/future_salts.py +45 -0
  764. pixlib/raw/core/list.py +8 -0
  765. pixlib/raw/core/message.py +38 -0
  766. pixlib/raw/core/msg_container.py +35 -0
  767. pixlib/raw/core/primitives/__init__.py +6 -0
  768. pixlib/raw/core/primitives/bool.py +30 -0
  769. pixlib/raw/core/primitives/bytes.py +37 -0
  770. pixlib/raw/core/primitives/double.py +14 -0
  771. pixlib/raw/core/primitives/int.py +27 -0
  772. pixlib/raw/core/primitives/string.py +13 -0
  773. pixlib/raw/core/primitives/vector.py +39 -0
  774. pixlib/raw/core/pzip_packed.py +44 -0
  775. pixlib/raw/core/tl_object.py +64 -0
  776. pixlib/raw/functions/__init__.py +42 -0
  777. pixlib/raw/functions/account/__init__.py +106 -0
  778. pixlib/raw/functions/account/accept_authorization.py +104 -0
  779. pixlib/raw/functions/account/cancel_password_email.py +67 -0
  780. pixlib/raw/functions/account/change_authorization_settings.py +92 -0
  781. pixlib/raw/functions/account/change_phone.py +88 -0
  782. pixlib/raw/functions/account/check_username.py +72 -0
  783. pixlib/raw/functions/account/clear_recent_emoji_statuses.py +67 -0
  784. pixlib/raw/functions/account/confirm_password_email.py +72 -0
  785. pixlib/raw/functions/account/confirm_phone.py +80 -0
  786. pixlib/raw/functions/account/create_theme.py +102 -0
  787. pixlib/raw/functions/account/decline_password_reset.py +67 -0
  788. pixlib/raw/functions/account/delete_account.py +84 -0
  789. pixlib/raw/functions/account/delete_secure_value.py +72 -0
  790. pixlib/raw/functions/account/finish_takeout_session.py +72 -0
  791. pixlib/raw/functions/account/get_account_ttl.py +67 -0
  792. pixlib/raw/functions/account/get_all_secure_values.py +67 -0
  793. pixlib/raw/functions/account/get_authorization_form.py +88 -0
  794. pixlib/raw/functions/account/get_authorizations.py +67 -0
  795. pixlib/raw/functions/account/get_auto_download_settings.py +67 -0
  796. pixlib/raw/functions/account/get_chat_themes.py +72 -0
  797. pixlib/raw/functions/account/get_contact_sign_up_notification.py +67 -0
  798. pixlib/raw/functions/account/get_content_settings.py +67 -0
  799. pixlib/raw/functions/account/get_default_emoji_statuses.py +72 -0
  800. pixlib/raw/functions/account/get_global_privacy_settings.py +67 -0
  801. pixlib/raw/functions/account/get_multi_wall_papers.py +72 -0
  802. pixlib/raw/functions/account/get_notify_exceptions.py +82 -0
  803. pixlib/raw/functions/account/get_notify_settings.py +72 -0
  804. pixlib/raw/functions/account/get_password.py +67 -0
  805. pixlib/raw/functions/account/get_password_settings.py +72 -0
  806. pixlib/raw/functions/account/get_privacy.py +72 -0
  807. pixlib/raw/functions/account/get_recent_emoji_statuses.py +72 -0
  808. pixlib/raw/functions/account/get_saved_ringtones.py +72 -0
  809. pixlib/raw/functions/account/get_secure_value.py +72 -0
  810. pixlib/raw/functions/account/get_theme.py +80 -0
  811. pixlib/raw/functions/account/get_themes.py +80 -0
  812. pixlib/raw/functions/account/get_tmp_password.py +80 -0
  813. pixlib/raw/functions/account/get_wall_paper.py +72 -0
  814. pixlib/raw/functions/account/get_wall_papers.py +72 -0
  815. pixlib/raw/functions/account/get_web_authorizations.py +67 -0
  816. pixlib/raw/functions/account/init_takeout_session.py +111 -0
  817. pixlib/raw/functions/account/install_theme.py +101 -0
  818. pixlib/raw/functions/account/install_wall_paper.py +80 -0
  819. pixlib/raw/functions/account/register_device.py +112 -0
  820. pixlib/raw/functions/account/reorder_usernames.py +72 -0
  821. pixlib/raw/functions/account/report_peer.py +88 -0
  822. pixlib/raw/functions/account/report_profile_photo.py +96 -0
  823. pixlib/raw/functions/account/resend_password_email.py +67 -0
  824. pixlib/raw/functions/account/reset_authorization.py +72 -0
  825. pixlib/raw/functions/account/reset_notify_settings.py +67 -0
  826. pixlib/raw/functions/account/reset_password.py +67 -0
  827. pixlib/raw/functions/account/reset_wall_papers.py +67 -0
  828. pixlib/raw/functions/account/reset_web_authorization.py +72 -0
  829. pixlib/raw/functions/account/reset_web_authorizations.py +67 -0
  830. pixlib/raw/functions/account/save_auto_download_settings.py +86 -0
  831. pixlib/raw/functions/account/save_ringtone.py +80 -0
  832. pixlib/raw/functions/account/save_secure_value.py +80 -0
  833. pixlib/raw/functions/account/save_theme.py +80 -0
  834. pixlib/raw/functions/account/save_wall_paper.py +88 -0
  835. pixlib/raw/functions/account/send_change_phone_code.py +80 -0
  836. pixlib/raw/functions/account/send_confirm_phone_code.py +80 -0
  837. pixlib/raw/functions/account/send_verify_email_code.py +80 -0
  838. pixlib/raw/functions/account/send_verify_phone_code.py +80 -0
  839. pixlib/raw/functions/account/set_account_ttl.py +72 -0
  840. pixlib/raw/functions/account/set_authorization_ttl.py +72 -0
  841. pixlib/raw/functions/account/set_contact_sign_up_notification.py +72 -0
  842. pixlib/raw/functions/account/set_content_settings.py +72 -0
  843. pixlib/raw/functions/account/set_global_privacy_settings.py +72 -0
  844. pixlib/raw/functions/account/set_privacy.py +80 -0
  845. pixlib/raw/functions/account/toggle_username.py +80 -0
  846. pixlib/raw/functions/account/unregister_device.py +88 -0
  847. pixlib/raw/functions/account/update_device_locked.py +72 -0
  848. pixlib/raw/functions/account/update_emoji_status.py +72 -0
  849. pixlib/raw/functions/account/update_notify_settings.py +80 -0
  850. pixlib/raw/functions/account/update_password_settings.py +80 -0
  851. pixlib/raw/functions/account/update_profile.py +93 -0
  852. pixlib/raw/functions/account/update_status.py +72 -0
  853. pixlib/raw/functions/account/update_theme.py +120 -0
  854. pixlib/raw/functions/account/update_username.py +72 -0
  855. pixlib/raw/functions/account/upload_ringtone.py +88 -0
  856. pixlib/raw/functions/account/upload_theme.py +100 -0
  857. pixlib/raw/functions/account/upload_wall_paper.py +88 -0
  858. pixlib/raw/functions/account/verify_email.py +80 -0
  859. pixlib/raw/functions/account/verify_phone.py +88 -0
  860. pixlib/raw/functions/auth/__init__.py +43 -0
  861. pixlib/raw/functions/auth/accept_login_token.py +72 -0
  862. pixlib/raw/functions/auth/bind_temp_auth_key.py +96 -0
  863. pixlib/raw/functions/auth/cancel_code.py +80 -0
  864. pixlib/raw/functions/auth/check_password.py +72 -0
  865. pixlib/raw/functions/auth/check_recovery_password.py +72 -0
  866. pixlib/raw/functions/auth/drop_temp_auth_keys.py +72 -0
  867. pixlib/raw/functions/auth/export_authorization.py +72 -0
  868. pixlib/raw/functions/auth/export_login_token.py +88 -0
  869. pixlib/raw/functions/auth/import_authorization.py +80 -0
  870. pixlib/raw/functions/auth/import_bot_authorization.py +96 -0
  871. pixlib/raw/functions/auth/import_login_token.py +72 -0
  872. pixlib/raw/functions/auth/log_out.py +67 -0
  873. pixlib/raw/functions/auth/recover_password.py +84 -0
  874. pixlib/raw/functions/auth/request_password_recovery.py +67 -0
  875. pixlib/raw/functions/auth/resend_code.py +80 -0
  876. pixlib/raw/functions/auth/reset_authorizations.py +67 -0
  877. pixlib/raw/functions/auth/send_code.py +96 -0
  878. pixlib/raw/functions/auth/sign_in.py +101 -0
  879. pixlib/raw/functions/auth/sign_up.py +96 -0
  880. pixlib/raw/functions/bots/__init__.py +33 -0
  881. pixlib/raw/functions/bots/answer_webhook_json_query.py +80 -0
  882. pixlib/raw/functions/bots/get_bot_commands.py +80 -0
  883. pixlib/raw/functions/bots/get_bot_menu_button.py +72 -0
  884. pixlib/raw/functions/bots/reset_bot_commands.py +80 -0
  885. pixlib/raw/functions/bots/send_custom_request.py +80 -0
  886. pixlib/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +72 -0
  887. pixlib/raw/functions/bots/set_bot_commands.py +88 -0
  888. pixlib/raw/functions/bots/set_bot_group_default_admin_rights.py +72 -0
  889. pixlib/raw/functions/bots/set_bot_menu_button.py +80 -0
  890. pixlib/raw/functions/channels/__init__.py +75 -0
  891. pixlib/raw/functions/channels/check_username.py +80 -0
  892. pixlib/raw/functions/channels/convert_to_gigagroup.py +72 -0
  893. pixlib/raw/functions/channels/create_channel.py +119 -0
  894. pixlib/raw/functions/channels/create_forum_topic.py +118 -0
  895. pixlib/raw/functions/channels/deactivate_all_usernames.py +72 -0
  896. pixlib/raw/functions/channels/delete_channel.py +72 -0
  897. pixlib/raw/functions/channels/delete_history.py +88 -0
  898. pixlib/raw/functions/channels/delete_messages.py +80 -0
  899. pixlib/raw/functions/channels/delete_participant_history.py +80 -0
  900. pixlib/raw/functions/channels/delete_topic_history.py +80 -0
  901. pixlib/raw/functions/channels/edit_admin.py +96 -0
  902. pixlib/raw/functions/channels/edit_banned.py +88 -0
  903. pixlib/raw/functions/channels/edit_creator.py +88 -0
  904. pixlib/raw/functions/channels/edit_forum_topic.py +109 -0
  905. pixlib/raw/functions/channels/edit_location.py +88 -0
  906. pixlib/raw/functions/channels/edit_photo.py +80 -0
  907. pixlib/raw/functions/channels/edit_title.py +80 -0
  908. pixlib/raw/functions/channels/export_message_link.py +94 -0
  909. pixlib/raw/functions/channels/get_admin_log.py +126 -0
  910. pixlib/raw/functions/channels/get_admined_public_channels.py +78 -0
  911. pixlib/raw/functions/channels/get_channels.py +72 -0
  912. pixlib/raw/functions/channels/get_forum_topics.py +115 -0
  913. pixlib/raw/functions/channels/get_forum_topics_by_id.py +80 -0
  914. pixlib/raw/functions/channels/get_full_channel.py +72 -0
  915. pixlib/raw/functions/channels/get_groups_for_discussion.py +67 -0
  916. pixlib/raw/functions/channels/get_inactive_channels.py +67 -0
  917. pixlib/raw/functions/channels/get_left_channels.py +72 -0
  918. pixlib/raw/functions/channels/get_messages.py +80 -0
  919. pixlib/raw/functions/channels/get_participant.py +80 -0
  920. pixlib/raw/functions/channels/get_participants.py +104 -0
  921. pixlib/raw/functions/channels/get_send_as.py +72 -0
  922. pixlib/raw/functions/channels/get_sponsored_messages.py +72 -0
  923. pixlib/raw/functions/channels/invite_to_channel.py +80 -0
  924. pixlib/raw/functions/channels/join_channel.py +72 -0
  925. pixlib/raw/functions/channels/leave_channel.py +72 -0
  926. pixlib/raw/functions/channels/read_history.py +80 -0
  927. pixlib/raw/functions/channels/read_message_contents.py +80 -0
  928. pixlib/raw/functions/channels/reorder_usernames.py +80 -0
  929. pixlib/raw/functions/channels/report_spam.py +88 -0
  930. pixlib/raw/functions/channels/set_discussion_group.py +80 -0
  931. pixlib/raw/functions/channels/set_stickers.py +80 -0
  932. pixlib/raw/functions/channels/toggle_forum.py +80 -0
  933. pixlib/raw/functions/channels/toggle_join_request.py +80 -0
  934. pixlib/raw/functions/channels/toggle_join_to_send.py +80 -0
  935. pixlib/raw/functions/channels/toggle_pre_history_hidden.py +80 -0
  936. pixlib/raw/functions/channels/toggle_signatures.py +80 -0
  937. pixlib/raw/functions/channels/toggle_slow_mode.py +80 -0
  938. pixlib/raw/functions/channels/toggle_username.py +88 -0
  939. pixlib/raw/functions/channels/update_pinned_forum_topic.py +88 -0
  940. pixlib/raw/functions/channels/update_username.py +80 -0
  941. pixlib/raw/functions/channels/view_sponsored_message.py +80 -0
  942. pixlib/raw/functions/contacts/__init__.py +45 -0
  943. pixlib/raw/functions/contacts/accept_contact.py +72 -0
  944. pixlib/raw/functions/contacts/add_contact.py +104 -0
  945. pixlib/raw/functions/contacts/block.py +72 -0
  946. pixlib/raw/functions/contacts/block_from_replies.py +92 -0
  947. pixlib/raw/functions/contacts/delete_by_phones.py +72 -0
  948. pixlib/raw/functions/contacts/delete_contacts.py +72 -0
  949. pixlib/raw/functions/contacts/get_blocked.py +80 -0
  950. pixlib/raw/functions/contacts/get_contact_i_ds.py +72 -0
  951. pixlib/raw/functions/contacts/get_contacts.py +72 -0
  952. pixlib/raw/functions/contacts/get_located.py +89 -0
  953. pixlib/raw/functions/contacts/get_saved.py +67 -0
  954. pixlib/raw/functions/contacts/get_statuses.py +67 -0
  955. pixlib/raw/functions/contacts/get_top_peers.py +138 -0
  956. pixlib/raw/functions/contacts/import_contacts.py +72 -0
  957. pixlib/raw/functions/contacts/reset_saved.py +67 -0
  958. pixlib/raw/functions/contacts/reset_top_peer_rating.py +80 -0
  959. pixlib/raw/functions/contacts/resolve_phone.py +72 -0
  960. pixlib/raw/functions/contacts/resolve_username.py +72 -0
  961. pixlib/raw/functions/contacts/search.py +80 -0
  962. pixlib/raw/functions/contacts/toggle_top_peers.py +72 -0
  963. pixlib/raw/functions/contacts/unblock.py +72 -0
  964. pixlib/raw/functions/contest/__init__.py +25 -0
  965. pixlib/raw/functions/contest/save_developer_info.py +104 -0
  966. pixlib/raw/functions/destroy_auth_key.py +67 -0
  967. pixlib/raw/functions/destroy_session.py +72 -0
  968. pixlib/raw/functions/folders/__init__.py +26 -0
  969. pixlib/raw/functions/folders/delete_folder.py +72 -0
  970. pixlib/raw/functions/folders/edit_peer_folders.py +72 -0
  971. pixlib/raw/functions/get_future_salts.py +72 -0
  972. pixlib/raw/functions/help/__init__.py +47 -0
  973. pixlib/raw/functions/help/accept_terms_of_service.py +72 -0
  974. pixlib/raw/functions/help/dismiss_suggestion.py +80 -0
  975. pixlib/raw/functions/help/edit_user_info.py +88 -0
  976. pixlib/raw/functions/help/get_app_changelog.py +72 -0
  977. pixlib/raw/functions/help/get_app_config.py +67 -0
  978. pixlib/raw/functions/help/get_app_update.py +72 -0
  979. pixlib/raw/functions/help/get_cdn_config.py +67 -0
  980. pixlib/raw/functions/help/get_config.py +67 -0
  981. pixlib/raw/functions/help/get_countries_list.py +80 -0
  982. pixlib/raw/functions/help/get_deep_link_info.py +72 -0
  983. pixlib/raw/functions/help/get_invite_text.py +67 -0
  984. pixlib/raw/functions/help/get_nearest_dc.py +67 -0
  985. pixlib/raw/functions/help/get_passport_config.py +72 -0
  986. pixlib/raw/functions/help/get_premium_promo.py +67 -0
  987. pixlib/raw/functions/help/get_promo_data.py +67 -0
  988. pixlib/raw/functions/help/get_recent_me_urls.py +72 -0
  989. pixlib/raw/functions/help/get_support.py +67 -0
  990. pixlib/raw/functions/help/get_support_name.py +67 -0
  991. pixlib/raw/functions/help/get_terms_of_service_update.py +67 -0
  992. pixlib/raw/functions/help/get_user_info.py +72 -0
  993. pixlib/raw/functions/help/hide_promo_data.py +72 -0
  994. pixlib/raw/functions/help/save_app_log.py +72 -0
  995. pixlib/raw/functions/help/set_bot_updates_status.py +80 -0
  996. pixlib/raw/functions/init_connection.py +150 -0
  997. pixlib/raw/functions/invoke_after_msg.py +80 -0
  998. pixlib/raw/functions/invoke_after_msgs.py +80 -0
  999. pixlib/raw/functions/invoke_with_layer.py +80 -0
  1000. pixlib/raw/functions/invoke_with_messages_range.py +80 -0
  1001. pixlib/raw/functions/invoke_with_takeout.py +80 -0
  1002. pixlib/raw/functions/invoke_without_updates.py +72 -0
  1003. pixlib/raw/functions/langpack/__init__.py +29 -0
  1004. pixlib/raw/functions/langpack/get_difference.py +88 -0
  1005. pixlib/raw/functions/langpack/get_lang_pack.py +80 -0
  1006. pixlib/raw/functions/langpack/get_language.py +80 -0
  1007. pixlib/raw/functions/langpack/get_languages.py +72 -0
  1008. pixlib/raw/functions/langpack/get_strings.py +88 -0
  1009. pixlib/raw/functions/messages/__init__.py +201 -0
  1010. pixlib/raw/functions/messages/accept_encryption.py +88 -0
  1011. pixlib/raw/functions/messages/accept_url_auth.py +109 -0
  1012. pixlib/raw/functions/messages/add_chat_user.py +88 -0
  1013. pixlib/raw/functions/messages/check_chat_invite.py +72 -0
  1014. pixlib/raw/functions/messages/check_history_import.py +72 -0
  1015. pixlib/raw/functions/messages/check_history_import_peer.py +72 -0
  1016. pixlib/raw/functions/messages/clear_all_drafts.py +67 -0
  1017. pixlib/raw/functions/messages/clear_recent_reactions.py +67 -0
  1018. pixlib/raw/functions/messages/clear_recent_stickers.py +72 -0
  1019. pixlib/raw/functions/messages/create_chat.py +80 -0
  1020. pixlib/raw/functions/messages/delete_chat.py +72 -0
  1021. pixlib/raw/functions/messages/delete_chat_user.py +88 -0
  1022. pixlib/raw/functions/messages/delete_exported_chat_invite.py +80 -0
  1023. pixlib/raw/functions/messages/delete_history.py +112 -0
  1024. pixlib/raw/functions/messages/delete_messages.py +80 -0
  1025. pixlib/raw/functions/messages/delete_phone_call_history.py +72 -0
  1026. pixlib/raw/functions/messages/delete_revoked_exported_chat_invites.py +80 -0
  1027. pixlib/raw/functions/messages/delete_scheduled_messages.py +80 -0
  1028. pixlib/raw/functions/messages/discard_encryption.py +80 -0
  1029. pixlib/raw/functions/messages/edit_chat_about.py +80 -0
  1030. pixlib/raw/functions/messages/edit_chat_admin.py +88 -0
  1031. pixlib/raw/functions/messages/edit_chat_default_banned_rights.py +80 -0
  1032. pixlib/raw/functions/messages/edit_chat_photo.py +80 -0
  1033. pixlib/raw/functions/messages/edit_chat_title.py +80 -0
  1034. pixlib/raw/functions/messages/edit_exported_chat_invite.py +124 -0
  1035. pixlib/raw/functions/messages/edit_inline_bot_message.py +119 -0
  1036. pixlib/raw/functions/messages/edit_message.py +136 -0
  1037. pixlib/raw/functions/messages/export_chat_invite.py +113 -0
  1038. pixlib/raw/functions/messages/fave_sticker.py +80 -0
  1039. pixlib/raw/functions/messages/forward_messages.py +162 -0
  1040. pixlib/raw/functions/messages/get_admins_with_invites.py +72 -0
  1041. pixlib/raw/functions/messages/get_all_chats.py +72 -0
  1042. pixlib/raw/functions/messages/get_all_drafts.py +67 -0
  1043. pixlib/raw/functions/messages/get_all_stickers.py +72 -0
  1044. pixlib/raw/functions/messages/get_archived_stickers.py +94 -0
  1045. pixlib/raw/functions/messages/get_attach_menu_bot.py +72 -0
  1046. pixlib/raw/functions/messages/get_attach_menu_bots.py +72 -0
  1047. pixlib/raw/functions/messages/get_attached_stickers.py +72 -0
  1048. pixlib/raw/functions/messages/get_available_reactions.py +72 -0
  1049. pixlib/raw/functions/messages/get_bot_callback_answer.py +107 -0
  1050. pixlib/raw/functions/messages/get_chat_invite_importers.py +122 -0
  1051. pixlib/raw/functions/messages/get_chats.py +72 -0
  1052. pixlib/raw/functions/messages/get_common_chats.py +88 -0
  1053. pixlib/raw/functions/messages/get_custom_emoji_documents.py +72 -0
  1054. pixlib/raw/functions/messages/get_dh_config.py +80 -0
  1055. pixlib/raw/functions/messages/get_dialog_filters.py +67 -0
  1056. pixlib/raw/functions/messages/get_dialog_unread_marks.py +67 -0
  1057. pixlib/raw/functions/messages/get_dialogs.py +121 -0
  1058. pixlib/raw/functions/messages/get_discussion_message.py +80 -0
  1059. pixlib/raw/functions/messages/get_document_by_hash.py +88 -0
  1060. pixlib/raw/functions/messages/get_emoji_keywords.py +72 -0
  1061. pixlib/raw/functions/messages/get_emoji_keywords_difference.py +80 -0
  1062. pixlib/raw/functions/messages/get_emoji_keywords_languages.py +72 -0
  1063. pixlib/raw/functions/messages/get_emoji_stickers.py +72 -0
  1064. pixlib/raw/functions/messages/get_emoji_url.py +72 -0
  1065. pixlib/raw/functions/messages/get_exported_chat_invite.py +80 -0
  1066. pixlib/raw/functions/messages/get_exported_chat_invites.py +114 -0
  1067. pixlib/raw/functions/messages/get_extended_media.py +80 -0
  1068. pixlib/raw/functions/messages/get_faved_stickers.py +72 -0
  1069. pixlib/raw/functions/messages/get_featured_emoji_stickers.py +72 -0
  1070. pixlib/raw/functions/messages/get_featured_stickers.py +72 -0
  1071. pixlib/raw/functions/messages/get_full_chat.py +72 -0
  1072. pixlib/raw/functions/messages/get_game_high_scores.py +88 -0
  1073. pixlib/raw/functions/messages/get_history.py +128 -0
  1074. pixlib/raw/functions/messages/get_inline_bot_results.py +108 -0
  1075. pixlib/raw/functions/messages/get_inline_game_high_scores.py +80 -0
  1076. pixlib/raw/functions/messages/get_mask_stickers.py +72 -0
  1077. pixlib/raw/functions/messages/get_message_edit_data.py +80 -0
  1078. pixlib/raw/functions/messages/get_message_reactions_list.py +109 -0
  1079. pixlib/raw/functions/messages/get_message_read_participants.py +80 -0
  1080. pixlib/raw/functions/messages/get_messages.py +72 -0
  1081. pixlib/raw/functions/messages/get_messages_reactions.py +80 -0
  1082. pixlib/raw/functions/messages/get_messages_views.py +88 -0
  1083. pixlib/raw/functions/messages/get_old_featured_stickers.py +88 -0
  1084. pixlib/raw/functions/messages/get_onlines.py +72 -0
  1085. pixlib/raw/functions/messages/get_peer_dialogs.py +72 -0
  1086. pixlib/raw/functions/messages/get_peer_settings.py +72 -0
  1087. pixlib/raw/functions/messages/get_pinned_dialogs.py +72 -0
  1088. pixlib/raw/functions/messages/get_poll_results.py +80 -0
  1089. pixlib/raw/functions/messages/get_poll_votes.py +108 -0
  1090. pixlib/raw/functions/messages/get_recent_locations.py +88 -0
  1091. pixlib/raw/functions/messages/get_recent_reactions.py +80 -0
  1092. pixlib/raw/functions/messages/get_recent_stickers.py +80 -0
  1093. pixlib/raw/functions/messages/get_replies.py +136 -0
  1094. pixlib/raw/functions/messages/get_saved_gifs.py +72 -0
  1095. pixlib/raw/functions/messages/get_scheduled_history.py +80 -0
  1096. pixlib/raw/functions/messages/get_scheduled_messages.py +80 -0
  1097. pixlib/raw/functions/messages/get_search_counters.py +91 -0
  1098. pixlib/raw/functions/messages/get_search_results_calendar.py +96 -0
  1099. pixlib/raw/functions/messages/get_search_results_positions.py +96 -0
  1100. pixlib/raw/functions/messages/get_split_ranges.py +67 -0
  1101. pixlib/raw/functions/messages/get_sticker_set.py +80 -0
  1102. pixlib/raw/functions/messages/get_stickers.py +80 -0
  1103. pixlib/raw/functions/messages/get_suggested_dialog_filters.py +67 -0
  1104. pixlib/raw/functions/messages/get_top_reactions.py +80 -0
  1105. pixlib/raw/functions/messages/get_unread_mentions.py +123 -0
  1106. pixlib/raw/functions/messages/get_unread_reactions.py +123 -0
  1107. pixlib/raw/functions/messages/get_web_page.py +80 -0
  1108. pixlib/raw/functions/messages/get_web_page_preview.py +84 -0
  1109. pixlib/raw/functions/messages/hide_all_chat_join_requests.py +89 -0
  1110. pixlib/raw/functions/messages/hide_chat_join_request.py +88 -0
  1111. pixlib/raw/functions/messages/hide_peer_settings_bar.py +72 -0
  1112. pixlib/raw/functions/messages/import_chat_invite.py +72 -0
  1113. pixlib/raw/functions/messages/init_history_import.py +88 -0
  1114. pixlib/raw/functions/messages/install_sticker_set.py +80 -0
  1115. pixlib/raw/functions/messages/mark_dialog_unread.py +80 -0
  1116. pixlib/raw/functions/messages/migrate_chat.py +72 -0
  1117. pixlib/raw/functions/messages/prolong_web_view.py +124 -0
  1118. pixlib/raw/functions/messages/rate_transcribed_audio.py +96 -0
  1119. pixlib/raw/functions/messages/read_discussion.py +88 -0
  1120. pixlib/raw/functions/messages/read_encrypted_history.py +80 -0
  1121. pixlib/raw/functions/messages/read_featured_stickers.py +72 -0
  1122. pixlib/raw/functions/messages/read_history.py +80 -0
  1123. pixlib/raw/functions/messages/read_mentions.py +83 -0
  1124. pixlib/raw/functions/messages/read_message_contents.py +72 -0
  1125. pixlib/raw/functions/messages/read_reactions.py +83 -0
  1126. pixlib/raw/functions/messages/received_messages.py +72 -0
  1127. pixlib/raw/functions/messages/received_queue.py +72 -0
  1128. pixlib/raw/functions/messages/reorder_pinned_dialogs.py +88 -0
  1129. pixlib/raw/functions/messages/reorder_sticker_sets.py +86 -0
  1130. pixlib/raw/functions/messages/report.py +96 -0
  1131. pixlib/raw/functions/messages/report_encrypted_spam.py +72 -0
  1132. pixlib/raw/functions/messages/report_reaction.py +88 -0
  1133. pixlib/raw/functions/messages/report_spam.py +72 -0
  1134. pixlib/raw/functions/messages/request_encryption.py +88 -0
  1135. pixlib/raw/functions/messages/request_simple_web_view.py +100 -0
  1136. pixlib/raw/functions/messages/request_url_auth.py +103 -0
  1137. pixlib/raw/functions/messages/request_web_view.py +158 -0
  1138. pixlib/raw/functions/messages/save_default_send_as.py +80 -0
  1139. pixlib/raw/functions/messages/save_draft.py +116 -0
  1140. pixlib/raw/functions/messages/save_gif.py +80 -0
  1141. pixlib/raw/functions/messages/save_recent_sticker.py +88 -0
  1142. pixlib/raw/functions/messages/search.py +173 -0
  1143. pixlib/raw/functions/messages/search_global.py +139 -0
  1144. pixlib/raw/functions/messages/search_sent_media.py +88 -0
  1145. pixlib/raw/functions/messages/search_sticker_sets.py +88 -0
  1146. pixlib/raw/functions/messages/send_encrypted.py +96 -0
  1147. pixlib/raw/functions/messages/send_encrypted_file.py +104 -0
  1148. pixlib/raw/functions/messages/send_encrypted_service.py +88 -0
  1149. pixlib/raw/functions/messages/send_inline_bot_result.py +159 -0
  1150. pixlib/raw/functions/messages/send_media.py +185 -0
  1151. pixlib/raw/functions/messages/send_message.py +183 -0
  1152. pixlib/raw/functions/messages/send_multi_media.py +149 -0
  1153. pixlib/raw/functions/messages/send_reaction.py +104 -0
  1154. pixlib/raw/functions/messages/send_scheduled_messages.py +80 -0
  1155. pixlib/raw/functions/messages/send_screenshot_notification.py +88 -0
  1156. pixlib/raw/functions/messages/send_vote.py +88 -0
  1157. pixlib/raw/functions/messages/send_web_view_data.py +96 -0
  1158. pixlib/raw/functions/messages/send_web_view_result_message.py +80 -0
  1159. pixlib/raw/functions/messages/set_bot_callback_answer.py +106 -0
  1160. pixlib/raw/functions/messages/set_bot_precheckout_results.py +89 -0
  1161. pixlib/raw/functions/messages/set_bot_shipping_results.py +93 -0
  1162. pixlib/raw/functions/messages/set_chat_available_reactions.py +80 -0
  1163. pixlib/raw/functions/messages/set_chat_theme.py +80 -0
  1164. pixlib/raw/functions/messages/set_default_reaction.py +72 -0
  1165. pixlib/raw/functions/messages/set_encrypted_typing.py +80 -0
  1166. pixlib/raw/functions/messages/set_game_score.py +110 -0
  1167. pixlib/raw/functions/messages/set_history_ttl.py +80 -0
  1168. pixlib/raw/functions/messages/set_inline_bot_results.py +121 -0
  1169. pixlib/raw/functions/messages/set_inline_game_score.py +102 -0
  1170. pixlib/raw/functions/messages/set_typing.py +91 -0
  1171. pixlib/raw/functions/messages/start_bot.py +96 -0
  1172. pixlib/raw/functions/messages/start_history_import.py +80 -0
  1173. pixlib/raw/functions/messages/toggle_bot_in_attach_menu.py +80 -0
  1174. pixlib/raw/functions/messages/toggle_dialog_pin.py +80 -0
  1175. pixlib/raw/functions/messages/toggle_no_forwards.py +80 -0
  1176. pixlib/raw/functions/messages/toggle_sticker_sets.py +92 -0
  1177. pixlib/raw/functions/messages/transcribe_audio.py +80 -0
  1178. pixlib/raw/functions/messages/translate_text.py +111 -0
  1179. pixlib/raw/functions/messages/uninstall_sticker_set.py +72 -0
  1180. pixlib/raw/functions/messages/unpin_all_messages.py +83 -0
  1181. pixlib/raw/functions/messages/update_dialog_filter.py +84 -0
  1182. pixlib/raw/functions/messages/update_dialog_filters_order.py +72 -0
  1183. pixlib/raw/functions/messages/update_pinned_message.py +100 -0
  1184. pixlib/raw/functions/messages/upload_encrypted_file.py +80 -0
  1185. pixlib/raw/functions/messages/upload_imported_media.py +96 -0
  1186. pixlib/raw/functions/messages/upload_media.py +80 -0
  1187. pixlib/raw/functions/payments/__init__.py +35 -0
  1188. pixlib/raw/functions/payments/assign_app_store_transaction.py +80 -0
  1189. pixlib/raw/functions/payments/assign_play_market_transaction.py +80 -0
  1190. pixlib/raw/functions/payments/can_purchase_premium.py +72 -0
  1191. pixlib/raw/functions/payments/clear_saved_info.py +78 -0
  1192. pixlib/raw/functions/payments/export_invoice.py +72 -0
  1193. pixlib/raw/functions/payments/get_bank_card_data.py +72 -0
  1194. pixlib/raw/functions/payments/get_payment_form.py +84 -0
  1195. pixlib/raw/functions/payments/get_payment_receipt.py +80 -0
  1196. pixlib/raw/functions/payments/get_saved_info.py +67 -0
  1197. pixlib/raw/functions/payments/send_payment_form.py +117 -0
  1198. pixlib/raw/functions/payments/validate_requested_info.py +88 -0
  1199. pixlib/raw/functions/phone/__init__.py +55 -0
  1200. pixlib/raw/functions/phone/accept_call.py +88 -0
  1201. pixlib/raw/functions/phone/check_group_call.py +80 -0
  1202. pixlib/raw/functions/phone/confirm_call.py +96 -0
  1203. pixlib/raw/functions/phone/create_group_call.py +106 -0
  1204. pixlib/raw/functions/phone/discard_call.py +104 -0
  1205. pixlib/raw/functions/phone/discard_group_call.py +72 -0
  1206. pixlib/raw/functions/phone/edit_group_call_participant.py +136 -0
  1207. pixlib/raw/functions/phone/edit_group_call_title.py +80 -0
  1208. pixlib/raw/functions/phone/export_group_call_invite.py +80 -0
  1209. pixlib/raw/functions/phone/get_call_config.py +67 -0
  1210. pixlib/raw/functions/phone/get_group_call.py +80 -0
  1211. pixlib/raw/functions/phone/get_group_call_join_as.py +72 -0
  1212. pixlib/raw/functions/phone/get_group_call_stream_channels.py +72 -0
  1213. pixlib/raw/functions/phone/get_group_call_stream_rtmp_url.py +80 -0
  1214. pixlib/raw/functions/phone/get_group_participants.py +104 -0
  1215. pixlib/raw/functions/phone/invite_to_group_call.py +80 -0
  1216. pixlib/raw/functions/phone/join_group_call.py +111 -0
  1217. pixlib/raw/functions/phone/join_group_call_presentation.py +80 -0
  1218. pixlib/raw/functions/phone/leave_group_call.py +80 -0
  1219. pixlib/raw/functions/phone/leave_group_call_presentation.py +72 -0
  1220. pixlib/raw/functions/phone/received_call.py +72 -0
  1221. pixlib/raw/functions/phone/request_call.py +104 -0
  1222. pixlib/raw/functions/phone/save_call_debug.py +80 -0
  1223. pixlib/raw/functions/phone/save_call_log.py +80 -0
  1224. pixlib/raw/functions/phone/save_default_group_call_join_as.py +80 -0
  1225. pixlib/raw/functions/phone/send_signaling_data.py +80 -0
  1226. pixlib/raw/functions/phone/set_call_rating.py +96 -0
  1227. pixlib/raw/functions/phone/start_scheduled_group_call.py +72 -0
  1228. pixlib/raw/functions/phone/toggle_group_call_record.py +104 -0
  1229. pixlib/raw/functions/phone/toggle_group_call_settings.py +89 -0
  1230. pixlib/raw/functions/phone/toggle_group_call_start_subscription.py +80 -0
  1231. pixlib/raw/functions/photos/__init__.py +28 -0
  1232. pixlib/raw/functions/photos/delete_photos.py +72 -0
  1233. pixlib/raw/functions/photos/get_user_photos.py +96 -0
  1234. pixlib/raw/functions/photos/update_profile_photo.py +72 -0
  1235. pixlib/raw/functions/photos/upload_profile_photo.py +95 -0
  1236. pixlib/raw/functions/ping.py +72 -0
  1237. pixlib/raw/functions/ping_delay_disconnect.py +80 -0
  1238. pixlib/raw/functions/req_dh_params.py +112 -0
  1239. pixlib/raw/functions/req_pq.py +72 -0
  1240. pixlib/raw/functions/req_pq_multi.py +72 -0
  1241. pixlib/raw/functions/rpc_drop_answer.py +72 -0
  1242. pixlib/raw/functions/set_client_dh_params.py +88 -0
  1243. pixlib/raw/functions/stats/__init__.py +29 -0
  1244. pixlib/raw/functions/stats/get_broadcast_stats.py +80 -0
  1245. pixlib/raw/functions/stats/get_megagroup_stats.py +80 -0
  1246. pixlib/raw/functions/stats/get_message_public_forwards.py +112 -0
  1247. pixlib/raw/functions/stats/get_message_stats.py +88 -0
  1248. pixlib/raw/functions/stats/load_async_graph.py +83 -0
  1249. pixlib/raw/functions/stickers/__init__.py +31 -0
  1250. pixlib/raw/functions/stickers/add_sticker_to_set.py +80 -0
  1251. pixlib/raw/functions/stickers/change_sticker_position.py +80 -0
  1252. pixlib/raw/functions/stickers/check_short_name.py +72 -0
  1253. pixlib/raw/functions/stickers/create_sticker_set.py +135 -0
  1254. pixlib/raw/functions/stickers/remove_sticker_from_set.py +72 -0
  1255. pixlib/raw/functions/stickers/set_sticker_set_thumb.py +80 -0
  1256. pixlib/raw/functions/stickers/suggest_short_name.py +72 -0
  1257. pixlib/raw/functions/updates/__init__.py +27 -0
  1258. pixlib/raw/functions/updates/get_channel_difference.py +104 -0
  1259. pixlib/raw/functions/updates/get_difference.py +99 -0
  1260. pixlib/raw/functions/updates/get_state.py +67 -0
  1261. pixlib/raw/functions/upload/__init__.py +32 -0
  1262. pixlib/raw/functions/upload/get_cdn_file.py +88 -0
  1263. pixlib/raw/functions/upload/get_cdn_file_hashes.py +80 -0
  1264. pixlib/raw/functions/upload/get_file.py +102 -0
  1265. pixlib/raw/functions/upload/get_file_hashes.py +80 -0
  1266. pixlib/raw/functions/upload/get_web_file.py +88 -0
  1267. pixlib/raw/functions/upload/reupload_cdn_file.py +80 -0
  1268. pixlib/raw/functions/upload/save_big_file_part.py +96 -0
  1269. pixlib/raw/functions/upload/save_file_part.py +88 -0
  1270. pixlib/raw/functions/users/__init__.py +27 -0
  1271. pixlib/raw/functions/users/get_full_user.py +72 -0
  1272. pixlib/raw/functions/users/get_users.py +72 -0
  1273. pixlib/raw/functions/users/set_secure_value_errors.py +80 -0
  1274. pixlib/raw/types/__init__.py +925 -0
  1275. pixlib/raw/types/access_point_rule.py +88 -0
  1276. pixlib/raw/types/account/__init__.py +51 -0
  1277. pixlib/raw/types/account/authorization_form.py +116 -0
  1278. pixlib/raw/types/account/authorizations.py +89 -0
  1279. pixlib/raw/types/account/auto_download_settings.py +97 -0
  1280. pixlib/raw/types/account/content_settings.py +87 -0
  1281. pixlib/raw/types/account/email_verified.py +81 -0
  1282. pixlib/raw/types/account/email_verified_login.py +89 -0
  1283. pixlib/raw/types/account/emoji_statuses.py +90 -0
  1284. pixlib/raw/types/account/emoji_statuses_not_modified.py +77 -0
  1285. pixlib/raw/types/account/password.py +181 -0
  1286. pixlib/raw/types/account/password_input_settings.py +113 -0
  1287. pixlib/raw/types/account/password_settings.py +94 -0
  1288. pixlib/raw/types/account/privacy_rules.py +98 -0
  1289. pixlib/raw/types/account/reset_password_failed_wait.py +81 -0
  1290. pixlib/raw/types/account/reset_password_ok.py +76 -0
  1291. pixlib/raw/types/account/reset_password_requested_wait.py +81 -0
  1292. pixlib/raw/types/account/saved_ringtone.py +76 -0
  1293. pixlib/raw/types/account/saved_ringtone_converted.py +81 -0
  1294. pixlib/raw/types/account/saved_ringtones.py +89 -0
  1295. pixlib/raw/types/account/saved_ringtones_not_modified.py +76 -0
  1296. pixlib/raw/types/account/sent_email_code.py +89 -0
  1297. pixlib/raw/types/account/takeout.py +81 -0
  1298. pixlib/raw/types/account/themes.py +90 -0
  1299. pixlib/raw/types/account/themes_not_modified.py +77 -0
  1300. pixlib/raw/types/account/tmp_password.py +89 -0
  1301. pixlib/raw/types/account/wall_papers.py +89 -0
  1302. pixlib/raw/types/account/wall_papers_not_modified.py +76 -0
  1303. pixlib/raw/types/account/web_authorizations.py +89 -0
  1304. pixlib/raw/types/account_days_ttl.py +81 -0
  1305. pixlib/raw/types/attach_menu_bot.py +110 -0
  1306. pixlib/raw/types/attach_menu_bot_icon.py +92 -0
  1307. pixlib/raw/types/attach_menu_bot_icon_color.py +80 -0
  1308. pixlib/raw/types/attach_menu_bots.py +97 -0
  1309. pixlib/raw/types/attach_menu_bots_bot.py +89 -0
  1310. pixlib/raw/types/attach_menu_bots_not_modified.py +76 -0
  1311. pixlib/raw/types/attach_menu_peer_type_bot_pm.py +67 -0
  1312. pixlib/raw/types/attach_menu_peer_type_broadcast.py +67 -0
  1313. pixlib/raw/types/attach_menu_peer_type_chat.py +67 -0
  1314. pixlib/raw/types/attach_menu_peer_type_pm.py +67 -0
  1315. pixlib/raw/types/attach_menu_peer_type_same_bot_pm.py +67 -0
  1316. pixlib/raw/types/auth/__init__.py +44 -0
  1317. pixlib/raw/types/auth/authorization.py +112 -0
  1318. pixlib/raw/types/auth/authorization_sign_up_required.py +90 -0
  1319. pixlib/raw/types/auth/code_type_call.py +67 -0
  1320. pixlib/raw/types/auth/code_type_flash_call.py +67 -0
  1321. pixlib/raw/types/auth/code_type_missed_call.py +67 -0
  1322. pixlib/raw/types/auth/code_type_sms.py +67 -0
  1323. pixlib/raw/types/auth/exported_authorization.py +89 -0
  1324. pixlib/raw/types/auth/logged_out.py +84 -0
  1325. pixlib/raw/types/auth/login_token.py +90 -0
  1326. pixlib/raw/types/auth/login_token_migrate_to.py +90 -0
  1327. pixlib/raw/types/auth/login_token_success.py +82 -0
  1328. pixlib/raw/types/auth/password_recovery.py +81 -0
  1329. pixlib/raw/types/auth/sent_code.py +114 -0
  1330. pixlib/raw/types/auth/sent_code_type_app.py +72 -0
  1331. pixlib/raw/types/auth/sent_code_type_call.py +72 -0
  1332. pixlib/raw/types/auth/sent_code_type_email_code.py +103 -0
  1333. pixlib/raw/types/auth/sent_code_type_flash_call.py +72 -0
  1334. pixlib/raw/types/auth/sent_code_type_missed_call.py +80 -0
  1335. pixlib/raw/types/auth/sent_code_type_set_up_email_required.py +78 -0
  1336. pixlib/raw/types/auth/sent_code_type_sms.py +72 -0
  1337. pixlib/raw/types/authorization.py +201 -0
  1338. pixlib/raw/types/auto_download_settings.py +122 -0
  1339. pixlib/raw/types/available_reaction.py +154 -0
  1340. pixlib/raw/types/bad_msg_notification.py +88 -0
  1341. pixlib/raw/types/bad_server_salt.py +96 -0
  1342. pixlib/raw/types/bank_card_open_url.py +80 -0
  1343. pixlib/raw/types/base_theme_arctic.py +67 -0
  1344. pixlib/raw/types/base_theme_classic.py +67 -0
  1345. pixlib/raw/types/base_theme_day.py +67 -0
  1346. pixlib/raw/types/base_theme_night.py +67 -0
  1347. pixlib/raw/types/base_theme_tinted.py +67 -0
  1348. pixlib/raw/types/bind_auth_key_inner.py +104 -0
  1349. pixlib/raw/types/bot_command.py +89 -0
  1350. pixlib/raw/types/bot_command_scope_chat_admins.py +67 -0
  1351. pixlib/raw/types/bot_command_scope_chats.py +67 -0
  1352. pixlib/raw/types/bot_command_scope_default.py +67 -0
  1353. pixlib/raw/types/bot_command_scope_peer.py +72 -0
  1354. pixlib/raw/types/bot_command_scope_peer_admins.py +72 -0
  1355. pixlib/raw/types/bot_command_scope_peer_user.py +80 -0
  1356. pixlib/raw/types/bot_command_scope_users.py +67 -0
  1357. pixlib/raw/types/bot_info.py +124 -0
  1358. pixlib/raw/types/bot_inline_media_result.py +128 -0
  1359. pixlib/raw/types/bot_inline_message_media_auto.py +94 -0
  1360. pixlib/raw/types/bot_inline_message_media_contact.py +108 -0
  1361. pixlib/raw/types/bot_inline_message_media_geo.py +111 -0
  1362. pixlib/raw/types/bot_inline_message_media_invoice.py +130 -0
  1363. pixlib/raw/types/bot_inline_message_media_venue.py +124 -0
  1364. pixlib/raw/types/bot_inline_message_text.py +100 -0
  1365. pixlib/raw/types/bot_inline_result.py +137 -0
  1366. pixlib/raw/types/bot_menu_button.py +89 -0
  1367. pixlib/raw/types/bot_menu_button_commands.py +76 -0
  1368. pixlib/raw/types/bot_menu_button_default.py +76 -0
  1369. pixlib/raw/types/cdn_config.py +81 -0
  1370. pixlib/raw/types/cdn_public_key.py +80 -0
  1371. pixlib/raw/types/channel.py +299 -0
  1372. pixlib/raw/types/channel_admin_log_event.py +96 -0
  1373. pixlib/raw/types/channel_admin_log_event_action_change_about.py +80 -0
  1374. pixlib/raw/types/channel_admin_log_event_action_change_available_reactions.py +80 -0
  1375. pixlib/raw/types/channel_admin_log_event_action_change_history_ttl.py +80 -0
  1376. pixlib/raw/types/channel_admin_log_event_action_change_linked_chat.py +80 -0
  1377. pixlib/raw/types/channel_admin_log_event_action_change_location.py +80 -0
  1378. pixlib/raw/types/channel_admin_log_event_action_change_photo.py +80 -0
  1379. pixlib/raw/types/channel_admin_log_event_action_change_sticker_set.py +80 -0
  1380. pixlib/raw/types/channel_admin_log_event_action_change_title.py +80 -0
  1381. pixlib/raw/types/channel_admin_log_event_action_change_username.py +80 -0
  1382. pixlib/raw/types/channel_admin_log_event_action_change_usernames.py +80 -0
  1383. pixlib/raw/types/channel_admin_log_event_action_create_topic.py +72 -0
  1384. pixlib/raw/types/channel_admin_log_event_action_default_banned_rights.py +80 -0
  1385. pixlib/raw/types/channel_admin_log_event_action_delete_message.py +72 -0
  1386. pixlib/raw/types/channel_admin_log_event_action_delete_topic.py +72 -0
  1387. pixlib/raw/types/channel_admin_log_event_action_discard_group_call.py +72 -0
  1388. pixlib/raw/types/channel_admin_log_event_action_edit_message.py +80 -0
  1389. pixlib/raw/types/channel_admin_log_event_action_edit_topic.py +80 -0
  1390. pixlib/raw/types/channel_admin_log_event_action_exported_invite_delete.py +72 -0
  1391. pixlib/raw/types/channel_admin_log_event_action_exported_invite_edit.py +80 -0
  1392. pixlib/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +72 -0
  1393. pixlib/raw/types/channel_admin_log_event_action_participant_invite.py +72 -0
  1394. pixlib/raw/types/channel_admin_log_event_action_participant_join.py +67 -0
  1395. pixlib/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +72 -0
  1396. pixlib/raw/types/channel_admin_log_event_action_participant_join_by_request.py +80 -0
  1397. pixlib/raw/types/channel_admin_log_event_action_participant_leave.py +67 -0
  1398. pixlib/raw/types/channel_admin_log_event_action_participant_mute.py +72 -0
  1399. pixlib/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +80 -0
  1400. pixlib/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +80 -0
  1401. pixlib/raw/types/channel_admin_log_event_action_participant_unmute.py +72 -0
  1402. pixlib/raw/types/channel_admin_log_event_action_participant_volume.py +72 -0
  1403. pixlib/raw/types/channel_admin_log_event_action_pin_topic.py +86 -0
  1404. pixlib/raw/types/channel_admin_log_event_action_send_message.py +72 -0
  1405. pixlib/raw/types/channel_admin_log_event_action_start_group_call.py +72 -0
  1406. pixlib/raw/types/channel_admin_log_event_action_stop_poll.py +72 -0
  1407. pixlib/raw/types/channel_admin_log_event_action_toggle_forum.py +72 -0
  1408. pixlib/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +72 -0
  1409. pixlib/raw/types/channel_admin_log_event_action_toggle_invites.py +72 -0
  1410. pixlib/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +72 -0
  1411. pixlib/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +72 -0
  1412. pixlib/raw/types/channel_admin_log_event_action_toggle_signatures.py +72 -0
  1413. pixlib/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +80 -0
  1414. pixlib/raw/types/channel_admin_log_event_action_update_pinned.py +72 -0
  1415. pixlib/raw/types/channel_admin_log_events_filter.py +174 -0
  1416. pixlib/raw/types/channel_forbidden.py +111 -0
  1417. pixlib/raw/types/channel_full.py +439 -0
  1418. pixlib/raw/types/channel_location.py +80 -0
  1419. pixlib/raw/types/channel_location_empty.py +67 -0
  1420. pixlib/raw/types/channel_messages_filter.py +80 -0
  1421. pixlib/raw/types/channel_messages_filter_empty.py +67 -0
  1422. pixlib/raw/types/channel_participant.py +80 -0
  1423. pixlib/raw/types/channel_participant_admin.py +128 -0
  1424. pixlib/raw/types/channel_participant_banned.py +104 -0
  1425. pixlib/raw/types/channel_participant_creator.py +91 -0
  1426. pixlib/raw/types/channel_participant_left.py +72 -0
  1427. pixlib/raw/types/channel_participant_self.py +96 -0
  1428. pixlib/raw/types/channel_participants_admins.py +67 -0
  1429. pixlib/raw/types/channel_participants_banned.py +72 -0
  1430. pixlib/raw/types/channel_participants_bots.py +67 -0
  1431. pixlib/raw/types/channel_participants_contacts.py +72 -0
  1432. pixlib/raw/types/channel_participants_kicked.py +72 -0
  1433. pixlib/raw/types/channel_participants_mentions.py +84 -0
  1434. pixlib/raw/types/channel_participants_recent.py +67 -0
  1435. pixlib/raw/types/channel_participants_search.py +72 -0
  1436. pixlib/raw/types/channels/__init__.py +29 -0
  1437. pixlib/raw/types/channels/admin_log_results.py +97 -0
  1438. pixlib/raw/types/channels/channel_participant.py +97 -0
  1439. pixlib/raw/types/channels/channel_participants.py +105 -0
  1440. pixlib/raw/types/channels/channel_participants_not_modified.py +76 -0
  1441. pixlib/raw/types/channels/send_as_peers.py +97 -0
  1442. pixlib/raw/types/chat.py +180 -0
  1443. pixlib/raw/types/chat_admin_rights.py +138 -0
  1444. pixlib/raw/types/chat_admin_with_invites.py +88 -0
  1445. pixlib/raw/types/chat_banned_rights.py +152 -0
  1446. pixlib/raw/types/chat_empty.py +72 -0
  1447. pixlib/raw/types/chat_forbidden.py +80 -0
  1448. pixlib/raw/types/chat_full.py +225 -0
  1449. pixlib/raw/types/chat_invite.py +148 -0
  1450. pixlib/raw/types/chat_invite_already.py +81 -0
  1451. pixlib/raw/types/chat_invite_exported.py +171 -0
  1452. pixlib/raw/types/chat_invite_importer.py +106 -0
  1453. pixlib/raw/types/chat_invite_peek.py +89 -0
  1454. pixlib/raw/types/chat_invite_public_join_requests.py +76 -0
  1455. pixlib/raw/types/chat_onlines.py +81 -0
  1456. pixlib/raw/types/chat_participant.py +88 -0
  1457. pixlib/raw/types/chat_participant_admin.py +88 -0
  1458. pixlib/raw/types/chat_participant_creator.py +72 -0
  1459. pixlib/raw/types/chat_participants.py +88 -0
  1460. pixlib/raw/types/chat_participants_forbidden.py +84 -0
  1461. pixlib/raw/types/chat_photo.py +97 -0
  1462. pixlib/raw/types/chat_photo_empty.py +67 -0
  1463. pixlib/raw/types/chat_reactions_all.py +72 -0
  1464. pixlib/raw/types/chat_reactions_none.py +67 -0
  1465. pixlib/raw/types/chat_reactions_some.py +72 -0
  1466. pixlib/raw/types/client_dh_inner_data.py +96 -0
  1467. pixlib/raw/types/code_settings.py +100 -0
  1468. pixlib/raw/types/config.py +494 -0
  1469. pixlib/raw/types/contact.py +80 -0
  1470. pixlib/raw/types/contact_status.py +89 -0
  1471. pixlib/raw/types/contacts/__init__.py +34 -0
  1472. pixlib/raw/types/contacts/blocked.py +97 -0
  1473. pixlib/raw/types/contacts/blocked_slice.py +105 -0
  1474. pixlib/raw/types/contacts/contacts.py +97 -0
  1475. pixlib/raw/types/contacts/contacts_not_modified.py +76 -0
  1476. pixlib/raw/types/contacts/found.py +105 -0
  1477. pixlib/raw/types/contacts/imported_contacts.py +105 -0
  1478. pixlib/raw/types/contacts/resolved_peer.py +98 -0
  1479. pixlib/raw/types/contacts/top_peers.py +97 -0
  1480. pixlib/raw/types/contacts/top_peers_disabled.py +76 -0
  1481. pixlib/raw/types/contacts/top_peers_not_modified.py +76 -0
  1482. pixlib/raw/types/data_json.py +82 -0
  1483. pixlib/raw/types/dc_option.py +135 -0
  1484. pixlib/raw/types/destroy_auth_key_fail.py +76 -0
  1485. pixlib/raw/types/destroy_auth_key_none.py +76 -0
  1486. pixlib/raw/types/destroy_auth_key_ok.py +76 -0
  1487. pixlib/raw/types/destroy_session_none.py +81 -0
  1488. pixlib/raw/types/destroy_session_ok.py +81 -0
  1489. pixlib/raw/types/dh_gen_fail.py +97 -0
  1490. pixlib/raw/types/dh_gen_ok.py +97 -0
  1491. pixlib/raw/types/dh_gen_retry.py +97 -0
  1492. pixlib/raw/types/dialog.py +170 -0
  1493. pixlib/raw/types/dialog_filter.py +172 -0
  1494. pixlib/raw/types/dialog_filter_default.py +76 -0
  1495. pixlib/raw/types/dialog_filter_suggested.py +89 -0
  1496. pixlib/raw/types/dialog_folder.py +128 -0
  1497. pixlib/raw/types/dialog_peer.py +81 -0
  1498. pixlib/raw/types/dialog_peer_folder.py +81 -0
  1499. pixlib/raw/types/document.py +162 -0
  1500. pixlib/raw/types/document_attribute_animated.py +67 -0
  1501. pixlib/raw/types/document_attribute_audio.py +107 -0
  1502. pixlib/raw/types/document_attribute_custom_emoji.py +88 -0
  1503. pixlib/raw/types/document_attribute_filename.py +72 -0
  1504. pixlib/raw/types/document_attribute_has_stickers.py +67 -0
  1505. pixlib/raw/types/document_attribute_image_size.py +80 -0
  1506. pixlib/raw/types/document_attribute_sticker.py +98 -0
  1507. pixlib/raw/types/document_attribute_video.py +102 -0
  1508. pixlib/raw/types/document_empty.py +84 -0
  1509. pixlib/raw/types/draft_message.py +107 -0
  1510. pixlib/raw/types/draft_message_empty.py +75 -0
  1511. pixlib/raw/types/email_verification_apple.py +72 -0
  1512. pixlib/raw/types/email_verification_code.py +72 -0
  1513. pixlib/raw/types/email_verification_google.py +72 -0
  1514. pixlib/raw/types/email_verify_purpose_login_change.py +67 -0
  1515. pixlib/raw/types/email_verify_purpose_login_setup.py +80 -0
  1516. pixlib/raw/types/email_verify_purpose_passport.py +67 -0
  1517. pixlib/raw/types/emoji_keyword.py +80 -0
  1518. pixlib/raw/types/emoji_keyword_deleted.py +80 -0
  1519. pixlib/raw/types/emoji_keywords_difference.py +106 -0
  1520. pixlib/raw/types/emoji_language.py +81 -0
  1521. pixlib/raw/types/emoji_status.py +72 -0
  1522. pixlib/raw/types/emoji_status_empty.py +67 -0
  1523. pixlib/raw/types/emoji_status_until.py +80 -0
  1524. pixlib/raw/types/emoji_url.py +81 -0
  1525. pixlib/raw/types/encrypted_chat.py +130 -0
  1526. pixlib/raw/types/encrypted_chat_discarded.py +90 -0
  1527. pixlib/raw/types/encrypted_chat_empty.py +82 -0
  1528. pixlib/raw/types/encrypted_chat_requested.py +133 -0
  1529. pixlib/raw/types/encrypted_chat_waiting.py +114 -0
  1530. pixlib/raw/types/encrypted_file.py +113 -0
  1531. pixlib/raw/types/encrypted_file_empty.py +76 -0
  1532. pixlib/raw/types/encrypted_message.py +104 -0
  1533. pixlib/raw/types/encrypted_message_service.py +96 -0
  1534. pixlib/raw/types/exported_message_link.py +89 -0
  1535. pixlib/raw/types/file_hash.py +99 -0
  1536. pixlib/raw/types/folder.py +110 -0
  1537. pixlib/raw/types/folder_peer.py +80 -0
  1538. pixlib/raw/types/forum_topic.py +199 -0
  1539. pixlib/raw/types/forum_topic_deleted.py +72 -0
  1540. pixlib/raw/types/game.py +124 -0
  1541. pixlib/raw/types/geo_point.py +99 -0
  1542. pixlib/raw/types/geo_point_empty.py +67 -0
  1543. pixlib/raw/types/global_privacy_settings.py +85 -0
  1544. pixlib/raw/types/group_call.py +199 -0
  1545. pixlib/raw/types/group_call_discarded.py +88 -0
  1546. pixlib/raw/types/group_call_participant.py +206 -0
  1547. pixlib/raw/types/group_call_participant_video.py +97 -0
  1548. pixlib/raw/types/group_call_participant_video_source_group.py +80 -0
  1549. pixlib/raw/types/group_call_stream_channel.py +88 -0
  1550. pixlib/raw/types/help/__init__.py +47 -0
  1551. pixlib/raw/types/help/app_update.py +142 -0
  1552. pixlib/raw/types/help/config_simple.py +88 -0
  1553. pixlib/raw/types/help/countries_list.py +89 -0
  1554. pixlib/raw/types/help/countries_list_not_modified.py +76 -0
  1555. pixlib/raw/types/help/country.py +105 -0
  1556. pixlib/raw/types/help/country_code.py +94 -0
  1557. pixlib/raw/types/help/deep_link_info.py +99 -0
  1558. pixlib/raw/types/help/deep_link_info_empty.py +76 -0
  1559. pixlib/raw/types/help/invite_text.py +81 -0
  1560. pixlib/raw/types/help/no_app_update.py +76 -0
  1561. pixlib/raw/types/help/passport_config.py +89 -0
  1562. pixlib/raw/types/help/passport_config_not_modified.py +76 -0
  1563. pixlib/raw/types/help/premium_promo.py +121 -0
  1564. pixlib/raw/types/help/promo_data.py +131 -0
  1565. pixlib/raw/types/help/promo_data_empty.py +81 -0
  1566. pixlib/raw/types/help/recent_me_urls.py +97 -0
  1567. pixlib/raw/types/help/support.py +89 -0
  1568. pixlib/raw/types/help/support_name.py +81 -0
  1569. pixlib/raw/types/help/terms_of_service.py +105 -0
  1570. pixlib/raw/types/help/terms_of_service_update.py +89 -0
  1571. pixlib/raw/types/help/terms_of_service_update_empty.py +81 -0
  1572. pixlib/raw/types/help/user_info.py +106 -0
  1573. pixlib/raw/types/help/user_info_empty.py +77 -0
  1574. pixlib/raw/types/high_score.py +88 -0
  1575. pixlib/raw/types/http_wait.py +88 -0
  1576. pixlib/raw/types/imported_contact.py +80 -0
  1577. pixlib/raw/types/inline_bot_switch_pm.py +80 -0
  1578. pixlib/raw/types/inline_query_peer_type_broadcast.py +67 -0
  1579. pixlib/raw/types/inline_query_peer_type_chat.py +67 -0
  1580. pixlib/raw/types/inline_query_peer_type_megagroup.py +67 -0
  1581. pixlib/raw/types/inline_query_peer_type_pm.py +67 -0
  1582. pixlib/raw/types/inline_query_peer_type_same_bot_pm.py +67 -0
  1583. pixlib/raw/types/input_app_event.py +96 -0
  1584. pixlib/raw/types/input_bot_inline_message_game.py +76 -0
  1585. pixlib/raw/types/input_bot_inline_message_id.py +88 -0
  1586. pixlib/raw/types/input_bot_inline_message_id64.py +96 -0
  1587. pixlib/raw/types/input_bot_inline_message_media_auto.py +94 -0
  1588. pixlib/raw/types/input_bot_inline_message_media_contact.py +108 -0
  1589. pixlib/raw/types/input_bot_inline_message_media_geo.py +111 -0
  1590. pixlib/raw/types/input_bot_inline_message_media_invoice.py +134 -0
  1591. pixlib/raw/types/input_bot_inline_message_media_venue.py +124 -0
  1592. pixlib/raw/types/input_bot_inline_message_text.py +100 -0
  1593. pixlib/raw/types/input_bot_inline_result.py +137 -0
  1594. pixlib/raw/types/input_bot_inline_result_document.py +116 -0
  1595. pixlib/raw/types/input_bot_inline_result_game.py +88 -0
  1596. pixlib/raw/types/input_bot_inline_result_photo.py +96 -0
  1597. pixlib/raw/types/input_channel.py +80 -0
  1598. pixlib/raw/types/input_channel_empty.py +67 -0
  1599. pixlib/raw/types/input_channel_from_message.py +88 -0
  1600. pixlib/raw/types/input_chat_photo.py +72 -0
  1601. pixlib/raw/types/input_chat_photo_empty.py +67 -0
  1602. pixlib/raw/types/input_chat_uploaded_photo.py +95 -0
  1603. pixlib/raw/types/input_check_password_empty.py +67 -0
  1604. pixlib/raw/types/input_check_password_srp.py +88 -0
  1605. pixlib/raw/types/input_client_proxy.py +80 -0
  1606. pixlib/raw/types/input_dialog_peer.py +72 -0
  1607. pixlib/raw/types/input_dialog_peer_folder.py +72 -0
  1608. pixlib/raw/types/input_document.py +88 -0
  1609. pixlib/raw/types/input_document_empty.py +67 -0
  1610. pixlib/raw/types/input_document_file_location.py +96 -0
  1611. pixlib/raw/types/input_encrypted_chat.py +80 -0
  1612. pixlib/raw/types/input_encrypted_file.py +80 -0
  1613. pixlib/raw/types/input_encrypted_file_big_uploaded.py +88 -0
  1614. pixlib/raw/types/input_encrypted_file_empty.py +67 -0
  1615. pixlib/raw/types/input_encrypted_file_location.py +80 -0
  1616. pixlib/raw/types/input_encrypted_file_uploaded.py +96 -0
  1617. pixlib/raw/types/input_file.py +96 -0
  1618. pixlib/raw/types/input_file_big.py +88 -0
  1619. pixlib/raw/types/input_file_location.py +96 -0
  1620. pixlib/raw/types/input_folder_peer.py +80 -0
  1621. pixlib/raw/types/input_game_id.py +80 -0
  1622. pixlib/raw/types/input_game_short_name.py +80 -0
  1623. pixlib/raw/types/input_geo_point.py +91 -0
  1624. pixlib/raw/types/input_geo_point_empty.py +67 -0
  1625. pixlib/raw/types/input_group_call.py +80 -0
  1626. pixlib/raw/types/input_group_call_stream.py +108 -0
  1627. pixlib/raw/types/input_invoice_message.py +80 -0
  1628. pixlib/raw/types/input_invoice_slug.py +72 -0
  1629. pixlib/raw/types/input_keyboard_button_url_auth.py +105 -0
  1630. pixlib/raw/types/input_keyboard_button_user_profile.py +80 -0
  1631. pixlib/raw/types/input_media_contact.py +96 -0
  1632. pixlib/raw/types/input_media_dice.py +72 -0
  1633. pixlib/raw/types/input_media_document.py +92 -0
  1634. pixlib/raw/types/input_media_document_external.py +83 -0
  1635. pixlib/raw/types/input_media_empty.py +67 -0
  1636. pixlib/raw/types/input_media_game.py +72 -0
  1637. pixlib/raw/types/input_media_geo_live.py +107 -0
  1638. pixlib/raw/types/input_media_geo_point.py +72 -0
  1639. pixlib/raw/types/input_media_invoice.py +143 -0
  1640. pixlib/raw/types/input_media_photo.py +83 -0
  1641. pixlib/raw/types/input_media_photo_external.py +83 -0
  1642. pixlib/raw/types/input_media_poll.py +103 -0
  1643. pixlib/raw/types/input_media_uploaded_document.py +131 -0
  1644. pixlib/raw/types/input_media_uploaded_photo.py +93 -0
  1645. pixlib/raw/types/input_media_venue.py +112 -0
  1646. pixlib/raw/types/input_message_callback_query.py +80 -0
  1647. pixlib/raw/types/input_message_entity_mention_name.py +88 -0
  1648. pixlib/raw/types/input_message_id.py +72 -0
  1649. pixlib/raw/types/input_message_pinned.py +67 -0
  1650. pixlib/raw/types/input_message_reply_to.py +72 -0
  1651. pixlib/raw/types/input_messages_filter_chat_photos.py +67 -0
  1652. pixlib/raw/types/input_messages_filter_contacts.py +67 -0
  1653. pixlib/raw/types/input_messages_filter_document.py +67 -0
  1654. pixlib/raw/types/input_messages_filter_empty.py +67 -0
  1655. pixlib/raw/types/input_messages_filter_geo.py +67 -0
  1656. pixlib/raw/types/input_messages_filter_gif.py +67 -0
  1657. pixlib/raw/types/input_messages_filter_music.py +67 -0
  1658. pixlib/raw/types/input_messages_filter_my_mentions.py +67 -0
  1659. pixlib/raw/types/input_messages_filter_phone_calls.py +72 -0
  1660. pixlib/raw/types/input_messages_filter_photo_video.py +67 -0
  1661. pixlib/raw/types/input_messages_filter_photos.py +67 -0
  1662. pixlib/raw/types/input_messages_filter_pinned.py +67 -0
  1663. pixlib/raw/types/input_messages_filter_round_video.py +67 -0
  1664. pixlib/raw/types/input_messages_filter_round_voice.py +67 -0
  1665. pixlib/raw/types/input_messages_filter_url.py +67 -0
  1666. pixlib/raw/types/input_messages_filter_video.py +67 -0
  1667. pixlib/raw/types/input_messages_filter_voice.py +67 -0
  1668. pixlib/raw/types/input_notify_broadcasts.py +67 -0
  1669. pixlib/raw/types/input_notify_chats.py +67 -0
  1670. pixlib/raw/types/input_notify_forum_topic.py +80 -0
  1671. pixlib/raw/types/input_notify_peer.py +72 -0
  1672. pixlib/raw/types/input_notify_users.py +67 -0
  1673. pixlib/raw/types/input_payment_credentials.py +80 -0
  1674. pixlib/raw/types/input_payment_credentials_apple_pay.py +72 -0
  1675. pixlib/raw/types/input_payment_credentials_google_pay.py +72 -0
  1676. pixlib/raw/types/input_payment_credentials_saved.py +80 -0
  1677. pixlib/raw/types/input_peer_channel.py +80 -0
  1678. pixlib/raw/types/input_peer_channel_from_message.py +88 -0
  1679. pixlib/raw/types/input_peer_chat.py +72 -0
  1680. pixlib/raw/types/input_peer_empty.py +67 -0
  1681. pixlib/raw/types/input_peer_notify_settings.py +103 -0
  1682. pixlib/raw/types/input_peer_photo_file_location.py +88 -0
  1683. pixlib/raw/types/input_peer_self.py +67 -0
  1684. pixlib/raw/types/input_peer_user.py +80 -0
  1685. pixlib/raw/types/input_peer_user_from_message.py +88 -0
  1686. pixlib/raw/types/input_phone_call.py +80 -0
  1687. pixlib/raw/types/input_phone_contact.py +96 -0
  1688. pixlib/raw/types/input_photo.py +88 -0
  1689. pixlib/raw/types/input_photo_empty.py +67 -0
  1690. pixlib/raw/types/input_photo_file_location.py +96 -0
  1691. pixlib/raw/types/input_photo_legacy_file_location.py +112 -0
  1692. pixlib/raw/types/input_privacy_key_added_by_phone.py +67 -0
  1693. pixlib/raw/types/input_privacy_key_chat_invite.py +67 -0
  1694. pixlib/raw/types/input_privacy_key_forwards.py +67 -0
  1695. pixlib/raw/types/input_privacy_key_phone_call.py +67 -0
  1696. pixlib/raw/types/input_privacy_key_phone_number.py +67 -0
  1697. pixlib/raw/types/input_privacy_key_phone_p2_p.py +67 -0
  1698. pixlib/raw/types/input_privacy_key_profile_photo.py +67 -0
  1699. pixlib/raw/types/input_privacy_key_status_timestamp.py +67 -0
  1700. pixlib/raw/types/input_privacy_key_voice_messages.py +67 -0
  1701. pixlib/raw/types/input_privacy_value_allow_all.py +67 -0
  1702. pixlib/raw/types/input_privacy_value_allow_chat_participants.py +72 -0
  1703. pixlib/raw/types/input_privacy_value_allow_contacts.py +67 -0
  1704. pixlib/raw/types/input_privacy_value_allow_users.py +72 -0
  1705. pixlib/raw/types/input_privacy_value_disallow_all.py +67 -0
  1706. pixlib/raw/types/input_privacy_value_disallow_chat_participants.py +72 -0
  1707. pixlib/raw/types/input_privacy_value_disallow_contacts.py +67 -0
  1708. pixlib/raw/types/input_privacy_value_disallow_users.py +72 -0
  1709. pixlib/raw/types/input_report_reason_child_abuse.py +67 -0
  1710. pixlib/raw/types/input_report_reason_copyright.py +67 -0
  1711. pixlib/raw/types/input_report_reason_fake.py +67 -0
  1712. pixlib/raw/types/input_report_reason_geo_irrelevant.py +67 -0
  1713. pixlib/raw/types/input_report_reason_illegal_drugs.py +67 -0
  1714. pixlib/raw/types/input_report_reason_other.py +67 -0
  1715. pixlib/raw/types/input_report_reason_personal_details.py +67 -0
  1716. pixlib/raw/types/input_report_reason_pornography.py +67 -0
  1717. pixlib/raw/types/input_report_reason_spam.py +67 -0
  1718. pixlib/raw/types/input_report_reason_violence.py +67 -0
  1719. pixlib/raw/types/input_secure_file.py +80 -0
  1720. pixlib/raw/types/input_secure_file_location.py +80 -0
  1721. pixlib/raw/types/input_secure_file_uploaded.py +104 -0
  1722. pixlib/raw/types/input_secure_value.py +144 -0
  1723. pixlib/raw/types/input_single_media.py +100 -0
  1724. pixlib/raw/types/input_sticker_set_animated_emoji.py +67 -0
  1725. pixlib/raw/types/input_sticker_set_animated_emoji_animations.py +67 -0
  1726. pixlib/raw/types/input_sticker_set_dice.py +72 -0
  1727. pixlib/raw/types/input_sticker_set_emoji_default_statuses.py +67 -0
  1728. pixlib/raw/types/input_sticker_set_emoji_default_topic_icons.py +67 -0
  1729. pixlib/raw/types/input_sticker_set_emoji_generic_animations.py +67 -0
  1730. pixlib/raw/types/input_sticker_set_empty.py +67 -0
  1731. pixlib/raw/types/input_sticker_set_id.py +80 -0
  1732. pixlib/raw/types/input_sticker_set_item.py +92 -0
  1733. pixlib/raw/types/input_sticker_set_premium_gifts.py +67 -0
  1734. pixlib/raw/types/input_sticker_set_short_name.py +72 -0
  1735. pixlib/raw/types/input_sticker_set_thumb.py +80 -0
  1736. pixlib/raw/types/input_stickered_media_document.py +72 -0
  1737. pixlib/raw/types/input_stickered_media_photo.py +72 -0
  1738. pixlib/raw/types/input_store_payment_gift_premium.py +88 -0
  1739. pixlib/raw/types/input_store_payment_premium_subscription.py +72 -0
  1740. pixlib/raw/types/input_takeout_file_location.py +67 -0
  1741. pixlib/raw/types/input_theme.py +80 -0
  1742. pixlib/raw/types/input_theme_settings.py +127 -0
  1743. pixlib/raw/types/input_theme_slug.py +72 -0
  1744. pixlib/raw/types/input_user.py +80 -0
  1745. pixlib/raw/types/input_user_empty.py +67 -0
  1746. pixlib/raw/types/input_user_from_message.py +88 -0
  1747. pixlib/raw/types/input_user_self.py +67 -0
  1748. pixlib/raw/types/input_wall_paper.py +80 -0
  1749. pixlib/raw/types/input_wall_paper_no_file.py +72 -0
  1750. pixlib/raw/types/input_wall_paper_slug.py +72 -0
  1751. pixlib/raw/types/input_web_document.py +96 -0
  1752. pixlib/raw/types/input_web_file_audio_album_thumb_location.py +100 -0
  1753. pixlib/raw/types/input_web_file_geo_point_location.py +112 -0
  1754. pixlib/raw/types/input_web_file_location.py +80 -0
  1755. pixlib/raw/types/invoice.py +164 -0
  1756. pixlib/raw/types/ip_port.py +80 -0
  1757. pixlib/raw/types/ip_port_secret.py +88 -0
  1758. pixlib/raw/types/json_array.py +81 -0
  1759. pixlib/raw/types/json_bool.py +81 -0
  1760. pixlib/raw/types/json_null.py +76 -0
  1761. pixlib/raw/types/json_number.py +81 -0
  1762. pixlib/raw/types/json_object.py +81 -0
  1763. pixlib/raw/types/json_object_value.py +80 -0
  1764. pixlib/raw/types/json_string.py +81 -0
  1765. pixlib/raw/types/keyboard_button.py +72 -0
  1766. pixlib/raw/types/keyboard_button_buy.py +72 -0
  1767. pixlib/raw/types/keyboard_button_callback.py +88 -0
  1768. pixlib/raw/types/keyboard_button_game.py +72 -0
  1769. pixlib/raw/types/keyboard_button_request_geo_location.py +72 -0
  1770. pixlib/raw/types/keyboard_button_request_phone.py +72 -0
  1771. pixlib/raw/types/keyboard_button_request_poll.py +83 -0
  1772. pixlib/raw/types/keyboard_button_row.py +72 -0
  1773. pixlib/raw/types/keyboard_button_simple_web_view.py +80 -0
  1774. pixlib/raw/types/keyboard_button_switch_inline.py +88 -0
  1775. pixlib/raw/types/keyboard_button_url.py +80 -0
  1776. pixlib/raw/types/keyboard_button_url_auth.py +99 -0
  1777. pixlib/raw/types/keyboard_button_user_profile.py +80 -0
  1778. pixlib/raw/types/keyboard_button_web_view.py +80 -0
  1779. pixlib/raw/types/labeled_price.py +80 -0
  1780. pixlib/raw/types/lang_pack_difference.py +106 -0
  1781. pixlib/raw/types/lang_pack_language.py +159 -0
  1782. pixlib/raw/types/lang_pack_string.py +89 -0
  1783. pixlib/raw/types/lang_pack_string_deleted.py +81 -0
  1784. pixlib/raw/types/lang_pack_string_pluralized.py +136 -0
  1785. pixlib/raw/types/mask_coords.py +96 -0
  1786. pixlib/raw/types/message.py +311 -0
  1787. pixlib/raw/types/message_action_bot_allowed.py +72 -0
  1788. pixlib/raw/types/message_action_channel_create.py +72 -0
  1789. pixlib/raw/types/message_action_channel_migrate_from.py +80 -0
  1790. pixlib/raw/types/message_action_chat_add_user.py +72 -0
  1791. pixlib/raw/types/message_action_chat_create.py +80 -0
  1792. pixlib/raw/types/message_action_chat_delete_photo.py +67 -0
  1793. pixlib/raw/types/message_action_chat_delete_user.py +72 -0
  1794. pixlib/raw/types/message_action_chat_edit_photo.py +72 -0
  1795. pixlib/raw/types/message_action_chat_edit_title.py +72 -0
  1796. pixlib/raw/types/message_action_chat_joined_by_link.py +72 -0
  1797. pixlib/raw/types/message_action_chat_joined_by_request.py +67 -0
  1798. pixlib/raw/types/message_action_chat_migrate_to.py +72 -0
  1799. pixlib/raw/types/message_action_contact_sign_up.py +67 -0
  1800. pixlib/raw/types/message_action_custom_action.py +72 -0
  1801. pixlib/raw/types/message_action_empty.py +67 -0
  1802. pixlib/raw/types/message_action_game_score.py +80 -0
  1803. pixlib/raw/types/message_action_geo_proximity_reached.py +88 -0
  1804. pixlib/raw/types/message_action_gift_premium.py +88 -0
  1805. pixlib/raw/types/message_action_group_call.py +83 -0
  1806. pixlib/raw/types/message_action_group_call_scheduled.py +80 -0
  1807. pixlib/raw/types/message_action_history_clear.py +67 -0
  1808. pixlib/raw/types/message_action_invite_to_group_call.py +80 -0
  1809. pixlib/raw/types/message_action_payment_sent.py +103 -0
  1810. pixlib/raw/types/message_action_payment_sent_me.py +129 -0
  1811. pixlib/raw/types/message_action_phone_call.py +99 -0
  1812. pixlib/raw/types/message_action_pin_message.py +67 -0
  1813. pixlib/raw/types/message_action_screenshot_taken.py +67 -0
  1814. pixlib/raw/types/message_action_secure_values_sent.py +72 -0
  1815. pixlib/raw/types/message_action_secure_values_sent_me.py +80 -0
  1816. pixlib/raw/types/message_action_set_chat_theme.py +72 -0
  1817. pixlib/raw/types/message_action_set_messages_ttl.py +72 -0
  1818. pixlib/raw/types/message_action_topic_create.py +91 -0
  1819. pixlib/raw/types/message_action_topic_edit.py +93 -0
  1820. pixlib/raw/types/message_action_web_view_data_sent.py +72 -0
  1821. pixlib/raw/types/message_action_web_view_data_sent_me.py +80 -0
  1822. pixlib/raw/types/message_empty.py +84 -0
  1823. pixlib/raw/types/message_entity_bank_card.py +80 -0
  1824. pixlib/raw/types/message_entity_blockquote.py +80 -0
  1825. pixlib/raw/types/message_entity_bold.py +80 -0
  1826. pixlib/raw/types/message_entity_bot_command.py +80 -0
  1827. pixlib/raw/types/message_entity_cashtag.py +80 -0
  1828. pixlib/raw/types/message_entity_code.py +80 -0
  1829. pixlib/raw/types/message_entity_custom_emoji.py +88 -0
  1830. pixlib/raw/types/message_entity_email.py +80 -0
  1831. pixlib/raw/types/message_entity_hashtag.py +80 -0
  1832. pixlib/raw/types/message_entity_italic.py +80 -0
  1833. pixlib/raw/types/message_entity_mention.py +80 -0
  1834. pixlib/raw/types/message_entity_mention_name.py +88 -0
  1835. pixlib/raw/types/message_entity_phone.py +80 -0
  1836. pixlib/raw/types/message_entity_pre.py +88 -0
  1837. pixlib/raw/types/message_entity_spoiler.py +80 -0
  1838. pixlib/raw/types/message_entity_strike.py +80 -0
  1839. pixlib/raw/types/message_entity_text_url.py +88 -0
  1840. pixlib/raw/types/message_entity_underline.py +80 -0
  1841. pixlib/raw/types/message_entity_unknown.py +80 -0
  1842. pixlib/raw/types/message_entity_url.py +80 -0
  1843. pixlib/raw/types/message_extended_media.py +72 -0
  1844. pixlib/raw/types/message_extended_media_preview.py +103 -0
  1845. pixlib/raw/types/message_fwd_header.py +145 -0
  1846. pixlib/raw/types/message_interaction_counters.py +88 -0
  1847. pixlib/raw/types/message_media_contact.py +115 -0
  1848. pixlib/raw/types/message_media_dice.py +91 -0
  1849. pixlib/raw/types/message_media_document.py +102 -0
  1850. pixlib/raw/types/message_media_empty.py +78 -0
  1851. pixlib/raw/types/message_media_game.py +83 -0
  1852. pixlib/raw/types/message_media_geo.py +83 -0
  1853. pixlib/raw/types/message_media_geo_live.py +111 -0
  1854. pixlib/raw/types/message_media_invoice.py +158 -0
  1855. pixlib/raw/types/message_media_photo.py +96 -0
  1856. pixlib/raw/types/message_media_poll.py +91 -0
  1857. pixlib/raw/types/message_media_unsupported.py +78 -0
  1858. pixlib/raw/types/message_media_venue.py +123 -0
  1859. pixlib/raw/types/message_media_web_page.py +83 -0
  1860. pixlib/raw/types/message_peer_reaction.py +94 -0
  1861. pixlib/raw/types/message_range.py +89 -0
  1862. pixlib/raw/types/message_reactions.py +96 -0
  1863. pixlib/raw/types/message_replies.py +125 -0
  1864. pixlib/raw/types/message_reply_header.py +105 -0
  1865. pixlib/raw/types/message_service.py +163 -0
  1866. pixlib/raw/types/message_user_vote.py +88 -0
  1867. pixlib/raw/types/message_user_vote_input_option.py +80 -0
  1868. pixlib/raw/types/message_user_vote_multiple.py +88 -0
  1869. pixlib/raw/types/message_views.py +94 -0
  1870. pixlib/raw/types/messages/__init__.py +92 -0
  1871. pixlib/raw/types/messages/affected_found_messages.py +105 -0
  1872. pixlib/raw/types/messages/affected_history.py +102 -0
  1873. pixlib/raw/types/messages/affected_messages.py +92 -0
  1874. pixlib/raw/types/messages/all_stickers.py +91 -0
  1875. pixlib/raw/types/messages/all_stickers_not_modified.py +78 -0
  1876. pixlib/raw/types/messages/archived_stickers.py +89 -0
  1877. pixlib/raw/types/messages/available_reactions.py +89 -0
  1878. pixlib/raw/types/messages/available_reactions_not_modified.py +76 -0
  1879. pixlib/raw/types/messages/bot_callback_answer.py +119 -0
  1880. pixlib/raw/types/messages/bot_results.py +132 -0
  1881. pixlib/raw/types/messages/channel_messages.py +142 -0
  1882. pixlib/raw/types/messages/chat_admins_with_invites.py +89 -0
  1883. pixlib/raw/types/messages/chat_full.py +98 -0
  1884. pixlib/raw/types/messages/chat_invite_importers.py +97 -0
  1885. pixlib/raw/types/messages/chats.py +87 -0
  1886. pixlib/raw/types/messages/chats_slice.py +95 -0
  1887. pixlib/raw/types/messages/checked_history_import_peer.py +81 -0
  1888. pixlib/raw/types/messages/dh_config.py +105 -0
  1889. pixlib/raw/types/messages/dh_config_not_modified.py +81 -0
  1890. pixlib/raw/types/messages/dialogs.py +105 -0
  1891. pixlib/raw/types/messages/dialogs_not_modified.py +81 -0
  1892. pixlib/raw/types/messages/dialogs_slice.py +113 -0
  1893. pixlib/raw/types/messages/discussion_message.py +134 -0
  1894. pixlib/raw/types/messages/exported_chat_invite.py +90 -0
  1895. pixlib/raw/types/messages/exported_chat_invite_replaced.py +98 -0
  1896. pixlib/raw/types/messages/exported_chat_invites.py +97 -0
  1897. pixlib/raw/types/messages/faved_stickers.py +97 -0
  1898. pixlib/raw/types/messages/faved_stickers_not_modified.py +76 -0
  1899. pixlib/raw/types/messages/featured_stickers.py +115 -0
  1900. pixlib/raw/types/messages/featured_stickers_not_modified.py +83 -0
  1901. pixlib/raw/types/messages/forum_topics.py +130 -0
  1902. pixlib/raw/types/messages/found_sticker_sets.py +89 -0
  1903. pixlib/raw/types/messages/found_sticker_sets_not_modified.py +76 -0
  1904. pixlib/raw/types/messages/high_scores.py +90 -0
  1905. pixlib/raw/types/messages/history_import.py +81 -0
  1906. pixlib/raw/types/messages/history_import_parsed.py +96 -0
  1907. pixlib/raw/types/messages/inactive_chats.py +97 -0
  1908. pixlib/raw/types/messages/message_edit_data.py +81 -0
  1909. pixlib/raw/types/messages/message_reactions_list.py +116 -0
  1910. pixlib/raw/types/messages/message_views.py +97 -0
  1911. pixlib/raw/types/messages/messages.py +109 -0
  1912. pixlib/raw/types/messages/messages_not_modified.py +93 -0
  1913. pixlib/raw/types/messages/messages_slice.py +143 -0
  1914. pixlib/raw/types/messages/peer_dialogs.py +114 -0
  1915. pixlib/raw/types/messages/peer_settings.py +97 -0
  1916. pixlib/raw/types/messages/reactions.py +90 -0
  1917. pixlib/raw/types/messages/reactions_not_modified.py +77 -0
  1918. pixlib/raw/types/messages/recent_stickers.py +105 -0
  1919. pixlib/raw/types/messages/recent_stickers_not_modified.py +76 -0
  1920. pixlib/raw/types/messages/saved_gifs.py +89 -0
  1921. pixlib/raw/types/messages/saved_gifs_not_modified.py +76 -0
  1922. pixlib/raw/types/messages/search_counter.py +97 -0
  1923. pixlib/raw/types/messages/search_results_calendar.py +146 -0
  1924. pixlib/raw/types/messages/search_results_positions.py +89 -0
  1925. pixlib/raw/types/messages/sent_encrypted_file.py +91 -0
  1926. pixlib/raw/types/messages/sent_encrypted_message.py +83 -0
  1927. pixlib/raw/types/messages/sponsored_messages.py +108 -0
  1928. pixlib/raw/types/messages/sponsored_messages_empty.py +76 -0
  1929. pixlib/raw/types/messages/sticker_set.py +110 -0
  1930. pixlib/raw/types/messages/sticker_set_install_result_archive.py +81 -0
  1931. pixlib/raw/types/messages/sticker_set_install_result_success.py +76 -0
  1932. pixlib/raw/types/messages/sticker_set_not_modified.py +81 -0
  1933. pixlib/raw/types/messages/stickers.py +89 -0
  1934. pixlib/raw/types/messages/stickers_not_modified.py +76 -0
  1935. pixlib/raw/types/messages/transcribed_audio.py +97 -0
  1936. pixlib/raw/types/messages/translate_no_result.py +76 -0
  1937. pixlib/raw/types/messages/translate_result_text.py +81 -0
  1938. pixlib/raw/types/messages/votes_list.py +108 -0
  1939. pixlib/raw/types/msg_detailed_info.py +96 -0
  1940. pixlib/raw/types/msg_new_detailed_info.py +88 -0
  1941. pixlib/raw/types/msg_resend_ans_req.py +72 -0
  1942. pixlib/raw/types/msg_resend_req.py +72 -0
  1943. pixlib/raw/types/msgs_ack.py +72 -0
  1944. pixlib/raw/types/msgs_all_info.py +80 -0
  1945. pixlib/raw/types/msgs_state_info.py +80 -0
  1946. pixlib/raw/types/msgs_state_req.py +72 -0
  1947. pixlib/raw/types/nearest_dc.py +97 -0
  1948. pixlib/raw/types/new_session_created.py +88 -0
  1949. pixlib/raw/types/notification_sound_default.py +67 -0
  1950. pixlib/raw/types/notification_sound_local.py +80 -0
  1951. pixlib/raw/types/notification_sound_none.py +67 -0
  1952. pixlib/raw/types/notification_sound_ringtone.py +72 -0
  1953. pixlib/raw/types/notify_broadcasts.py +67 -0
  1954. pixlib/raw/types/notify_chats.py +67 -0
  1955. pixlib/raw/types/notify_forum_topic.py +80 -0
  1956. pixlib/raw/types/notify_peer.py +72 -0
  1957. pixlib/raw/types/notify_users.py +67 -0
  1958. pixlib/raw/types/page.py +125 -0
  1959. pixlib/raw/types/page_block_anchor.py +72 -0
  1960. pixlib/raw/types/page_block_audio.py +80 -0
  1961. pixlib/raw/types/page_block_author_date.py +80 -0
  1962. pixlib/raw/types/page_block_blockquote.py +80 -0
  1963. pixlib/raw/types/page_block_channel.py +72 -0
  1964. pixlib/raw/types/page_block_collage.py +80 -0
  1965. pixlib/raw/types/page_block_cover.py +72 -0
  1966. pixlib/raw/types/page_block_details.py +88 -0
  1967. pixlib/raw/types/page_block_divider.py +67 -0
  1968. pixlib/raw/types/page_block_embed.py +131 -0
  1969. pixlib/raw/types/page_block_embed_post.py +120 -0
  1970. pixlib/raw/types/page_block_footer.py +72 -0
  1971. pixlib/raw/types/page_block_header.py +72 -0
  1972. pixlib/raw/types/page_block_kicker.py +72 -0
  1973. pixlib/raw/types/page_block_list.py +72 -0
  1974. pixlib/raw/types/page_block_map.py +104 -0
  1975. pixlib/raw/types/page_block_ordered_list.py +72 -0
  1976. pixlib/raw/types/page_block_paragraph.py +72 -0
  1977. pixlib/raw/types/page_block_photo.py +100 -0
  1978. pixlib/raw/types/page_block_preformatted.py +80 -0
  1979. pixlib/raw/types/page_block_pullquote.py +80 -0
  1980. pixlib/raw/types/page_block_related_articles.py +80 -0
  1981. pixlib/raw/types/page_block_slideshow.py +80 -0
  1982. pixlib/raw/types/page_block_subheader.py +72 -0
  1983. pixlib/raw/types/page_block_subtitle.py +72 -0
  1984. pixlib/raw/types/page_block_table.py +94 -0
  1985. pixlib/raw/types/page_block_title.py +72 -0
  1986. pixlib/raw/types/page_block_unsupported.py +67 -0
  1987. pixlib/raw/types/page_block_video.py +94 -0
  1988. pixlib/raw/types/page_caption.py +80 -0
  1989. pixlib/raw/types/page_list_item_blocks.py +72 -0
  1990. pixlib/raw/types/page_list_item_text.py +72 -0
  1991. pixlib/raw/types/page_list_ordered_item_blocks.py +80 -0
  1992. pixlib/raw/types/page_list_ordered_item_text.py +80 -0
  1993. pixlib/raw/types/page_related_article.py +127 -0
  1994. pixlib/raw/types/page_table_cell.py +124 -0
  1995. pixlib/raw/types/page_table_row.py +72 -0
  1996. pixlib/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +96 -0
  1997. pixlib/raw/types/password_kdf_algo_unknown.py +67 -0
  1998. pixlib/raw/types/payment_charge.py +80 -0
  1999. pixlib/raw/types/payment_form_method.py +80 -0
  2000. pixlib/raw/types/payment_requested_info.py +103 -0
  2001. pixlib/raw/types/payment_saved_credentials_card.py +80 -0
  2002. pixlib/raw/types/payments/__init__.py +32 -0
  2003. pixlib/raw/types/payments/bank_card_data.py +89 -0
  2004. pixlib/raw/types/payments/exported_invoice.py +81 -0
  2005. pixlib/raw/types/payments/payment_form.py +210 -0
  2006. pixlib/raw/types/payments/payment_receipt.py +194 -0
  2007. pixlib/raw/types/payments/payment_result.py +81 -0
  2008. pixlib/raw/types/payments/payment_verification_needed.py +81 -0
  2009. pixlib/raw/types/payments/saved_info.py +91 -0
  2010. pixlib/raw/types/payments/validated_requested_info.py +94 -0
  2011. pixlib/raw/types/peer_blocked.py +80 -0
  2012. pixlib/raw/types/peer_channel.py +72 -0
  2013. pixlib/raw/types/peer_chat.py +72 -0
  2014. pixlib/raw/types/peer_located.py +88 -0
  2015. pixlib/raw/types/peer_notify_settings.py +132 -0
  2016. pixlib/raw/types/peer_self_located.py +72 -0
  2017. pixlib/raw/types/peer_settings.py +147 -0
  2018. pixlib/raw/types/peer_user.py +72 -0
  2019. pixlib/raw/types/phone/__init__.py +31 -0
  2020. pixlib/raw/types/phone/exported_group_call_invite.py +81 -0
  2021. pixlib/raw/types/phone/group_call.py +113 -0
  2022. pixlib/raw/types/phone/group_call_stream_channels.py +81 -0
  2023. pixlib/raw/types/phone/group_call_stream_rtmp_url.py +89 -0
  2024. pixlib/raw/types/phone/group_participants.py +121 -0
  2025. pixlib/raw/types/phone/join_as_peers.py +97 -0
  2026. pixlib/raw/types/phone/phone_call.py +91 -0
  2027. pixlib/raw/types/phone_call.py +158 -0
  2028. pixlib/raw/types/phone_call_accepted.py +128 -0
  2029. pixlib/raw/types/phone_call_discard_reason_busy.py +67 -0
  2030. pixlib/raw/types/phone_call_discard_reason_disconnect.py +67 -0
  2031. pixlib/raw/types/phone_call_discard_reason_hangup.py +67 -0
  2032. pixlib/raw/types/phone_call_discard_reason_missed.py +67 -0
  2033. pixlib/raw/types/phone_call_discarded.py +111 -0
  2034. pixlib/raw/types/phone_call_empty.py +72 -0
  2035. pixlib/raw/types/phone_call_protocol.py +102 -0
  2036. pixlib/raw/types/phone_call_requested.py +128 -0
  2037. pixlib/raw/types/phone_call_waiting.py +129 -0
  2038. pixlib/raw/types/phone_connection.py +112 -0
  2039. pixlib/raw/types/phone_connection_webrtc.py +126 -0
  2040. pixlib/raw/types/photo.py +130 -0
  2041. pixlib/raw/types/photo_cached_size.py +96 -0
  2042. pixlib/raw/types/photo_empty.py +72 -0
  2043. pixlib/raw/types/photo_path_size.py +80 -0
  2044. pixlib/raw/types/photo_size.py +96 -0
  2045. pixlib/raw/types/photo_size_empty.py +72 -0
  2046. pixlib/raw/types/photo_size_progressive.py +96 -0
  2047. pixlib/raw/types/photo_stripped_size.py +80 -0
  2048. pixlib/raw/types/photos/__init__.py +27 -0
  2049. pixlib/raw/types/photos/photo.py +90 -0
  2050. pixlib/raw/types/photos/photos.py +89 -0
  2051. pixlib/raw/types/photos/photos_slice.py +97 -0
  2052. pixlib/raw/types/poll.py +132 -0
  2053. pixlib/raw/types/poll_answer.py +80 -0
  2054. pixlib/raw/types/poll_answer_voters.py +94 -0
  2055. pixlib/raw/types/poll_results.py +120 -0
  2056. pixlib/raw/types/pong.py +90 -0
  2057. pixlib/raw/types/popular_contact.py +80 -0
  2058. pixlib/raw/types/post_address.py +112 -0
  2059. pixlib/raw/types/pq_inner_data.py +112 -0
  2060. pixlib/raw/types/pq_inner_data_dc.py +120 -0
  2061. pixlib/raw/types/pq_inner_data_temp.py +120 -0
  2062. pixlib/raw/types/pq_inner_data_temp_dc.py +128 -0
  2063. pixlib/raw/types/premium_gift_option.py +107 -0
  2064. pixlib/raw/types/premium_subscription_option.py +119 -0
  2065. pixlib/raw/types/privacy_key_added_by_phone.py +67 -0
  2066. pixlib/raw/types/privacy_key_chat_invite.py +67 -0
  2067. pixlib/raw/types/privacy_key_forwards.py +67 -0
  2068. pixlib/raw/types/privacy_key_phone_call.py +67 -0
  2069. pixlib/raw/types/privacy_key_phone_number.py +67 -0
  2070. pixlib/raw/types/privacy_key_phone_p2_p.py +67 -0
  2071. pixlib/raw/types/privacy_key_profile_photo.py +67 -0
  2072. pixlib/raw/types/privacy_key_status_timestamp.py +67 -0
  2073. pixlib/raw/types/privacy_key_voice_messages.py +67 -0
  2074. pixlib/raw/types/privacy_value_allow_all.py +67 -0
  2075. pixlib/raw/types/privacy_value_allow_chat_participants.py +72 -0
  2076. pixlib/raw/types/privacy_value_allow_contacts.py +67 -0
  2077. pixlib/raw/types/privacy_value_allow_users.py +72 -0
  2078. pixlib/raw/types/privacy_value_disallow_all.py +67 -0
  2079. pixlib/raw/types/privacy_value_disallow_chat_participants.py +72 -0
  2080. pixlib/raw/types/privacy_value_disallow_contacts.py +67 -0
  2081. pixlib/raw/types/privacy_value_disallow_users.py +72 -0
  2082. pixlib/raw/types/reaction_count.py +91 -0
  2083. pixlib/raw/types/reaction_custom_emoji.py +72 -0
  2084. pixlib/raw/types/reaction_emoji.py +72 -0
  2085. pixlib/raw/types/reaction_empty.py +67 -0
  2086. pixlib/raw/types/received_notify_message.py +89 -0
  2087. pixlib/raw/types/recent_me_url_chat.py +80 -0
  2088. pixlib/raw/types/recent_me_url_chat_invite.py +80 -0
  2089. pixlib/raw/types/recent_me_url_sticker_set.py +80 -0
  2090. pixlib/raw/types/recent_me_url_unknown.py +72 -0
  2091. pixlib/raw/types/recent_me_url_user.py +80 -0
  2092. pixlib/raw/types/reply_inline_markup.py +72 -0
  2093. pixlib/raw/types/reply_keyboard_force_reply.py +87 -0
  2094. pixlib/raw/types/reply_keyboard_hide.py +72 -0
  2095. pixlib/raw/types/reply_keyboard_markup.py +101 -0
  2096. pixlib/raw/types/res_pq.py +106 -0
  2097. pixlib/raw/types/restriction_reason.py +88 -0
  2098. pixlib/raw/types/rpc_answer_dropped.py +97 -0
  2099. pixlib/raw/types/rpc_answer_dropped_running.py +76 -0
  2100. pixlib/raw/types/rpc_answer_unknown.py +76 -0
  2101. pixlib/raw/types/rpc_error.py +80 -0
  2102. pixlib/raw/types/rpc_result.py +80 -0
  2103. pixlib/raw/types/saved_phone_contact.py +105 -0
  2104. pixlib/raw/types/search_result_position.py +88 -0
  2105. pixlib/raw/types/search_results_calendar_period.py +96 -0
  2106. pixlib/raw/types/secure_credentials_encrypted.py +88 -0
  2107. pixlib/raw/types/secure_data.py +88 -0
  2108. pixlib/raw/types/secure_file.py +120 -0
  2109. pixlib/raw/types/secure_file_empty.py +67 -0
  2110. pixlib/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +72 -0
  2111. pixlib/raw/types/secure_password_kdf_algo_sha512.py +72 -0
  2112. pixlib/raw/types/secure_password_kdf_algo_unknown.py +67 -0
  2113. pixlib/raw/types/secure_plain_email.py +72 -0
  2114. pixlib/raw/types/secure_plain_phone.py +72 -0
  2115. pixlib/raw/types/secure_required_type.py +92 -0
  2116. pixlib/raw/types/secure_required_type_one_of.py +72 -0
  2117. pixlib/raw/types/secure_secret_settings.py +88 -0
  2118. pixlib/raw/types/secure_value.py +163 -0
  2119. pixlib/raw/types/secure_value_error.py +88 -0
  2120. pixlib/raw/types/secure_value_error_data.py +96 -0
  2121. pixlib/raw/types/secure_value_error_file.py +88 -0
  2122. pixlib/raw/types/secure_value_error_files.py +88 -0
  2123. pixlib/raw/types/secure_value_error_front_side.py +88 -0
  2124. pixlib/raw/types/secure_value_error_reverse_side.py +88 -0
  2125. pixlib/raw/types/secure_value_error_selfie.py +88 -0
  2126. pixlib/raw/types/secure_value_error_translation_file.py +88 -0
  2127. pixlib/raw/types/secure_value_error_translation_files.py +88 -0
  2128. pixlib/raw/types/secure_value_hash.py +80 -0
  2129. pixlib/raw/types/secure_value_type_address.py +67 -0
  2130. pixlib/raw/types/secure_value_type_bank_statement.py +67 -0
  2131. pixlib/raw/types/secure_value_type_driver_license.py +67 -0
  2132. pixlib/raw/types/secure_value_type_email.py +67 -0
  2133. pixlib/raw/types/secure_value_type_identity_card.py +67 -0
  2134. pixlib/raw/types/secure_value_type_internal_passport.py +67 -0
  2135. pixlib/raw/types/secure_value_type_passport.py +67 -0
  2136. pixlib/raw/types/secure_value_type_passport_registration.py +67 -0
  2137. pixlib/raw/types/secure_value_type_personal_details.py +67 -0
  2138. pixlib/raw/types/secure_value_type_phone.py +67 -0
  2139. pixlib/raw/types/secure_value_type_rental_agreement.py +67 -0
  2140. pixlib/raw/types/secure_value_type_temporary_registration.py +67 -0
  2141. pixlib/raw/types/secure_value_type_utility_bill.py +67 -0
  2142. pixlib/raw/types/send_as_peer.py +80 -0
  2143. pixlib/raw/types/send_message_cancel_action.py +67 -0
  2144. pixlib/raw/types/send_message_choose_contact_action.py +67 -0
  2145. pixlib/raw/types/send_message_choose_sticker_action.py +67 -0
  2146. pixlib/raw/types/send_message_emoji_interaction.py +88 -0
  2147. pixlib/raw/types/send_message_emoji_interaction_seen.py +72 -0
  2148. pixlib/raw/types/send_message_game_play_action.py +67 -0
  2149. pixlib/raw/types/send_message_geo_location_action.py +67 -0
  2150. pixlib/raw/types/send_message_history_import_action.py +72 -0
  2151. pixlib/raw/types/send_message_record_audio_action.py +67 -0
  2152. pixlib/raw/types/send_message_record_round_action.py +67 -0
  2153. pixlib/raw/types/send_message_record_video_action.py +67 -0
  2154. pixlib/raw/types/send_message_typing_action.py +67 -0
  2155. pixlib/raw/types/send_message_upload_audio_action.py +72 -0
  2156. pixlib/raw/types/send_message_upload_document_action.py +72 -0
  2157. pixlib/raw/types/send_message_upload_photo_action.py +72 -0
  2158. pixlib/raw/types/send_message_upload_round_action.py +72 -0
  2159. pixlib/raw/types/send_message_upload_video_action.py +72 -0
  2160. pixlib/raw/types/server_dh_inner_data.py +112 -0
  2161. pixlib/raw/types/server_dh_params_fail.py +97 -0
  2162. pixlib/raw/types/server_dh_params_ok.py +97 -0
  2163. pixlib/raw/types/shipping_option.py +88 -0
  2164. pixlib/raw/types/simple_web_view_result_url.py +81 -0
  2165. pixlib/raw/types/speaking_in_group_call_action.py +67 -0
  2166. pixlib/raw/types/sponsored_message.py +151 -0
  2167. pixlib/raw/types/stats/__init__.py +27 -0
  2168. pixlib/raw/types/stats/broadcast_stats.py +193 -0
  2169. pixlib/raw/types/stats/megagroup_stats.py +209 -0
  2170. pixlib/raw/types/stats/message_stats.py +81 -0
  2171. pixlib/raw/types/stats_abs_value_and_prev.py +80 -0
  2172. pixlib/raw/types/stats_date_range_days.py +80 -0
  2173. pixlib/raw/types/stats_graph.py +92 -0
  2174. pixlib/raw/types/stats_graph_async.py +81 -0
  2175. pixlib/raw/types/stats_graph_error.py +81 -0
  2176. pixlib/raw/types/stats_group_top_admin.py +96 -0
  2177. pixlib/raw/types/stats_group_top_inviter.py +80 -0
  2178. pixlib/raw/types/stats_group_top_poster.py +88 -0
  2179. pixlib/raw/types/stats_percent_value.py +80 -0
  2180. pixlib/raw/types/stats_url.py +72 -0
  2181. pixlib/raw/types/sticker_keyword.py +80 -0
  2182. pixlib/raw/types/sticker_pack.py +80 -0
  2183. pixlib/raw/types/sticker_set.py +196 -0
  2184. pixlib/raw/types/sticker_set_covered.py +89 -0
  2185. pixlib/raw/types/sticker_set_full_covered.py +105 -0
  2186. pixlib/raw/types/sticker_set_multi_covered.py +89 -0
  2187. pixlib/raw/types/stickers/__init__.py +25 -0
  2188. pixlib/raw/types/stickers/suggested_short_name.py +81 -0
  2189. pixlib/raw/types/storage/__init__.py +34 -0
  2190. pixlib/raw/types/storage/file_gif.py +67 -0
  2191. pixlib/raw/types/storage/file_jpeg.py +67 -0
  2192. pixlib/raw/types/storage/file_mov.py +67 -0
  2193. pixlib/raw/types/storage/file_mp3.py +67 -0
  2194. pixlib/raw/types/storage/file_mp4.py +67 -0
  2195. pixlib/raw/types/storage/file_partial.py +67 -0
  2196. pixlib/raw/types/storage/file_pdf.py +67 -0
  2197. pixlib/raw/types/storage/file_png.py +67 -0
  2198. pixlib/raw/types/storage/file_unknown.py +67 -0
  2199. pixlib/raw/types/storage/file_webp.py +67 -0
  2200. pixlib/raw/types/text_anchor.py +80 -0
  2201. pixlib/raw/types/text_bold.py +72 -0
  2202. pixlib/raw/types/text_concat.py +72 -0
  2203. pixlib/raw/types/text_email.py +80 -0
  2204. pixlib/raw/types/text_empty.py +67 -0
  2205. pixlib/raw/types/text_fixed.py +72 -0
  2206. pixlib/raw/types/text_image.py +88 -0
  2207. pixlib/raw/types/text_italic.py +72 -0
  2208. pixlib/raw/types/text_marked.py +72 -0
  2209. pixlib/raw/types/text_phone.py +80 -0
  2210. pixlib/raw/types/text_plain.py +72 -0
  2211. pixlib/raw/types/text_strike.py +72 -0
  2212. pixlib/raw/types/text_subscript.py +72 -0
  2213. pixlib/raw/types/text_superscript.py +72 -0
  2214. pixlib/raw/types/text_underline.py +72 -0
  2215. pixlib/raw/types/text_url.py +88 -0
  2216. pixlib/raw/types/theme.py +165 -0
  2217. pixlib/raw/types/theme_settings.py +117 -0
  2218. pixlib/raw/types/top_peer.py +80 -0
  2219. pixlib/raw/types/top_peer_category_bots_inline.py +67 -0
  2220. pixlib/raw/types/top_peer_category_bots_pm.py +67 -0
  2221. pixlib/raw/types/top_peer_category_channels.py +67 -0
  2222. pixlib/raw/types/top_peer_category_correspondents.py +67 -0
  2223. pixlib/raw/types/top_peer_category_forward_chats.py +67 -0
  2224. pixlib/raw/types/top_peer_category_forward_users.py +67 -0
  2225. pixlib/raw/types/top_peer_category_groups.py +67 -0
  2226. pixlib/raw/types/top_peer_category_peers.py +88 -0
  2227. pixlib/raw/types/top_peer_category_phone_calls.py +67 -0
  2228. pixlib/raw/types/update_attach_menu_bots.py +67 -0
  2229. pixlib/raw/types/update_bot_callback_query.py +124 -0
  2230. pixlib/raw/types/update_bot_chat_invite_requester.py +112 -0
  2231. pixlib/raw/types/update_bot_commands.py +88 -0
  2232. pixlib/raw/types/update_bot_inline_query.py +118 -0
  2233. pixlib/raw/types/update_bot_inline_send.py +110 -0
  2234. pixlib/raw/types/update_bot_menu_button.py +80 -0
  2235. pixlib/raw/types/update_bot_precheckout_query.py +125 -0
  2236. pixlib/raw/types/update_bot_shipping_query.py +96 -0
  2237. pixlib/raw/types/update_bot_stopped.py +96 -0
  2238. pixlib/raw/types/update_bot_webhook_json.py +72 -0
  2239. pixlib/raw/types/update_bot_webhook_json_query.py +88 -0
  2240. pixlib/raw/types/update_channel.py +72 -0
  2241. pixlib/raw/types/update_channel_available_messages.py +80 -0
  2242. pixlib/raw/types/update_channel_message_forwards.py +88 -0
  2243. pixlib/raw/types/update_channel_message_views.py +88 -0
  2244. pixlib/raw/types/update_channel_participant.py +136 -0
  2245. pixlib/raw/types/update_channel_pinned_topic.py +83 -0
  2246. pixlib/raw/types/update_channel_read_messages_contents.py +91 -0
  2247. pixlib/raw/types/update_channel_too_long.py +83 -0
  2248. pixlib/raw/types/update_channel_user_typing.py +99 -0
  2249. pixlib/raw/types/update_channel_web_page.py +96 -0
  2250. pixlib/raw/types/update_chat.py +72 -0
  2251. pixlib/raw/types/update_chat_default_banned_rights.py +88 -0
  2252. pixlib/raw/types/update_chat_participant.py +136 -0
  2253. pixlib/raw/types/update_chat_participant_add.py +104 -0
  2254. pixlib/raw/types/update_chat_participant_admin.py +96 -0
  2255. pixlib/raw/types/update_chat_participant_delete.py +88 -0
  2256. pixlib/raw/types/update_chat_participants.py +72 -0
  2257. pixlib/raw/types/update_chat_user_typing.py +88 -0
  2258. pixlib/raw/types/update_config.py +67 -0
  2259. pixlib/raw/types/update_contacts_reset.py +67 -0
  2260. pixlib/raw/types/update_dc_options.py +72 -0
  2261. pixlib/raw/types/update_delete_channel_messages.py +96 -0
  2262. pixlib/raw/types/update_delete_messages.py +88 -0
  2263. pixlib/raw/types/update_delete_scheduled_messages.py +80 -0
  2264. pixlib/raw/types/update_dialog_filter.py +84 -0
  2265. pixlib/raw/types/update_dialog_filter_order.py +72 -0
  2266. pixlib/raw/types/update_dialog_filters.py +67 -0
  2267. pixlib/raw/types/update_dialog_pinned.py +89 -0
  2268. pixlib/raw/types/update_dialog_unread_mark.py +80 -0
  2269. pixlib/raw/types/update_draft_message.py +91 -0
  2270. pixlib/raw/types/update_edit_channel_message.py +88 -0
  2271. pixlib/raw/types/update_edit_message.py +88 -0
  2272. pixlib/raw/types/update_encrypted_chat_typing.py +72 -0
  2273. pixlib/raw/types/update_encrypted_messages_read.py +88 -0
  2274. pixlib/raw/types/update_encryption.py +80 -0
  2275. pixlib/raw/types/update_faved_stickers.py +67 -0
  2276. pixlib/raw/types/update_folder_peers.py +88 -0
  2277. pixlib/raw/types/update_geo_live_viewed.py +80 -0
  2278. pixlib/raw/types/update_group_call.py +80 -0
  2279. pixlib/raw/types/update_group_call_connection.py +80 -0
  2280. pixlib/raw/types/update_group_call_participants.py +88 -0
  2281. pixlib/raw/types/update_inline_bot_callback_query.py +116 -0
  2282. pixlib/raw/types/update_lang_pack.py +72 -0
  2283. pixlib/raw/types/update_lang_pack_too_long.py +72 -0
  2284. pixlib/raw/types/update_login_token.py +67 -0
  2285. pixlib/raw/types/update_message_extended_media.py +88 -0
  2286. pixlib/raw/types/update_message_id.py +80 -0
  2287. pixlib/raw/types/update_message_poll.py +92 -0
  2288. pixlib/raw/types/update_message_poll_vote.py +96 -0
  2289. pixlib/raw/types/update_message_reactions.py +99 -0
  2290. pixlib/raw/types/update_move_sticker_set_to_top.py +86 -0
  2291. pixlib/raw/types/update_new_channel_message.py +88 -0
  2292. pixlib/raw/types/update_new_encrypted_message.py +80 -0
  2293. pixlib/raw/types/update_new_message.py +88 -0
  2294. pixlib/raw/types/update_new_scheduled_message.py +72 -0
  2295. pixlib/raw/types/update_new_sticker_set.py +72 -0
  2296. pixlib/raw/types/update_notify_settings.py +80 -0
  2297. pixlib/raw/types/update_peer_blocked.py +80 -0
  2298. pixlib/raw/types/update_peer_history_ttl.py +83 -0
  2299. pixlib/raw/types/update_peer_located.py +72 -0
  2300. pixlib/raw/types/update_peer_settings.py +80 -0
  2301. pixlib/raw/types/update_pending_join_requests.py +88 -0
  2302. pixlib/raw/types/update_phone_call.py +72 -0
  2303. pixlib/raw/types/update_phone_call_signaling_data.py +80 -0
  2304. pixlib/raw/types/update_pinned_channel_messages.py +104 -0
  2305. pixlib/raw/types/update_pinned_dialogs.py +85 -0
  2306. pixlib/raw/types/update_pinned_messages.py +104 -0
  2307. pixlib/raw/types/update_privacy.py +80 -0
  2308. pixlib/raw/types/update_pts_changed.py +67 -0
  2309. pixlib/raw/types/update_read_channel_discussion_inbox.py +108 -0
  2310. pixlib/raw/types/update_read_channel_discussion_outbox.py +88 -0
  2311. pixlib/raw/types/update_read_channel_inbox.py +107 -0
  2312. pixlib/raw/types/update_read_channel_outbox.py +80 -0
  2313. pixlib/raw/types/update_read_featured_emoji_stickers.py +67 -0
  2314. pixlib/raw/types/update_read_featured_stickers.py +67 -0
  2315. pixlib/raw/types/update_read_history_inbox.py +115 -0
  2316. pixlib/raw/types/update_read_history_outbox.py +96 -0
  2317. pixlib/raw/types/update_read_messages_contents.py +88 -0
  2318. pixlib/raw/types/update_recent_emoji_statuses.py +67 -0
  2319. pixlib/raw/types/update_recent_reactions.py +67 -0
  2320. pixlib/raw/types/update_recent_stickers.py +67 -0
  2321. pixlib/raw/types/update_saved_gifs.py +67 -0
  2322. pixlib/raw/types/update_saved_ringtones.py +67 -0
  2323. pixlib/raw/types/update_service_notification.py +113 -0
  2324. pixlib/raw/types/update_short.py +168 -0
  2325. pixlib/raw/types/update_short_chat_message.py +282 -0
  2326. pixlib/raw/types/update_short_message.py +274 -0
  2327. pixlib/raw/types/update_short_sent_message.py +221 -0
  2328. pixlib/raw/types/update_sticker_sets.py +78 -0
  2329. pixlib/raw/types/update_sticker_sets_order.py +86 -0
  2330. pixlib/raw/types/update_theme.py +72 -0
  2331. pixlib/raw/types/update_transcribed_audio.py +104 -0
  2332. pixlib/raw/types/update_user_emoji_status.py +80 -0
  2333. pixlib/raw/types/update_user_name.py +96 -0
  2334. pixlib/raw/types/update_user_phone.py +80 -0
  2335. pixlib/raw/types/update_user_photo.py +96 -0
  2336. pixlib/raw/types/update_user_status.py +80 -0
  2337. pixlib/raw/types/update_user_typing.py +80 -0
  2338. pixlib/raw/types/update_web_page.py +88 -0
  2339. pixlib/raw/types/update_web_view_result_sent.py +72 -0
  2340. pixlib/raw/types/updates/__init__.py +32 -0
  2341. pixlib/raw/types/updates/channel_difference.py +130 -0
  2342. pixlib/raw/types/updates/channel_difference_empty.py +98 -0
  2343. pixlib/raw/types/updates/channel_difference_too_long.py +122 -0
  2344. pixlib/raw/types/updates/difference.py +121 -0
  2345. pixlib/raw/types/updates/difference_empty.py +89 -0
  2346. pixlib/raw/types/updates/difference_slice.py +121 -0
  2347. pixlib/raw/types/updates/difference_too_long.py +81 -0
  2348. pixlib/raw/types/updates/state.py +113 -0
  2349. pixlib/raw/types/updates_combined.py +200 -0
  2350. pixlib/raw/types/updates_t.py +192 -0
  2351. pixlib/raw/types/updates_too_long.py +155 -0
  2352. pixlib/raw/types/upload/__init__.py +29 -0
  2353. pixlib/raw/types/upload/cdn_file.py +81 -0
  2354. pixlib/raw/types/upload/cdn_file_reupload_needed.py +81 -0
  2355. pixlib/raw/types/upload/file.py +97 -0
  2356. pixlib/raw/types/upload/file_cdn_redirect.py +113 -0
  2357. pixlib/raw/types/upload/web_file.py +113 -0
  2358. pixlib/raw/types/url_auth_result_accepted.py +82 -0
  2359. pixlib/raw/types/url_auth_result_default.py +77 -0
  2360. pixlib/raw/types/url_auth_result_request.py +98 -0
  2361. pixlib/raw/types/user.py +320 -0
  2362. pixlib/raw/types/user_empty.py +84 -0
  2363. pixlib/raw/types/user_full.py +244 -0
  2364. pixlib/raw/types/user_profile_photo.py +97 -0
  2365. pixlib/raw/types/user_profile_photo_empty.py +67 -0
  2366. pixlib/raw/types/user_status_empty.py +67 -0
  2367. pixlib/raw/types/user_status_last_month.py +67 -0
  2368. pixlib/raw/types/user_status_last_week.py +67 -0
  2369. pixlib/raw/types/user_status_offline.py +72 -0
  2370. pixlib/raw/types/user_status_online.py +72 -0
  2371. pixlib/raw/types/user_status_recently.py +67 -0
  2372. pixlib/raw/types/username.py +86 -0
  2373. pixlib/raw/types/users/__init__.py +25 -0
  2374. pixlib/raw/types/users/user_full.py +97 -0
  2375. pixlib/raw/types/video_size.py +107 -0
  2376. pixlib/raw/types/wall_paper.py +143 -0
  2377. pixlib/raw/types/wall_paper_no_file.py +107 -0
  2378. pixlib/raw/types/wall_paper_settings.py +132 -0
  2379. pixlib/raw/types/web_authorization.py +136 -0
  2380. pixlib/raw/types/web_document.py +104 -0
  2381. pixlib/raw/types/web_document_no_proxy.py +96 -0
  2382. pixlib/raw/types/web_page.py +237 -0
  2383. pixlib/raw/types/web_page_attribute_theme.py +86 -0
  2384. pixlib/raw/types/web_page_empty.py +81 -0
  2385. pixlib/raw/types/web_page_not_modified.py +84 -0
  2386. pixlib/raw/types/web_page_pending.py +89 -0
  2387. pixlib/raw/types/web_view_message_sent.py +85 -0
  2388. pixlib/raw/types/web_view_result_url.py +89 -0
  2389. pixlib/session/__init__.py +2 -0
  2390. pixlib/session/auth.py +243 -0
  2391. pixlib/session/internals/__init__.py +3 -0
  2392. pixlib/session/internals/data_center.py +63 -0
  2393. pixlib/session/internals/msg_factory.py +20 -0
  2394. pixlib/session/internals/msg_id.py +27 -0
  2395. pixlib/session/internals/seq_no.py +16 -0
  2396. pixlib/session/session.py +363 -0
  2397. pixlib/storage/__init__.py +3 -0
  2398. pixlib/storage/file_storage.py +54 -0
  2399. pixlib/storage/memory_storage.py +55 -0
  2400. pixlib/storage/sqlite_storage.py +210 -0
  2401. pixlib/storage/storage.py +73 -0
  2402. pixlib/sync.py +95 -0
  2403. pixlib/types/__init__.py +10 -0
  2404. pixlib/types/authorization/__init__.py +4 -0
  2405. pixlib/types/authorization/sent_code.py +44 -0
  2406. pixlib/types/authorization/terms_of_service.py +38 -0
  2407. pixlib/types/bots_and_keyboards/__init__.py +53 -0
  2408. pixlib/types/bots_and_keyboards/bot_command.py +35 -0
  2409. pixlib/types/bots_and_keyboards/bot_command_scope.py +55 -0
  2410. pixlib/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +14 -0
  2411. pixlib/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +14 -0
  2412. pixlib/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +14 -0
  2413. pixlib/types/bots_and_keyboards/bot_command_scope_chat.py +25 -0
  2414. pixlib/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +25 -0
  2415. pixlib/types/bots_and_keyboards/bot_command_scope_chat_member.py +30 -0
  2416. pixlib/types/bots_and_keyboards/bot_command_scope_default.py +15 -0
  2417. pixlib/types/bots_and_keyboards/callback_game.py +11 -0
  2418. pixlib/types/bots_and_keyboards/callback_query.py +295 -0
  2419. pixlib/types/bots_and_keyboards/force_reply.py +48 -0
  2420. pixlib/types/bots_and_keyboards/game_high_score.py +52 -0
  2421. pixlib/types/bots_and_keyboards/inline_keyboard_button.py +190 -0
  2422. pixlib/types/bots_and_keyboards/inline_keyboard_markup.py +58 -0
  2423. pixlib/types/bots_and_keyboards/keyboard_button.py +77 -0
  2424. pixlib/types/bots_and_keyboards/login_url.py +72 -0
  2425. pixlib/types/bots_and_keyboards/menu_button.py +26 -0
  2426. pixlib/types/bots_and_keyboards/menu_button_commands.py +14 -0
  2427. pixlib/types/bots_and_keyboards/menu_button_default.py +14 -0
  2428. pixlib/types/bots_and_keyboards/menu_button_web_app.py +33 -0
  2429. pixlib/types/bots_and_keyboards/reply_keyboard_markup.py +86 -0
  2430. pixlib/types/bots_and_keyboards/reply_keyboard_remove.py +40 -0
  2431. pixlib/types/bots_and_keyboards/sent_web_app_message.py +24 -0
  2432. pixlib/types/bots_and_keyboards/web_app_info.py +19 -0
  2433. pixlib/types/inline_mode/__init__.py +29 -0
  2434. pixlib/types/inline_mode/chosen_inline_result.py +81 -0
  2435. pixlib/types/inline_mode/inline_query.py +163 -0
  2436. pixlib/types/inline_mode/inline_query_result.py +45 -0
  2437. pixlib/types/inline_mode/inline_query_result_animation.py +137 -0
  2438. pixlib/types/inline_mode/inline_query_result_article.py +81 -0
  2439. pixlib/types/inline_mode/inline_query_result_audio.py +102 -0
  2440. pixlib/types/inline_mode/inline_query_result_cached_animation.py +90 -0
  2441. pixlib/types/inline_mode/inline_query_result_cached_audio.py +83 -0
  2442. pixlib/types/inline_mode/inline_query_result_cached_document.py +95 -0
  2443. pixlib/types/inline_mode/inline_query_result_cached_photo.py +93 -0
  2444. pixlib/types/inline_mode/inline_query_result_cached_sticker.py +60 -0
  2445. pixlib/types/inline_mode/inline_query_result_cached_video.py +96 -0
  2446. pixlib/types/inline_mode/inline_query_result_cached_voice.py +90 -0
  2447. pixlib/types/inline_mode/inline_query_result_contact.py +96 -0
  2448. pixlib/types/inline_mode/inline_query_result_document.py +127 -0
  2449. pixlib/types/inline_mode/inline_query_result_location.py +104 -0
  2450. pixlib/types/inline_mode/inline_query_result_photo.py +129 -0
  2451. pixlib/types/inline_mode/inline_query_result_venue.py +113 -0
  2452. pixlib/types/inline_mode/inline_query_result_video.py +133 -0
  2453. pixlib/types/inline_mode/inline_query_result_voice.py +96 -0
  2454. pixlib/types/input_media/__init__.py +12 -0
  2455. pixlib/types/input_media/input_media.py +31 -0
  2456. pixlib/types/input_media/input_media_animation.py +62 -0
  2457. pixlib/types/input_media/input_media_audio.py +64 -0
  2458. pixlib/types/input_media/input_media_document.py +47 -0
  2459. pixlib/types/input_media/input_media_photo.py +39 -0
  2460. pixlib/types/input_media/input_media_video.py +68 -0
  2461. pixlib/types/input_media/input_phone_contact.py +33 -0
  2462. pixlib/types/input_message_content/__init__.py +6 -0
  2463. pixlib/types/input_message_content/input_message_content.py +22 -0
  2464. pixlib/types/input_message_content/input_text_message_content.py +50 -0
  2465. pixlib/types/list.py +12 -0
  2466. pixlib/types/messages_and_media/__init__.py +29 -0
  2467. pixlib/types/messages_and_media/animation.py +103 -0
  2468. pixlib/types/messages_and_media/audio.py +103 -0
  2469. pixlib/types/messages_and_media/contact.py +53 -0
  2470. pixlib/types/messages_and_media/dice.py +29 -0
  2471. pixlib/types/messages_and_media/document.py +80 -0
  2472. pixlib/types/messages_and_media/game.py +81 -0
  2473. pixlib/types/messages_and_media/location.py +37 -0
  2474. pixlib/types/messages_and_media/message.py +3629 -0
  2475. pixlib/types/messages_and_media/message_entity.py +106 -0
  2476. pixlib/types/messages_and_media/message_reactions.py +38 -0
  2477. pixlib/types/messages_and_media/photo.py +112 -0
  2478. pixlib/types/messages_and_media/poll.py +185 -0
  2479. pixlib/types/messages_and_media/poll_option.py +32 -0
  2480. pixlib/types/messages_and_media/reaction.py +68 -0
  2481. pixlib/types/messages_and_media/sticker.py +188 -0
  2482. pixlib/types/messages_and_media/stripped_thumbnail.py +29 -0
  2483. pixlib/types/messages_and_media/thumbnail.py +93 -0
  2484. pixlib/types/messages_and_media/venue.py +56 -0
  2485. pixlib/types/messages_and_media/video.py +116 -0
  2486. pixlib/types/messages_and_media/video_note.py +90 -0
  2487. pixlib/types/messages_and_media/voice.py +78 -0
  2488. pixlib/types/messages_and_media/web_app_data.py +33 -0
  2489. pixlib/types/messages_and_media/web_page.py +169 -0
  2490. pixlib/types/object.py +103 -0
  2491. pixlib/types/update.py +9 -0
  2492. pixlib/types/user_and_chats/__init__.py +49 -0
  2493. pixlib/types/user_and_chats/chat.py +954 -0
  2494. pixlib/types/user_and_chats/chat_admin_with_invite_links.py +45 -0
  2495. pixlib/types/user_and_chats/chat_event.py +471 -0
  2496. pixlib/types/user_and_chats/chat_event_filter.py +157 -0
  2497. pixlib/types/user_and_chats/chat_invite_link.py +112 -0
  2498. pixlib/types/user_and_chats/chat_join_request.py +121 -0
  2499. pixlib/types/user_and_chats/chat_joiner.py +64 -0
  2500. pixlib/types/user_and_chats/chat_member.py +209 -0
  2501. pixlib/types/user_and_chats/chat_member_updated.py +84 -0
  2502. pixlib/types/user_and_chats/chat_permissions.py +80 -0
  2503. pixlib/types/user_and_chats/chat_photo.py +89 -0
  2504. pixlib/types/user_and_chats/chat_preview.py +61 -0
  2505. pixlib/types/user_and_chats/chat_privileges.py +94 -0
  2506. pixlib/types/user_and_chats/chat_reactions.py +51 -0
  2507. pixlib/types/user_and_chats/dialog.py +61 -0
  2508. pixlib/types/user_and_chats/emoji_status.py +59 -0
  2509. pixlib/types/user_and_chats/invite_link_importer.py +43 -0
  2510. pixlib/types/user_and_chats/restriction.py +32 -0
  2511. pixlib/types/user_and_chats/user.py +390 -0
  2512. pixlib/types/user_and_chats/video_chat_ended.py +23 -0
  2513. pixlib/types/user_and_chats/video_chat_members_invited.py +32 -0
  2514. pixlib/types/user_and_chats/video_chat_scheduled.py +25 -0
  2515. pixlib/types/user_and_chats/video_chat_started.py +11 -0
  2516. pixlib/utils.py +353 -0
  2517. pixlib-1.0.dist-info/LICENSE +661 -0
  2518. pixlib-1.0.dist-info/METADATA +47 -0
  2519. pixlib-1.0.dist-info/NOTICE +17 -0
  2520. pixlib-1.0.dist-info/RECORD +2522 -0
  2521. pixlib-1.0.dist-info/WHEEL +5 -0
  2522. pixlib-1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,429 @@
1
+ class Weebify:
2
+ NORMIE_FONT = [
3
+ "a",
4
+ "b",
5
+ "c",
6
+ "d",
7
+ "e",
8
+ "f",
9
+ "g",
10
+ "h",
11
+ "i",
12
+ "j",
13
+ "k",
14
+ "l",
15
+ "m",
16
+ "n",
17
+ "o",
18
+ "p",
19
+ "q",
20
+ "r",
21
+ "s",
22
+ "t",
23
+ "u",
24
+ "v",
25
+ "w",
26
+ "x",
27
+ "y",
28
+ "z",
29
+ ]
30
+ WEEBY_FONT = [
31
+ "卂",
32
+ "乃",
33
+ "匚",
34
+ "刀",
35
+ "乇",
36
+ "下",
37
+ "厶",
38
+ "卄",
39
+ "工",
40
+ "丁",
41
+ "长",
42
+ "乚",
43
+ "从",
44
+ "𠘨",
45
+ "口",
46
+ "尸",
47
+ "㔿",
48
+ "尺",
49
+ "丂",
50
+ "丅",
51
+ "凵",
52
+ "リ",
53
+ "山",
54
+ "乂",
55
+ "丫",
56
+ "乙",
57
+ ]
58
+
59
+
60
+ class Fs:
61
+ @property
62
+ def F(self):
63
+ paytext = "FF"
64
+ pay = "{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}".format(
65
+ paytext * 8,
66
+ paytext * 8,
67
+ paytext * 2,
68
+ paytext * 2,
69
+ paytext * 2,
70
+ paytext * 6,
71
+ paytext * 6,
72
+ paytext * 2,
73
+ paytext * 2,
74
+ paytext * 2,
75
+ paytext * 2,
76
+ paytext * 2,
77
+ )
78
+
79
+ return pay
80
+
81
+ BIG_F = "██████╗\n" "██╔═══╝\n" "█████╗\n" "██╔══╝\n" "██║\n" "╚═╝"
82
+
83
+ FANCY_F = (
84
+ "⠀⠀⠀⢀⡤⢶⣶⣶⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n"
85
+ "⠀⠀⢀⣠⣤⣤⣤⣿⣧⣀⣀⣀⣀⣀⣀⣀⣀⣤⡄⠀\n"
86
+ "⢠⣾⡟⠋⠁⠀⠀⣸⠇⠈⣿⣿⡟⠉⠉⠉⠙⠻⣿⡀\n"
87
+ "⢺⣿⡀⠀⠀⢀⡴⠋⠀⠀⣿⣿⡇⠀⠀⠀⠀⠀⠙⠇\n"
88
+ "⠈⠛⠿⠶⠚⠋⣀⣤⣤⣤⣿⣿⣇⣀⣀⣴⡆⠀⠀⠀\n"
89
+ "⠀⠀⠀⠀⠠⡞⠋⠀⠀⠀⣿⣿⡏⠉⠛⠻⣿⡀⠀⠀\n"
90
+ "⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡇⠀⠀⠀⠈⠁⠀⠀\n"
91
+ "⠀⠀⣠⣶⣶⣶⣶⡄⠀⠀⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀\n"
92
+ "⠀⢰⣿⠟⠉⠙⢿⡟⠀⠀⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀\n"
93
+ "⠀⢸⡟⠀⠀⠀⠘⠀⠀⠀⣿⣿⠃⠀⠀⠀⠀⠀⠀⠀\n"
94
+ "⠀⠈⢿⡄⠀⠀⠀⠀⠀⣼⣿⠏⠀⠀⠀⠀⠀⠀⠀⠀\n"
95
+ "⠀⠀⠀⠙⠷⠶⠶⠶⠿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀\n"
96
+ )
97
+
98
+
99
+ class Eval:
100
+ RUNNING = "**Expression:**\n```{}```\n\n**Running...**"
101
+ ERROR = "**Expression:**\n```{}```\n\n**Error:**\n```{}```"
102
+ SUCCESS = "**Expression:**\n```{}```\n\n**Success** | `None`"
103
+ RESULT = "**Expression:**\n```{}```\n\n**Result:**\n```{}```"
104
+ RESULT_FILE = "**Expression:**\n```{}```\n\n**Result:**\nView `output.txt` below ⤵"
105
+
106
+ ERROR_LOG = (
107
+ "**Evaluation Query**\n"
108
+ "```{}```\n"
109
+ 'erred in chat "[{}](t.me/c/{}/{})" with error\n'
110
+ "```{}```"
111
+ )
112
+
113
+ SUCCESS_LOG = "Evaluation Query\n" "```{}```\n" 'succeeded in "[{}](t.me/c/{}/{})"'
114
+
115
+ RESULT_LOG = (
116
+ "Evaluation Query\n" "```{}```\n" 'executed in chat "[{}](t.me/c/{}/{})".'
117
+ )
118
+
119
+
120
+ class WWW:
121
+ SpeedTest = (
122
+ "Speedtest started at `{start}`\n\n"
123
+ "Ping:\n{ping} ms\n\n"
124
+ "Download:\n{download}\n\n"
125
+ "Upload:\n{upload}\n\n"
126
+ "ISP:\n__{isp}__"
127
+ )
128
+
129
+ NearestDC = "Country: `{}`\n" "Nearest Datacenter: `{}`\n" "This Datacenter: `{}`"
130
+
131
+
132
+ class MEMES:
133
+ REVERSE = (
134
+ "⠐⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠂\n"
135
+ "⠄⠄⣰⣾⣿⣿⣿⠿⠿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣆⠄⠄\n"
136
+ "⠄⠄⣿⣿⣿⡿⠋⠄⡀⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠋⣉⣉⣉⡉⠙⠻⣿⣿⠄⠄\n"
137
+ "⠄⠄⣿⣿⣿⣇⠔⠈⣿⣿⣿⣿⣿⡿⠛⢉⣤⣶⣾⣿⣿⣿⣿⣿⣿⣦⡀⠹⠄⠄\n"
138
+ "⠄⠄⣿⣿⠃⠄⢠⣾⣿⣿⣿⠟⢁⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡄⠄⠄\n"
139
+ "⠄⠄⣿⣿⣿⣿⣿⣿⣿⠟⢁⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠄⠄\n"
140
+ "⠄⠄⣿⣿⣿⣿⣿⡟⠁⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠄⠄\n"
141
+ "⠄⠄⣿⣿⣿⣿⠋⢠⣾⣿⣿⣿⣿⣿⣿⡿⠿⠿⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⠄⠄\n"
142
+ "⠄⠄⣿⣿⡿⠁⣰⣿⣿⣿⣿⣿⣿⣿⣿⠗⠄⠄⠄⠄⣿⣿⣿⣿⣿⣿⣿⡟⠄⠄\n"
143
+ "⠄⠄⣿⡿⠁⣼⣿⣿⣿⣿⣿⣿⡿⠋⠄⠄⠄⣠⣄⢰⣿⣿⣿⣿⣿⣿⣿⠃⠄⠄\n"
144
+ "⠄⠄⡿⠁⣼⣿⣿⣿⣿⣿⣿⣿⡇⠄⢀⡴⠚⢿⣿⣿⣿⣿⣿⣿⣿⣿⡏⢠⠄⠄\n"
145
+ "⠄⠄⠃⢰⣿⣿⣿⣿⣿⣿⡿⣿⣿⠴⠋⠄⠄⢸⣿⣿⣿⣿⣿⣿⣿⡟⢀⣾⠄⠄\n"
146
+ "⠄⠄⢀⣿⣿⣿⣿⣿⣿⣿⠃⠈⠁⠄⠄⢀⣴⣿⣿⣿⣿⣿⣿⣿⡟⢀⣾⣿⠄⠄\n"
147
+ "⠄⠄⢸⣿⣿⣿⣿⣿⣿⣿⠄⠄⠄⠄⢶⣿⣿⣿⣿⣿⣿⣿⣿⠏⢀⣾⣿⣿⠄⠄\n"
148
+ "⠄⠄⣿⣿⣿⣿⣿⣿⣿⣷⣶⣶⣶⣶⣶⣿⣿⣿⣿⣿⣿⣿⠋⣠⣿⣿⣿⣿⠄⠄\n"
149
+ "⠄⠄⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⢁⣼⣿⣿⣿⣿⣿⠄⠄\n"
150
+ "⠄⠄⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⢁⣴⣿⣿⣿⣿⣿⣿⣿⠄⠄\n"
151
+ "⠄⠄⠈⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⢁⣴⣿⣿⣿⣿⠗⠄⠄⣿⣿⠄⠄\n"
152
+ "⠄⠄⣆⠈⠻⢿⣿⣿⣿⣿⣿⣿⠿⠛⣉⣤⣾⣿⣿⣿⣿⣿⣇⠠⠺⣷⣿⣿⠄⠄\n"
153
+ "⠄⠄⣿⣿⣦⣄⣈⣉⣉⣉⣡⣤⣶⣿⣿⣿⣿⣿⣿⣿⣿⠉⠁⣀⣼⣿⣿⣿⠄⠄\n"
154
+ "⠄⠄⠻⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣾⣿⣿⡿⠟⠄⠄\n"
155
+ "⠠⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄\n"
156
+ )
157
+
158
+ SLAP_TEMPLATES = [
159
+ "{hits} {victim} with a {item}.",
160
+ "{hits} {victim} in the face with a {item}.",
161
+ "{hits} {victim} around a bit with a {item}.",
162
+ "{throws} a {item} at {victim}.",
163
+ "grabs a {item} and {throws} it at {victim}'s face.",
164
+ "{hits} a {item} at {victim}.",
165
+ "{throws} a few {item} at {victim}.",
166
+ "grabs a {item} and {throws} it in {victim}'s face.",
167
+ "launches a {item} in {victim}'s general direction.",
168
+ "sits on {victim}'s face while slamming a {item} {where}.",
169
+ "starts slapping {victim} silly with a {item}.",
170
+ "pins {victim} down and repeatedly {hits} them with a {item}.",
171
+ "grabs up a {item} and {hits} {victim} with it.",
172
+ "starts slapping {victim} silly with a {item}.",
173
+ "holds {victim} down and repeatedly {hits} them with a {item}.",
174
+ "prods {victim} with a {item}.",
175
+ "picks up a {item} and {hits} {victim} with it.",
176
+ "ties {victim} to a chair and {throws} a {item} at them.",
177
+ "{hits} {victim} {where} with a {item}.",
178
+ "ties {victim} to a pole and whips them {where} with a {item}."
179
+ "gave a friendly push to help {victim} learn to swim in lava.",
180
+ "sent {victim} to /dev/null.",
181
+ "sent {victim} down the memory hole.",
182
+ "beheaded {victim}.",
183
+ "threw {victim} off a building.",
184
+ "replaced all of {victim}'s music with Nickelback.",
185
+ "spammed {victim}'s email.",
186
+ "made {victim} a knuckle sandwich.",
187
+ "slapped {victim} with pure nothing.",
188
+ "hit {victim} with a small, interstellar spaceship.",
189
+ "quickscoped {victim}.",
190
+ "put {victim} in check-mate.",
191
+ "RSA-encrypted {victim} and deleted the private key.",
192
+ "put {victim} in the friendzone.",
193
+ "slaps {victim} with a DMCA takedown request!",
194
+ ]
195
+
196
+ ITEMS = [
197
+ "cast iron skillet",
198
+ "large trout",
199
+ "baseball bat",
200
+ "cricket bat",
201
+ "wooden cane",
202
+ "nail",
203
+ "printer",
204
+ "shovel",
205
+ "pair of trousers",
206
+ "CRT monitor",
207
+ "diamond sword",
208
+ "baguette",
209
+ "physics textbook",
210
+ "toaster",
211
+ "portrait of Richard Stallman",
212
+ "television",
213
+ "mau5head",
214
+ "five ton truck",
215
+ "roll of duct tape",
216
+ "book",
217
+ "laptop",
218
+ "old television",
219
+ "sack of rocks",
220
+ "rainbow trout",
221
+ "cobblestone block",
222
+ "lava bucket",
223
+ "rubber chicken",
224
+ "spiked bat",
225
+ "gold block",
226
+ "fire extinguisher",
227
+ "heavy rock",
228
+ "chunk of dirt",
229
+ "beehive",
230
+ "piece of rotten meat",
231
+ "bear",
232
+ "ton of bricks",
233
+ ]
234
+
235
+ THROW = [
236
+ "throws",
237
+ "flings",
238
+ "chucks",
239
+ "hurls",
240
+ ]
241
+
242
+ HIT = [
243
+ "hits",
244
+ "whacks",
245
+ "slaps",
246
+ "smacks",
247
+ "bashes",
248
+ ]
249
+
250
+ WHERE = ["in the chest", "on the head", "on the butt", "on the crotch"]
251
+
252
+ REPLACEMENT_MAP = {
253
+ "a": "ɐ",
254
+ "b": "q",
255
+ "c": "ɔ",
256
+ "d": "p",
257
+ "e": "ǝ",
258
+ "f": "ɟ",
259
+ "g": "ƃ",
260
+ "h": "ɥ",
261
+ "i": "ᴉ",
262
+ "j": "ɾ",
263
+ "k": "ʞ",
264
+ "l": "l",
265
+ "m": "ɯ",
266
+ "n": "u",
267
+ "o": "o",
268
+ "p": "d",
269
+ "q": "b",
270
+ "r": "ɹ",
271
+ "s": "s",
272
+ "t": "ʇ",
273
+ "u": "n",
274
+ "v": "ʌ",
275
+ "w": "ʍ",
276
+ "x": "x",
277
+ "y": "ʎ",
278
+ "z": "z",
279
+ "A": "∀",
280
+ "B": "B",
281
+ "C": "Ɔ",
282
+ "D": "D",
283
+ "E": "Ǝ",
284
+ "F": "Ⅎ",
285
+ "G": "פ",
286
+ "H": "H",
287
+ "I": "I",
288
+ "J": "ſ",
289
+ "K": "K",
290
+ "L": "˥",
291
+ "M": "W",
292
+ "N": "N",
293
+ "O": "O",
294
+ "P": "Ԁ",
295
+ "Q": "Q",
296
+ "R": "R",
297
+ "S": "S",
298
+ "T": "┴",
299
+ "U": "∩",
300
+ "V": "Λ",
301
+ "W": "M",
302
+ "X": "X",
303
+ "Y": "⅄",
304
+ "Z": "Z",
305
+ "0": "0",
306
+ "1": "Ɩ",
307
+ "2": "ᄅ",
308
+ "3": "Ɛ",
309
+ "4": "ㄣ",
310
+ "5": "ϛ",
311
+ "6": "9",
312
+ "7": "ㄥ",
313
+ "8": "8",
314
+ "9": "6",
315
+ ",": "'",
316
+ ".": "˙",
317
+ "?": "¿",
318
+ "!": "¡",
319
+ '"': ",,",
320
+ "'": ",",
321
+ "(": ")",
322
+ ")": "(",
323
+ "[": "]",
324
+ "]": "[",
325
+ "{": "}",
326
+ "}": "{",
327
+ "<": ">",
328
+ ">": "<",
329
+ "&": "⅋",
330
+ "_": "‾",
331
+ }
332
+
333
+ SHRUGS = [
334
+ "┐(´д`)┌",
335
+ "┐(´~`)┌",
336
+ "┐(´ー`)┌",
337
+ "┐( ̄ヘ ̄)┌",
338
+ "╮(╯∀╰)╭",
339
+ "╮(╯_╰)╭",
340
+ "┐(´д`)┌",
341
+ "┐(´∀`)┌",
342
+ "ʅ(́◡◝)ʃ",
343
+ "┐(゚~゚)┌",
344
+ "┐('д')┌",
345
+ "┐(‘~`;)┌",
346
+ "ヘ(´-`;)ヘ",
347
+ "┐( -“-)┌",
348
+ "ʅ(´◔౪◔)ʃ",
349
+ "ヽ(゜~゜o)ノ",
350
+ "ヽ(~~~ )ノ",
351
+ "┐(~ー~;)┌",
352
+ "┐(-。ー;)┌",
353
+ r"¯\_(ツ)_/¯",
354
+ r"¯\_(⊙_ʖ⊙)_/¯",
355
+ r"¯\_༼ ಥ ‿ ಥ ༽_/¯",
356
+ "乁( ⁰͡ Ĺ̯ ⁰͡ ) ㄏ",
357
+ r"¯\_༼ •́ ͜ʖ •̀ ༽_/¯",
358
+ r"¯\_( ͡° ͜ʖ ͡°)_/¯",
359
+ r"¯\(°_o)/¯",
360
+ "┐( ∵ )┌",
361
+ r"¯\_༼ᴼل͜ᴼ༽_/¯",
362
+ "╮(. ❛ ᴗ ❛.)╭",
363
+ "乁༼◉‿◉✿༽ㄏ",
364
+ r"¯\(◉‿◉)/¯",
365
+ r"¯\_ʘ‿ʘ_/¯",
366
+ r"¯\_༼ ಥ ‿ ಥ ༽_/¯",
367
+ "╮(^▽^)╭",
368
+ "乁[ ◕ ᴥ ◕ ]ㄏ",
369
+ "乁[ᓀ˵▾˵ᓂ]ㄏ",
370
+ "┐(´(エ)`)┌",
371
+ "乁( ⁰͡ Ĺ̯ ⁰͡ ) ㄏ",
372
+ r"¯\_( ͠° ͟ʖ °͠ )_/¯",
373
+ "乁( •_• )ㄏ",
374
+ "乁| ・ 〰 ・ |ㄏ",
375
+ "┐(‘~;)┌",
376
+ "┐( ̄ヘ ̄)┌",
377
+ "┐(´д)┌",
378
+ "乁( . ര ʖ̯ ര . )ㄏ",
379
+ "乁 ˘ o ˘ ㄏ",
380
+ "乁ʕ •̀ ۝ •́ ʔㄏ",
381
+ r"¯\_(◕෴◕)_/¯",
382
+ r"¯\_〳 •̀ o •́ 〵_/¯",
383
+ "乁║ ˙ 益 ˙ ║ㄏ",
384
+ ]
385
+
386
+ BRAIN = [
387
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <)🗑",
388
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑",
389
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑",
390
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑",
391
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑",
392
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠<(^_^ <) 🗑",
393
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n(> ^_^)>🧠 🗑",
394
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑",
395
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑",
396
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑",
397
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑",
398
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠🗑",
399
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🗑",
400
+ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n <(^_^ <)🗑",
401
+ ]
402
+
403
+ COCK = (
404
+ "⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠿⠿⢿⣿⣿⠿⠛⠿⣿⣿⣿⣿⣿\n"
405
+ "⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠟⠉⠄⣀⡤⢤⣤⣈⠁⣠⡔⠶⣾⣿⣿⣿\n"
406
+ "⣿⣿⣿⣿⣿⣿⣿⡿⠛⠋⠁⠄⠄⠄⣼⣿⠁⡀⢹⣿⣷⢹⡇⠄⠎⣿⣿⣿\n"
407
+ "⣿⣿⣿⠿⠛⠉⠁⠄⠄⠄⠄⠄⠄⠄⠹⣇⣀⣡⣾⣿⡿⠉⠛⠒⠒⠋⠉⢸\n"
408
+ "⡿⠋⠁⠄⠄⢀⣤⣤⡀⠄⠄⠄⠄⠄⠄⠈⠙⠛⠛⠉⠄⠄⠄⠄⠄⠄⠄⠈\n"
409
+ "⠄⠄⠄⠄⠄⢹⣧⡈⠿⣷⣄⣀⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⢀⣠⢄⣾\n"
410
+ "⠄⠄⠄⠄⠄⠈⠻⢿⣶⣌⣙⡛⠛⠿⠶⠶⠶⠶⠶⠖⣒⣒⣚⣋⡩⢱⣾⣿\n"
411
+ "⠄⠄⠄⠄⠄⠄⠄⠄⠈⠉⠛⠛⠛⠻⠿⠿⠟⠛⠛⠛⠉⢉⣥⣶⣾⣿⣿⣿\n"
412
+ "⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠒⠶⣿⣿⣿⣿⣿⣿⣿⣿\n"
413
+ "⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠈⠻⣿⣿⣿⣿⣿⣿\n"
414
+ "⣿⡿⠛⠛⠛⢻⣿⠿⠛⠛⠛⢿⣿⣿⡿⠛⠛⠛⢻⡟⠛⣿⡿⠛⣻⣿⣿⣿\n"
415
+ "⡟⠄⣼⣿⣿⣿⡇⠄⣾⣿⣧⠄⢻⡏⠄⣼⣿⣿⣿⡇⠄⡟⢀⣴⣿⣿⣿⣿\n"
416
+ "⡇⠄⣿⣿⣿⣿⡄⠄⣿⣿⣿⠄⢸⡇⠄⣿⣿⣿⣿⡇⠄⣀⠈⢻⣿⣿⣿⣿\n"
417
+ "⣿⣄⠈⠙⠛⢻⣧⡄⠙⠛⠉⣠⣿⣷⣄⠈⠙⠛⢹⡇⠄⣿⣧⠄⠻⣿⣿⣿\n"
418
+ )
419
+
420
+ TABLE_FLIPS = [
421
+ '(╯°Д°)╯︵/(.□ . \)',
422
+ '(˚Õ˚)ر ~~~~╚╩╩╝',
423
+ '(ノಠ益ಠ)ノ彡┻━┻',
424
+ '(╯°□°)╯︵ ┻━┻',
425
+ '(┛◉Д◉)┛彡┻━┻',
426
+ '┻━┻︵ \(°□°)/ ︵ ┻━┻',
427
+ '(┛ಠ_ಠ)┛彡┻━┻',
428
+ '(╯°□°)╯︵ ʞooqǝɔɐℲ'
429
+ ]
@@ -0,0 +1,8 @@
1
+ from pyrogram.types import InlineKeyboardButton, WebAppInfo
2
+ from Pix import CMD_HNDLR as cmds
3
+ class Data:
4
+
5
+ text_help_menu = (
6
+ f"**Pix Pyro Help Menu**\n**Prefixes: **{cmds}"
7
+ )
8
+ reopen = [[InlineKeyboardButton("Open Menu", callback_data="reopen")]]
@@ -0,0 +1,98 @@
1
+ from math import ceil
2
+ from traceback import format_exc
3
+
4
+ from pyrogram.errors import MessageNotModified
5
+ from pyrogram.types import (
6
+ InlineKeyboardButton,
7
+ InlineQueryResultArticle,
8
+ InputTextMessageContent,
9
+ )
10
+
11
+ from Pix import ids as list_users
12
+
13
+ looters = None
14
+
15
+
16
+ def paginate_help(page_number, loaded_modules, prefix):
17
+ number_of_rows = 5
18
+ number_of_cols = 2
19
+ global looters
20
+ looters = page_number
21
+ helpable_modules = [p for p in loaded_modules if not p.startswith("_")]
22
+ helpable_modules = sorted(helpable_modules)
23
+ modules = [
24
+ InlineKeyboardButton(
25
+ text="{}".format(x),
26
+ callback_data=f"ub_modul_{x}",
27
+ )
28
+ for x in helpable_modules
29
+ ]
30
+ pairs = list(zip(modules[::number_of_cols], modules[1::number_of_cols]))
31
+ if len(modules) % number_of_cols == 1:
32
+ pairs.append((modules[-1],))
33
+ max_num_pages = ceil(len(pairs) / number_of_rows)
34
+ modulo_page = page_number % max_num_pages
35
+ if len(pairs) > number_of_rows:
36
+ pairs = pairs[
37
+ modulo_page * number_of_rows : number_of_rows * (modulo_page + 1)
38
+ ] + [
39
+ (
40
+ InlineKeyboardButton(
41
+ text="≼", callback_data=f"{prefix}_prev({modulo_page})"
42
+ ),
43
+ InlineKeyboardButton(text="ᴄʟᴏsᴇ", callback_data="close_help"),
44
+ InlineKeyboardButton(
45
+ text="≽", callback_data=f"{prefix}_next({modulo_page})"
46
+ ),
47
+ )
48
+ ]
49
+ return pairs
50
+
51
+
52
+ def cb_wrapper(func):
53
+ async def wrapper(client, cb):
54
+ users = list_users
55
+ if cb.from_user.id not in users:
56
+ await cb.answer(
57
+ "Why don't you make it yourself",
58
+ cache_time=0,
59
+ show_alert=True,
60
+ )
61
+ else:
62
+ try:
63
+ await func(client, cb)
64
+ except MessageNotModified:
65
+ await cb.answer("🤔🧐")
66
+ except Exception:
67
+ print(format_exc())
68
+ await cb.answer(
69
+ f"Oh No, SomeThing Isn't Right. Please Check Logs!",
70
+ cache_time=0,
71
+ show_alert=True,
72
+ )
73
+
74
+ return wrapper
75
+
76
+
77
+ def inline_wrapper(func):
78
+ async def wrapper(client, inline_query):
79
+ users = list_users
80
+ if inline_query.from_user.id not in users:
81
+ await client.answer_inline_query(
82
+ inline_query.id,
83
+ cache_time=1,
84
+ results=[
85
+ (
86
+ InlineQueryResultArticle(
87
+ title="Why don't you make it yourself",
88
+ input_message_content=InputTextMessageContent(
89
+ "You cannot access this Bot"
90
+ ),
91
+ )
92
+ )
93
+ ],
94
+ )
95
+ else:
96
+ await func(client, inline_query)
97
+
98
+ return wrapper
@@ -0,0 +1,97 @@
1
+ from math import ceil
2
+ from traceback import format_exc
3
+
4
+ from pyrogram.errors import MessageNotModified
5
+ from pyrogram.types import (
6
+ InlineKeyboardButton,
7
+ InlineQueryResultArticle,
8
+ InputTextMessageContent,
9
+ )
10
+
11
+ from Pix import ids as list_users
12
+
13
+ looters = None
14
+
15
+
16
+ def paginate_help(page_number, loaded_modules, prefix):
17
+ number_of_rows = 4
18
+ number_of_cols = 2
19
+ global looters
20
+ looters = page_number
21
+ helpable_modules = [p for p in loaded_modules if not p.startswith("_")]
22
+ helpable_modules = sorted(helpable_modules)
23
+ modules = [
24
+ InlineKeyboardButton(
25
+ text="{}".format(x),
26
+ callback_data=f"ub_modul_{x}",
27
+ )
28
+ for x in helpable_modules
29
+ ]
30
+ pairs = list(zip(modules[::number_of_cols], modules[1::number_of_cols]))
31
+ if len(modules) % number_of_cols == 1:
32
+ pairs.append((modules[-1],))
33
+ max_num_pages = ceil(len(pairs) / number_of_rows)
34
+ modulo_page = page_number % max_num_pages
35
+ if len(pairs) > number_of_rows:
36
+ pairs = pairs[
37
+ modulo_page * number_of_rows : number_of_rows * (modulo_page + 1)
38
+ ] + [
39
+ (
40
+ InlineKeyboardButton(
41
+ text="≼", callback_data=f"{prefix}_prev({modulo_page})"
42
+ ),
43
+ InlineKeyboardButton(
44
+ text="≽", callback_data=f"{prefix}_next({modulo_page})"
45
+ ),
46
+ )
47
+ ]
48
+ return pairs
49
+
50
+
51
+ def cb_wrapper(func):
52
+ async def wrapper(client, cb):
53
+ users = list_users
54
+ if cb.from_user.id not in users:
55
+ await cb.answer(
56
+ "Why don't you make it yourself",
57
+ cache_time=0,
58
+ show_alert=True,
59
+ )
60
+ else:
61
+ try:
62
+ await func(client, cb)
63
+ except MessageNotModified:
64
+ await cb.answer("🤔🧐")
65
+ except Exception:
66
+ print(format_exc())
67
+ await cb.answer(
68
+ f"Oh No, SomeThing Isn't Right. Please Check Logs!",
69
+ cache_time=0,
70
+ show_alert=True,
71
+ )
72
+
73
+ return wrapper
74
+
75
+
76
+ def inline_wrapper(func):
77
+ async def wrapper(client, inline_query):
78
+ users = list_users
79
+ if inline_query.from_user.id not in users:
80
+ await client.answer_inline_query(
81
+ inline_query.id,
82
+ cache_time=1,
83
+ results=[
84
+ (
85
+ InlineQueryResultArticle(
86
+ title="Why don't you make it yourself",
87
+ input_message_content=InputTextMessageContent(
88
+ "You cannot access this Bot"
89
+ ),
90
+ )
91
+ )
92
+ ],
93
+ )
94
+ else:
95
+ await func(client, inline_query)
96
+
97
+ return wrapper
@@ -0,0 +1,37 @@
1
+ import re
2
+
3
+
4
+ class IntervalHelper:
5
+ class IntervalError(Exception):
6
+ pass
7
+
8
+ interval_re = re.compile(r"^(\d+)(w|d|h|m)?$")
9
+
10
+ def __init__(self, _interval):
11
+ self._interval = _interval
12
+ if not self.interval_ok():
13
+ raise Exception("Invalid interval format.")
14
+
15
+ def interval_ok(self):
16
+ if IntervalHelper.interval_re.match(self._interval):
17
+ return True
18
+ return False
19
+
20
+ def to_secs(self):
21
+ m = IntervalHelper.interval_re.match(self._interval)
22
+ num, unit = m.groups()
23
+ num = int(num)
24
+
25
+ if not unit:
26
+ unit = "m"
27
+
28
+ if unit == "m":
29
+ return [num * 60, num, "minute" if num == 1 else "minutes"]
30
+ elif unit == "h":
31
+ return [num * 60 * 60, num, "hour" if num == 1 else "hours"]
32
+ elif unit == "d":
33
+ return [num * 60 * 60 * 24, num, "day" if num == 1 else "days"]
34
+ elif unit == "w":
35
+ return [num * 60 * 60 * 24 * 7, num, "week" if num == 1 else "weeks"]
36
+
37
+ interval = property(lambda self: self._interval)
@@ -0,0 +1,22 @@
1
+ import html
2
+ import re
3
+
4
+
5
+ def cleanhtml(raw_html):
6
+ cleanr = re.compile("<.*?>")
7
+ cleantext = re.sub(cleanr, "", raw_html)
8
+ return cleantext
9
+
10
+
11
+ def escape_markdown(text):
12
+ """Helper function to escape telegram markup symbols."""
13
+ escape_chars = r"\*_`\["
14
+ return re.sub(r"([%s])" % escape_chars, r"\\\1", text)
15
+
16
+
17
+ def mention_html(user_id, name):
18
+ return '<a href="tg://user?id={}">{}</a>'.format(user_id, html.escape(name))
19
+
20
+
21
+ def mention_markdown(user_id, name):
22
+ return "[{}](tg://user?id={})".format(escape_markdown(name), user_id)