
    5i}                        d Z ddlZddlmZ ddlmZ ddlmZ ddl	m
Z
mZ ddlmZ ddlmZ dd	lmZ dd
lmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZmZmZm Z  ddl!m"Z"m#Z#m$Z$ ddl%m&Z&m'Z' erddl(m)Z)m*Z*m+Z+m,Z,m-Z-  G d de      Z.y)zGThis module contains an object that represents a Telegram ChatFullInfo.    N)Sequence)TYPE_CHECKING)	Birthdate)Chat	_ChatBase)ChatLocation)ChatPermissions)Audio)	ChatPhoto)AcceptedGiftTypes)ReactionType)UniqueGiftColors)
UserRating)de_json_optionalde_list_optionalparse_sequence_argto_timedelta)extract_tzinfo_from_defaultsfrom_timestampget_timedelta_value)JSONDict
TimePeriod)BotBusinessIntroBusinessLocationBusinessOpeningHoursMessagec            k           e Zd ZdZdZ	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 dFdddedededed	ed
edz  dedz  dedz  dedz  dedz  de	dz  de
e   dz  dedz  ddddddddde
e   dz  dedz  dedz  dedz  dedz  dej                  dz  d edz  d!edz  d"edz  d#edz  d$edz  d%edz  d&edz  d'd(d)edz  d*edz  d+edz  d,edz  d-edz  d.edz  d/edz  d0edz  d1edz  d2edz  d3edz  d4edz  d5edz  d6edz  d7edz  d8edz  d9edz  d:edz  d;edz  d<edz  d=edz  fh fd>Zed?eej2                  z  dz  fd@       Zed?eej2                  z  dz  fdA       ZedGdBedCdDd?d f fdE       Z xZS )HChatFullInfoa#N  
    This object contains full information about a chat.

    Objects of this class are comparable in terms of equality. Two objects of this class are
    considered equal, if their :attr:`~telegram.Chat.id` is equal.

    .. versionadded:: 21.2

    .. versionchanged:: 21.3
        Explicit support for all shortcut methods known from :class:`telegram.Chat` on this
        object. Previously those were only available because this class inherited from
        :class:`telegram.Chat`.

    .. versionremoved:: 22.3
       Removed argument and attribute ``can_send_gift`` deprecated  by API 9.0.

    Args:
        id (:obj:`int`): Unique identifier for this chat.
        type (:obj:`str`): Type of chat, can be either :attr:`PRIVATE`, :attr:`GROUP`,
            :attr:`SUPERGROUP` or :attr:`CHANNEL`.
        accent_color_id (:obj:`int`, optional): Identifier of the
            :class:`accent color <telegram.constants.AccentColor>` for the chat name and
            backgrounds of the chat photo, reply header, and link preview. See `accent colors`_
            for more details.

            .. versionadded:: 20.8
        max_reaction_count (:obj:`int`): The maximum number of reactions that can be set on a
            message in the chat.

            .. versionadded:: 21.2
        accepted_gift_types (:class:`telegram.AcceptedGiftTypes`): Information about types of
            gifts that are accepted by the chat or by the corresponding user for private chats.

            .. versionadded:: 22.1
        title (:obj:`str`, optional): Title, for supergroups, channels and group chats.
        username (:obj:`str`, optional): Username, for private chats, supergroups and channels if
            available.
        first_name (:obj:`str`, optional): First name of the other party in a private chat.
        last_name (:obj:`str`, optional): Last name of the other party in a private chat.
        is_forum (:obj:`bool`, optional): :obj:`True`, if the supergroup chat is a forum
            (has topics_ enabled).

            .. versionadded:: 20.0
        photo (:class:`telegram.ChatPhoto`, optional): Chat photo.
        active_usernames (Sequence[:obj:`str`], optional):  If set, the list of all `active chat
            usernames <https://telegram.org/blog/topics-in-groups-collectible-usernames            #collectible-usernames>`_; for private chats, supergroups and channels.

            .. versionadded:: 20.0
        birthdate (:class:`telegram.Birthdate`, optional): For private chats,
            the date of birth of the user.

            .. versionadded:: 21.1
        business_intro (:class:`telegram.BusinessIntro`, optional): For private chats with
            business accounts, the intro of the business.

            .. versionadded:: 21.1
        business_location (:class:`telegram.BusinessLocation`, optional): For private chats with
            business accounts, the location of the business.

            .. versionadded:: 21.1
        business_opening_hours (:class:`telegram.BusinessOpeningHours`, optional): For private
            chats with business accounts, the opening hours of the business.

            .. versionadded:: 21.1
        personal_chat (:class:`telegram.Chat`, optional): For private chats, the personal channel
            of the user.

            .. versionadded:: 21.1
        available_reactions (Sequence[:class:`telegram.ReactionType`], optional): List of available
            reactions allowed in the chat. If omitted, then all of
            :const:`telegram.constants.ReactionEmoji` are allowed.

            .. versionadded:: 20.8
        background_custom_emoji_id (:obj:`str`, optional): Custom emoji identifier of emoji chosen
            by the chat for the reply header and link preview background.

            .. versionadded:: 20.8
        profile_accent_color_id (:obj:`int`, optional): Identifier of the
            :class:`accent color <telegram.constants.ProfileAccentColor>` for the chat's profile
            background. See profile `accent colors`_ for more details.

            .. versionadded:: 20.8
        profile_background_custom_emoji_id (:obj:`str`, optional): Custom emoji identifier of
            the emoji chosen by the chat for its profile background.

            .. versionadded:: 20.8
        emoji_status_custom_emoji_id (:obj:`str`, optional): Custom emoji identifier of emoji
            status of the chat or the other party in a private chat.

            .. versionadded:: 20.0
        emoji_status_expiration_date (:class:`datetime.datetime`, optional): Expiration date of
            emoji status of the chat or the other party in a private chat, as a datetime object,
            if any.

            |datetime_localization|

            .. versionadded:: 20.5
        bio (:obj:`str`, optional): Bio of the other party in a private chat.
        has_private_forwards (:obj:`bool`, optional): :obj:`True`, if privacy settings of the other
            party in the private chat allows to use ``tg://user?id=<user_id>`` links only in chats
            with the user.

            .. versionadded:: 13.9
        has_restricted_voice_and_video_messages (:obj:`bool`, optional): :obj:`True`, if the
            privacy settings of the other party restrict sending voice and video note messages
            in the private chat.

            .. versionadded:: 20.0
        join_to_send_messages (:obj:`bool`, optional): :obj:`True`, if users need to join the
            supergroup before they can send messages.

            .. versionadded:: 20.0
        join_by_request (:obj:`bool`, optional): :obj:`True`, if all users directly joining the
            supergroup without using an invite link need to be approved by supergroup
            administrators.

            .. versionadded:: 20.0
        description (:obj:`str`, optional): Description, for groups, supergroups and channel chats.
        invite_link (:obj:`str`, optional): Primary invite link, for groups, supergroups and
            channel.
        pinned_message (:class:`telegram.Message`, optional): The most recent pinned message
            (by sending date).
        permissions (:class:`telegram.ChatPermissions`): Optional. Default chat member permissions,
            for groups and supergroups.
        slow_mode_delay (:obj:`int` | :class:`datetime.timedelta`, optional): For supergroups,
            the minimum allowed delay between consecutive messages sent by each unprivileged user.

            .. versionchanged:: v22.2
                |time-period-input|
        unrestrict_boost_count (:obj:`int`, optional): For supergroups, the minimum number of
            boosts that a non-administrator user needs to add in order to ignore slow mode and chat
            permissions.

            .. versionadded:: 21.0
        message_auto_delete_time (:obj:`int` | :class:`datetime.timedelta`, optional): The time
            after which all messages sent to the chat will be automatically deleted; in seconds.

            .. versionadded:: 13.4

            .. versionchanged:: v22.2
                |time-period-input|
        has_aggressive_anti_spam_enabled (:obj:`bool`, optional): :obj:`True`, if aggressive
            anti-spam checks are enabled in the supergroup. The field is only available to chat
            administrators.

            .. versionadded:: 20.0
        has_hidden_members (:obj:`bool`, optional): :obj:`True`, if non-administrators can only
            get the list of bots and administrators in the chat.

            .. versionadded:: 20.0
        has_protected_content (:obj:`bool`, optional): :obj:`True`, if messages from the chat can't
            be forwarded to other chats.

            .. versionadded:: 13.9
        has_visible_history (:obj:`bool`, optional): :obj:`True`, if new chat members will have
            access to old messages; available only to chat administrators.

            .. versionadded:: 20.8
        sticker_set_name (:obj:`str`, optional): For supergroups, name of group sticker set.
        can_set_sticker_set (:obj:`bool`, optional): :obj:`True`, if the bot can change group the
            sticker set.
        custom_emoji_sticker_set_name (:obj:`str`, optional): For supergroups, the name of the
            group's custom emoji sticker set. Custom emoji from this set can be used by all users
            and bots in the group.

            .. versionadded:: 21.0
        linked_chat_id (:obj:`int`, optional): Unique identifier for the linked chat, i.e. the
            discussion group identifier for a channel and vice versa; for supergroups and channel
            chats.
        location (:class:`telegram.ChatLocation`, optional): For supergroups, the location to which
            the supergroup is connected.
        can_send_paid_media (:obj:`bool`, optional): :obj:`True`, if paid media messages can be
            sent or forwarded to the channel chat. The field is available only for channel chats.

            .. versionadded:: 21.4
        is_direct_messages (:obj:`bool`, optional): :obj:`True`, if the chat is the direct messages
            chat of a channel.

            .. versionadded:: 22.4
        parent_chat (:obj:`telegram.Chat`, optional): Information about the corresponding channel
            chat; for direct messages chats only.

            .. versionadded:: 22.4
        rating (:class:`telegram.UserRating`, optional): For private chats, the rating of the user
            if any.

            .. versionadded:: 22.6
        unique_gift_colors (:class:`telegram.UniqueGiftColors`, optional): The color scheme based
            on a unique gift that must be used for the chat's name, message replies and link
            previews

            .. versionadded:: 22.6
        paid_message_star_count (:obj:`int`, optional): The number of Telegram Stars a general user
            have to pay to send a message to the chat

            .. versionadded:: 22.6
        first_profile_audio (:obj:`telegram.Audio`, optional): For private chats, the first audio
            added to the profile of the user.

            .. versionadded:: 22.7


    Attributes:
        id (:obj:`int`): Unique identifier for this chat.
        type (:obj:`str`): Type of chat, can be either :attr:`PRIVATE`, :attr:`GROUP`,
            :attr:`SUPERGROUP` or :attr:`CHANNEL`.
        accent_color_id (:obj:`int`): Optional. Identifier of the
            :class:`accent color <telegram.constants.AccentColor>` for the chat name and
            backgrounds of the chat photo, reply header, and link preview. See `accent colors`_
            for more details.

            .. versionadded:: 20.8
        max_reaction_count (:obj:`int`): The maximum number of reactions that can be set on a
            message in the chat.

            .. versionadded:: 21.2
        accepted_gift_types (:class:`telegram.AcceptedGiftTypes`): Information about types of
            gifts that are accepted by the chat or by the corresponding user for private chats.

            .. versionadded:: 22.1
        title (:obj:`str`, optional): Title, for supergroups, channels and group chats.
        username (:obj:`str`, optional): Username, for private chats, supergroups and channels if
            available.
        first_name (:obj:`str`, optional): First name of the other party in a private chat.
        last_name (:obj:`str`, optional): Last name of the other party in a private chat.
        is_forum (:obj:`bool`, optional): :obj:`True`, if the supergroup chat is a forum
            (has topics_ enabled).

            .. versionadded:: 20.0
        photo (:class:`telegram.ChatPhoto`): Optional. Chat photo.
        active_usernames (tuple[:obj:`str`]): Optional. If set, the list of all `active chat
            usernames <https://telegram.org/blog/topics-in-groups-collectible-usernames            #collectible-usernames>`_; for private chats, supergroups and channels.

            This list is empty if the chat has no active usernames or this chat instance was not
            obtained via :meth:`~telegram.Bot.get_chat`.

            .. versionadded:: 20.0
        birthdate (:class:`telegram.Birthdate`): Optional. For private chats,
            the date of birth of the user.

            .. versionadded:: 21.1
        business_intro (:class:`telegram.BusinessIntro`): Optional. For private chats with
            business accounts, the intro of the business.

            .. versionadded:: 21.1
        business_location (:class:`telegram.BusinessLocation`): Optional. For private chats with
            business accounts, the location of the business.

            .. versionadded:: 21.1
        business_opening_hours (:class:`telegram.BusinessOpeningHours`): Optional. For private
            chats with business accounts, the opening hours of the business.

            .. versionadded:: 21.1
        personal_chat (:class:`telegram.Chat`): Optional. For private chats, the personal channel
            of the user.

            .. versionadded:: 21.1
        available_reactions (tuple[:class:`telegram.ReactionType`]): Optional. List of available
            reactions allowed in the chat. If omitted, then all of
            :const:`telegram.constants.ReactionEmoji` are allowed.

            .. versionadded:: 20.8
        background_custom_emoji_id (:obj:`str`): Optional. Custom emoji identifier of emoji chosen
            by the chat for the reply header and link preview background.

            .. versionadded:: 20.8
        profile_accent_color_id (:obj:`int`): Optional. Identifier of the
            :class:`accent color <telegram.constants.ProfileAccentColor>` for the chat's profile
            background. See profile `accent colors`_ for more details.

            .. versionadded:: 20.8
        profile_background_custom_emoji_id (:obj:`str`): Optional. Custom emoji identifier of
            the emoji chosen by the chat for its profile background.

            .. versionadded:: 20.8
        emoji_status_custom_emoji_id (:obj:`str`): Optional. Custom emoji identifier of emoji
            status of the chat or the other party in a private chat.

            .. versionadded:: 20.0
        emoji_status_expiration_date (:class:`datetime.datetime`): Optional. Expiration date of
            emoji status of the chat or the other party in a private chat, as a datetime object,
            if any.

            |datetime_localization|

            .. versionadded:: 20.5
        bio (:obj:`str`): Optional. Bio of the other party in a private chat.
        has_private_forwards (:obj:`bool`): Optional. :obj:`True`, if privacy settings of the other
            party in the private chat allows to use ``tg://user?id=<user_id>`` links only in chats
            with the user.

            .. versionadded:: 13.9
        has_restricted_voice_and_video_messages (:obj:`bool`): Optional. :obj:`True`, if the
            privacy settings of the other party restrict sending voice and video note messages
            in the private chat.

            .. versionadded:: 20.0
        join_to_send_messages (:obj:`bool`): Optional. :obj:`True`, if users need to join
            the supergroup before they can send messages.

            .. versionadded:: 20.0
        join_by_request (:obj:`bool`): Optional. :obj:`True`, if all users directly joining the
            supergroup without using an invite link need to be approved by supergroup
            administrators.

            .. versionadded:: 20.0
        description (:obj:`str`): Optional. Description, for groups, supergroups and channel chats.
        invite_link (:obj:`str`): Optional. Primary invite link, for groups, supergroups and
            channel.
        pinned_message (:class:`telegram.Message`): Optional. The most recent pinned message
            (by sending date).
        permissions (:class:`telegram.ChatPermissions`): Optional. Default chat member permissions,
            for groups and supergroups.
        slow_mode_delay (:obj:`int` | :class:`datetime.timedelta`): Optional. For supergroups,
            the minimum allowed delay between consecutive messages sent by each unprivileged user.

            .. deprecated:: v22.2
                |time-period-int-deprecated|
        unrestrict_boost_count (:obj:`int`): Optional. For supergroups, the minimum number of
            boosts that a non-administrator user needs to add in order to ignore slow mode and chat
            permissions.

            .. versionadded:: 21.0
        message_auto_delete_time (:obj:`int` | :class:`datetime.timedelta`): Optional. The time
            after which all messages sent to the chat will be automatically deleted; in seconds.

            .. versionadded:: 13.4

            .. deprecated:: v22.2
                |time-period-int-deprecated|
        has_aggressive_anti_spam_enabled (:obj:`bool`): Optional. :obj:`True`, if aggressive
            anti-spam checks are enabled in the supergroup. The field is only available to chat
            administrators.

            .. versionadded:: 20.0
        has_hidden_members (:obj:`bool`): Optional. :obj:`True`, if non-administrators can only
            get the list of bots and administrators in the chat.

            .. versionadded:: 20.0
        has_protected_content (:obj:`bool`): Optional. :obj:`True`, if messages from the chat can't
            be forwarded to other chats.

            .. versionadded:: 13.9
        has_visible_history (:obj:`bool`): Optional. :obj:`True`, if new chat members will have
            access to old messages; available only to chat administrators.

            .. versionadded:: 20.8
        sticker_set_name (:obj:`str`): Optional. For supergroups, name of Group sticker set.
        can_set_sticker_set (:obj:`bool`): Optional. :obj:`True`, if the bot can change group the
            sticker set.
        custom_emoji_sticker_set_name (:obj:`str`): Optional. For supergroups, the name of the
            group's custom emoji sticker set. Custom emoji from this set can be used by all users
            and bots in the group.

            .. versionadded:: 21.0
        linked_chat_id (:obj:`int`): Optional. Unique identifier for the linked chat, i.e. the
            discussion group identifier for a channel and vice versa; for supergroups and channel
            chats.
        location (:class:`telegram.ChatLocation`): Optional. For supergroups, the location to which
            the supergroup is connected.
        can_send_paid_media (:obj:`bool`): Optional. :obj:`True`, if paid media messages can be
            sent or forwarded to the channel chat. The field is available only for channel chats.

            .. versionadded:: 21.4
        is_direct_messages (:obj:`bool`): Optional. :obj:`True`, if the chat is the direct messages
            chat of a channel.

            .. versionadded:: 22.4
        parent_chat (:obj:`telegram.Chat`): Optional. Information about the corresponding channel
            chat; for direct messages chats only.

            .. versionadded:: 22.4
        rating (:class:`telegram.UserRating`): Optional. For private chats, the rating of the user
            if any.

            .. versionadded:: 22.6
        unique_gift_colors (:class:`telegram.UniqueGiftColors`): Optional. The color scheme based
            on a unique gift that must be used for the chat's name, message replies and link
            previews

            .. versionadded:: 22.6
        paid_message_star_count (:obj:`int`): Optional. The number of Telegram Stars a general user
            have to pay to send a message to the chat

            .. versionadded:: 22.6
        first_profile_audio (:obj:`telegram.Audio`): Optional. For private chats, the first audio
            added to the profile of the user.

            .. versionadded:: 22.7

    .. _accent colors: https://core.telegram.org/bots/api#accent-colors
    .. _topics: https://telegram.org/blog/topics-in-groups-collectible-usernames#topics-in-groups
    )+_message_auto_delete_time_slow_mode_delayaccent_color_idaccepted_gift_typesactive_usernamesavailable_reactionsbackground_custom_emoji_idbio	birthdatebusiness_introbusiness_locationbusiness_opening_hourscan_send_paid_mediacan_set_sticker_setcustom_emoji_sticker_set_namedescriptionemoji_status_custom_emoji_idemoji_status_expiration_datefirst_profile_audio has_aggressive_anti_spam_enabledhas_hidden_membershas_private_forwardshas_protected_content'has_restricted_voice_and_video_messageshas_visible_historyinvite_linkjoin_by_requestjoin_to_send_messageslinked_chat_idlocationmax_reaction_countpaid_message_star_countparent_chatpermissionspersonal_chatphotopinned_messageprofile_accent_color_id"profile_background_custom_emoji_idratingsticker_set_nameunique_gift_colorsunrestrict_boost_countN)
