Sindbad~EG File Manager

Current Path : /proc/2233733/root/usr/local/lib/python3.12/site-packages/flask/__pycache__/
Upload File :
Current File : //proc/2233733/root/usr/local/lib/python3.12/site-packages/flask/__pycache__/app.cpython-312.pyc

�

(ٜg����ddlmZddlmZddlZddlZddlZddl	Z	ddl
mZddlm
Z
ddlmZddlmZddlmZddlZddlmZdd	lmZdd
lmZddlmZddlmZdd
lmZddlmZddlm Z ddlm!Z!ddlm"Z"ddl#m$Z$ddl%m&Z'ddl(m)Z)ddl*m+Z+ddl*mZ,ddl-m.Z.ddl-m/Z/ddl0m1Z1ddl0m2Z2ddl0m3Z3ddl0m4Z4ddl0m5Z5ddl0m6Z6dd l0m7Z7dd!l8m9Z9dd"l8m:Z:dd#l8m;Z;dd$l8m<Z<dd%l=m>Z>dd&l?m@Z@dd'lAmBZBdd(lAmCZCdd)lDmEZEdd*lDmFZFdd+lDmGZGdd,lDmHZHdd-lDmIZIdd.lJmKZKdd/lLmMZMddlLm&Z&ej�rdd0lOmPZPdd1lOmQZQdd2lRmSZSdd3lRmTZTdd4lmUZUej�d5e,j��6�ZXej�d7e,j��6�ZZej�d8e,j��6�Z\ej�d9e,j��6�Z^ej�d:e,j��6�Z`d>d;�ZaGd<�d=e>�Zby)?�)�annotationsN)�	timedelta)�iscoroutinefunction)�chain)�
TracebackType)�quote)�Headers)�
ImmutableDict)�BadRequestKeyError)�
HTTPException)�InternalServerError)�
BuildError)�
MapAdapter)�RequestRedirect)�RoutingException)�Rule)�is_running_from_reloader)�Response)�get_host�)�cli)�typing��
AppContext��RequestContext)�_cv_app)�_cv_request)�current_app)�g)�request)�request_ctx)�session)�get_debug_flag)�get_flashed_messages)�get_load_dotenv)�send_from_directory)�App)�	_sentinel)�SecureCookieSessionInterface)�SessionInterface)�appcontext_tearing_down)�got_request_exception)�request_finished)�request_started)�request_tearing_down)�Environment)�Request)�
StartResponse)�WSGIEnvironment��FlaskClient��FlaskCliRunner)�HeadersValue�T_shell_context_processor)�bound�
T_teardown�T_template_filter�T_template_global�T_template_testc�B�|�t|t�r|St|��S)N)�seconds)�
isinstancer)�values �4/usr/local/lib/python3.12/site-packages/flask/app.py�_make_timedeltarEJs ���}�
�5�)�4����U�#�#�c���eZdZUdZeidd�dd�dd�dd�dd�d	ed
���dd�d
d�dd�dd�dd�dd�dd�dd�dd�dd�dd�ddddddddddddd���ZeZde	d <e
Zd!e	d"<e�Z
d#e	d$<									dH																			dI�fd%�
ZdJd&�ZdKd'�Z	dL							dMd(�Z	dN							dMd)�ZdOd*�ZdPd+�ZdQd,�ZdRd-�ZdSd.�Z				dT											dUd/�ZdVdWd0�ZdXd1�Z				dYd2�Z				dZd3�Zd[d4�Z				d\d5�Zd]d6�Zd^d7�Z 	d_					d`d8�Z!d^d9�Z"dad:�Z#				dbd;�Z$ddddd<�													dcd=�Z%ddd>�Z&ded?�Z'dfd@�Z(e)f			dgdA�Z*e)f			dgdB�Z+dhdC�Z,didD�Z-djdE�Z.						dkdF�Z/						dkdG�Z0�xZ1S)l�Flaska�The flask object implements a WSGI application and acts as the central
    object.  It is passed the name of the module or package of the
    application.  Once it is created it will act as a central registry for
    the view functions, the URL rules, template configuration and much more.

    The name of the package is used to resolve resources from inside the
    package or the folder the module is contained in depending on if the
    package parameter resolves to an actual python package (a folder with
    an :file:`__init__.py` file inside) or a standard module (just a ``.py`` file).

    For more information about resource loading, see :func:`open_resource`.

    Usually you create a :class:`Flask` instance in your main module or
    in the :file:`__init__.py` file of your package like this::

        from flask import Flask
        app = Flask(__name__)

    .. admonition:: About the First Parameter

        The idea of the first parameter is to give Flask an idea of what
        belongs to your application.  This name is used to find resources
        on the filesystem, can be used by extensions to improve debugging
        information and a lot more.

        So it's important what you provide there.  If you are using a single
        module, `__name__` is always the correct value.  If you however are
        using a package, it's usually recommended to hardcode the name of
        your package there.

        For example if your application is defined in :file:`yourapplication/app.py`
        you should create it with one of the two versions below::

            app = Flask('yourapplication')
            app = Flask(__name__.split('.')[0])

        Why is that?  The application will work even with `__name__`, thanks
        to how resources are looked up.  However it will make debugging more
        painful.  Certain extensions can make assumptions based on the
        import name of your application.  For example the Flask-SQLAlchemy
        extension will look for the code in your application that triggered
        an SQL query in debug mode.  If the import name is not properly set
        up, that debugging information is lost.  (For example it would only
        pick up SQL queries in `yourapplication.app` and not
        `yourapplication.views.frontend`)

    .. versionadded:: 0.7
       The `static_url_path`, `static_folder`, and `template_folder`
       parameters were added.

    .. versionadded:: 0.8
       The `instance_path` and `instance_relative_config` parameters were
       added.

    .. versionadded:: 0.11
       The `root_path` parameter was added.

    .. versionadded:: 1.0
       The ``host_matching`` and ``static_host`` parameters were added.

    .. versionadded:: 1.0
       The ``subdomain_matching`` parameter was added. Subdomain
       matching needs to be enabled manually now. Setting
       :data:`SERVER_NAME` does not implicitly enable it.

    :param import_name: the name of the application package
    :param static_url_path: can be used to specify a different path for the
                            static files on the web.  Defaults to the name
                            of the `static_folder` folder.
    :param static_folder: The folder with static files that is served at
        ``static_url_path``. Relative to the application ``root_path``
        or an absolute path. Defaults to ``'static'``.
    :param static_host: the host to use when adding the static route.
        Defaults to None. Required when using ``host_matching=True``
        with a ``static_folder`` configured.
    :param host_matching: set ``url_map.host_matching`` attribute.
        Defaults to False.
    :param subdomain_matching: consider the subdomain relative to
        :data:`SERVER_NAME` when matching routes. Defaults to False.
    :param template_folder: the folder that contains the templates that should
                            be used by the application.  Defaults to
                            ``'templates'`` folder in the root path of the
                            application.
    :param instance_path: An alternative instance path for the application.
                          By default the folder ``'instance'`` next to the
                          package or module is assumed to be the instance
                          path.
    :param instance_relative_config: if set to ``True`` relative filenames
                                     for loading the config are assumed to
                                     be relative to the instance path instead
                                     of the application root.
    :param root_path: The path to the root of the application files.
        This should only be set manually when it can't be detected
        automatically, such as for namespace packages.
    �DEBUGN�TESTINGF�PROPAGATE_EXCEPTIONS�
