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 2012-2019 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_SHARED_ARRAY_HPP #define BOOST_SMART_PTR_ALLOCATE_SHARED_ARRAY_HPP #include #include #include #include #include #include namespace boost { namespace detail { template struct sp_array_element { typedef typename std::remove_cv::type>::type type; }; template struct sp_array_count { enum { value = 1 }; }; template struct sp_array_count { enum { value = N * sp_array_count::value }; }; template struct sp_max_size { enum { value = N < M ? M : N }; }; template struct sp_align_up { enum { value = (N + M - 1) & ~(M - 1) }; }; template constexpr inline std::size_t sp_objects(std::size_t size) noexcept { return (size + sizeof(T) - 1) / sizeof(T); } template class sp_array_state { public: typedef A type; template sp_array_state(const U& _allocator, std::size_t _size) noexcept : allocator_(_allocator), size_(_size) { } A& allocator() noexcept { return allocator_; } std::size_t size() const noexcept { return size_; } private: A allocator_; std::size_t size_; }; template class sp_size_array_state { public: typedef A type; template sp_size_array_state(const U& _allocator, std::size_t) noexcept : allocator_(_allocator) { } A& allocator() noexcept { return allocator_; } constexpr std::size_t size() const noexcept { return N; } private: A allocator_; }; template struct sp_array_alignment { enum { value = sp_max_size::value, std::alignment_of::value>::value }; }; template struct sp_array_offset { enum { value = sp_align_up::value>::value }; }; template inline U* sp_array_start(T* base) noexcept { enum { size = sp_array_offset::value }; return reinterpret_cast(reinterpret_cast(base) + size); } template class sp_array_creator { typedef typename A::value_type element; enum { offset = sp_array_offset::value }; typedef typename sp_type_with_alignment::value>::type type; public: template sp_array_creator(const U& other, std::size_t size) noexcept : other_(other), size_(sp_objects(offset + sizeof(element) * size)) { } T* create() { return reinterpret_cast(other_.allocate(size_)); } void destroy(T* base) { other_.deallocate(reinterpret_cast(base), size_); } private: typename boost::allocator_rebind::type other_; std::size_t size_; }; template class BOOST_SYMBOL_VISIBLE sp_array_base : public sp_counted_base { typedef typename T::type allocator; public: typedef typename allocator::value_type type; template sp_array_base(const A& other, type* start, std::size_t size) : state_(other, size) { boost::alloc_construct_n(state_.allocator(), boost::first_scalar(start), state_.size() * sp_array_count::value); } template sp_array_base(const A& other, type* start, std::size_t size, const U& list) : state_(other, size) { enum { count = sp_array_count::value }; boost::alloc_construct_n(state_.allocator(), boost::first_scalar(start), state_.size() * count, boost::first_scalar(&list), count); } T& state() noexcept { return state_; } void dispose() noexcept override { boost::alloc_destroy_n(state_.allocator(), boost::first_scalar(sp_array_start(this)), state_.size() * sp_array_count::value); } void destroy() noexcept override { sp_array_creator other(state_.allocator(), state_.size()); this->~sp_array_base(); other.destroy(this); } void* get_deleter(const sp_typeinfo_&) noexcept override { return 0; } void* get_local_deleter(const sp_typeinfo_&) noexcept override { return 0; } void* get_untyped_deleter() noexcept override { return 0; } private: T state_; }; template struct sp_array_result { public: template sp_array_result(const U& other, std::size_t size) : creator_(other, size), result_(creator_.create()) { } ~sp_array_result() { if (result_) { creator_.destroy(result_); } } T* get() const noexcept { return result_; } void release() noexcept { result_ = 0; } private: sp_array_result(const sp_array_result&); sp_array_result& operator=(const sp_array_result&); sp_array_creator creator_; T* result_; }; } /* detail */ template inline typename std::enable_if::value, shared_ptr >::type allocate_shared(const A& allocator, std::size_t count) { typedef typename detail::sp_array_element::type element; typedef typename allocator_rebind::type other; typedef detail::sp_array_state state; typedef detail::sp_array_base base; detail::sp_array_result result(allocator, count); base* node = result.get(); element* start = detail::sp_array_start(node); ::new(static_cast(node)) base(allocator, start, count); result.release(); return shared_ptr(detail::sp_internal_constructor_tag(), start, detail::shared_count(static_cast(node))); } template inline typename std::enable_if::value, shared_ptr >::type allocate_shared(const A& allocator) { enum { count = std::extent::value }; typedef typename detail::sp_array_element::type element; typedef typename allocator_rebind::type other; typedef detail::sp_size_array_state::value> state; typedef detail::sp_array_base base; detail::sp_array_result result(allocator, count); base* node = result.get(); element* start = detail::sp_array_start(node); ::new(static_cast(node)) base(allocator, start, count); result.release(); return shared_ptr(detail::sp_internal_constructor_tag(), start, detail::shared_count(static_cast(node))); } template inline typename std::enable_if::value, shared_ptr >::type allocate_shared(const A& allocator, std::size_t count, const typename std::remove_extent::type& value) { typedef typename detail::sp_array_element::type element; typedef typename allocator_rebind::type other; typedef detail::sp_array_state state; typedef detail::sp_array_base base; detail::sp_array_result result(allocator, count); base* node = result.get(); element* start = detail::sp_array_start(node); ::new(static_cast(node)) base(allocator, start, count, value); result.release(); return shared_ptr(detail::sp_internal_constructor_tag(), start, detail::shared_count(static_cast(node))); } template inline typename std::enable_if::value, shared_ptr >::type allocate_shared(const A& allocator, const typename std::remove_extent::type& value) { enum { count = std::extent::value }; typedef typename detail::sp_array_element::type element; typedef typename allocator_rebind::type other; typedef detail::sp_size_array_state::value> state; typedef detail::sp_array_base base; detail::sp_array_result result(allocator, count); base* node = result.get(); element* start = detail::sp_array_start(node); ::new(static_cast(node)) base(allocator, start, count, value); result.release(); return shared_ptr(detail::sp_internal_constructor_tag(), start, detail::shared_count(static_cast(node))); } template inline typename std::enable_if::value, shared_ptr >::type allocate_shared_noinit(const A& allocator, std::size_t count) { return boost::allocate_shared(boost::noinit_adapt(allocator), count); } template inline typename std::enable_if::value, shared_ptr >::type allocate_shared_noinit(const A& allocator) { return boost::allocate_shared(boost::noinit_adapt(allocator)); } } /* boost */ #endif