api_kwargsidtyper"   r>   r#   titleusername
first_name	last_nameis_forumrC   r$   r(   r)   zBusinessIntro | Noner*   zBusinessLocation | Noner+   zBusinessOpeningHours | NonerB   zChat | Noner%   r&   rE   rF   r0   r1   r'   r5   r7   r;   r:   r/   r9   rD   zMessage | NonerA   slow_mode_delayrJ   message_auto_delete_timer3   r4   r6   r8   rH   r-   r.   r<   r=   r,   is_direct_messagesr@   rG   rI   r?   r2   rK   c4                "   t         5|   ||||||	|
|.|4	       | j                         5  || _        || _        || _        || _        || _        || _        || _	        | | _
        t        |!      | _        t        |#      | _        |&| _        |'| _        |(| _        |)| _        |+| _        |,| _        || _        || _        || _        t/        |      | _        || _        || _        |$| _        |%| _        t/        |      | _        || _        || _        || _         || _!        |"| _"        |*| _#        || _$        || _%        || _&        || _'        || _(        |-| _)        || _*        |/| _+        |0| _,        |1| _-        |2| _.        |3| _/        d d d        y # 1 sw Y   y xY w)N)	rL   rM   rN   rO   rP   rQ   rR   rU   rK   )0super__init__	_unfrozenr>   rC   r'   r5   r/   r9   rD   rA   r   r!   r    r6   r8   rH   r-   r<   r=   r;   r:   r7   r   r$   r0   r1   r3   r4   r%   r"   r&   rE   rF   rJ   r.   r(   rB   r)   r*   r+   r,   r#   r@   rG   rI   r?   r2   )6selfrL   rM   r"   r>   r#   rN   rO   rP   rQ   rR   rC   r$   r(   r)   r*   r+   rB   r%   r&   rE   rF   r0   r1   r'   r5   r7   r;   r:   r/   r9   rD   rA   rS   rJ   rT   r3   r4   r6   r8   rH   r-   r.   r<   r=   r,   rU   r@   rG   rI   r?   r2   rK   	__class__s6                                                        T/var/www/app/trading-bot/venv/lib/python3.12/site-packages/telegram/_chatfullinfo.pyrX   zChatFullInfo.__init__  s   p 	!1! 	 
	
 ^^ 3	I+=D#+0DJ#&DH5ID%+6D+6D2@D7BD:F:WD!CO(DD* 7LD&4GD$0@D!4GD$.<D19DM6KD&0?D 7 8 6HHX5YD!<XD-EaD-AaD13ED#HZ#ID$ 0?D :TD+7ND(2 3 7MD'=ZD./8DN.;D8FD>OD"G]D'4GD$:MD$,7D-3DK?QD#7ND(5HD$g3	I 3	I 3	Is   EFFreturnc                 0    t        | j                  d      S )NrS   	attribute)r   r!   rZ   s    r\   rS   zChatFullInfo.slow_mode_delayi  s    "4#8#8DUVV    c                 0    t        | j                  d      S )NrT   r_   )r   r    ra   s    r\   rT   z%ChatFullInfo.message_auto_delete_timem  s    "**6P
 	
