£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>

{fc           @   s   d    Z  d S(   c         c   sx  |  j    } d Vd } | j |  } x| j   D] \ } } } | d k rV d Vn2 | d k rj d Vn | j d  r q3 n	 d | V| j d	 d
  } | j d j |   } g  | j   D] }	 t |	 d  ^ q }
 d j | d j d   |
 D   } | j |  } x | D] } d | d VqWq3 Wd } | j |  } x& | j   D] \ } } } d | VqSWd Vd S(   s/  
    Returns an iterator to the dump of the database in an SQL text format.

    Used to produce an SQL dump of the database.  Useful to save an in-memory
    database for later restoration.  This function should not be called
    directly but instead called from the Connection method, iterdump().
    s   BEGIN TRANSACTION;s   
        SELECT "name", "type", "sql"
        FROM "sqlite_master"
            WHERE "sql" NOT NULL AND
            "type" == 'table'
            ORDER BY "name"
        t   sqlite_sequences   DELETE FROM "sqlite_sequence";t   sqlite_stat1s   ANALYZE "sqlite_master";t   sqlite_s   %s;t   "s   ""s   PRAGMA table_info("{0}")i   s2   SELECT 'INSERT INTO "{0}" VALUES({1})' FROM "{0}";t   ,c         s   s*   |  ]  } d  j  | j d d   Vq d S(   s   '||quote("{0}")||'R   s   ""N(   t   formatt   replace(   t   .0t   col(    (    s$   /usr/lib64/python2.7/sqlite3/dump.pys	   <genexpr>6   s    i    s   
        SELECT "name", "type", "sql"
        FROM "sqlite_master"
            WHERE "sql" NOT NULL AND
            "type" IN ('index', 'trigger', 'view')
        s   COMMIT;N(   t   cursort   executet   fetchallt
   startswithR   R   t   strt   join(   t
   connectiont   cut   qt
   schema_rest
   table_namet   typet   sqlt   table_name_identt   rest
   table_infot   column_namest	   query_rest   rowt   name(    (    s$   /usr/lib64/python2.7/sqlite3/dump.pyt	   _iterdump
   s4    				)N(   R   (    (    (    s$   /usr/lib64/python2.7/sqlite3/dump.pyt   <module>
   t    