SECRET_KEY�SECRET_KEY_FALLBACKS�PERMANENT_SESSION_LIFETIME�)�days�USE_X_SENDFILE�
TRUSTED_HOSTS�SERVER_NAME�APPLICATION_ROOT�/�SESSION_COOKIE_NAMEr#�SESSION_COOKIE_DOMAIN�SESSION_COOKIE_PATH�SESSION_COOKIE_HTTPONLYT�SESSION_COOKIE_SECURE�SESSION_COOKIE_PARTITIONED�SESSION_COOKIE_SAMESITEi �i��httpi�)�SESSION_REFRESH_EACH_REQUEST�MAX_CONTENT_LENGTH�MAX_FORM_MEMORY_SIZE�MAX_FORM_PARTS�SEND_FILE_MAX_AGE_DEFAULT�TRAP_BAD_REQUEST_ERRORS�TRAP_HTTP_EXCEPTIONS�EXPLAIN_TEMPLATE_LOADING�PREFERRED_URL_SCHEME�TEMPLATES_AUTO_RELOAD�MAX_COOKIE_SIZE�PROVIDE_AUTOMATIC_OPTIONSz
type[Request]�
request_classztype[Response]�response_classr+�session_interfacec�Z���t�|�|||||||||	|
��
tj�|_|j|j_|j
rPt
|�|k(sJd��tj|��|j|j�d�d|�fd���yy)N)
�import_name�static_url_path�
static_folder�static_host�
host_matching�subdomain_matching�template_folder�
instance_path�instance_relative_config�	root_pathz-Invalid static_host/host_matching combinationz/<path:filename>�staticc�2����jdi|��S)N�)�send_static_file)�kw�self_refs �rD�<lambda>z Flask.__init__.<locals>.<lambda>s���'B�x�z�'B�'B�'H�R�'HrF)�endpoint�host�	view_func)�super�__init__r�AppGroup�name�has_static_folder�bool�weakref�ref�add_url_rulero)
�selfrnrorprqrrrsrtrurvrwr}�	__class__s
           @�rDr�zFlask.__init__�s����	���#�+�'�#�'�1�+�'�%=��	�	
�"�<�<�>����	�	����
��!�!��[�!�]�2�
?�>�
?�2��{�{�4�(�H�����'�'�(�(8�9�!� �H�	
�
�"rFc��tjd}|�yt|t�rt	|j��S|S)anUsed by :func:`send_file` to determine the ``max_age`` cache
        value for a given file path if it wasn't passed.

        By default, this returns :data:`SEND_FILE_MAX_AGE_DEFAULT` from
        the configuration of :data:`~flask.current_app`. This defaults
        to ``None``, which tells the browser to use conditional requests
        instead of a timed cache, which is usually preferable.

        Note this is a duplicate of the same method in the Flask
        class.

        .. versionchanged:: 2.0
            The default configuration is ``None`` instead of 12 hours.

        .. versionadded:: 0.9
        rbN)r�configrBr�int�
total_seconds)r��filenamerCs   rD�get_send_file_max_agezFlask.get_send_file_max_ages@��"�"�"�#>�?���=���e�Y�'��u�*�*�,�-�-��rFc��|jstd��|j|�}tt	j
t|j�||��S)aAThe view function used to serve files from
        :attr:`static_folder`. A route is automatically registered for
        this view at :attr:`static_url_path` if :attr:`static_folder` is
        set.

        Note this is a duplicate of the same method in the Flask
        class.

        .. versionadded:: 0.5

        z2'static_folder' must be set to serve static_files.)�max_age)r��RuntimeErrorr�r'�t�cast�strrp)r�r�r�s   rDr{zFlask.send_static_file4sP���%�%��S�T�T��,�,�X�6��"�
�F�F�3��*�*�+�X�w�
�	
rFc��|dvrtd��tjj|j|�}|dk(rt||�St|||��S)a Open a resource file relative to :attr:`root_path` for reading.

        For example, if the file ``schema.sql`` is next to the file
        ``app.py`` where the ``Flask`` app is defined, it can be opened
        with:

        .. code-block:: python

            with app.open_resource("schema.sql") as f:
                conn.executescript(f.read())

        :param resource: Path to the resource relative to :attr:`root_path`.
        :param mode: Open the file in this mode. Only reading is supported,
            valid values are ``"r"`` (or ``"rt"``) and ``"rb"``.
        :param encoding: Open the file with this encoding when opening in text
            mode. This is ignored when opening in binary mode.

        .. versionchanged:: 3.1
            Added the ``encoding`` parameter.
        >�r�rb�rtz)Resources can only be opened for reading.r���encoding)�
ValueError�os�path�joinrw�open�r��resource�moder�r�s     rD�
open_resourcezFlask.open_resourceJsT��.�(�(��H�I�I��w�w�|�|�D�N�N�H�5���4�<���d�#�#��D�$��2�2rFc��tjj|j|�}d|vrt	||�St	|||��S)a(Open a resource file relative to the application's instance folder
        :attr:`instance_path`. Unlike :meth:`open_resource`, files in the
        instance folder can be opened for writing.

        :param resource: Path to the resource relative to :attr:`instance_path`.
        :param mode: Open the file in this mode.
        :param encoding: Open the file with this encoding when opening in text
            mode. This is ignored when opening in binary mode.

        .. versionchanged:: 3.1
            Added the ``encoding`` parameter.
        �br�)r�r�r�rur�r�s     rD�open_instance_resourcezFlask.open_instance_resourceksA���w�w�|�|�D�.�.��9���$�;���d�#�#��D�$��2�2rFc��t|j�}d|vr|j|d<d|vr"|jd}|�|j}||d<|j
|fi|��}|jj|jt|jttt��|jj|jd<|S)a�Create the Jinja environment based on :attr:`jinja_options`
        and the various Jinja-related methods of the app. Changing
        :attr:`jinja_options` after this will have no effect. Also adds
        Flask-related globals and filters to the environment.

        .. versionchanged:: 0.11
           ``Environment.auto_reload`` set in accordance with
           ``TEMPLATES_AUTO_RELOAD`` configuration option.

        .. versionadded:: 0.5
        �
