XPP__text__TEXT0`S__data__DATA03(rO__cstring__TEXT?\B__bss__DATAP`__picsymbolstub2__TEXTGIt__la_sym_ptr2__DATAOHQRR__nl_symbol_ptr__DATA`Pt M[;=L$4$>uٍ@=T$$>t NG=|$$y>uٍL=L$4$]>t MR=T$$6>uًZ=|$$>ua=L$4$=ui=T$$=un=|$$=eu=L$4$=t M=T$$=t M=|$$X=MEM.$<.9|D$D$$<WUWVSL0aCT$4$#$D$D$ D$l;$K;$I@$C=D$D$C1$@$=D$D$C$?$_=D$D$C$?$?4EL$E$'<UvC4$D$:>!$<$C<$C<$C<$C<$Cx<$Cf<$CT<$CB<4CCL$D$<$9 3CI3T$D$<$8Ct$D$<$8S3C<$L$D$8X3C2T$D$<$8Ct$D$<$84C<$L$D$q84C3T$D$<$O8Ct$D$<$98YCD$4 $D$74T$CD$<$7D$44 $D$74CD$T$<$7C4$D$D$74L$CD$<$75C$5D$D$H7Ct$D$<$K7,5C $D$D$7B5T$P5CD$<$ 7C4$D$D$6i5L$CD$<$6z5C$5D$D$6Ct$D$<$65C $D$D$^65T$5CD$<$U6C4$D$D$"65L$CD$<$6C5D$D$$65CD$t$<$5:uL[^_]Í6D$]C$;܋F4$Pt56ɋF4$PB$P|5$};$ET7Uƍg6UԉE؋M؋EԉL$$6t$|5$084$D$6̉4$E5E܋tuF4$PUWVS,d.E T$$61҅tr(5}$:$E630ƉUE<$D$R6t$4$74$D$6ω4$4Njt ,[^_]ËF4$PUVSM0uET$ /D$E T$EEt$L$$~:1҅tx$Q:1҅tbHEL$$:u{E$9FtaF F(9Ft)<FFF F$0[^]Í/D$<$y91ٍ0F${9D$<ՐUS,E T$$51҅tf3*$D$H5ƒ[]USwT$E *T$$41҅t +;ƒ[]U8U]kMT$E .u}T$L$ $x41҅tiD$D$ m$T$1$5tCD$E䍳9*D$E$e14$|$`4<$8]u}]5萐U8U]T$E y)T$u}$31҅tQ}1у $4t@D$E$0- $D$|$3<$8]u}]4U(]u}u }n't$|$$0t ]u}]5.'t$T$<$0֐U]E Q*u$T$u21҅t!Ft&$z7"9Fƒ]u]Í,b9T$$61UWVUS6,T$E y,T$$M21҅E@uF hE$6}G EP;8,$L$3$h5ƋE$5D$D$4$.5t$<$4$ 5,Ɖ$4D$D$4$4t$<$4eP4;<$51҅EF$0FFF ,EL$$0&MA88$0}G3E$4@ E tttM,UL$$+08 t)(D$$0MD$A$/E빃8 t͉<$4$3F,[^_]É<$4,L$8$41Ѝ,8T$8uFًMAx$WEt$D$E$MA88t}8}G2uFtMMA$;}G $4E@ @F4$P2$2F뢋MAx$WouF $3E@ G<$PF4$PpF4$P$g3E@ ,8L$USW4UMET$#T$ D$$)E T$L$$21҅tHU49BtD$B$B+t/UET$D$E@$ +4ƒ4[]Í:)4L$$11UVSM0"ET$ (D$E T$uL$$ 21҅t?"$|$)ty$)t9t#EMEH]u}]ËG<$Pҍr$b.T$$+t1뽋G<$P񍳲$b.t$$N+ՐUVutHFɉt\V tt Connection. Opens a new database connection.??close() Close the database connection.sqlite_busy_handler(func, data) Register a busy handler. The sqlite_busy_handler() procedure can be used to register a busy callback with an open SQLite database. The busy callback will be invoked whenever SQLite tries to access a database that is locked. The callback will typically do some other useful work, or perhaps sleep, in order to give the lock a chance to clear. If the callback returns non-zero, then SQLite tries again to access the database and the cycle repeats. If the callback returns zero, then SQLite aborts the current operation and returns SQLITE_BUSY, which PySQLite will make throw an OperationalError. The arguments to sqlite_busy_handler() are the callback function (func) and an additional argument (data) that will be passed to the busy callback function. When the busy callback is invoked, it is sent three arguments. The first argument will be the 'data' that was set as the third argument to sqlite_busy_handler. The second will be the name of the database table or index that SQLite was trying to access and the third one will be the number of times that the library has attempted to access the database table or index.Not supported any longercreate_function(name, n_args, func) Create a new SQL function. A new function under the name 'name', with 'n_args' arguments is created. The callback 'func' will be called for this function.???create_aggregate(name, n_args, step_func, finalize_func) Create a new SQL function. A new aggregate function under the name 'name', with 'n_args' arguments to the 'step_func' function will be created. 'finalize_func' will be called without arguments for finishing the aggregate.set_command_logfile(logfile) Registers a writeable file-like object as logfile where all SQL commands that get executed are written to.?sqlite_exec(sql, func, arg, use_types=0) Execute SQL. Executes the SQL string 'sql' and uses the callback function 'func' for each returned row. The argument 'arg' will be passed to the callback function. The signature of the callback function is (arg, values, colnames{, types}). types is ommitted unless use_types is true. If you use 'use_types', you MUST have issued 'pragma show_datatypes=ON' before.????encode(s) -> encoded binary string. Encode binary string 's' for storage in SQLite.decode(s) -> decoded binary string. Decode encoded binary string retrieved from SQLite.h@ q@z@@`2@@4@@@<@D=? ?@D2@@@T A" :A8.AH8?A`:KA dA sA !3A!7?tC??yC?CC%'#ConnectionResultSetfilenamemodenamen_argsfunclogfilesqlarguse_typessbinaryunicodeintervaltimestamptimedatefiINTERVALINTUNICODECHARTEXTBINARYBLOBFLOATNUMERICNUMBERDECIMALREALDOUBLETIMESTAMPDATETIMErow_listcol_defsrowcountconnectsqlite_versionsqlite_version_infoenable_callback_debuggingencodedecodecloseexecuteregister_converterset_expected_typesset_command_logfilecreate_functioncreate_aggregatesqlite_execsqlite_last_insert_rowidsqlite_changessqlite_busy_handlersqlite_busy_timeout_sqliteINTEGERSTRINGUNICODESTRING_sqlite.ErrorError_sqlite.Warning_sqlite.InterfaceErrorWarningInterfaceError_sqlite.DatabaseErrorDatabaseError_sqlite.InternalErrorInternalError_sqlite.OperationalErrorOperationalError_sqlite.ProgrammingErrorProgrammingError_sqlite.IntegrityErrorIntegrityError_sqlite.DataErrorDataError_sqlite.NotSupportedErrorNotSupportedErrorsqlite: init failedNeed to be linked against SQLite 2.5.6 or higher..dataaggregate_classconvertertypess|i:pysqlite_connectCannot allocate memory for converters.Cannot allocate memory for database name.s#Database is not open.s:executewrite -- types ,Illegal pragma!Cannot allocate buffer for copying SQL statement!There is no open database.OO:register_convertername must be a stringO:set_expected_typestypes must be a sequencesiO:create_functionCannot create function.func must be a callable!siO:create_aggregateCannot create aggregate.sOO|i:sqlite_execO|O:sqlite_busy_handlerThis method is not supported any longer. You will have to write a timeout handler yourself and register it with sqlite_busy_handler.O:set_command_logfilelogfile must have a callable 'write' attribute!logfile must have a 'write' attribute!stepfinalizefinalize method missingstrip⍀PԸϸ⍀P黸趸⍀P颸蝸⍀P鉸脸⍀Ppk⍀PWR⍀P>9j⍀jP% U⍀UP @⍀@P+⍀+Pڷշ⍀P輷⍀P騷裷⍀P鏷芷⍀Pvq⍀P]X⍀PD?⍀P+&⍀P n⍀nPY⍀YP۶D⍀DPǶ¶/⍀/P鮶詶⍀P镶萶⍀P|w⍀Pc^⍀PJE⍀P1,⍀P⍀P⍀Pr⍀rP͵ȵ]⍀]P鴵诵H⍀HP雵薵3⍀3P邵}⍀Pid ⍀ PPK⍀P72⍀P⍀P⍀P⍀PӴδ⍀P麴赴v⍀vP顴蜴a⍀aP鈴胴L⍀LPoj7⍀7PVQ"⍀"P=8 ⍀ P$⍀P ⍀P⍀PٳԳ⍀P軳⍀P駳袳⍀P鎳艳z⍀zPupe⍀eP\WP⍀PPC>;⍀;P*%&⍀&P ⍀P⍀P߲ڲ⍀PƲ⍀P魲訲⍀P锲菲⍀P{v⍀Pb]~⍀~PIDi⍀iP0+T⍀TP?⍀?P*⍀*P⍀P̱DZ⍀P鳱讱⍀P隱蕱⍀P遱|⍀Phc⍀POJ⍀P61⍀Pm⍀mPX⍀XP G9GRGkGGGGGGHH3HLHeH~HHHHHHI-IFI_IxIIIIIIJ'J@JYJrJJJJJJK!K:KSKlKKKKKKLL4LMLfLLLLLLLM.MGM`MyMMMMMMN(NANZNsNNNNNN O$Ë$Ý0P/00P/0u0P/k0a0P/W0M0P/C09020*0P/ 0 000/0{0//{0//g0//0//S0//?0//0//0//S0//0//?0//?0//0//80//?0//?0//?0//?0//S0//0//0//////( d/Z/Q/0);/@)2/A)//+@)/...R.A.0.#.-----F-"---,,,,, G),,,h,Q,:,#, ,+++tP)+?)++d+N+<+(+++*****tP)[*4*#**))))( )y)pP's)F'A))(((tP'((x(](T(0'J($((('F'''''''( g'tP%\'?'8'/'0%'&&&0%&&&&y&a&S&F%E&/&& &%%%%%( %%q%7%%%%tP#$$$$$0#$$$o$tP#X$tP#K$6$($$$#( ##`=####P##( V#""pP""F"""pP""F"p"b"V"MD"L"tP"="'"eF"":" "( !!P!!E!!( j!Q!E1!C!tP1!=!0?1!-!( ! !  A (    A ( r tPqZ O - h?q$   Eqt<qm( XLEYFPY1tPY'`?Yd?YvlEYhpP8D%tP`PDL?( PDx7tPRtPFxP@D6,pP"aD?_DwlC4UD1SDxlXK=1MD%tPCD( PR-DRtPR~iWARN( <, >&`>( *DUp^?UQ( :$?*D( stPIg[?IN0IE( 2&? A( PDxPCtPl]C;0/C2( ~rC?xi^SDA?;( rC @C j`hP VC D?/P )$ C B P P B P P B B P B {P udB [P UB OCP 9tB 3P  P [B MB P 7B P )B P B P B kP eUP OA I=A 5A 'P A A dP P @ P A P A P o@ iP cc@ ]MP G^@ A1P +T@ P +@ P P A P P P P P P {vP idP W4(P  A   P   P   P | w P j T L / 1 ) 0 A  lP  =  (   P tP  c@ P~ l ^@a PW E T@7 + M@  H@  @@  9@  1@ P  +@ x &@g P] K @A / @$ P  @ P  @ P  @ P  @r P 3 tP-  tP  tP  tP  tP  tP4  ?0s?iPD?>)????PPP?{]MD0:3!?etPQIPPPPPPP~PrPPtPE!tP{n0d]K1tPP?$( x[C>50+$tPs^N;(( y|tp\TPLD@40$                 p ` < 4 0 , $                    @8, YPOYPO'  UPNUPN'  QPNQPN'  MPNMPN'  IPNIPN'  {EPNsEPNm' h bAPkNZAPkNT' O I=PRNA=PRN;' 6 09P9N(9P9N"'  5P N5P N '  1PN1PN'  -PM-PM'  )PM)PM'  %PM%PM'  !PM!PM'  PMyPMs' n hPqM`PqMZ' U OPXMGPXMA' < 6P?M.P?M(' #  P&M P&M'   P M P M'  PLPL'  PLPL'  OLOL'  OLOL'  OLOLy' t nOwLfOwL`' [ UO^LMO^LG' B <OEL4OEL.' ) #O,LO,L'  OLOL'  OKOK'  OKOK'  OKOK'  OKOK'  OKOK' z tO}KlO}Kf' a [OdKSOdKM' H BOKK:OKK4' / )O2K!O2K'  OKOK'  OKOK'  OJOJ'  OJOJ'  OJOJ'  OJOJ'  zOJrOJl' g aOjJYOjJS' N HOQJ@OQJ:' 5 /O8J'O8J!'  OJOJ'  OJOJ'  OIOI'  OIOI'  OIOI'  }OI}OI'  yOIxyOIr' m guOpI_uOpIY' T NqOWIFqOWI@' ; 5mO>I-mO>I'' " iO%IiO%I'  eO IeO I'  aOHaOH'  ]OH]OH'  YOHYOH'  UOHUOH'  QOH~QOHx' s mMOvHeMOvH_' Z TIO]HLIO]HF' A ;EODH3EODH-' ( "AO+HAO+H'  =OH=OH'  9OG9OG'  5OG5OG'  1OG1OG'  -OG-OG'  )OG)OG~' y s%O|Gk%O|Ge' ` Z!OcGR!OcGL' G AOJG9OJG3' . (O1G O1G'  OGOG' D@<840,($  |xtplhd`\XTPLHD@<840,($  M2W_gvEZ53HCawF[@kl`b0NO^BeD-RuYonjqKA}mdiy6rtp/Jf|PL{;z487GQVU:T~19sx\.IchM2W_gvEZ53HCawF[@kl`b0NO^BeD-RuYonjqKA}mdiy6rtp/Jf|PL{;z487GQVU:T~19sx\.IchS><X?]=edd<0##DD DDD$D/D=DKDYDgDuD}DDDDDD$!-Y  h R##7~IYj/@Uj%;""3E!af)| $`2223 7 88 8B 8]  :{ :DDD,D/D2DBDRDTDWDlDwDzD}DDDDDDD D D DDDDDDDDDD*D3DBD MD(RD#aD$lD&wD'DDDDD $     @  !!!!@0!@!@U!@m!@v!w!x!$y!:!t<!<!=!DDDDDDDD!(D+D!1D#5D&cD(sD*D(D*D,D*D,D.D0D1D2D1D2D9 D:D9D:!D<OD=cD?lD@DADDDFD#DDDDD4*D5-DKNDLWDOp!PDS|!PDW!P!P!P "PD{"P("PD3"PDDD8DUDcDnDDDDDDDDDDD%D9DBDQDcDDDD~DZD\D^D`DaD_D]D['DU2DQ]DyDDDDDDD D D8 DO DV Dd Df Dm Du D D D D D D D D  D  D  D D  D D D D D D1 D7 D= D@ DT Dv D D D D D D D D" DI De D D DC D_ Dj D D D D D D >"$T"" """""c|###@#@##<$@N$d$~$$@$@$$$ $$, $`=$P$=$%&%4;%@]%n%D% >%`>%D%%%T%"&&H1&`C& b& w& !&!D D D D D' D- D3 DP Db Dn Du &PD{ D< D D D D D< D D< DD&D@DOD[DbDhDmDtDzDDDDDDDDDDDDDDDDDDDDDD DDD/DEDaDmDsDDDDDDDDD&PDD+D;DADMDS&PDYDiDD&PDDDD&PDDDDD 'PDDD7DA*'PDGDSDbDhD'PDDDDD^'PDDDDv'PDDD"D('PD3DCDLDTD~DDADDDBDDDFDDDFDHDK DL'$ '@'@'' '@6'7(@8 (9(@:*( +( ,(@6<(7L(@8X(9h(@:v( w( x(@6(7(@8(9(@:( ((@6(7(@8(9)@:))4)4)$4)0?)* K*Z*@g*@v***@*@*&2*****@*@*&2 + + +$DwDxD}D~8 +$w++v8+v E+@vR+$HD@DLDqDzD|S+$@|++ +@+$DDDDDDDDDDDDDDDDD!D#D(D*D9+$++ +@++@+,@ ,,5,,@%,-,@9,9:,B;,$DDDJDMDUDfDlDzDDDDDDDDDDD<,$DT,a, n,@{,,@,@,@,U,,,@,@,@,,,$D7D:D<DEDB%DC*,$7,6,6 -@6-@8--B -$`DLDDMRDL[DM^DLeDMhDRsD^DVD`D^DaDZD[!-$LD4-K@-K M-@KZ-$xDDDDDD D DD/DADHDJDQDpD|D D!D D!D"D$D%D'D/D0D/D0D5 D6D7D8!D9(D7/D;2D=OD>dD?vDFDLDNDWDXD]DZD`DaDb Da DbDDPDQ DI:D:DH>DAPDBVDAYDB\DC_Dfu[-)DpDqDrDqDrDuD}Dl-|/DDDDDD)-D*;D+ED tD|Dw-$-- -@--@-@--@.@.@6.7.8.C.@S.@_.o.@}.@.@...$DDDD D#D,D.D6DP.$.. ..@ /@/&L??/K/\/]/1^/&L?n/z//6/T/$DTD^DaDdDDDDDDDDDDD/$T// //@/@/&X?0$0d%0&0&X?60C0D0E0$DoDv DoDvDoDvDoADvDD}^D~vD|DDDDDDD D DD/D3F0$oc0no0n |0n0@n0@n0p0q0r0@s0&t81"11p1q1r)1@s:1&t8J1K1GL1$@DHDMDSDYD\D_DDDDDDDDD/D8D:DDD\M1$Hk1w1 11@1@1111&4353~ 63&8t<F39Q3:a3;m3<}3@>3 3 3$0D[ D^ Dc Df 3$[ 3Z3Z 3@Z3$HDi Dl Dq Dt!3$i 3h4h 4@h4$HDD !DI%!DD+!DI4!DGA!DIG!DDX!DI[!DG_!DIb!DOt!DP!DQ!DS!DT!DX!DT!DU!DW!DY! 4$D !A4CM4C Z4Ci4@Cv4@C4&E0?4F4G47!4!4&E0?4F4G4!4!4$D_!D`!De!4$_!5^5^ )5^85$,D"D"D/"D5"DG"DT"Df"Dh"Dj"Dl"Dx"D"D"D"D"D"D"D"D"D"D"95$"Z5f5 s55@5@55@5&:5"5"55@5&:6"6# 6$D #D #D#D #D'#D2#D9#D@#DK#DR#D!Z# 6$ #6 +6$D$#D'#D)#D2#D/#D0#,6$$#A6#O6# \6@#i6@%u6#v6#w6$`x6#Dd#Dt#Dd#Dn#Do$Dn$Do$Dp$Dq/$DsD$DtO$DsR$DtT$Dw_$Dym$Dv$Dt~$D$Dt$D$D$D$D$D$D$D$D$D$D%D%D;%DF%Dj%D~%D%D%D%6$d#6c6c 6c7@e7f67@gC7@hT7i`7@jj7@kw7l7#7%7$7%D%D%D%D%D%D%D%D%D&D&D$&D5&DD&DQ&De&Dg&Dj&Dp&Ds&Du&D}&D&D&D&D&D&D&D&D&D&D&D&D&D&D'D'D'D'D-'De'Dn'7$%77 77@7@7@8@8-878@[8m8@~8%8'8$8'D'D'D'D'D'D'D'D'D'D'D'D(D(D(D(D(D(D(D+(D:(DI(DR(Da(D&|(D((D)(D(D(D (D(D (D!(D")D/)D:)D q)D )8$'88@88@8 9@9$9@;9'<9)=9$ D)D1)D)D1)D4)D5)D6)D7)D6)D7)D9*D? *D@*D?*D@*DA**DB8*DA?*DBB*DDM*DEh*DBn*DH~*DI*DK*DL*DM*DN*DM*DN*DO*DR*DT*DU*DT*DU*DV*DW+DX +DY!+D[@+D\T+D^c+Dep+Df+Di+Dr+D+D+D+D+D+D+D+D+D,D,D',D*,D>,DA,DU,DX,Dl,Do,D,D,D,D,D,D,D,D,D,D,D,D,D,D -D-D-D-D)-D4-D?-DJ-DM-DO-DZ-Dh-Dp-Dt-Du-Dt-Du-Dv-Dw-Dx-Dy-Dx-Dy-D.D'.D/.D:.DE.DH.DK.D`.Dk.Dz.D.D.D{.D|.D}.D|.D}.D.Dy.D.D /D/D/D"/D-/D0/D6/D9/D`O/Dah/>9$)U9`9 k9{9@9@9999@ 9!9"9#9$:@%:&":@'1:@(C:)[:*|:@+:@,:@-:@.:@/:):p-:@::; ;@ ;!+;"<;#P;$X;@%e;&x;@';@(;);*;@+;@,;@-<@.<@/0<{-1<{/2<$D|/D/D/D/D/D0D 0D 0D0D80D=0D?0DS0Dg0D {0D 03<$|/D<O<@`</a< 0b<@s<0t<0u<$(v<(gP<(hP<(iP<(jP<(kP<(lP=(mP;=(nPY=(oPz=(pP=&r0=(wP=({P=(|P=(}P >(~P>(P,>(P@>(PR>(Pk>(P}>&m`>>'>&f >?d? ?G? ?&`2?&G2 @&+3K@&[7@&g8@&8@& :7A&*:lA&<A&=A&`=B&P+B&V=]Bd0W|P2PJ 01$Y,=<AkQz#8-a|PlVqQh\G@!2&}f5Ko_pysqlc_Type_pysqlrs_Type_sqlite_exec_callback___i686.get_pc_thunk.bx_init_sqlite___i686.get_pc_thunk.axdyld_stub_binding_helper_PyString_Type_PyExc_StandardError_PyExc_ImportError_PyType_Type_PyExc_ValueError__Py_NoneStruct_PyExc_MemoryError_PySequence_Check_PyDict_SetItem_PyType_IsSubtype_sqlite_decode_binary_sqlite_encode_binary___udivdi3_sqlite3_changes_sqlite3_last_insert_rowid_PyMember_Get_Py_FindMethod_PyErr_NewException_PyDict_SetItemString_PyObject_Compare_PyList_AsTuple_atoi_sqlite3_libversion_PyModule_GetDict_Py_InitModule4_PyFloat_FromDouble_sqlite3_column_double_sqlite3_column_int_atof_atol_PyDict_GetItem_PySequence_GetItem_PySequence_Size___toupper_strncpy_PyList_Append_pysqlite_strsep_strstr_PyList_New_PyArg_ParseTuple_PyString_Size_sqlite3_finalize_Py_BuildValue_sqlite3_column_type_sqlite3_column_text_sqlite3_column_decltype_sqlite3_data_count_PyObject_IsTrue_PyInt_FromLong_sqlite3_step_sqlite3_column_name_malloc_sqlite3_column_count_sqlite3_prepare_PyErr_NoMemory_sqlite3_errcode_sqlite3_exec_sqlite3_create_function_PyCallable_Check_PyObject_GetAttrString_sqlite3_aggregate_context_sqlite3_result_text_PyString_AsString_PyObject_Str_sqlite3_result_null_PyEval_SaveThread_sqlite3_result_error_PyErr_Clear_PyErr_Print_PyErr_Occurred_PyObject_CallObject_PyString_FromString_sqlite3_value_text_PyTuple_SetItem_PyTuple_New_PyEval_RestoreThread_PyTuple_GetItem_sqlite3_user_data_PyDict_New_strdup_PyErr_SetString_sqlite3_errmsg_sqlite3_open__PyObject_New_PyArg_ParseTupleAndKeywords_PyObject_Free_free_sqlite3_close/mnt/gmirror/ports/databases/py-PySQLite11/work/pysqlite-1.1.8/_sqlite.cgcc2_compiled._debug_callbacks__con_dealloc__con_get_attr__rs_dealloc__rs_get_attr_con_dealloc:f(0,1)=(0,1)void:t(0,1)self:p(0,2)=*(0,3)=(0,4)=s44ob_refcnt:(0,5)=r(0,5);-2147483648;2147483647;,0,32;ob_type:(0,6)=*(0,7)=xs_typeobject:,32,32;database_name:(0,8)=*(0,9)=k(0,10)=r(0,10);0;127;,64,32;sql:(0,8),96,32;p_db:(0,11)=*(0,12)=(0,13)=xssqlite3:,128,32;converters:(0,14)=*(0,15)=(0,16)=xs_object:,160,32;expected_types:(0,14),192,32;command_logfile:(0,14),224,32;busy_callback:(0,14),256,32;busy_callback_param:(0,14),288,32;tstate:(0,17)=*(0,18)=(0,19)=xs_ts:,320,32;;pysqlc:t(0,3)int:t(0,5)_typeobject:T(0,7)=s192ob_refcnt:(0,5),0,32;ob_type:(0,6),32,32;ob_size:(0,5),64,32;tp_name:(0,20)=*(0,10),96,32;tp_basicsize:(0,5),128,32;tp_itemsize:(0,5),160,32;tp_dealloc:(0,21)=(0,22)=*(0,23)=f(0,1),192,32;tp_print:(0,24)=(0,25)=*(0,26)=f(0,5),224,32;tp_getattr:(0,27)=(0,28)=*(0,29)=f(0,14),256,32;tp_setattr:(0,30)=(0,31)=*(0,32)=f(0,5),288,32;tp_compare:(0,33)=(0,34)=*(0,35)=f(0,5),320,32;tp_repr:(0,36)=(0,37)=*(0,38)=f(0,14),352,32;tp_as_number:(0,39)=*(0,40)=(0,41)=s152nb_add:(0,42)=(0,43)=*(0,44)=f(0,14),0,32;nb_subtract:(0,42),32,32;nb_multiply:(0,42),64,32;nb_divide:(0,42),96,32;nb_remainder:(0,42),128,32;nb_divmod:(0,42),160,32;nb_power:(0,45)=(0,46)=*(0,47)=f(0,14),192,32;nb_negative:(0,48)=(0,37),224,32;nb_positive:(0,48),256,32;nb_absolute:(0,48),288,32;nb_nonzero:(0,49)=(0,50)=*(0,51)=f(0,5),320,32;nb_invert:(0,48),352,32;nb_lshift:(0,42),384,32;nb_rshift:(0,42),416,32;nb_and:(0,42),448,32;nb_xor:(0,42),480,32;nb_or:(0,42),512,32;nb_coerce:(0,52)=(0,53)=*(0,54)=f(0,5),544,32;nb_int:(0,48),576,32;nb_long:(0,48),608,32;nb_float:(0,48),640,32;nb_oct:(0,48),672,32;nb_hex:(0,48),704,32;nb_inplace_add:(0,42),736,32;nb_inplace_subtract:(0,42),768,32;nb_inplace_multiply:(0,42),800,32;nb_inplace_divide:(0,42),832,32;nb_inplace_remainder:(0,42),864,32;nb_inplace_power:(0,45),896,32;nb_inplace_lshift:(0,42),928,32;nb_inplace_rshift:(0,42),960,32;nb_inplace_and:(0,42),992,32;nb_inplace_xor:(0,42),1024,32;nb_inplace_or:(0,42),1056,32;nb_floor_divide:(0,42),1088,32;nb_true_divide:(0,42),1120,32;nb_inplace_floor_divide:(0,42),1152,32;nb_inplace_true_divide:(0,42),1184,32;;,384,32;tp_as_sequence:(0,55)=*(0,56)=(0,57)=s40sq_length:(0,49),0,32;sq_concat:(0,42),32,32;sq_repeat:(0,58)=(0,59)=*(0,60)=f(0,14),64,32;sq_item:(0,58),96,32;sq_slice:(0,61)=(0,62)=*(0,63)=f(0,14),128,32;sq_ass_item:(0,64)=(0,65)=*(0,66)=f(0,5),160,32;sq_ass_slice:(0,67)=(0,68)=*(0,69)=f(0,5),192,32;sq_contains:(0,70)=(0,34),224,32;sq_inplace_concat:(0,42),256,32;sq_inplace_repeat:(0,58),288,32;;,416,32;tp_as_mapping:(0,71)=*(0,72)=(0,73)=s12mp_length:(0,49),0,32;mp_subscript:(0,42),32,32;mp_ass_subscript:(0,74)=(0,75)=*(0,76)=f(0,5),64,32;;,448,32;tp_hash:(0,77)=(0,78)=*(0,79)=f(0,80)=r(0,80);-2147483648;2147483647;,480,32;tp_call:(0,45),512,32;tp_str:(0,36),544,32;tp_getattro:(0,81)=(0,43),576,32;tp_setattro:(0,82)=(0,75),608,32;tp_as_buffer:(0,83)=*(0,84)=(0,85)=s16bf_getreadbuffer:(0,86)=(0,87)=*(0,88)=f(0,5),0,32;bf_getwritebuffer:(0,89)=(0,87),32,32;bf_getsegcount:(0,90)=(0,91)=*(0,92)=f(0,5),64,32;bf_getcharbuffer:(0,93)=(0,94)=*(0,95)=f(0,5),96,32;;,640,32;tp_flags:(0,80),672,32;tp_doc:(0,20),704,32;tp_traverse:(0,96)=(0,97)=*(0,98)=f(0,5),736,32;tp_clear:(0,49),768,32;tp_richcompare:(0,99)=(0,100)=*(0,101)=f(0,14),800,32;tp_weaklistoffset:(0,80),832,32;tp_iter:(0,102)=(0,37),864,32;tp_iternext:(0,103)=(0,37),896,32;tp_methods:(0,104)=*(0,105)=xsPyMethodDef:,928,32;tp_members:(0,106)=*(0,107)=xsPyMemberDef:,960,32;tp_getset:(0,108)=*(0,109)=xsPyGetSetDef:,992,32;tp_base:(0,6),1024,32;tp_dict:(0,14),1056,32;tp_descr_get:(0,110)=(0,46),1088,32;tp_descr_set:(0,111)=(0,75),1120,32;tp_dictoffset:(0,80),1152,32;tp_init:(0,112)=(0,75),1184,32;tp_alloc:(0,113)=(0,114)=*(0,115)=f(0,14),1216,32;tp_new:(0,116)=(0,117)=*(0,118)=f(0,14),1248,32;tp_free:(0,119)=(0,120)=*(0,121)=f(0,1),1280,32;tp_is_gc:(0,49),1312,32;tp_bases:(0,14),1344,32;tp_mro:(0,14),1376,32;tp_cache:(0,14),1408,32;tp_subclasses:(0,14),1440,32;tp_weaklist:(0,14),1472,32;tp_del:(0,21),1504,32;;char:t(0,10)PyObject:t(0,15)_object:T(0,16)=s8ob_refcnt:(0,5),0,32;ob_type:(0,6),32,32;;PyThreadState:t(0,18)_ts:T(0,19)=s84next:(0,122)=*(0,19),0,32;interp:(0,123)=*(0,124)=(0,125)=xs_is:,32,32;frame:(0,126)=*(0,127)=xs_frame:,64,32;recursion_depth:(0,5),96,32;tracing:(0,5),128,32;use_tracing:(0,5),160,32;c_profilefunc:(0,128)=(0,129)=*(0,130)=f(0,5),192,32;c_tracefunc:(0,128),224,32;c_profileobj:(0,14),256,32;c_traceobj:(0,14),288,32;curexc_type:(0,14),320,32;curexc_value:(0,14),352,32;curexc_traceback:(0,14),384,32;exc_type:(0,14),416,32;exc_value:(0,14),448,32;exc_traceback:(0,14),480,32;dict:(0,14),512,32;tick_counter:(0,5),544,32;gilstate_counter:(0,5),576,32;async_exc:(0,14),608,32;thread_id:(0,80),640,32;;destructor:t(0,21)printfunc:t(0,24)getattrfunc:t(0,27)setattrfunc:t(0,30)cmpfunc:t(0,33)reprfunc:t(0,36)PyNumberMethods:t(0,40)binaryfunc:t(0,42)ternaryfunc:t(0,45)unaryfunc:t(0,48)inquiry:t(0,49)coercion:t(0,52)PySequenceMethods:t(0,56)intargfunc:t(0,58)intintargfunc:t(0,61)intobjargproc:t(0,64)intintobjargproc:t(0,67)objobjproc:t(0,70)PyMappingMethods:t(0,72)objobjargproc:t(0,74)hashfunc:t(0,77)long int:t(0,80)getattrofunc:t(0,81)setattrofunc:t(0,82)PyBufferProcs:t(0,84)getreadbufferproc:t(0,86)getwritebufferproc:t(0,89)getsegcountproc:t(0,90)getcharbufferproc:t(0,93)traverseproc:t(0,96)richcmpfunc:t(0,99)getiterfunc:t(0,102)iternextfunc:t(0,103)PyMethodDef:T(0,105)=s16ml_name:(0,20),0,32;ml_meth:(0,131)=(0,43),32,32;ml_flags:(0,5),64,32;ml_doc:(0,20),96,32;;PyMemberDef:T(0,107)=s20name:(0,20),0,32;type:(0,5),32,32;offset:(0,5),64,32;flags:(0,5),96,32;doc:(0,20),128,32;;PyGetSetDef:T(0,109)=s20name:(0,20),0,32;get:(0,132)=(0,133)=*(0,134)=f(0,14),32,32;set:(0,135)=(0,136)=*(0,137)=f(0,5),64,32;doc:(0,20),96,32;closure:(0,138)=*(0,1),128,32;;descrgetfunc:t(0,110)descrsetfunc:t(0,111)initproc:t(0,112)allocfunc:t(0,113)newfunc:t(0,116)freefunc:t(0,119)PyInterpreterState:t(0,124)_is:T(0,125)=s36next:(0,139)=*(0,125),0,32;tstate_head:(0,122),32,32;modules:(0,14),64,32;sysdict:(0,14),96,32;builtins:(0,14),128,32;codec_search_path:(0,14),160,32;codec_search_cache:(0,14),192,32;codec_error_registry:(0,14),224,32;dlopenflags:(0,5),256,32;;Py_tracefunc:t(0,128)PyCFunction:t(0,131)getter:t(0,132)setter:t(0,135)_pysqlite_connect_doc_kwlist.0__con_close_doc__con_sqlite_busy_handler_doc__con_sqlite_busy_timeout_doc__con_create_function_doc_kwlist.1__con_create_aggregate_doc__con_set_command_logfile_doc_kwlist.2sqlite_exec_callback:F(0,5)pArg:p(0,138)argc:p(0,5)argv:p(0,140)=*(0,20)columnNames:p(0,140)columnNames:r(0,140)callback:(0,14)arg1:(0,14)con:(0,2)values:r(0,14)colnames:(0,14)calling_args:r(0,14)function_result:r(0,14)i:r(0,5)__con_sqlite_exec_doc_kwlist.3_pysqlite_encode_doc_pysqlite_decode_doc_process_record_tc_INTEGER_tc_FLOAT_tc_DATE_tc_TIME_tc_TIMESTAMP_tc_INTERVAL_tc_UNICODESTRING_tc_BINARY_tc_STRINGprocess_record:f(0,5)statement:p(0,141)=*(0,142)=(0,143)=xssqlite3_stmt:p_data:p(0,138)num_fields:p(0,5)p_fields:p(0,140)p_col_names:p(0,140)i:(0,5)pysqlrs:t(0,144)=(0,145)=s24ob_refcnt:(0,5),0,32;ob_type:(0,6),32,32;con:(0,2),64,32;p_row_list:(0,14),96,32;p_col_def_list:(0,14),128,32;row_count:(0,5),160,32;;p_row:(0,14)p_col_def:(0,14)l:r(0,5)j:r(0,5)type_name:(0,146)=ar(0,147)=r(0,147);0000000000000;0037777777777;;0;254;(0,10)long unsigned int:t(0,148)=r(0,148);0000000000000;0037777777777;type_code:r(0,14)expected_types:(0,14)expected_type_name:(0,14)converters:(0,14)converted:r(0,14)callable:r(0,14)callable_args:(0,14)__rs_memberlist__rs_methods_pysqlite_functions_pysqlite_connect_sqlite_library_version_sqlite_version_info_sqlite_enable_callback_debugging_pysqlite_encode_pysqlite_decode__con_memberlist__con_methods__con_close__con_execute__con_register_converter__con_set_expected_types__con_set_command_logfile__con_create_function__con_create_aggregate__con_sqlite_exec__con_sqlite_last_insert_rowid__con_sqlite_changes__con_sqlite_busy_handler__con_sqlite_busy_timeout_required_sqlite_version__sqlite_Error__sqlite_Warning__sqlite_InterfaceError__sqlite_DatabaseError__sqlite_InternalError__sqlite_OperationalError__sqlite_ProgrammingError__sqlite_IntegrityError__sqlite_DataError__sqlite_NotSupportedErrorinit_sqlite:F(0,1)module:r(0,14)dict:r(0,14)args:(0,14)vi_list:r(0,14)vi_tuple:(0,14)buf:r(0,20)iterator:(0,20)token:r(0,20)vi_list:r(0,14)vi_tuple:(0,14)buf:r(0,20)iterator:(0,20)token:r(0,20)vi_list:r(0,14)vi_tuple:(0,14)buf:r(0,20)iterator:(0,20)token:r(0,20)vi_list:r(0,14)vi_tuple:(0,14)buf:r(0,20)iterator:(0,20)token:r(0,20)_kwlist.4_kwlist.5_kwlist.6_kwlist.7sqlite_version_info:f(0,14)self:p(0,14)args:p(0,14)args:r(0,14)vi_list:r(0,14)vi_tuple:r(0,14)buf:r(0,20)iterator:(0,20)token:r(0,20)vi_list:r(0,14)vi_tuple:r(0,14)buf:r(0,20)iterator:(0,20)token:r(0,20)pysqlite_connect:f(0,14)self:p(0,14)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)db_name:(0,8)mode:(0,5)obj:r(0,2)rc:r(0,5)kwlist:V(0,149)=ar(0,147);0;2;(0,20)db_name:(0,8)mode:(0,5)obj:r(0,2)rc:r(0,5)kwlist:V(0,149)sqlite_library_version:f(0,14)self:p(0,14)args:p(0,14)args:r(0,14)sqlite_enable_callback_debugging:f(0,14)self:p(0,14)args:p(0,14)args:r(0,14)pysqlite_encode:f(0,14)self:p(0,14)args:p(0,14)args:r(0,14)in:(0,20)out:r(0,20)n:(0,5)res:r(0,14)in:(0,20)out:r(0,20)n:(0,5)res:r(0,14)pysqlite_decode:f(0,14)self:p(0,14)args:p(0,14)args:r(0,14)in:(0,20)out:r(0,20)n:r(0,5)res:r(0,14)in:(0,20)out:r(0,20)n:r(0,5)res:r(0,14)_con_get_attr:f(0,14)self:p(0,2)attr:p(0,20)attr:r(0,20)res:r(0,14)_con_close:f(0,14)self:p(0,2)args:p(0,14)args:r(0,14)_my_sqlite3_exec__seterror_con_execute:f(0,14)self:p(0,2)args:p(0,14)args:r(0,14)sql:(0,20)p_rset:r(0,150)=*(0,144)buf:r(0,20)iterator:(0,20)token:r(0,20)logfile_writemethod:r(0,14)logfile_writeargs:r(0,14)sql:(0,20)p_rset:r(0,150)buf:r(0,20)iterator:(0,20)token:r(0,20)logfile_writemethod:r(0,14)logfile_writeargs:r(0,14)_con_register_converter:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)kwlist:V(0,151)=ar(0,147);0;2;(0,20)name:(0,14)converter:(0,14)kwlist:V(0,151)name:(0,14)converter:(0,14)_con_set_expected_types:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)kwlist:V(0,152)=ar(0,147);0;1;(0,20)types:(0,14)kwlist:V(0,152)types:(0,14)_con_create_function:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)n_args:(0,5)name:(0,20)func:(0,14)userdata:r(0,14)kwlist:V(0,153)=ar(0,147);0;3;(0,20)n_args:(0,5)name:(0,20)func:(0,14)userdata:r(0,14)kwlist:V(0,153)_con_create_aggregate:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)aggregate_class:(0,14)n_args:(0,5)name:(0,20)kwlist:V(0,154)=ar(0,147);0;3;(0,20)userdata:r(0,14)aggregate_class:(0,14)n_args:(0,5)name:(0,20)kwlist:V(0,154)userdata:r(0,14)_con_sqlite_exec:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)kwlist:V(0,155)=ar(0,147);0;4;(0,20)sql:(0,20)callback:(0,14)arg1:(0,14)use_types:(0,5)cb_args:r(0,14)kwlist:V(0,155)sql:(0,20)callback:(0,14)arg1:(0,14)use_types:(0,5)cb_args:r(0,14)_con_sqlite_last_insert_rowid:f(0,14)self:p(0,2)args:p(0,14)args:r(0,14)_con_sqlite_changes:f(0,14)self:p(0,2)args:p(0,14)args:r(0,14)_con_sqlite_busy_handler:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)kwlist:V(0,156)=ar(0,147);0;2;(0,20)func:(0,14)data:(0,14)kwlist:V(0,156)func:(0,14)data:(0,14)_con_sqlite_busy_timeout:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)_con_set_command_logfile:f(0,14)self:p(0,2)args:p(0,14)kwargs:p(0,14)args:r(0,14)kwargs:r(0,14)logfile:(0,14)o:r(0,14)kwlist:V(0,157)=ar(0,147);0;1;(0,20)logfile:(0,14)o:r(0,14)kwlist:V(0,157)_rs_dealloc:f(0,1)self:p(0,150)_rs_get_attr:f(0,14)self:p(0,150)attr:p(0,20)attr:r(0,20)res:r(0,14)_function_callbackfunction_callback:f(0,1)context:p(0,158)=*(0,159)=(0,160)=xssqlite3_context:argc:p(0,5)params:p(0,161)=*(0,162)=*(0,163)=(0,164)=xsMem:i:r(0,5)function_result:(0,14)args:r(0,14)userdata:r(0,14)func:(0,14)s:r(0,14)cstr:r(0,20)con:(0,2)_aggregate_stepaggregate_step:f(0,1)context:p(0,158)argc:p(0,5)params:p(0,161)i:r(0,5)args:r(0,14)function_result:r(0,14)userdata:r(0,14)aggregate_class:(0,14)con:(0,2)aggregate_instance:r(0,165)=*(0,14)stepmethod:(0,14)strparam:r(0,20)_aggregate_finalizeaggregate_finalize:f(0,1)context:p(0,158)args:r(0,14)function_result:(0,14)s:r(0,14)aggregate_instance:(0,165)userdata:r(0,14)con:(0,2)finalizemethod:r(0,14)my_sqlite3_exec:f(0,5)con:p(0,2)sql:p(0,8)p_rset:p(0,150)sql:r(0,8)db:r(0,11)rc:(0,5)statement:(0,141)tail:(0,8)abort:r(0,5)num_fields:(0,5)p_fields:(0,140)p_col_names:(0,140)i:(0,5)data:r(0,20)busy_counter:(0,5)cbargs:r(0,14)cb_result:r(0,14)remaining_string:(0,14)remaining_string_stripped:(0,14)func_args:r(0,14)stripmethod:r(0,14)remaining_size:r(0,5)coltype:r(0,20)p_col_def:r(0,14)db:r(0,11)rc:(0,5)statement:(0,141)tail:(0,8)abort:r(0,5)num_fields:(0,5)p_fields:(0,140)p_col_names:(0,140)i:(0,5)data:r(0,20)busy_counter:(0,5)cbargs:r(0,14)cb_result:r(0,14)remaining_string:(0,14)remaining_string_stripped:(0,14)func_args:r(0,14)stripmethod:r(0,14)remaining_size:r(0,5)coltype:r(0,20)p_col_def:r(0,14)_seterror:f(0,5)db:p(0,11)errorcode:r(0,5)errorcode:r(0,5)_sqlite_Warning:S(0,14)_sqlite_Error:S(0,14)_sqlite_DatabaseError:S(0,14)_sqlite_InterfaceError:S(0,14)_sqlite_DataError:S(0,14)_sqlite_OperationalError:S(0,14)_sqlite_IntegrityError:S(0,14)_sqlite_InternalError:S(0,14)_sqlite_ProgrammingError:S(0,14)_sqlite_NotSupportedError:S(0,14)debug_callbacks:S(0,5)required_sqlite_version:S(0,14)tc_INTEGER:S(0,14)tc_FLOAT:S(0,14)tc_TIMESTAMP:S(0,14)tc_DATE:S(0,14)tc_TIME:S(0,14)tc_INTERVAL:S(0,14)tc_STRING:S(0,14)tc_UNICODESTRING:S(0,14)tc_BINARY:S(0,14)_con_methods:S(0,166)=ar(0,147);0;12;(0,167)=(0,105)PyMethodDef:t(0,167)_con_memberlist:S(0,168)=ar(0,147);0;2;(0,169)=xsmemberlist:memberlist:T(0,169)=s16name:(0,20),0,32;type:(0,5),32,32;offset:(0,5),64,32;flags:(0,5),96,32;;pysqlc_Type:G(0,170)=(0,7)PyTypeObject:t(0,170)pysqlrs_Type:G(0,170)pysqlite_connect_doc:S(0,171)=ar(0,147);0;70;(0,10)_con_close_doc:S(0,172)=ar(0,147);0;38;(0,10)_con_sqlite_busy_handler_doc:S(0,173)=ar(0,147);0;1229;(0,10)_con_sqlite_busy_timeout_doc:S(0,174)=ar(0,147);0;24;(0,10)_con_create_function_doc:S(0,175)=ar(0,147);0;199;(0,10)_con_create_aggregate_doc:S(0,176)=ar(0,147);0;291;(0,10)_con_set_command_logfile_doc:S(0,177)=ar(0,147);0;135;(0,10)_con_sqlite_exec_doc:S(0,178)=ar(0,147);0;434;(0,10)pysqlite_encode_doc:S(0,179)=ar(0,147);0;83;(0,10)pysqlite_decode_doc:S(0,180)=ar(0,147);0;87;(0,10)_rs_memberlist:S(0,181)=ar(0,147);0;3;(0,169)_rs_methods:S(0,182)=ar(0,147);0;0;(0,167)pysqlite_functions:S(0,183)=ar(0,147);0;6;(0,167)