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
// // SPDX-License-Identifier: BSD-3-Clause // Copyright Contributors to the OpenEXR Project. // // // This file contains type traits related to or used by the Imath library. // #ifndef INCLUDED_IMATHTYPETRAITS_H #define INCLUDED_IMATHTYPETRAITS_H #include #include "ImathPlatform.h" IMATH_INTERNAL_NAMESPACE_HEADER_ENTER /// Define Imath::enable_if_t to be std for C++14, equivalent for C++11. #if (IMATH_CPLUSPLUS_VERSION >= 14) using std::enable_if_t; // Use C++14 std::enable_if_t #else // Define enable_if_t for C++11 template using enable_if_t = typename std::enable_if::type; #endif /// An enable_if helper to be used in template parameters which results in /// much shorter symbols. #define IMATH_ENABLE_IF(...) \ IMATH_INTERNAL_NAMESPACE::enable_if_t<(__VA_ARGS__), int> = 0 #if IMATH_FOREIGN_VECTOR_INTEROP /// @{ /// @name Detecting interoperable types. /// /// In order to construct or assign from external "compatible" types without /// prior knowledge of their definitions, we have a few helper type traits. /// The intent of these is to allow custom linear algebra types in an /// application that have seamless conversion to and from Imath types. /// /// `has_xy`, `has_xyz`, `has_xyzw` detect if class /// `T` has elements `.x`, `.y`, and `.z` all of type `Base` and seems to be /// the right size to hold exactly those members and nothing more. /// /// `has_subscript` detects if class `T` can perform `T[int]` /// to yield a `Base`, and that it seems to be exactly the right size to /// hold `N` of those elements. /// /// This is not exact. It's possible that for a particular user-defined /// type, this may yield a false negative or false positive. For example: /// * A class for a 3-vector that contains an extra element of padding /// so that it will have the right size and alignment to use 4-wide /// SIMD math ops will appear to be the wrong size. /// * A `std::vector` is subscriptable and might have N elements at /// runtime, but the size is dynamic and so would fail this test. /// * A foreign type may have .x, .y, .z that are not matching our base /// type but we still want it to work (with appropriate conversions). /// /// In these cases, user code may declare an exception -- for example, /// stating that `mytype` should be considered implicitly convertible to /// an Imath::V3f by subscripting: /// /// template<> /// struct Imath::has_subscript : public std::true_type { }; /// /// And similarly, user code may correct a potential false positive (that /// is, a `mytype` looks like it should be convertible to a V3f, but you /// don't want it to ever happen): /// /// template /// struct Imath::has_subscript : public std::false_type { }; /// /// `has_xy::value` will be true if type `T` has member variables /// `.x` and `.y`, all of type `Base`, and the size of a `T` is exactly big /// enough to hold 2 Base values. template struct has_xy { private: typedef char Yes[1]; typedef char No[2]; // Valid only if .x, .y exist and are the right type: return a Yes. template < typename C, IMATH_ENABLE_IF (std::is_same::value), IMATH_ENABLE_IF (std::is_same::value)> static Yes& test (int); // Fallback, default to returning a No. template static No& test (...); public: enum { value = (sizeof (test (0)) == sizeof (Yes) && sizeof (T) == 2 * sizeof (Base)) }; }; /// `has_xyz::value` will be true if type `T` has member variables /// `.x`, `.y`, and `.z`, all of type `Base`, and the size of a `T` is /// exactly big enough to hold 3 Base values. template struct has_xyz { private: typedef char Yes[1]; typedef char No[2]; // Valid only if .x, .y, .z exist and are the right type: return a Yes. template < typename C, IMATH_ENABLE_IF (std::is_same::value), IMATH_ENABLE_IF (std::is_same::value), IMATH_ENABLE_IF (std::is_same::value)> static Yes& test (int); // Fallback, default to returning a No. template static No& test (...); public: enum { value = (sizeof (test (0)) == sizeof (Yes) && sizeof (T) == 3 * sizeof (Base)) }; }; /// `has_xyzw::value` will be true if type `T` has member variables /// `.x`, `.y`, `.z`, and `.w`, all of type `Base`, and the size of a `T` is /// exactly big enough to hold 4 Base values. template struct has_xyzw { private: typedef char Yes[1]; typedef char No[2]; // Valid only if .x, .y, .z, .w exist and are the right type: return a Yes. template < typename C, IMATH_ENABLE_IF (std::is_same::value), IMATH_ENABLE_IF (std::is_same::value), IMATH_ENABLE_IF (std::is_same::value), IMATH_ENABLE_IF (std::is_same::value)> static Yes& test (int); // Fallback, default to returning a No. template static No& test (...); public: enum { value = (sizeof (test (0)) == sizeof (Yes) && sizeof (T) == 4 * sizeof (Base)) }; }; /// `has_subscript::value` will be true if type `T` has /// subscripting syntax, a `T[int]` returns a `Base`, and the size of a `T` /// is exactly big enough to hold `Nelem` `Base` values. template struct has_subscript { private: typedef char Yes[1]; typedef char No[2]; // Valid only if T[] is possible and is the right type: return a Yes. template < typename C, IMATH_ENABLE_IF (std::is_same< typename std::decay::type, Base>::value)> static Yes& test (int); // Fallback, default to returning a No. template static No& test (...); public: enum { value = (sizeof (test (0)) == sizeof (Yes) && sizeof (T) == Nelem * sizeof (Base)) }; }; /// C arrays of just the right length also are qualified for has_subscript. template struct has_subscript : public std::true_type {}; /// `has_double_subscript::value` will be true if type `T` /// has 2-level subscripting syntax, a `T[int][int]` returns a `Base`, and /// the size of a `T` is exactly big enough to hold `R*C` `Base` values. template struct has_double_subscript { private: typedef char Yes[1]; typedef char No[2]; // Valid only if T[][] is possible and is the right type: return a Yes. template < typename C, IMATH_ENABLE_IF (std::is_same< typename std::decay::type, Base>::value)> static Yes& test (int); // Fallback, default to returning a No. template static No& test (...); public: enum { value = (sizeof (test (0)) == sizeof (Yes) && sizeof (T) == (Rows * Cols) * sizeof (Base)) }; }; /// C arrays of just the right length also are qualified for has_double_subscript. template struct has_double_subscript : public std::true_type {}; /// @} #endif IMATH_INTERNAL_NAMESPACE_HEADER_EXIT #endif // INCLUDED_IMATHTYPETRAITS_H