autoescape�auto_reloadrg)�url_forr%r�r!r#r zjson.dumps_function)�dict�
jinja_options�select_jinja_autoescaper��debug�jinja_environment�globals�updater�r%r!r#r �json�dumps�policies)r��optionsr��rvs    rD�create_jinja_environmentzFlask.create_jinja_environment�s����t�)�)�*���w�&�$(�$@�$@�G�L�!���'��+�+�&=�>�K��"�"�j�j��%0�G�M�"�
#�T�
#�
#�D�
4�G�
4��
�
�
����L�L�!5��;�;����	�
	
�.2�Y�Y�_�_����)�*��	rFc��|��|jdx}�||_t|j|j�|_d}|jd}|j
jrd}n&|js|j
jxsd}|j
j|j||��S|jd�E|j
j|jd|jd|jd��Sy)	a�Creates a URL adapter for the given request. The URL adapter
        is created at a point where the request context is not yet set
        up so the request is passed explicitly.

        .. versionchanged:: 3.1
            If :data:`SERVER_NAME` is set, it does not restrict requests to
            only that domain, for both ``subdomain_matching`` and
            ``host_matching``.

        .. versionchanged:: 1.0
            :data:`SERVER_NAME` no longer implicitly enables subdomain
            matching. Use :attr:`subdomain_matching` instead.

        .. versionchanged:: 0.9
           This can be called outside a request when the URL adapter is created
           for an application context.

        .. versionadded:: 0.6
        NrRrS�)�server_name�	subdomainrTrf)�script_name�
url_scheme)r��
trusted_hostsr�environr��url_maprrrs�default_subdomain�bind_to_environ�bind)r�r!r�r�r�s     rD�create_url_adapterzFlask.create_url_adapter�s��(��!%���_�!=�=�
�J�(5��%�$�G�O�O�W�5J�5J�K�G�L��I��+�+�m�4�K��|�|�)�)�#���,�,�!�L�L�:�:�@�b�	��<�<�/�/����[�I�0��
�
�;�;�}�%�1��<�<�$�$����M�*� �K�K�(:�;��;�;�'=�>�%��
�rFc���|jr@t|jt�r&|jjdvs|j
dvr|j�ddlm}||��)a�Intercept routing exceptions and possibly do something else.

        In debug mode, intercept a routing redirect and replace it with
        an error if the body will be discarded.

        With modern Werkzeug this shouldn't occur, since it now uses a
        308 status which tells the browser to resend the method and
        body.

        .. versionchanged:: 2.1
            Don't intercept 307 and 308 redirects.

        :meta private:
        :internal:
        >�3�4>�GET�HEAD�OPTIONSr)�FormDataRoutingRedirect)r�rB�routing_exceptionr�code�method�debughelpersr�)r�r!r�s   rD�raise_routing_exceptionzFlask.raise_routing_exception�sV��"�
�
��g�7�7��I��(�(�-�-��;��~�~�!;�;��+�+�+�9�%�g�.�.rFc�:�d}tr#t|ttj��}|j	�}|D]J}||j
vs�|j
|D]'}|j
|j|����)�L|j
|�y)aUpdate the template context with some commonly used variables.
        This injects request, session, config and g into the template
        context as well as everything template context processors want
        to inject.  Note that the as of Flask 0.6, the original values
        in the context will not be overridden if a context processor
        decides to return a value with the same key.

        :param context: the context as a dictionary that is updated in place
                        to add extra variables.
        �NN)r!r�reversed�
blueprints�copy�template_context_processorsr��ensure_sync)r��context�names�orig_ctxr��funcs      rD�update_template_contextzFlask.update_template_context�s���)0����%��'�*<�*<�!=�>�E��<�<�>���D��t�7�7�7� �<�<�T�B�D��N�N�#9�4�#3�#3�D�#9�#;�<�C��
	���x� rFc�f�|td�}|jD]}|j|���|S)z�Returns the shell context for an interactive shell for this
        application.  This runs all the registered shell context
        processors.

        .. versionadded:: 0.11
        )�appr )r �shell_context_processorsr�)r�r��	processors   rD�make_shell_contextzFlask.make_shell_contexts1����
"���6�6�I��I�I�i�k�"�7��	rFc�V�tjjd�dk(r"t�st	j
dd��yt
|�r5tj�dtjvrt�|_
|�t|�|_
|jjd�}dx}}|r|jd	�\}}	}|s|r|}nd
}|s|dk(rt|�}n|rt|�}nd}|jd
|j�|jd|j�|jdd�tj |j|j"�ddlm}
	|
t)j*t,|�||fi|��d|_y#d|_wxYw)a�
Runs the application on a local development server.

        Do not use ``run()`` in a production setting. It is not intended to
        meet security and performance requirements for a production server.
        Instead, see :doc:`/deploying/index` for WSGI server recommendations.

        If the :attr:`debug` flag is set the server will automatically reload
        for code changes and show a debugger in case an exception happened.

        If you want to run the application in debug mode, but disable the
        code execution on the interactive debugger, you can pass
        ``use_evalex=False`` as parameter.  This will keep the debugger's
        traceback screen active, but disable code execution.

        It is not recommended to use this function for development with
        automatic reloading as this is badly supported.  Instead you should
        be using the :command:`flask` command line script's ``run`` support.

        .. admonition:: Keep in Mind

           Flask will suppress any server error with a generic error page
           unless it is in debug mode.  As such to enable just the
           interactive debugger without the code reloading, you have to
           invoke :meth:`run` with ``debug=True`` and ``use_reloader=False``.
           Setting ``use_debugger`` to ``True`` without being in debug mode
           won't catch any exceptions because there won't be any to
           catch.

        :param host: the hostname to listen on. Set this to ``'0.0.0.0'`` to
            have the server available externally as well. Defaults to
            ``'127.0.0.1'`` or the host in the ``SERVER_NAME`` config variable
            if present.
        :param port: the port of the webserver. Defaults to ``5000`` or the
            port defined in the ``SERVER_NAME`` config variable if present.
        :param debug: if given, enable or disable debug mode. See
            :attr:`debug`.
        :param load_dotenv: Load the nearest :file:`.env` and :file:`.flaskenv`
            files to set environment variables. Will also change the working
            directory to the directory containing the first file found.
        :param options: the options to be forwarded to the underlying Werkzeug
            server. See :func:`werkzeug.serving.run_simple` for more
            information.

        .. versionchanged:: 1.0
            If installed, python-dotenv will be used to load environment
            variables from :file:`.env` and :file:`.flaskenv` files.

            The :envvar:`FLASK_DEBUG` environment variable will override :attr:`debug`.

            Threaded mode is enabled by default.

        .. versionchanged:: 0.10
            The default port is now picked from the ``SERVER_NAME``
            variable.
        �FLASK_RUN_FROM_CLI�truez� * Ignoring a call to 'app.run()' that would block the current 'flask' CLI command.
   Only call 'app.run()' in an 'if __name__ == "__main__"' guard.�red)�fgN�FLASK_DEBUGrS�:z	127.0.0.1ri��use_reloader�use_debugger�threadedT)�
