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
#ifndef BOOST_COMPAT_FUNCTION_REF_HPP_INCLUDED #define BOOST_COMPAT_FUNCTION_REF_HPP_INCLUDED // Copyright 2024 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include #include #include namespace boost { namespace compat { template struct function_ref; namespace detail { template union thunk_storage { void* pobj_; void (*pfn_)() noexcept(NoEx); }; template struct invoke_function_holder { static R invoke_function(thunk_storage s, Args&&... args) noexcept(NoEx) { auto f = reinterpret_cast(s.pfn_); return compat::invoke_r(f, std::forward(args)...); } }; template struct invoke_object_holder { static R invoke_object(thunk_storage s, Args&&... args) noexcept(NoEx) { using T = remove_reference_t; using cv_T = conditional_t, T>; return compat::invoke_r(*static_cast(s.pobj_), std::forward(args)...); } }; template struct invoke_mem_fn_holder { static R invoke_mem_fn(thunk_storage /* s */, Args&&... args) noexcept(NoEx) { return compat::invoke_r(f, std::forward(args)...); } }; template struct invoke_target_mem_fn_holder { static R invoke_mem_fn(thunk_storage s, Args&&... args) noexcept(NoEx) { using T = remove_reference_t; using cv_T = conditional_t, T>; return compat::invoke_r(f, *static_cast(s.pobj_), std::forward(args)...); } }; template struct invoke_ptr_mem_fn_holder { static R invoke_mem_fn(thunk_storage s, Args&&... args) noexcept(NoEx) { using cv_T = conditional_t, T>; return compat::invoke_r(f, static_cast(s.pobj_), std::forward(args)...); } }; template struct function_ref_base { private: thunk_storage thunk_ = nullptr; R (*invoke_)(thunk_storage, Args&&...) noexcept(NoEx) = nullptr; public: struct fp_tag {}; struct obj_tag {}; struct mem_fn_tag {}; template function_ref_base(fp_tag, F* fn) noexcept : thunk_{}, invoke_(&invoke_function_holder::invoke_function) { thunk_.pfn_ = reinterpret_cast(fn); } template function_ref_base(obj_tag, F&& fn) noexcept : thunk_{}, invoke_(&invoke_object_holder::invoke_object) { thunk_.pobj_ = const_cast(static_cast(std::addressof(fn))); } template function_ref_base(mem_fn_tag, nttp_holder) : thunk_{}, invoke_(&invoke_mem_fn_holder::invoke_mem_fn) { thunk_.pobj_ = nullptr; } template function_ref_base(mem_fn_tag, nttp_holder, U&& obj) : thunk_{}, invoke_(&invoke_target_mem_fn_holder::invoke_mem_fn) { thunk_.pobj_ = const_cast(static_cast(std::addressof(obj))); } template function_ref_base(mem_fn_tag, nttp_holder, T* obj) : thunk_{}, invoke_(&invoke_ptr_mem_fn_holder::invoke_mem_fn) { thunk_.pobj_ = const_cast(static_cast(obj)); } function_ref_base(const function_ref_base&) noexcept = default; function_ref_base& operator=(const function_ref_base&) noexcept = default; R operator()(Args... args) const noexcept(NoEx) { return this->invoke_(thunk_, std::forward(args)...); } }; } // namespace detail template struct function_ref : public detail::function_ref_base { private: using base_type = detail::function_ref_base; using typename base_type::fp_tag; using typename base_type::mem_fn_tag; using typename base_type::obj_tag; template using is_invocable_using = boost::compat::is_invocable_r; public: template ::value && is_invocable_using::value, int> = 0> function_ref(F* fn) noexcept : base_type(fp_tag{}, fn) {} template , enable_if_t, function_ref>::value && !std::is_member_pointer::value && is_invocable_using::value, int> = 0> function_ref(F&& fn) noexcept : base_type(obj_tag{}, fn) {} template ::value, int> = 0> function_ref(detail::nttp_holder x) noexcept : base_type(mem_fn_tag{}, x) {} template , enable_if_t::value && is_invocable_using::value, int> = 0> function_ref(detail::nttp_holder x, U&& obj) noexcept : base_type(mem_fn_tag{}, x, std::forward(obj)) {} template ::value, int> = 0> function_ref(detail::nttp_holder x, T* obj) noexcept : base_type(mem_fn_tag{}, x, obj) {} function_ref(const function_ref&) noexcept = default; function_ref& operator=(const function_ref&) noexcept = default; template ::value && !std::is_pointer::value, int> = 0> function_ref& operator=(T) = delete; }; template struct function_ref : public detail::function_ref_base { private: using base_type = detail::function_ref_base; using typename base_type::fp_tag; using typename base_type::mem_fn_tag; using typename base_type::obj_tag; template using is_invocable_using = boost::compat::is_invocable_r; public: template ::value && is_invocable_using::value, int> = 0> function_ref(F* fn) noexcept : base_type(fp_tag{}, fn) {} template , enable_if_t, function_ref>::value && !std::is_member_pointer::value && is_invocable_using::value, int> = 0> function_ref(F&& fn) noexcept : base_type(obj_tag{}, fn) {} template ::value, int> = 0> function_ref(detail::nttp_holder x) noexcept : base_type(mem_fn_tag{}, x) {} template , enable_if_t::value && is_invocable_using::value, int> = 0> function_ref(detail::nttp_holder x, U&& obj) noexcept : base_type(mem_fn_tag{}, x, std::forward(obj)) {} template ::value, int> = 0> function_ref(detail::nttp_holder x, T const* obj) noexcept : base_type(mem_fn_tag{}, x, obj) {} function_ref(const function_ref&) noexcept = default; function_ref& operator=(const function_ref&) noexcept = default; template ::value && !std::is_pointer::value, int> = 0> function_ref& operator=(T) = delete; }; #if defined(__cpp_noexcept_function_type) template struct function_ref : public detail::function_ref_base { private: using base_type = detail::function_ref_base; using typename base_type::fp_tag; using typename base_type::mem_fn_tag; using typename base_type::obj_tag; template using is_invocable_using = boost::compat::is_nothrow_invocable_r; public: template ::value && is_invocable_using::value, int> = 0> function_ref(F* fn) noexcept : base_type(fp_tag{}, fn) {} template , enable_if_t, function_ref>::value && !std::is_member_pointer::value && is_invocable_using::value, int> = 0> function_ref(F&& fn) noexcept : base_type(obj_tag{}, fn) {} template ::value, int> = 0> function_ref(detail::nttp_holder x) noexcept : base_type(mem_fn_tag{}, x) {} template , enable_if_t::value && is_invocable_using::value, int> = 0> function_ref(detail::nttp_holder x, U&& obj) noexcept : base_type(mem_fn_tag{}, x, std::forward(obj)) {} template ::value, int> = 0> function_ref(detail::nttp_holder x, T* obj) noexcept : base_type(mem_fn_tag{}, x, obj) {} function_ref(const function_ref&) noexcept = default; function_ref& operator=(const function_ref&) noexcept = default; template ::value && !std::is_pointer::value, int> = 0> function_ref& operator=(T) = delete; }; template struct function_ref : public detail::function_ref_base { private: using base_type = detail::function_ref_base; using typename base_type::fp_tag; using typename base_type::mem_fn_tag; using typename base_type::obj_tag; template using is_invocable_using = boost::compat::is_nothrow_invocable_r; public: template ::value && is_invocable_using::value, int> = 0> function_ref(F* fn) noexcept : base_type(fp_tag{}, fn) {} template , enable_if_t, function_ref>::value && !std::is_member_pointer::value && is_invocable_using::value, int> = 0> function_ref(F&& fn) noexcept : base_type(obj_tag{}, fn) {} template ::value, int> = 0> function_ref(detail::nttp_holder x) noexcept : base_type(mem_fn_tag{}, x) {} template , enable_if_t::value && is_invocable_using::value, int> = 0> function_ref(detail::nttp_holder x, U&& obj) noexcept : base_type(mem_fn_tag{}, x, std::forward(obj)) {} template ::value, int> = 0> function_ref(detail::nttp_holder x, T const* obj) noexcept : base_type(mem_fn_tag{}, x, obj) {} function_ref(const function_ref&) noexcept = default; function_ref& operator=(const function_ref&) noexcept = default; template ::value && !std::is_pointer::value, int> = 0> function_ref& operator=(T) = delete; }; #endif } // namespace compat } // namespace boost #endif // #ifndef BOOST_COMPAT_FUNCTION_REF_HPP_INCLUDED