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
/* Copyright 2019-2021 Glen Joseph Fernandes (glenjofe@gmail.com) Distributed under the Boost Software License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_SMART_PTR_ALLOCATE_UNIQUE_HPP #define BOOST_SMART_PTR_ALLOCATE_UNIQUE_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace detail { template struct sp_alloc_size { static constexpr std::size_t value = 1; }; template struct sp_alloc_size { static constexpr std::size_t value = sp_alloc_size::value; }; template struct sp_alloc_size { static constexpr std::size_t value = N * sp_alloc_size::value; }; template struct sp_alloc_result { typedef T type; }; template struct sp_alloc_result { typedef T type[]; }; template struct sp_alloc_value { typedef typename std::remove_cv::type>::type type; }; template class sp_alloc_ptr { public: typedef T element_type; sp_alloc_ptr() noexcept : p_() { } #if defined(BOOST_MSVC) && BOOST_MSVC == 1600 sp_alloc_ptr(T* p) noexcept : p_(const_cast::type*>(p)) { } #endif sp_alloc_ptr(std::size_t, P p) noexcept : p_(p) { } sp_alloc_ptr(std::nullptr_t) noexcept : p_() { } T& operator*() const { return *p_; } T* operator->() const noexcept { return boost::to_address(p_); } explicit operator bool() const noexcept { return !!p_; } bool operator!() const noexcept { return !p_; } P ptr() const noexcept { return p_; } static constexpr std::size_t size() noexcept { return 1; } #if defined(BOOST_MSVC) && BOOST_MSVC < 1910 static sp_alloc_ptr pointer_to(T& v) { return sp_alloc_ptr(1, std::pointer_traits

::pointer_to(const_cast::type&>(v))); } #endif private: P p_; }; template class sp_alloc_ptr { public: typedef T element_type; sp_alloc_ptr() noexcept : p_() { } sp_alloc_ptr(std::size_t n, P p) noexcept : p_(p) , n_(n) { } sp_alloc_ptr(std::nullptr_t) noexcept : p_() { } T& operator[](std::size_t i) const { return p_[i]; } explicit operator bool() const noexcept { return !!p_; } bool operator!() const noexcept { return !p_; } P ptr() const noexcept { return p_; } std::size_t size() const noexcept { return n_; } #if defined(BOOST_MSVC) && BOOST_MSVC < 1910 static sp_alloc_ptr pointer_to(T& v) { return sp_alloc_ptr(n_, std::pointer_traits

::pointer_to(const_cast::type&>(v))); } #endif private: P p_; std::size_t n_; }; template class sp_alloc_ptr { public: typedef T element_type; sp_alloc_ptr() noexcept : p_() { } sp_alloc_ptr(std::size_t, P p) noexcept : p_(p) { } sp_alloc_ptr(std::nullptr_t) noexcept : p_() { } T& operator[](std::size_t i) const { return p_[i]; } explicit operator bool() const noexcept { return !!p_; } bool operator!() const noexcept { return !p_; } P ptr() const noexcept { return p_; } static constexpr std::size_t size() noexcept { return N; } #if defined(BOOST_MSVC) && BOOST_MSVC < 1910 static sp_alloc_ptr pointer_to(T& v) { return sp_alloc_ptr(N, std::pointer_traits

::pointer_to(const_cast::type&>(v))); } #endif private: P p_; }; template inline bool operator==(const sp_alloc_ptr& lhs, const sp_alloc_ptr& rhs) { return lhs.ptr() == rhs.ptr(); } template inline bool operator!=(const sp_alloc_ptr& lhs, const sp_alloc_ptr& rhs) { return !(lhs == rhs); } template inline bool operator==(const sp_alloc_ptr& lhs, std::nullptr_t) noexcept { return !lhs.ptr(); } template inline bool operator==(std::nullptr_t, const sp_alloc_ptr& rhs) noexcept { return !rhs.ptr(); } template inline bool operator!=(const sp_alloc_ptr& lhs, std::nullptr_t) noexcept { return !!lhs.ptr(); } template inline bool operator!=(std::nullptr_t, const sp_alloc_ptr& rhs) noexcept { return !!rhs.ptr(); } template inline void sp_alloc_clear(A& a, typename boost::allocator_pointer::type p, std::size_t, std::false_type) { boost::alloc_destroy(a, boost::to_address(p)); } template inline void sp_alloc_clear(A& a, typename boost::allocator_pointer::type p, std::size_t n, std::true_type) { #if defined(BOOST_MSVC) && BOOST_MSVC < 1800 if (!p) { return; } #endif boost::alloc_destroy_n(a, boost::first_scalar(boost::to_address(p)), n * sp_alloc_size::value); } } /* detail */ template class alloc_deleter : empty_value::type>::type> { typedef typename allocator_rebind::type>::type allocator; typedef empty_value base; public: typedef detail::sp_alloc_ptr::type> pointer; explicit alloc_deleter(const allocator& a) noexcept : base(empty_init_t(), a) { } void operator()(pointer p) { detail::sp_alloc_clear(base::get(), p.ptr(), p.size(), std::is_array()); base::get().deallocate(p.ptr(), p.size()); } }; template using alloc_noinit_deleter = alloc_deleter >; namespace detail { template class sp_alloc_make { public: typedef typename boost::allocator_rebind::type>::type allocator; private: typedef boost::alloc_deleter deleter; public: typedef std::unique_ptr::type, deleter> type; sp_alloc_make(const A& a, std::size_t n) : a_(a) , n_(n) , p_(a_.allocate(n)) { } ~sp_alloc_make() { if (p_) { a_.deallocate(p_, n_); } } typename allocator::value_type* get() const noexcept { return boost::to_address(p_); } allocator& state() noexcept { return a_; } type release() noexcept { pointer p = p_; p_ = pointer(); return type(typename deleter::pointer(n_, p), deleter(a_)); } private: typedef typename boost::allocator_pointer::type pointer; allocator a_; std::size_t n_; pointer p_; }; } /* detail */ template inline typename std::enable_if::value, std::unique_ptr > >::type allocate_unique(const A& alloc) { detail::sp_alloc_make c(alloc, 1); boost::alloc_construct(c.state(), c.get()); return c.release(); } template inline typename std::enable_if::value, std::unique_ptr > >::type allocate_unique(const A& alloc, Args&&... args) { detail::sp_alloc_make c(alloc, 1); boost::alloc_construct(c.state(), c.get(), std::forward(args)...); return c.release(); } template inline typename std::enable_if::value, std::unique_ptr > >::type allocate_unique(const A& alloc, typename detail::sp_type_identity::type&& value) { detail::sp_alloc_make c(alloc, 1); boost::alloc_construct(c.state(), c.get(), std::move(value)); return c.release(); } template inline typename std::enable_if::value, std::unique_ptr > > >::type allocate_unique_noinit(const A& alloc) { return boost::allocate_unique >(alloc); } template inline typename std::enable_if::value, std::unique_ptr > >::type allocate_unique(const A& alloc, std::size_t size) { detail::sp_alloc_make c(alloc, size); boost::alloc_construct_n(c.state(), boost::first_scalar(c.get()), size * detail::sp_alloc_size::value); return c.release(); } template inline typename std::enable_if::value, std::unique_ptr::type, alloc_deleter > >::type allocate_unique(const A& alloc) { detail::sp_alloc_make c(alloc, std::extent::value); boost::alloc_construct_n(c.state(), boost::first_scalar(c.get()), detail::sp_alloc_size::value); return c.release(); } template inline typename std::enable_if::value, std::unique_ptr > > >::type allocate_unique_noinit(const A& alloc, std::size_t size) { return boost::allocate_unique >(alloc, size); } template inline typename std::enable_if::value, std::unique_ptr::type, alloc_deleter > > >::type allocate_unique_noinit(const A& alloc) { return boost::allocate_unique >(alloc); } template inline typename std::enable_if::value, std::unique_ptr > >::type allocate_unique(const A& alloc, std::size_t size, const typename std::remove_extent::type& value) { detail::sp_alloc_make c(alloc, size); boost::alloc_construct_n(c.state(), boost::first_scalar(c.get()), size * detail::sp_alloc_size::value, boost::first_scalar(&value), detail::sp_alloc_size::type>::value); return c.release(); } template inline typename std::enable_if::value, std::unique_ptr::type, alloc_deleter > >::type allocate_unique(const A& alloc, const typename std::remove_extent::type& value) { detail::sp_alloc_make c(alloc, std::extent::value); boost::alloc_construct_n(c.state(), boost::first_scalar(c.get()), detail::sp_alloc_size::value, boost::first_scalar(&value), detail::sp_alloc_size::type>::value); return c.release(); } template inline typename allocator_pointer::type>::type>::type get_allocator_pointer(const std::unique_ptr >& p) noexcept { return p.get().ptr(); } } /* boost */ #endif