1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
/* * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * https://www.boost.org/LICENSE_1_0.txt) * * Copyright (c) 2022-2024 Andrey Semashev */ /*! * \file scope/defer.hpp * * This header contains definition of \c defer_guard template. */ #ifndef BOOST_SCOPE_DEFER_HPP_INCLUDED_ #define BOOST_SCOPE_DEFER_HPP_INCLUDED_ #include #include #include #include #include #include #include #ifdef BOOST_HAS_PRAGMA_ONCE #pragma once #endif namespace boost { namespace scope { template< typename Func > class defer_guard; namespace detail { // Workaround for clang < 5.0 which can't pass defer_guard as a template template parameter from within defer_guard definition template< typename T > using is_not_like_defer_guard = detail::is_not_like< T, defer_guard >; } // namespace detail /*! * \brief Defer guard that invokes a function upon leaving the scope. * * The scope guard wraps a function object callable with no arguments * that can be one of: * * \li A user-defined class with a public `operator()`. * \li An lvalue reference to such class. * \li An lvalue reference or pointer to function taking no arguments. * * The defer guard unconditionally invokes the wrapped function object * on destruction. */ template< typename Func > class defer_guard { //! \cond private: struct data { Func m_func; template< typename F, typename = typename std::enable_if< std::is_constructible< Func, F >::value >::type > explicit data(F&& func, std::true_type) noexcept : m_func(static_cast< F&& >(func)) { } template< typename F, typename = typename std::enable_if< std::is_constructible< Func, F >::value >::type > explicit data(F&& func, std::false_type) try : m_func(static_cast< F&& >(func)) { } catch (...) { func(); } }; data m_data; //! \endcond public: /*! * \brief Constructs a defer guard with a given callable function object. * * **Requires:** \c Func is constructible from \a func. * * **Effects:** If \c Func is nothrow constructible from `F&&` then constructs \c Func from * `std::forward< F >(func)`, otherwise constructs from `func`. * * If \c Func construction throws, invokes \a func before returning with the exception. * * **Throws:** Nothing, unless construction of the function object throws. * * \param func The callable function object to invoke on destruction. */ template< typename F //! \cond , typename = typename std::enable_if< detail::conjunction< std::is_constructible< data, typename detail::move_or_copy_construct_ref< F, Func >::type, typename std::is_nothrow_constructible< Func, typename detail::move_or_copy_construct_ref< F, Func >::type >::type >, detail::is_not_like_defer_guard< F > >::value >::type //! \endcond > defer_guard(F&& func) noexcept(BOOST_SCOPE_DETAIL_DOC_HIDDEN( std::is_nothrow_constructible< data, typename detail::move_or_copy_construct_ref< F, Func >::type, typename std::is_nothrow_constructible< Func, typename detail::move_or_copy_construct_ref< F, Func >::type >::type >::value )) : m_data ( static_cast< typename detail::move_or_copy_construct_ref< F, Func >::type >(func), typename std::is_nothrow_constructible< Func, typename detail::move_or_copy_construct_ref< F, Func >::type >::type() ) { } defer_guard(defer_guard const&) = delete; defer_guard& operator= (defer_guard const&) = delete; /*! * \brief Invokes the wrapped callable function object and destroys the callable. * * **Throws:** Nothing, unless invoking the callable throws. */ ~defer_guard() noexcept(BOOST_SCOPE_DETAIL_DOC_HIDDEN(detail::is_nothrow_invocable< Func& >::value)) { m_data.m_func(); } }; #if !defined(BOOST_NO_CXX17_DEDUCTION_GUIDES) template< typename Func > defer_guard(Func) -> defer_guard< Func >; #endif // !defined(BOOST_NO_CXX17_DEDUCTION_GUIDES) } // namespace scope //! \cond #if defined(BOOST_MSVC) #define BOOST_SCOPE_DETAIL_UNIQUE_VAR_TAG __COUNTER__ #else #define BOOST_SCOPE_DETAIL_UNIQUE_VAR_TAG __LINE__ #endif //! \endcond /*! * \brief The macro creates a uniquely named defer guard. * * The macro should be followed by a function object that should be called * on leaving the current scope. Usage example: * * ``` * BOOST_SCOPE_DEFER [] * { * std::cout << "Hello world!" << std::endl; * }; * ``` * * \note Using this macro requires C++17. */ #define BOOST_SCOPE_DEFER \ boost::scope::defer_guard BOOST_JOIN(_boost_defer_guard_, BOOST_SCOPE_DETAIL_UNIQUE_VAR_TAG) = } // namespace boost #include #endif // BOOST_SCOPE_DEFER_HPP_INCLUDED_