ELF          >            @       82          @ 8 	 @                                 	      	                                                                                                                  P-      P=      P=                               `-      `=      `=                               8      8      8      $       $              Ptd   0'      0'      0'      T       T              Qtd                                                  Rtd   P-      P=      P=                                  GNU #?W1ڜ                             )@                                                                         U                                           U                      b                      "                                            ~                      l                     ?                                                                                                                                                        ,                                             F   "                   p                      .          j        __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize PyObject_Str __assert_fail PyUnicode_New memcpy PyLong_Type PyFloat_Type _Py_NoneStruct PyBool_Type PyObject_GetAttr PyObject_CallObject PyObject_CallFunctionObjArgs _Py_Dealloc PyUnicode_InternFromString PyErr_Clear PyInit__speedups PyImport_ImportModule PyObject_GetAttrString PyModule_Create2 libc.so.6 GLIBC_2.14 GLIBC_2.2.5                               }                 ui	         P=                   X=                    @              @      H@             $      `@             @      @             $      @             0      @             0       @             $      @                   @             !      @             $      @                   @             "      ?                    ?                    ?                    ?                    ?                    ?                    ?                    ?                    X?                    `?                    h?                    p?                    x?                    ?         	           ?         
           ?                    ?                    ?                    ?                    ?                    ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HH/  HtH         5"/  %$/  @ %"/  h    %/  h   %/  h   %
/  h   %/  h   %.  h   %.  h   %.  h   p%.  h   `%.  h	   P%.  h
   @%.  h   0%.  h    %.  f        H=	0  H0  H9tH.  Ht	        H=/  H5/  H)HH?HHHtH.  HtfD      =/   u+UH=b.   HtH=^.  Ydm/  ]     w    HVH   ttfHX     PXHw    H5  H=!  H;ff.     PXH'     H5  H=  Hff.     AWAVAUATUSHHG     w H<z  <:  <  @ P  HG8H#  H{L,8L9  E1D  "t&wII9tH<tv܀>uII9uM  @@Lǁ   HH  HC     C    Lc8My  HE     E    H}8HO  1M9  D=  D5  fD  A$"<  H  HcH>@ @   HG8H  HKL,L9   1@ "t&wHL9sH<tv݃>uHL9rH   HϾ HHe  HC     C    Lc8M[  HE   i  E    H}8H1  M1M9    A"   H~  HcH>H   tHHH[]A\A]A^A_f     @   HG8H  H{L$xL9s1      f"t	&fwHL9sHf<tvf>uHD  H@ IM9#HI)LUHff.     IM9IHM)IOd,I)f.     H  HH  HC     C  r  H[8H  HE     E  0  H}8H  I1L9_  L=v  ff.      AE "fwH5C  HcH>fD  H@ IM9rIL$HH)HH\H)H( LHH)HD;H{1LHH)HD3H{1qLHH)bHË  C;H{1H     LHH)2HËU  C;H{1     LHH)HH&#34Hx1@;D  H    LHH)fo%b  HHz"1L4LLL)J0L:Hz1@ L4LLL)vJ0H  HzH1}D  L4LLL)F;   J0Hv  fJHz
H1D@ L4LLL)J0HK  Hz
H;   fB1@ L4LL)L;   J0H  frHz
H1@ H    LHH)fo"  HHz1H    LHH)jfo  HB;   Hz
1yf     H    LHH)*fo  HB;   Hz19f     H    LHH)foB  HB;   Hz1f     1.f     HW(HG8@HEC@ HW(HG8@HE@ HW(HG8@@HE HU(H}8@HEfD  HS(H8@HDI!f.     HS(H8@HDIf.     HU(H}8@HED  HS(H8@HED  HU(H}8@HE11H     H5}	  H=	  HY    H5  H=	  a,H     H5:	  H=N	  =ff.     fUSHHH=%      HSH;$  H;h$  	H;l$  u}H;f$  ttH5%  HUHH   1HHHE x
HHE trH   H=j%  1H1Hx	HHt.H[]    H=9%  HH1[1]    HHD$#HD$@ HfD  H=P  H$  Hff.     1{f     HCH   uCHHtHHHE HHE H@ Hff.     H;5"  t>fD  H=1$  11     SH=|  HtBH5v  HHH#  Hx	HHt!  H="  [/    1[@ H  HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           /usr/include/python3.13/cpython/unicodeobject.h Replace the characters ``&``, ``<``, ``>``, ``'``, and ``"`` in the string with HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML.

If the object has an ``__html__`` method, it is called and the return value is assumed to already be safe for HTML.

:param s: An object to be converted to a string and escaped.
:return: A :class:`Markup` string with the escaped text.
      Like :func:`escape` but treats ``None`` as the empty string. Useful with optional values, as otherwise you get the string ``'None'`` when the value is ``None``.

>>> escape(None)
Markup('None')
>>> escape_silent(None)
Markup('')
   Convert an object to a string if it isn't already. This preserves a :class:`Markup` string rather than converting it back to a basic string, so it will still be marked as safe and won't be escaped again.

>>> value = escape("<User 1>")
>>> value
Markup('&lt;User 1&gt;')
>>> escape(str(value))
Markup('&amp;lt;User 1&amp;gt;')
>>> escape(soft_str(value))
Markup('&lt;User 1&gt;')
 PyUnicode_Check(op) src/markupsafe/_speedups.c PyUnicode_Check(in) data != NULL 0 __html__ markupsafe Markup markupsafe._speedups escape escape_silent soft_str    `0,LLLLLLLLLLLLLLLLLLLLLLL|LL`0    _PyUnicode_NONCOMPACT_DATA      PyUnicode_IS_COMPACT            PyUnicode_GET_LENGTH    escape_unicode  &#39&amp&lt;&gt;& # 3 4 & # 3 9 & a m p & l t ; & g t ; &   #   3   4   &   #   3   9   &   a   m   p   &   l   t   ;   &   g   t   ;   ;T   	   p                0    H                 zR x  $      x    FJw ?;*3$"       D   0              \   (          p   %    AA^        %    AA^  H      ,   BBB B(A0A8D@
8D0A(B BBBJ4         EAG0
AAHK
FCL    ,  ((           @  Dj    EG
LC
E                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }                           |             P=                           X=                    o    `                                
                                  @?             8                                                           	                            o           o          o           o    N      o                                                                                           `=                      6      F      V      f      v                                                                                                                       @                                                                  $              @                                                              $      0             0       $                   !      $                   "                                      fae4cce0230786833fd5058df3c05731da9cb9.debug    H13 .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debuglink                                                                                    8      8      $                                 o       `      `      $                             (                         (                          0                                                      8   o       N      N      .                            E   o                   0                            T                                                    ^      B                   8                          h                                                         c                                                        n                                                        w                         j                             }             |      |      	                                                           0                                          0'      0'      T                                           '      '      d                                          P=      P-                                                X=      X-                                                `=      `-                                 r             @?      @/                                                 @       0                                                   A       1                                                           1      4                                                    T1                                    