rb   databotz
Bot | Nonec                    | j                  |      }t        |      }t        |j                  d      |      |d<   t	        |j                  d      t
        |      |d<   t	        |j                  d      t        |      |d<   ddlm}m	}m
}m} t	        |j                  d      ||      |d<   t	        |j                  d      t        |      |d<   t	        |j                  d	      t        |      |d	<   t        |j                  d
      t        |      |d
<   t	        |j                  d      t         |      |d<   t	        |j                  d      t"        |      |d<   t	        |j                  d      ||      |d<   t	        |j                  d      ||      |d<   t	        |j                  d      ||      |d<   t	        |j                  d      t"        |      |d<   t	        |j                  d      t$        |      |d<   t	        |j                  d      t&        |      |d<   t	        |j                  d      t(        |      |d<   t*        | Y  ||      S )z,See :meth:`telegram.TelegramObject.de_json`.r1   )tzinforC   r#   r   )r   r   r   r   rD   rA   r=   r%   r(   rB   r)   r*   r+   r@   rG   rI   r2   )rd   re   )_parse_datar   r   getr   r   r   telegramr   r   r   r   r	   r   r   r   r   r   r   r   r
   rW   de_json)	clsrd   re   
loc_tzinfor   r   r   r   r[   s	           r\   rk   zChatFullInfo.de_jsons  s3    t$ 2#6
/=HH34Z0
+, )'):IsKW&6HH*+->'
"#	
 	
 "2$((;K2LgWZ![.txx/FY\]]+DHHZ,@,PSTZ&6HH*+\3'