run_simpleF)r�r��getr�click�sechor&r�load_dotenvr$r�r�r��	partitionr��
setdefault�show_server_bannerr��werkzeug.servingr�r�r�r��_got_first_request)r�r��portr�r�r�r��sn_host�sn_port�_r�s           rD�runz	Flask.run"si��B�:�:�>�>�.�/�6�9�+�-����+���
��;�'��O�O����
�
�*�+�-��
����e��D�J��k�k�o�o�m�4�� � ��'��"-�"7�"7��"<��G�Q������"���4�1�9��t�9�D�
��w�<�D��D����>�4�:�:�6����>�4�:�:�6����:�t�,����t�z�z�4�9�9�5�/�	,��q�v�v�c�4�(�$��@��@�
',�D�#��e�D�#�s�4#F�	F(c�V�|j}|�ddlm}|||jfd|i|��S)a�Creates a test client for this application.  For information
        about unit testing head over to :doc:`/testing`.

        Note that if you are testing for assertions or exceptions in your
        application code, you must set ``app.testing = True`` in order for the
        exceptions to propagate to the test client.  Otherwise, the exception
        will be handled by the application (not visible to the test client) and
        the only indication of an AssertionError or other exception will be a
        500 status code response to the test client.  See the :attr:`testing`
        attribute.  For example::

            app.testing = True
            client = app.test_client()

        The test client can be used in a ``with`` block to defer the closing down
        of the context until the end of the ``with`` block.  This is useful if
        you want to access the context locals for testing::

            with app.test_client() as c:
                rv = c.get('/?vodka=42')
                assert request.args['vodka'] == '42'

        Additionally, you may pass optional keyword arguments that will then
        be passed to the application's :attr:`test_client_class` constructor.
        For example::

            from flask.testing import FlaskClient

            class CustomClient(FlaskClient):
                def __init__(self, *args, **kwargs):
                    self._authentication = kwargs.pop("authentication")
                    super(CustomClient,self).__init__( *args, **kwargs)

            app.test_client_class = CustomClient
            client = app.test_client(authentication='Basic ....')

        See :class:`~flask.testing.FlaskClient` for more information.

        .. versionchanged:: 0.4
           added support for ``with`` block usage for the client.

        .. versionadded:: 0.7
           The `use_cookies` parameter was added as well as the ability
           to override the client to be used by setting the
           :attr:`test_client_class` attribute.

        .. versionchanged:: 0.11
           Added `**kwargs` to support passing additional keyword arguments to
           the constructor of :attr:`test_client_class`.
        rr5�use_cookies)�test_client_class�testingr6rk)r�r�kwargs�clss    rD�test_clientzFlask.test_client�s@��f�$�$���;�3���$�%�%�
�3>�
�BH�
�	
rFc�<�|j}|�ddlm}||fi|��S)a-Create a CLI runner for testing CLI commands.
        See :ref:`testing-cli`.

        Returns an instance of :attr:`test_cli_runner_class`, by default
        :class:`~flask.testing.FlaskCliRunner`. The Flask app object is
        passed as the first argument.

        .. versionadded:: 1.0
        rr7)�test_cli_runner_classrr8)r�rrs   rD�test_cli_runnerzFlask.test_cli_runner�s'���(�(���;�6��4�"�6�"�"rFc��|j�|St|t�r|S|j|tj
�}|�|S|j
|�|�S)acHandles an HTTP exception.  By default this will invoke the
        registered error handlers and fall back to returning the
        exception as response.

        .. versionchanged:: 1.0.3
            ``RoutingException``, used internally for actions such as
             slash redirects during routing, is not passed to error
             handlers.

        .. versionchanged:: 1.0
            Exceptions are looked up by code *and* by MRO, so
            ``HTTPException`` subclasses can be handled with a catch-all
            handler for the base ``HTTPException``.

        .. versionadded:: 0.3
        )r�rBr�_find_error_handlerr!r�r��r��e�handlers   rD�handle_http_exceptionzFlask.handle_http_exception�s^��*
�6�6�>��H�
�a�)�*��H��*�*�1�g�.@�.@�A���?��H�(�t����(��+�+rFc�>�t|t�r"|js|jdrd|_t|t
�r"|j
|�s|j|�S|j|tj�}|��|j|�|�S)a>This method is called whenever an exception occurs that
        should be handled. A special case is :class:`~werkzeug
        .exceptions.HTTPException` which is forwarded to the
        :meth:`handle_http_exception` method. This function will either
        return a response value or reraise the exception with the same
        traceback.

        .. versionchanged:: 1.0
            Key errors raised from request data like ``form`` show the
            bad key in debug mode rather than a generic bad request
            message.

        .. versionadded:: 0.7
        rcT)rBrr�r��show_exceptionr�trap_http_exceptionrr
