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 Andrey Semashev */ /*! * \file scope/scope_fail.hpp * * This header contains definition of \c scope_fail template. */ #ifndef BOOST_SCOPE_SCOPE_FAIL_HPP_INCLUDED_ #define BOOST_SCOPE_SCOPE_FAIL_HPP_INCLUDED_ #include #include #include #include #include #include #include #include #ifdef BOOST_HAS_PRAGMA_ONCE #pragma once #endif namespace boost { namespace scope { template< typename Func, typename Cond > class scope_fail; namespace detail { // Workaround for clang < 5.0 which can't pass scope_fail as a template template parameter from within scope_fail definition template< typename T > using is_not_like_scope_fail = detail::is_not_like< T, scope_fail >; } // namespace detail /*! * \brief Scope exit guard that invokes a function upon leaving the scope, if * a failure condition is satisfied. * * The scope guard wraps two function objects: the scope guard action and * a failure condition for invoking the action. Both function objects must * be callable with no arguments and 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 condition function object `operator()` must return a value * contextually convertible to \c true, if the failure is detected and the * action function object is allowed to be executed, and \c false otherwise. * Additionally, the failure condition function object `operator()` must not * throw, as otherwise the action function object may not be called. If not * specified, the default failure condition checks whether the scope is left * due to an exception - the action function object will not be called if * the scope is left normally. * * \sa scope_exit * \sa scope_success * * \tparam Func Scope guard action function object type. * \tparam Cond Scope guard failure condition function object type. */ template< typename Func, typename Cond = exception_checker > class scope_fail : public scope_exit< Func, Cond > { //! \cond private: using base_type = scope_exit< Func, Cond >; //! \endcond public: /*! * \brief Constructs a scope guard with a given callable function object. * * **Requires:** \c Func is constructible from \a func. \c Cond is nothrow default-constructible. * * **Effects:** Constructs the scope guard as if by calling * `scope_fail(std::forward< F >(func), Cond(), active)`. * * **Throws:** Nothing, unless construction of the function objects throw. * * \param func The callable action function object to invoke on destruction. * \param active Indicates whether the scope guard should be active upon construction. * * \post `this->active() == active` */ template< typename F //! \cond , typename = typename std::enable_if< detail::conjunction< std::is_constructible< base_type, F, bool >, detail::is_not_like_scope_fail< F > >::value >::type //! \endcond > explicit scope_fail(F&& func, bool active = true) noexcept(BOOST_SCOPE_DETAIL_DOC_HIDDEN(std::is_nothrow_constructible< base_type, F, bool >::value)) : base_type(static_cast< F&& >(func), active) { } /*! * \brief Constructs a scope guard with a given callable action and failure condition function objects. * * **Requires:** \c Func is constructible from \a func. \c Cond is constructible from \a cond. * * **Effects:** If \c Func is nothrow constructible from `F&&` then constructs \c Func from * `std::forward< F >(func)`, otherwise constructs from `func`. If \c Cond is * nothrow constructible from `C&&` then constructs \c Cond from * `std::forward< C >(cond)`, otherwise constructs from `cond`. * * If \c Func or \c Cond construction throws and \a active is \c true, invokes * \a cond and, if it returns \c true, \a func before returning with the exception. * * **Throws:** Nothing, unless construction of the function objects throw. * * \param func The callable action function object to invoke on destruction. * \param cond The callable failure condition function object. * \param active Indicates whether the scope guard should be active upon construction. * * \post `this->active() == active` */ template< typename F, typename C //! \cond , typename = typename std::enable_if< std::is_constructible< base_type, F, C, bool >::value >::type //! \endcond > explicit scope_fail(F&& func, C&& cond, bool active = true) noexcept(BOOST_SCOPE_DETAIL_DOC_HIDDEN(std::is_nothrow_constructible< base_type, F, C, bool >::value)) : base_type(static_cast< F&& >(func), static_cast< C&& >(cond), active) { } /*! * \brief Move-constructs a scope guard. * * **Requires:** \c Func and \c Cond are nothrow move-constructible or copy-constructible. * * **Effects:** If \c Func is nothrow move-constructible then move-constructs \c Func from * a member of \a that, otherwise copy-constructs \c Func. If \c Cond is nothrow * move-constructible then move-constructs \c Cond from a member of \a that, * otherwise copy-constructs \c Cond. * * If \c Func or \c Cond construction throws and `that.active() == true`, invokes * \c Cond object stored in \a that and, if it returns \c true, \a Func object * (either the newly constructed one, if its construction succeeded, or the original * one stored in \a that) before returning with the exception. * * If the construction succeeds, marks \a that as inactive. * * **Throws:** Nothing, unless move-construction of the function objects throw. * * \param that Move source. * * \post `that.active() == false` */ //! \cond template< bool Requires = std::is_move_constructible< base_type >::value, typename = typename std::enable_if< Requires >::type > //! \endcond scope_fail(scope_fail&& that) noexcept(BOOST_SCOPE_DETAIL_DOC_HIDDEN(std::is_nothrow_move_constructible< base_type >::value)) : base_type(static_cast< base_type&& >(that)) { } scope_fail& operator= (scope_fail&&) = delete; scope_fail(scope_fail const&) = delete; scope_fail& operator= (scope_fail const&) = delete; }; #if !defined(BOOST_NO_CXX17_DEDUCTION_GUIDES) template< typename Func > explicit scope_fail(Func) -> scope_fail< Func >; template< typename Func > explicit scope_fail(Func, bool) -> scope_fail< Func >; template< typename Func, typename Cond, typename = typename std::enable_if< detail::is_invocable< Cond const& >::value >::type > explicit scope_fail(Func, Cond) -> scope_fail< Func, Cond >; template< typename Func, typename Cond, typename = typename std::enable_if< detail::is_invocable< Cond const& >::value >::type > explicit scope_fail(Func, Cond, bool) -> scope_fail< Func, Cond >; #endif // !defined(BOOST_NO_CXX17_DEDUCTION_GUIDES) /*! * \brief Creates a scope fail guard with a given action function object. * * **Effects:** Constructs a scope guard as if by calling * `scope_fail< std::decay_t< F > >(std::forward< F >(func), active)`. * * \param func The callable function object to invoke on destruction. * \param active Indicates whether the scope guard should be active upon construction. */ template< typename F > inline scope_fail< typename std::decay< F >::type > make_scope_fail(F&& func, bool active = true) noexcept(std::is_nothrow_constructible< scope_fail< typename std::decay< F >::type >, F, bool >::value) { return scope_fail< typename std::decay< F >::type >(static_cast< F&& >(func), active); } /*! * \brief Creates a scope fail with given callable function objects. * * **Effects:** Constructs a scope guard as if by calling * `scope_fail< std::decay_t< F >, std::decay_t< C > >( * std::forward< F >(func), std::forward< C >(cond), active)`. * * \param func The callable action function object to invoke on destruction. * \param cond The callable failure condition function object. * \param active Indicates whether the scope guard should be active upon construction. */ template< typename F, typename C > inline #if !defined(BOOST_SCOPE_DOXYGEN) typename std::enable_if< detail::is_invocable< C const& >::value, scope_fail< typename std::decay< F >::type, typename std::decay< C >::type > >::type #else scope_fail< typename std::decay< F >::type, typename std::decay< C >::type > #endif make_scope_fail(F&& func, C&& cond, bool active = true) noexcept(std::is_nothrow_constructible< scope_fail< typename std::decay< F >::type, typename std::decay< C >::type >, F, C, bool >::value) { return scope_fail< typename std::decay< F >::type, typename std::decay< C >::type >(static_cast< F&& >(func), static_cast< C&& >(cond), active); } } // namespace scope } // namespace boost #include #endif // BOOST_SCOPE_SCOPE_FAIL_HPP_INCLUDED_