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
/********************************************************************** * * Project: CPL - Common Portability Library * Purpose: Declarations for MiniXML Handler. * Author: Frank Warmerdam, warmerdam@pobox.com * ********************************************************************** * Copyright (c) 2001, Frank Warmerdam * * SPDX-License-Identifier: MIT ****************************************************************************/ #ifndef CPL_MINIXML_H_INCLUDED #define CPL_MINIXML_H_INCLUDED #include "cpl_port.h" /** * \file cpl_minixml.h * * Definitions for CPL mini XML Parser/Serializer. */ CPL_C_START /** XML node type */ typedef enum { /*! Node is an element */ CXT_Element = 0, /*! Node is a raw text value */ CXT_Text = 1, /*! Node is attribute */ CXT_Attribute = 2, /*! Node is an XML comment. */ CXT_Comment = 3, /*! Node is a special literal */ CXT_Literal = 4 } CPLXMLNodeType; /*! @cond Doxygen_Suppress */ typedef struct CPLXMLNode CPLXMLNode; /*! @endcond */ /** * Document node structure. * * This C structure is used to hold a single text fragment representing a * component of the document when parsed. It should be allocated with the * appropriate CPL function, and freed with CPLDestroyXMLNode(). The structure * contents should not normally be altered by application code, but may be * freely examined by application code. * * Using the psChild and psNext pointers, a hierarchical tree structure * for a document can be represented as a tree of CPLXMLNode structures. */ struct CPLXMLNode { /** * \brief Node type * * One of CXT_Element, CXT_Text, CXT_Attribute, CXT_Comment, * or CXT_Literal. */ CPLXMLNodeType eType; /** * \brief Node value * * For CXT_Element this is the name of the element, without the angle * brackets. Note there is a single CXT_Element even when the document * contains a start and end element tag. The node represents the pair. * All text or other elements between the start and end tag will appear * as children nodes of this CXT_Element node. * * For CXT_Attribute the pszValue is the attribute name. The value of * the attribute will be a CXT_Text child. * * For CXT_Text this is the text itself (value of an attribute, or a * text fragment between an element start and end tags. * * For CXT_Literal it is all the literal text. Currently this is just * used for !DOCTYPE lines, and the value would be the entire line. * * For CXT_Comment the value is all the literal text within the comment, * but not including the comment start/end indicators ("<--" and "-->"). */ char *pszValue; /** * \brief Next sibling. * * Pointer to next sibling, that is the next node appearing after this * one that has the same parent as this node. NULL if this node is the * last child of the parent element. */ struct CPLXMLNode *psNext; /** * \brief Child node. * * Pointer to first child node, if any. Only CXT_Element and CXT_Attribute * nodes should have children. For CXT_Attribute it should be a single * CXT_Text value node, while CXT_Element can have any kind of child. * The full list of children for a node are identified by walking the * psNext's starting with the psChild node. */ struct CPLXMLNode *psChild; }; CPLXMLNode CPL_DLL *CPLParseXMLString(const char *); void CPL_DLL CPLDestroyXMLNode(CPLXMLNode *); CPLXMLNode CPL_DLL *CPLGetXMLNode(CPLXMLNode *poRoot, const char *pszPath); #if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS) /*! @cond Doxygen_Suppress */ extern "C++" { inline const CPLXMLNode *CPLGetXMLNode(const CPLXMLNode *poRoot, const char *pszPath) { return const_cast( CPLGetXMLNode(const_cast(poRoot), pszPath)); } } /*! @endcond */ #endif CPLXMLNode CPL_DLL *CPLSearchXMLNode(CPLXMLNode *poRoot, const char *pszTarget); #if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS) /*! @cond Doxygen_Suppress */ extern "C++" { inline const CPLXMLNode *CPLSearchXMLNode(const CPLXMLNode *poRoot, const char *pszTarget) { return const_cast( CPLSearchXMLNode(const_cast(poRoot), pszTarget)); } } /*! @endcond */ #endif const char CPL_DLL *CPLGetXMLValue(const CPLXMLNode *poRoot, const char *pszPath, const char *pszDefault); CPLXMLNode CPL_DLL *CPLCreateXMLNode(CPLXMLNode *poParent, CPLXMLNodeType eType, const char *pszText); char CPL_DLL *CPLSerializeXMLTree(const CPLXMLNode *psNode); void CPL_DLL CPLAddXMLChild(CPLXMLNode *psParent, CPLXMLNode *psChild); int CPL_DLL CPLRemoveXMLChild(CPLXMLNode *psParent, CPLXMLNode *psChild); void CPL_DLL CPLAddXMLSibling(CPLXMLNode *psOlderSibling, CPLXMLNode *psNewSibling); CPLXMLNode CPL_DLL *CPLCreateXMLElementAndValue(CPLXMLNode *psParent, const char *pszName, const char *pszValue); void CPL_DLL CPLAddXMLAttributeAndValue(CPLXMLNode *psParent, const char *pszName, const char *pszValue); CPLXMLNode CPL_DLL *CPLCloneXMLTree(const CPLXMLNode *psTree); int CPL_DLL CPLSetXMLValue(CPLXMLNode *psRoot, const char *pszPath, const char *pszValue); void CPL_DLL CPLStripXMLNamespace(CPLXMLNode *psRoot, const char *pszNameSpace, int bRecurse); void CPL_DLL CPLCleanXMLElementName(char *); CPLXMLNode CPL_DLL *CPLParseXMLFile(const char *pszFilename); int CPL_DLL CPLSerializeXMLTreeToFile(const CPLXMLNode *psTree, const char *pszFilename); size_t CPL_DLL CPLXMLNodeGetRAMUsageEstimate(const CPLXMLNode *psNode); CPL_C_END #if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS) extern "C++" { #ifndef DOXYGEN_SKIP #include #endif /*! @cond Doxygen_Suppress */ struct CPL_DLL CPLXMLTreeCloserDeleter { void operator()(CPLXMLNode *psNode) const { CPLDestroyXMLNode(psNode); } }; /*! @endcond */ /** Manage a tree of XML nodes so that all nodes are freed when the instance * goes out of scope. Only the top level node should be in a * CPLXMLTreeCloser. */ class CPL_DLL CPLXMLTreeCloser : public std::unique_ptr { public: /** Constructor */ explicit CPLXMLTreeCloser(CPLXMLNode *data) : std::unique_ptr(data) { } /** Returns a pointer to the document (root) element * @return the node pointer */ CPLXMLNode *getDocumentElement(); }; } // extern "C++" #endif /* __cplusplus */ #endif /* CPL_MINIXML_H_INCLUDED */