r!r�r�rs   rD�handle_user_exceptionzFlask.handle_user_exceptions���"�a�+�,��J�J�$�+�+�&?�@�#�A���a��'��0H�0H��0K��-�-�a�0�0��*�*�1�g�.@�.@�A���?��(�t����(��+�+rFc��tj�}tj||j|��|j
d}|�|jxs|j}|r
|d|ur�|�|j|�t|��}|j|tj�}|�|j	|�|�}|j|d��S)a�Handle an exception that did not have an error handler
        associated with it, or that was raised from an error handler.
        This always causes a 500 ``InternalServerError``.

        Always sends the :data:`got_request_exception` signal.

        If :data:`PROPAGATE_EXCEPTIONS` is ``True``, such as in debug
        mode, the error will be re-raised so that the debugger can
        display it. Otherwise, the original exception is logged, and
        an :exc:`~werkzeug.exceptions.InternalServerError` is returned.

        If an error handler is registered for ``InternalServerError`` or
        ``500``, it will be used. For consistency, the handler will
        always receive the ``InternalServerError``. The original
        unhandled exception is available as ``e.original_exception``.

        .. versionchanged:: 1.1.0
            Always passes the ``InternalServerError`` instance to the
            handler, setting ``original_exception`` to the unhandled
            error.

        .. versionchanged:: 1.1.0
            ``after_request`` functions and other finalization is done
            even for the default 500 response when there is no handler.

        .. versionadded:: 0.3
        )�_async_wrapper�	exceptionrKr)�original_exceptionT)�from_error_handler)�sys�exc_infor-�sendr�r�rr��
log_exceptionr
r
r!r��finalize_request)r�rr�	propagate�server_errorr
s      rD�handle_exceptionzFlask.handle_exception+s���8�<�<�>���"�"�4��8H�8H�TU�V��K�K� 6�7�	������2��
�
�I����{�a����G����8�$�*�a�@���*�*�<��9K�9K�L����4�4�+�+�G�4�\�B�L��$�$�\�d�$�K�KrFc��|jjdtj�dtj�d�|��y)a
Logs an exception.  This is called by :meth:`handle_exception`
        if debugging is disabled and right before the handler is called.
        The default implementation logs the exception as error on the
        :attr:`logger`.

        .. versionadded:: 0.8
        z