"# -TXXk-BIsS[ 0/1JDRU V_!1$((;K2Lm]`!a$4HH()+;S%
 ! *:HH-.0Dc*
%& /txx/FcR])$((8*<j#NX%5HH)*,<c&
!" '7txx@U7VX]_b&c"#wDc22rb   ).NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN)N)__name__
__module____qualname____doc__	__slots__intstrr   boolr   r   r   r   dtmdatetimer	   r   r   r   r   r   r
   r   rX   property	timedeltarS   rT   classmethodrk   __classcell__)r[   s   @r\   r   r   5   s   JX,Ij !#!% $ $"&15&*157;@D'+=A15.29=37<@,0?C-1'+"&"&+/.2-1-16:8<*.-1+/'++/48%)(,+/*.#'$(6:.2,0iwIl '+mwIwI wI 	wI
  wI /wI TzwI *wI $JwI :wI +wI 4wI #3-$.wI t#wI /wI  5!wI" !>#wI$ %%wI& &l3d:'wI( %($J)wI* "%t+wI, -0$J-wI. '*Dj/wI0 '*llT&91wI2 4Z3wI4 #Tk5wI6 267wI8  $d{9wI: ;wI< 4Z=wI> 4Z?wI@ )AwIB %t+CwID $d*EwIF !$d
GwIH #-t"3IwIJ +/+KwIL !4KMwIN  $d{OwIP "D[QwIR *SwIT "D[UwIV (+TzWwIX d
YwIZ %[wI\ "D[]wI^ !4K_wI` D[awIb T!cwId -t3ewIf "%tgwIh #T\iwIl tOmwIr Ws}}!4t!; W W 
#*=*D 
 

 .38 .3, .3. .3 .3rb   r   )/rq   rw   rv   collections.abcr   typingr   telegram._birthdater   telegram._chatr   r   telegram._chatlocationr   telegram._chatpermissionsr	   telegram._files.audior
   telegram._files.chatphotor   telegram._giftsr   telegram._reactionr   telegram._uniquegiftr   telegram._userratingr   telegram._utils.argumentparsingr   r   r   r   telegram._utils.datetimer   r   r   telegram._utils.typesr   r   rj   r   r   r   r   r   r    rb   r\   <module>r      sb   ( N  $   ) * / 5 ' / - + 1 +  
 7\\m	39 m	3rb   