Exception on z [�])rN)�logger�errorr!r�r�)r�rs  rDrzFlask.log_exception`s8��	
������G�L�L�>��G�N�N�+;�1�=��	�	
rFc�@�tj}|j�|j|�|j}t|dd�r|jdk(r|j�S|j}|j|j|j�di|��S)a�Does the request dispatching.  Matches the URL and returns the
        return value of the view or error handler.  This does not have to
        be a response object.  In order to convert the return value to a
        proper response object, call :func:`make_response`.

        .. versionchanged:: 0.7
           This no longer does the exception handling, this code was
           moved to the new :meth:`full_dispatch_request`.
        �provide_automatic_optionsFr�rz)r"r!r�r��url_rule�getattrr��make_default_options_response�	view_argsr��view_functionsr)r��req�ruler)s    rD�dispatch_requestzFlask.dispatch_requestos����!�!��� � �,��(�(��-��\�\��
�D�5�u�=��
�
�i�'��5�5�7�7�&)�m�m�	�C�t���� 3� 3�D�M�M� B�C�P�i�P�PrFc��d|_	tj||j��|j	�}|�|j�}|j|�S#t$r}|j|�}Yd}~�0d}~wwxYw)z�Dispatches the request and on top of that performs request
        pre and postprocessing as well as HTTP exception catching and
        error handling.

        .. versionadded:: 0.7
        T)rN)	r�r/rr��preprocess_requestr-�	Exceptionrr)r�r�rs   rD�full_dispatch_requestzFlask.full_dispatch_request�s}��#'���	/�� � ��d�6F�6F�G��(�(�*�B��z��*�*�,���$�$�R�(�(���	/��+�+�A�.�B��	/�s�AA�	B�&A<�<Bc���|j|�}	|j|�}tj||j|��|S#t
$r"|s�|jjd�Y|SwxYw)a)Given the return value from a view function this finalizes
        the request by converting it into a response and invoking the
        postprocessing functions.  This is invoked for both normal
        request dispatching as well as error handlers.

        Because this means that it might be called as a result of a
        failure a special safe mode is available which can be enabled
        with the `from_error_handler` flag.  If enabled, failures in
        response processing will be logged and otherwise ignored.

        :internal:
        )r�responsez?Request finalizing failed with an error while handling an error)�
make_response�process_responser.rr�r0r"r)r�r�rr3s    rDrzFlask.finalize_request�s~��"�%�%�b�)��
	��,�,�X�6�H��!�!��T�%5�%5��
����
�	�%���K�K�!�!�Q�
���
	�s�3A�'A3�2A3c��tj}|j�}|j�}|jj|�|S)z�This method is called to create the default ``OPTIONS`` response.
        This can be changed through subclassing to change the default
        behavior of ``OPTIONS`` responses.

        .. versionadded:: 0.7
        )r"�url_adapter�allowed_methodsrk�allowr�)r��adapter�methodsr�s    rDr(z#Flask.make_default_options_response�s@���)�)���)�)�+��
�
 �
 �
"��
������ ��	rFc�>�t|�r|j|�S|S)a)Ensure that the function is synchronous for WSGI workers.
        Plain ``def`` functions are returned as-is. ``async def``
        functions are wrapped to run and wait for the response.

        Override this method to change how the app runs async views.

        .. versionadded:: 2.0
        )r�
async_to_sync)r�r�s  rDr�zFlask.ensure_sync�s"���t�$��%�%�d�+�+��rFc�R�	ddlm}||�S#t$r
td�d�wxYw)a1Return a sync function that will run the coroutine function.

        .. code-block:: python

            result = app.async_to_sync(func)(*args, **kwargs)

        Override this method to change how the app converts async code
        to be synchronously callable.

        .. versionadded:: 2.0
        r)r=zAInstall Flask with the 'async' extra in order to use async views.N)�asgiref.syncr=�ImportErrorr�)r�r��asgiref_async_to_syncs   rDr=zFlask.async_to_sync�s;��	�K�%�T�*�*���	��S���
�	�s��&��_anchor�_method�_scheme�	_externalc�V�tjd�}|�?|j}|jj}	|dddk(r|	�|	�|��}n|dd}|�K|du}nFtjd�}
|
�
|
j}n|j
d�}|�td��|�d}|�
|std��|j||�	|j|||||��}|�t|d	�
�}|�d|��}|S#t$r2}|j||||��|j|||�cYd}~Sd}~wwxYw)a	Generate a URL to the given endpoint with the given values.

        This is called by :func:`flask.url_for`, and can be called
        directly as well.

        An *endpoint* is the name of a URL rule, usually added with
        :meth:`@app.route() <route>`, and usually the same name as the
        view function. A route defined in a :class:`~flask.Blueprint`
        will prepend the blueprint's name separated by a ``.`` to the
        endpoint.

        In some cases, such as email messages, you want URLs to include
        the scheme and domain, like ``https://example.com/hello``. When
        not in an active request, URLs will be external by default, but
        this requires setting :data:`SERVER_NAME` so Flask knows what
        domain to use. :data:`APPLICATION_ROOT` and
        :data:`PREFERRED_URL_SCHEME` should also be configured as
        needed. This config is only used when not in an active request.

        Functions can be decorated with :meth:`url_defaults` to modify
        keyword arguments before the URL is built.

        If building fails for some reason, such as an unknown endpoint
        or incorrect values, the app's :meth:`handle_url_build_error`
        method is called. If that returns a string, that is returned,
        otherwise a :exc:`~werkzeug.routing.BuildError` is raised.

        :param endpoint: The endpoint name associated with the URL to
            generate. If this starts with a ``.``, the current blueprint
            name (if any) will be used.
        :param _anchor: If given, append this as ``#anchor`` to the URL.
        :param _method: If given, generate the URL associated with this
            method for the endpoint.
        :param _scheme: If given, the URL will have this scheme if it
            is external.
        :param _external: If given, prefer the URL to be internal
            (False) or require it to be external (True). External URLs
            include the scheme and domain. When not in an active
            request, URLs are external by default.
        :param values: Values to use for the variable parts of the URL
            rule. Unknown keys are appended as query string arguments,
            like ``?a=b&c=d``.

        .. versionadded:: 2.2
            Moved from ``flask.url_for``, which calls this method.
        Nr�.z�Unable to build URLs outside an active request without 'SERVER_NAME' configured. Also configure 'APPLICATION_ROOT' and 'PREFERRED_URL_SCHEME' as needed.Tz4When specifying '_scheme', '_external' must be True.)r�r��force_externalrBz%!#$&'()*+,/:;=?@)�safe�#)rr�r7r!�	blueprintrr�r�r��inject_url_defaults�buildrr��handle_url_build_error�
_url_quote)
r�rrCrDrErF�values�req_ctxr7�blueprint_name�app_ctxr�r#s
             rDr�z
Flask.url_for�s���r�/�/�$�'����!�-�-�K�$�_�_�6�6�N����|�s�"�!�-�"0�!1�(��<�H�'���|�H�� �#�4�/�	��k�k�$�'�G�
�"�%�1�1��"�5�5�d�;���"�"����� � �	���y��S�T�T�� � ��6�2�	H��"�"����"�(�#��B��� ��/B�C�G��4�q��	�"�B��	���	H��M�M���'�Y�
�
��.�.�u�h��G�G��		H�s�?C-�-	D(�6'D#�D(�#D(c��d}d}t|t�rVt|�}|dk(r|\}}}n?|dk(r/t|dtttt
f�r|\}}n|\}}nt
d��|�t
dtj�d���t||j�s�t|tttf�st|tj�r|j|||��}dx}}n�t|tt
f�r|jj!|�}nit|t"�st%|�r,	|jj'|tj(�}n"t
dt+|�j,�d
���t5j6t8|�}|�*t|tttf�r||_n||_|r|j>jA|�|S#t$rN}t
|�d	t+|�j,�d
��j/t1j2�d�d�d}~wwxYw)a�Convert the return value from a view function to an instance of
        :attr:`response_class`.

        :param rv: the return value from the view function. The view function
            must return a response. Returning ``None``, or the view ending
            without returning, is not allowed. The following types are allowed
            for ``view_rv``:

            ``str``
                A response object is created with the string encoded to UTF-8
                as the body.

            ``bytes``
                A response object is created with the bytes as the body.

            ``dict``
                A dictionary that will be jsonify'd before being returned.

            ``list``
                A list that will be jsonify'd before being returned.

            ``generator`` or ``iterator``
                A generator that returns ``str`` or ``bytes`` to be
                streamed as the response.

            ``tuple``
                Either ``(body, status, headers)``, ``(body, status)``, or
                ``(body, headers)``, where ``body`` is any of the other types
                allowed here, ``status`` is a string or an integer, and
                ``headers`` is a dictionary or a list of ``(key, value)``
                tuples. If ``body`` is a :attr:`response_class` instance,
                ``status`` overwrites the exiting value and ``headers`` are
                extended.

            :attr:`response_class`
                The object is returned unchanged.

            other :class:`~werkzeug.wrappers.Response` class
                The object is coerced to :attr:`response_class`.

            :func:`callable`
                The function is called as a WSGI application. The result is
                used to create a response object.

        .. versionchanged:: 2.2
            A generator will be converted to a streaming response.
            A list will be converted to a JSON response.

        .. versionchanged:: 1.1
            A dict will be converted to a JSON response.

        .. versionchanged:: 0.9
           Previously a tuple was interpreted as the arguments for the
           response object.
        N��rz�The view function did not return a valid response tuple. The tuple must have the form (body, status, headers), (body, status), or (body, headers).zThe view function for zh did not return a valid response. The function either returned None or ended without a return statement.)�status�headersz�
The view function did not return a valid response. The return type must be a string, dict, list, tuple with headers or status, Response instance, or WSGI callable, but it was a rHz�The view function did not return a valid response. The return type must be a string, dict, list, tuple with headers or status, Response instance, or WSGI callable, but it was a )!rB�tuple�lenr	r��list�	TypeErrorr!rrkr��bytes�	bytearray�cabc�Iteratorr�r3�BaseResponse�callable�
force_typer��type�__name__�with_tracebackrrr�r�rrX�status_coderYr�)r�r�rXrY�len_rvrs      rDr4zFlask.make_responseis;��r"��'+���b�%� ���W�F���{�&(�#��F�G��1���b��e�g�t�U�D�%A�B�"$�K�B��!#�J�B�� �;����:��(��)9�)9�(<�==�=��
��"�d�1�1�2��"�s�E�9�5�6�*�R����:W��(�(��!�#�)���
$(�'����B��t��-��Y�Y�'�'��+���B��-��"��B��,�,�7�7������B� ���R��)�)�*�!�	-����V�V�H�b�
!�����&�3��y�"9�:�"��	�!'�����J�J���g�&��	��;!�B�#��#�"�#'�r�(�"3�"3�!4�A�	7��%�n�S�\�\�^�A�%6�7�T�
B��B�s�<*G.�.	I�7A	I�Ic�l�dgttj���}|D]J}||jvs�|j|D]'}|tjtj
��)�L|D]C}||jvs�|j|D] }|j|��}|��|ccS�Ey)a�Called before the request is dispatched. Calls
        :attr:`url_value_preprocessors` registered with the app and the
        current blueprint (if any). Then calls :attr:`before_request_funcs`
        registered with the app and the blueprint.

        If any :meth:`before_request` handler returns a non-None value, the
        value is handled as if it was the return value from the view, and
        further request handling is stopped.
        N)r�r!r��url_value_preprocessorsrr)�before_request_funcsr�)r�r�r��url_func�before_funcr�s      rDr/zFlask.preprocess_request�s����5���!3�!3�4�5���D��t�3�3�3� $� <� <�T� B�H��W�-�-�w�/@�/@�A�!C��
�D��t�0�0�0�#'�#<�#<�T�#B�K�6��)�)�+�6�8�B��~�!�	�	$C��rFc���tj�}|jD]}|j|�|�}�t	t
jd�D]E}||jvs�t|j|�D]}|j|�|�}��G|jj|j�s'|jj||j|�|S)aCan be overridden in order to modify the response object
        before it's sent to the WSGI server.  By default this will
        call all the :meth:`after_request` decorated functions.

        .. versionchanged:: 0.5
           As of Flask 0.5 the functions registered for after request
           execution are called in reverse order of registration.

        :param response: a :attr:`response_class` object.
        :return: a new response object or the same, has to be an
                 instance of :attr:`response_class`.
        r�)
r"�_get_current_object�_after_request_functionsr�rr!r��after_request_funcsr�rl�is_null_sessionr#�save_session)r�r3�ctxr�r�s     rDr5zFlask.process_responses����-�-�/���0�0�D�-�t�'�'��-�h�7�H�1��'�,�,�g�6�D��t�/�/�/�$�T�%=�%=�d�%C�D�D�5�t�/�/��5�h�?�H�E�7�
�%�%�5�5�c�k�k�B��"�"�/�/��c�k�k�8�L��rFc�J�|turtj�d}ttj
d�D]E}||jvs�t|j|�D]}|j|�|���Gtj||j|��y)a2Called after the request is dispatched and the response is
        returned, right before the request context is popped.

        This calls all functions decorated with
        :meth:`teardown_request`, and :meth:`Blueprint.teardown_request`
        if a blueprint handled the request. Finally, the
        :data:`request_tearing_down` signal is sent.

        This is called by
        :meth:`RequestContext.pop() <flask.ctx.RequestContext.pop>`,
        which may be delayed during testing to maintain access to
        resources.

        :param exc: An unhandled exception raised while dispatching the
            request. Detected from the current exception information if
            not passed. Passed to each teardown function.

        .. versionchanged:: 0.9
            Added the ``exc`` argument.
        rr��r�excN)r)rrrr!r��teardown_request_funcsr�r�r0r)r�rxr�r�s    rD�do_teardown_requestzFlask.do_teardown_request.s���0�)���,�,�.��#�C��'�,�,�g�6�D��t�2�2�2�$�T�%@�%@��%F�G�D�*�D�$�$�T�*�3�/�H�7�
	�!�!�$�t�7G�7G�S�QrFc���|turtj�d}t|j�D]}|j|�|��t
j||j
|��y)a�Called right before the application context is popped.

        When handling a request, the application context is popped
        after the request context. See :meth:`do_teardown_request`.

        This calls all functions decorated with
        :meth:`teardown_appcontext`. Then the
        :data:`appcontext_tearing_down` signal is sent.

        This is called by
        :meth:`AppContext.pop() <flask.ctx.AppContext.pop>`.

        .. versionadded:: 0.9
        rrwN)r)rrr��teardown_appcontext_funcsr�r,r)r�rxr�s   rD�do_teardown_appcontextzFlask.do_teardown_appcontextPsa��$�)���,�,�.��#�C��T�;�;�<�D�"�D���T�"�3�'�=�	 �$�$�T�$�:J�:J�PS�TrFc��t|�S)aFCreate an :class:`~flask.ctx.AppContext`. Use as a ``with``
        block to push the context, which will make :data:`current_app`
        point at this application.

        An application context is automatically pushed by
        :meth:`RequestContext.push() <flask.ctx.RequestContext.push>`
        when handling a request, and when running a CLI command. Use
        this to manually create a context outside of these situations.

        ::

            with app.app_context():
                init_db()

        See :doc:`/appcontext`.

        .. versionadded:: 0.9
        r)r�s rD�app_contextzFlask.app_contextjs��&�$��rFc��t||�S)a$Create a :class:`~flask.ctx.RequestContext` representing a
        WSGI environment. Use a ``with`` block to push the context,
        which will make :data:`request` point at this request.

        See :doc:`/reqcontext`.

        Typically you should not call this from your own code. A request
        context is automatically pushed by the :meth:`wsgi_app` when
        handling a request. Use :meth:`test_request_context` to create
        an environment and context instead of this method.

        :param environ: a WSGI environment
        r)r�r�s  rD�request_contextzFlask.request_contexts���d�G�,�,rFc��ddlm}||g|��i|��}	|j|j��|j	�S#|j	�wxYw)a�Create a :class:`~flask.ctx.RequestContext` for a WSGI
        environment created from the given values. This is mostly useful
        during testing, where you may want to run a function that uses
        request data without dispatching a full request.

        See :doc:`/reqcontext`.

        Use a ``with`` block to push the context, which will make
        :data:`request` point at the request for the created
        environment. ::

            with app.test_request_context(...):
                generate_report()

        When using the shell, it may be easier to push and pop the
        context manually to avoid indentation. ::

            ctx = app.test_request_context(...)
            ctx.push()
            ...
            ctx.pop()

        Takes the same arguments as Werkzeug's
        :class:`~werkzeug.test.EnvironBuilder`, with some defaults from
        the application. See the linked Werkzeug docs for most of the
        available arguments. Flask-specific behavior is listed here.

        :param path: URL path being requested.
        :param base_url: Base URL where the app is being served, which
            ``path`` is relative to. If not given, built from
            :data:`PREFERRED_URL_SCHEME`, ``subdomain``,
            :data:`SERVER_NAME`, and :data:`APPLICATION_ROOT`.
        :param subdomain: Subdomain name to append to
            :data:`SERVER_NAME`.
        :param url_scheme: Scheme to use instead of
            :data:`PREFERRED_URL_SCHEME`.
        :param data: The request body, either as a string or a dict of
            form keys and values.
        :param json: If given, this is serialized as JSON and passed as
            ``data``. Also defaults ``content_type`` to
            ``application/json``.
        :param args: other positional arguments passed to
            :class:`~werkzeug.test.EnvironBuilder`.
        :param kwargs: other keyword arguments passed to
            :class:`~werkzeug.test.EnvironBuilder`.
        r)�EnvironBuilder)rr�r��get_environ�close)r��argsrr��builders     rD�test_request_contextzFlask.test_request_context�sK��^	,� ��7��7��7��	��'�'��(;�(;�(=�>��M�M�O��G�M�M�O�s�A�Ac��|j|�}d}		|j�|j�}|||�d|vr:|dtj��|dtj��|�|j|�rd}|j|�S#t$r}|}|j	|�}Yd}~��d}~wtj�d}�xYw#d|vr:|dtj��|dtj��|�|j|�rd}|j|�wxYw)a�The actual WSGI application. This is not implemented in
        :meth:`__call__` so that middlewares can be applied without
        losing a reference to the app object. Instead of doing this::

            app = MyMiddleware(app)

        It's a better idea to do this instead::

            app.wsgi_app = MyMiddleware(app.wsgi_app)

        Then you still have the original application object around and
        can continue to call methods on it.

        .. versionchanged:: 0.7
            Teardown events for the request and app contexts are called
            even if an unhandled error occurs. Other events may not be
            called depending on when an error occurs during dispatch.
            See :ref:`callbacks-and-errors`.

        :param environ: A WSGI environment.
        :param start_response: A callable accepting a status code,
            a list of headers, and an optional exception context to
            start the response.
        Nrzwerkzeug.debug.preserve_context)r��pushr1r0rrrrr�r�should_ignore_error�pop)r�r��start_responserur#r3rs       rD�wsgi_appzFlask.wsgi_app�s3��6�"�"�7�+��&*��	�
����
��5�5�7���G�^�4�0�G�;�:��9�:�7�;�;�=�I�:��9�:�;�?�?�;L�M�� �T�%=�%=�e�%D����G�G�E�N���
4����0�0��3���
�����q�)����1�G�;�:��9�:�7�;�;�=�I�:��9�:�;�?�?�;L�M�� �T�%=�%=�e�%D����G�G�E�N�s/� B#�C$�#	C!�,C�?C$�C!�!C$�$A&E
c�&�|j||�S)z�The WSGI server calls the Flask application object as the
        WSGI application. This calls :meth:`wsgi_app`, which can be
        wrapped to apply middleware.
        )r�)r�r�r�s   rD�__call__zFlask.__call__�s���}�}�W�n�5�5rF)	NrxNFF�	templatesNFN)rnr�ro�
str | Nonerp�str | os.PathLike[str] | Nonerqr�rrr�rsr�rtr�rur�rvr�rwr�)r�r��return�
int | None)r�r�r�r)r�N)r�r�r�r�r�r�r�zt.IO[t.AnyStr])r�zutf-8)r�r1)r!zRequest | Noner�zMapAdapter | None)r!r2r�z
t.NoReturn)r��dict[str, t.Any]r��None)r�r�)NNNT)r�r�r�r�r��bool | Noner�r�r��t.Anyr�r�)T)rr�rr�r�r6)rr�r�r8)rrr��&HTTPException | ft.ResponseReturnValue)rr0r�r�)rr0r�r)rzCtuple[type, BaseException, TracebackType] | tuple[None, None, None]r�r�)r��ft.ResponseReturnValue)r�r)F)r�z&ft.ResponseReturnValue | HTTPExceptionrr�r�r)r��t.Callable[..., t.Any]r�r�)r�z1t.Callable[..., t.Coroutine[t.Any, t.Any, t.Any]]r�r�)rr�rCr�rDr�rEr�rFr�rQr�r�r�)r�r�r�r)r�zft.ResponseReturnValue | None)r3rr�r)rxzBaseException | Noner�r�)r�r)r�r4r�r)r�r�rr�r�r)r�r4r�r3r�zcabc.Iterable[bytes])2rf�
__module__�__qualname__�__doc__r
r�default_configr2rj�__annotations__rrkr*rlr�r�r{r�r�r�r�r�r�r�r�rrrrrrr-r1rr(r�r=r�r4r/r5r)rzr}rr�r�r�r��
__classcell__)r�s@rDrHrHQs8���^�@#�	
��T�	
��u�	
�
#�D�	
�
�$�		
�

#�D�	
�
)�)��*<�
	
�
�e�	
�
�T�	
�
�4�	
�
��	
�
"�9�	
�
$�T�	
�
"�4�	
�
&�t�	
�
$�U�	
� 
)�%�!	
�"
&�t�#	
�$-1�"&�$+�#�)-�'+�$)�(-�$*�%)�#�)-�;	
� �N�H$+�M�=�*�&.�N�N�-�+G�*H��'�H�
'+�7?�"&�#�#(�9D�$(�).� $�5��5�$�5�5�	5�
 �5��
5�!�5�7�5�"�5�#'�5��5�n�6
�.GK�3��3�#&�3�9C�3�	�3�DGN�3��3�#&�3�9C�3�	�3�,&�P3�j/�8!�8
� ��!� �y,��y,��y,��	y,�
�y,��
y,�
�y,�v8
�t#�"!,��!,�	/�!,�F,��,�	/�,�@3L�j

�V�

�
�

�Q�2)�*$)��2��!��
�	�>��+�E�+�	�+�8#�"�"�!%�|��|�
�|��
|��|��|��|�

�|�|L�\�6�<%.� R�
!� R�
� R�H%.�U�
!�U�
�U�4 �*-� 6�p0�&�0�8E�0�	�0�d6�&�6�8E�6�	�6rFrH)rCztimedelta | int | Noner�ztimedelta | None)c�
__future__r�collections.abc�abcr`r�rrr�r��datetimer�inspectr�	itertoolsr�typesr�urllib.parserrPr��werkzeug.datastructuresr	r
�werkzeug.exceptionsrrr
�werkzeug.routingrrrrrr�r�werkzeug.wrappersrrb�
werkzeug.wsgirr�r�ftrurrr�rrrr r!r"r#�helpersr$r%r&r'�
sansio.appr(�sansio.scaffoldr)�sessionsr*r+�signalsr,r-r.r/r0�
templatingr1�wrappersr2�
TYPE_CHECKING�_typeshed.wsgir3r4rr6r8r9�TypeVar�ShellContextProcessorCallabler:�TeardownCallabler<�TemplateFilterCallabler=�TemplateGlobalCallabler>�TemplateTestCallabler?rErHrzrFrD�<module>r�sM��"��	�
����'���,��+�1�2�-�3�'�'�,�-�!�5�6�"������ � ��� ��#�)�$�(��&�2�&�,�*�%�$�)�#����?�?�,�.�$�'�$�%�A�I�I��r�'G�'G����Q�Y�Y�|�2�+>�+>�
?�
��A�I�I�1��9R�9R�S���A�I�I�1��9R�9R�S���!�)�)�-�R�5L�5L�M��$�o6�C�o6rF

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists