ELF                4   c      4    (                  6  6           8  8'  8'               \$  \4  \4              %   /                            "                )                     ,   *   &   %   !         #              (                                -                           '                 .       $   +                      
                                                     	                                                    \4       
   3                       /   	  h     5      1    
 ;              I              Z       K     d              w                    8                                        (             \                                                                                             P     (           3             B             X             c             q      ;      }                              +                                               T  l    	                                                     /            ;            E      >      L          S  4       Z  4       f  4        _DYNAMIC _GLOBAL_OFFSET_TABLE_ __gmon_start__ _init _fini _PyObject_New __errno_location gdbm_open PyErr_SetFromErrno gdbm_errno gdbm_strerror PyErr_SetString gdbm_close free gdbm_firstkey gdbm_nextkey PyArg_Parse gdbm_fetch PyString_FromStringAndSize PyExc_KeyError PyExc_TypeError gdbm_delete gdbm_store _Py_NoneStruct PyErr_BadInternalCall PyList_New PyList_Append gdbm_exists PyInt_FromLong gdbm_reorganize gdbm_sync Py_FindMethod PyType_Type PyArg_ParseTuple initgdbm Py_InitModule4 PyModule_GetDict PyErr_NewException PyDict_SetItemString libgdbm.so.2 ___brk_addr __environ atexit _etext _edata __bss_start _end  l*     p*     t*     $/     (/     0/     4/     8/     @/     D/     H/     P/     T/     X/     `/     d/     h/     p/     t/     x/     /     /     /     /     /  !  /     /     /     /     /     3     3     3     P4    D4  
  H4    T4  (  X4  )  L4    @4    3    3    3    3    3  '  3    3    3     3  $  3    3    3    3    3     4    4    4  	  4    4    4  %  4  *  4     4    $4    (4  "  ,4    04    44    84  &  <4            US    [3*      t    ]]             h       h      h      h      h        h(   $   h0   (   h8   p,   h@   `0   hH   P4   hP   @8   hX   0<   h`    @   hh   D   hp    H   hx   L   h   P   h   T   h   X   h   \   h   `   h   d   h   h   h   pl   h   `p   h   Pt   h   @x   h   0|   h       h   UVS    [(  px tЃ> ue[^ÐUS    ['  ]ÐUWVS    ['  PFƃu1F    j uuj uFuL? t   hv    03P   PuFV@뀐e[^_ÉUVS    ['  uFt	P/Ve[^Ív U$WVS    [&  uFuR      }    1E    uuPVUM}}܋}}UM} tKuEt	RU܋MQRuvuUM}}܋}}UM} u}u~uFe[^_ÉUWVS    [%  uUMQRRu)tJUMEQPvRu}tWVJEVQEUR   21e[^_ÉUWVS    [n%  }MURQVuuR   2    uR   G} u/UMRQwo   UR   2   MURQVuuR   2Wv     jUMRQUMRQw}2> t   v   2GP   1e[^_ÉUVS    [>$  uPuuu1$FtP;F           e[^Ív UWVS    [#  } tM9Qt1T  v Rut} uR   Ðj EtUMqR}}}}}    v uuƃu,uMz9TQQRFVuEJuVVR҃} t/u}JWWRv Uuu}wRCMMMMu/}}}}} "Ee[^_Ív UVS    [K"  uUMQRRuzt1FtUMRQP.PR   B1e[^ÐUWVS    [!  uRuu1]NuR   1>v UQRu}u      WVEVEe[^_ÐUWVS    [B!  uUMQRRuqu1evuR   K1Fv UMEQPVRu}u      WV]EVdEe[^_ÐUWVS    [Ý   }Puu1k u
?    w}0> t   <뽉   0P   o렐       e[^_ÉUVS    [  uPu1t0FtP       P   1e[^ÐUS    [×  uuhP]ÐUS    [l  0EE  EPEPEP3Puu1   E Pw~+v                                           10   )   !   8P   1ExfuuRu]Ív UVS    [^  h  j |PP+PP`j j iP   $tPtPVCe[^UVS    [  pxtЃ>ue[^ÐUS    [ÿ        ]ÐUS    [Ó  g]]GDBM object has already been closed s# gdbm mappings have string indices only gdbm mappings have string elements only  sync reorganize nextkey firstkey has_key keys close gdbm r  s|si Flags should be one of 'r', 'w', 'c' or 'n' open gdbm.error error   This module provides an interface to the GNU DBM (GDBM) library.

This module is quite similar to the dbm module, but uses GDBM instead to
provide some additional functionality. Please note that the file formats
created by GDBM and dbm are incompatible. 

GDBM objects behave like mappings (dictionaries), except that keys and
values are always strings. Printing a GDBM object doesn't print the
keys and values, and the items() and values() methods are not
supported. This object represents a GDBM database.
GDBM objects behave like mappings (dictionaries), except that keys and
values are always strings. Printing a GDBM object doesn't print the
keys and values, and the items() and values() methods are not
supported.

GDBM objects also support additional operations such as firstkey,
nextkey, reorganize, and sync.       @  close() -> None
Closes the database. keys() -> list_of_keys
Get a list of all keys in the database. has_key(key) -> boolean
Find out whether or not the database contains a given key. firstkey() -> key
It's possible to loop over every key in the database using this method
and the nextkey() method. The traversal is ordered by GDBM's internal
hash values, and won't be sorted by the key values. This method
returns the starting key. nextkey(key) -> next_key
Returns the key that follows key in the traversal.
The following code prints every key in the database db, without having
to create a list in memory that contains them all:

      k = db.firstkey()
      while k != None:
          print k
          k = db.nextkey(k) reorganize() -> None
If you have carried out a lot of deletions and would like to shrink
the space used by the GDBM file, this routine will reorganize the
database. GDBM will not shorten the length of a database file except
by using this reorganization; otherwise, deleted file space will be
kept and reused as new (key,value) pairs are added. sync() -> None
When the database has been opened in fast mode, this method forces
any unwritten data to be written to the disk.   t      x*          *    d      *          /+    l      (,          L-          .                                                                  l*                              )  open(filename, [flag, [mode]])  -> dbm_object
Open a dbm database and return a dbm object. The filename argument is
the name of the database file.

The optional flag argument can be 'r' (to open an existing database
for reading only -- default), 'w' (to open an existing database for
reading and writing), 'c' (which creates the database if it doesn't
exist), or 'n' (which always creates a new empty database).

Appending f to the flag opens the database in fast mode; altered
data will not automatically be written to the disk after every
change. This results in faster writes to the database, but may
result in an inconsistent database if the program crashes while the
database is still open. Use the sync() method to force any
unwritten data to be written to the disk.

The optional mode argument is the Unix mode of the file, used only
when the database has to be created. It defaults to octal 0666.       D      0                          \4          	  	  	  	  
  
  "
  2
  B
  R
  b
  r
  
  
  
  
  
  
  
  
      "  2  B  R  b  r                                     "     	                        
   k           3                      H     @                      'k#     d     5   d     D   <       S          u                                                  )         m                                                               $         Q         l                                                                              *        ,        -     (   .     3   /     >   0     J   1     W   2     b   3     n   4     y   5        :        =        >        ?        @        B        E         T     1   W     <   Y     K        U        _        m        {            !        4                                        I         x                           &         c                                             7         d        |                     G        H                )     (   0     O   !     Z   "     e   #     n   $     x   %        &        '        *        +        ,        -        .        /        0        1        2        5        :     	   ;     	   ?     	   N     #	   J     ,	   K     6	   L     >	   g     I	   h     V	   i     a	   j     n	   k     y	   l     	   m     	   n     	   p     	         	   -     	   0     	         $
         Y
         
         
         
       
         <   t     I            x                                                             3        L        h                                                  N                                    B         {                          +        Z                                          4        I        a        r                                                          >         }                  
         ;         v                                      :     )   (     J            /                         )              P            N                 9              ?   9     g   ,     w   .                          :              ?   I     R                     /              5         l   3                 9              O        }                              ;     (         Z                                    [            [                                                 K                                    #         \                              6        :     Q                                    U                                    =         S        c  & , 8'              <       & I )     $ U       U        V    &    W    .   D X     .   D Y    .   D [    .   D \     .   D ] '   .   D ^ ,   .   D _ 3   .   D ` @   .   D a \   .   D b a   .   D d t   .   D f    .   D g    .   D i    .   D j    /   @ Y    .         .         <   $ p   L    p    .   D q     .   D r    .   D s    .   D t $   .   D u *   T   @ p    \   $ y   L    y    .   D z     .   D {    .   D |    .   D } 1   .   D  <   .   D  I   .   D  I   .   D  K   .   D  R   .   D     .   D     .   D     .   D     .   D     .   D     .   D     .   D     .         j     r   @     |     .      I   .         .            $    L                .   D      .   D     .   D     .   D  6   .   D  P   .   D  W   .   D  a   .   D  g   .   D  l   .   D     .   D     T   @             @          .         .            $  @  L                        .   D      .   D     .   D     .   D  6   .   D  E   .   D  L   .   D  R   .   D  Y   .   D  `   .   D  g   .   D  m   .   D     .   D     .   D     .   D     .   D     .   D     .   D     .   D     .   D     .   D    .   D  !  .   D  (  .   D  *  T   @               .         .      *     &  l*     &  x*  !  $  t  L        !       .   D      .   D     .   D  *   .   D  0   .   D  7   .   D  =   .   D  D   .   D  L   .   D  R   T   @     $!  &  *  D!  $    L        !       .   D      .   D     .   D     .   D  )   .   D  .   .   D  8   .   D  N   .   D  l   .   D  v   .   D }   .   D    .   D    .   D    .   D    .   D    .   D 	   .   D    .   D    .   D   .   D   .   D   .   D <  .   D D  .   D e  .   D m  .   D y  .   D   .   D        Q!  @     j     Z!    f!    .         .        l!  & *  !  $  d  L        !   !   .   D "    .   D #   .   D %   .   D '5   .   D (<   .   D )h   T   @     j    #.         .      h   !  & +/+  !  $ 4  L    4   !   5   .   D 6    .   D 7   .   D :   .   D ;.   .   D <4   .   D =T   .   D >d   .   D Ck   .   D Ds   .   D ?|   .   D @   .   D A   .   D F   T   @ 4       7!  @ 8   .         .         !  & H(,  "  $ Ul  L    U   !   V   .   D W    .   D X   .   D [   .   D \6   .   D ]<   .   D ^\   .   D _t   .   D d{   .   D e   .   D `   .   D a   .   D b   .   D g   T   @ U       Xj    Y"  @ Y   .         .         "  & iL-  F"  $ s  L    s   !   t   .   D u    .   D v   .   D w+   .   D x0   .   D y@   .   D zM   .   D {\   .   D |a   .   D ~p   .   D    .   D    .   D    .   D    T   @ s   Y"  & .  z"  $   L       !      .   D     .   D    .   D *   .   D 1   .   D 7   .   D ?   .   D \   T   @    "  & $/  "  $   L       "      .   D     .   D    .   D "   "  & /  "  &  0  "  $ D  "      !      .   D     .   D    .   D    .   D    .   D #   .   D E   .   D L   .   D    .   D    .   D    .   D    .   D    .   D    .   D    .   D    .   D    .   D    .   D    .   D    .   D    .   D   "   #   #  @    #   .         .        !#  & 3  E#  $ T  .   D     .   D    .   D    .   D 	2   .   D 
:   .   D P   .   D W   .   D e   R#  @     X#  @    .         .      e   ^#  ( G 4  .   d     gdbmmodule.c /usr/src/bs/BUILD/Python-1.5.1/Modules/ ./gdbmmodule.c gcc2_compiled. int:t1=r1;-2147483648;2147483647; char:t2=r2;0;127; long int:t3=r1;-2147483648;2147483647; unsigned int:t4=r1;0;-1; long unsigned int:t5=r1;0;-1; long long int:t6=r1;01000000000000000000000;0777777777777777777777; long long unsigned int:t7=r1;0000000000000;01777777777777777777777; short int:t8=r1;-32768;32767; short unsigned int:t9=r1;0;65535; signed char:t10=r1;-128;127; unsigned char:t11=r1;0;255; float:t12=r1;4;0; double:t13=r1;8;0; long double:t14=r1;12;0; complex int:t15=s8real:1,0,32;imag:1,32,32;; complex float:t16=r16;4;0; complex double:t17=r17;8;0; complex long double:t18=r18;12;0; void:t19=19 __u_char:t11 __u_short:t9 __u_int:t4 __u_long:t5 __u_quad_t:t7 __quad_t:t6 __qaddr_t:t20=*6 __dev_t:t7 __uid_t:t4 __gid_t:t4 __ino_t:t5 __mode_t:t4 __nlink_t:t4 __off_t:t3 __loff_t:t6 __pid_t:t1 __ssize_t:t1 __fsid_t:t21=s8__val:22=ar1;0;1;1,0,64;; __daddr_t:t1 __caddr_t:t23=*2 __time_t:t3 __swblk_t:t3 __clock_t:t3 __fd_mask:t5 __fd_set:t24=s128fds_bits:25=ar1;0;31;5,0,1024;; __key_t:t1 __ipc_pid_t:t9 size_t:t4 wint_t:t4 _G_int16_t:t8 _G_int32_t:t1 _G_uint16_t:t9 _G_uint32_t:t4 __gnuc_va_list:t26=*19 _IO_lock_t:t19 _IO_marker:T27=s12_next:28=*27,0,32;_sbuf:29=*30=xs_IO_FILE:,32,32;\ _pos:1,64,32;; _IO_FILE:T30=s76_flags:1,0,32;_IO_read_ptr:23,32,32;\ _IO_read_end:23,64,32;_IO_read_base:23,96,32;\ _IO_write_base:23,128,32;_IO_write_ptr:23,160,32;\ _IO_write_end:23,192,32;_IO_buf_base:23,224,32;\ _IO_buf_end:23,256,32;_IO_save_base:23,288,32;_IO_backup_base:23,320,32;\ _IO_save_end:23,352,32;_markers:28,384,32;_chain:29,416,32;\ _fileno:1,448,32;_blksize:1,480,32;_offset:3,512,32;\ _cur_column:9,544,16;_unused:2,560,8;_shortbuf:31=ar1;0;0;2,568,8;\ _lock:32=*19,576,32;; _IO_FILE:t30 _IO_cookie_io_functions_t:t33=s16read:34=*35=f1,0,32;\ write:36=*37=f1,32,32;seek:38=*39=f3,64,32;\ close:40=*41=f1,96,32;; _IO_cookie_file:T42=s100file:30,0,608;vtable:43=*19,608,32;\ cookie:26,640,32;io_functions:33,672,128;; FILE:t30 fpos_t:t3 wchar_t:t3 div_t:t44=s8quot:1,0,32;rem:1,32,32;; ldiv_t:t45=s8quot:3,0,32;rem:3,32,32;; u_char:t11 u_short:t9 u_int:t4 u_long:t5 quad_t:t6 u_quad_t:t7 fsid_t:t21 dev_t:t7 gid_t:t4 ino_t:t5 mode_t:t4 nlink_t:t4 off_t:t3 loff_t:t6 pid_t:t1 uid_t:t4 ssize_t:t1 daddr_t:t1 caddr_t:t23 key_t:t1 time_t:t3 ulong:t5 ushort:t9 uint:t4 int8_t:t10 u_int8_t:t11 int16_t:t8 u_int16_t:t9 int32_t:t1 u_int32_t:t4 int64_t:t6 u_int64_t:t7 register_t:t1 timespec:T46=s8tv_sec:3,0,32;tv_nsec:3,32,32;; fd_mask:t5 fd_set:t24 random_data:T47=s28fptr:48=*1,0,32;rptr:48,32,32;\ state:48,64,32;rand_type:1,96,32;rand_deg:1,128,32;\ rand_sep:1,160,32;end_ptr:48,192,32;; drand48_data:T49=s24x:50=ar1;0;2;9,0,48;a:50,48,48;\ c:9,96,16;old_x:50,112,48;init:1,160,32;; __compar_fn_t:t51=*52=f1 _object:T53=s8ob_refcnt:1,0,32;ob_type:54=*55=xs_typeobject:,32,32;; PyObject:t53 PyVarObject:t56=s12ob_refcnt:1,0,32;ob_type:54,32,32;\ ob_size:1,64,32;; unaryfunc:t57=*58=f59=*53 binaryfunc:t60=*61=f59 ternaryfunc:t62=*63=f59 inquiry:t64=*65=f1 coercion:t66=*67=f1 intargfunc:t68=*69=f59 intintargfunc:t70=*71=f59 intobjargproc:t72=*73=f1 intintobjargproc:t74=*75=f1 objobjargproc:t76=*77=f1 getreadbufferproc:t78=*79=f1 getwritebufferproc:t78 getsegcountproc:t80=*81=f1 PyNumberMethods:t82=s92nb_add:60,0,32;nb_subtract:60,32,32;\ nb_multiply:60,64,32;nb_divide:60,96,32;nb_remainder:60,128,32;\ nb_divmod:60,160,32;nb_power:62,192,32;nb_negative:57,224,32;\ nb_positive:57,256,32;nb_absolute:57,288,32;nb_nonzero:64,320,32;\ nb_invert:57,352,32;nb_lshift:60,384,32;nb_rshift:60,416,32;\ nb_and:60,448,32;nb_xor:60,480,32;nb_or:60,512,32;\ nb_coerce:66,544,32;nb_int:57,576,32;nb_long:57,608,32;\ nb_float:57,640,32;nb_oct:57,672,32;nb_hex:57,704,32;; PySequenceMethods:t83=s28sq_length:64,0,32;sq_concat:60,32,32;\ sq_repeat:68,64,32;sq_item:68,96,32;sq_slice:70,128,32;\ sq_ass_item:72,160,32;sq_ass_slice:74,192,32;; PyMappingMethods:t84=s12mp_length:64,0,32;mp_subscript:60,32,32;\ mp_ass_subscript:76,64,32;; PyBufferProcs:t85=s12bf_getreadbuffer:78,0,32;bf_getwritebuffer:78,32,32;\ bf_getsegcount:80,64,32;; destructor:t86=*87=f19 printfunc:t88=*89=f1 getattrfunc:t90=*91=f59 getattrofunc:t60 setattrfunc:t92=*93=f1 setattrofunc:t76 cmpfunc:t94=*95=f1 reprfunc:t57 hashfunc:t96=*97=f3 _typeobject:T55=s92ob_refcnt:1,0,32;ob_type:54,32,32;\ ob_size:1,64,32;tp_name:23,96,32;tp_basicsize:1,128,32;\ tp_itemsize:1,160,32;tp_dealloc:86,192,32;tp_print:88,224,32;\ tp_getattr:90,256,32;tp_setattr:92,288,32;tp_compare:94,320,32;\ tp_repr:57,352,32;tp_as_number:98=*82,384,32;tp_as_sequence:99=*83,416,32;\ tp_as_mapping:100=*84,448,32;tp_hash:96,480,32;\ tp_call:62,512,32;tp_str:57,544,32;tp_getattro:60,576,32;\ tp_setattro:76,608,32;tp_as_buffer:101=*85,640,32;\ tp_xxx4:3,672,32;tp_doc:23,704,32;; PyTypeObject:t55 PyIntObject:t102=s12ob_refcnt:1,0,32;ob_type:54,32,32;\ ob_ival:3,64,32;; PyLongObject:t103=xs_longobject: PyFloatObject:t104=s16ob_refcnt:1,0,32;ob_type:54,32,32;\ ob_fval:13,64,64;; Py_complex:t105=s16real:13,0,64;imag:13,64,64;; PyComplexObject:t106=s24ob_refcnt:1,0,32;ob_type:54,32,32;\ cval:105,64,128;; PyStringObject:t107=s24ob_refcnt:1,0,32;ob_type:54,32,32;\ ob_size:1,64,32;ob_shash:3,96,32;ob_sinterned:59,128,32;\ ob_sval:31,160,8;; PyTupleObject:t108=s16ob_refcnt:1,0,32;ob_type:54,32,32;\ ob_size:1,64,32;ob_item:109=ar1;0;0;59,96,32;; PyListObject:t110=s16ob_refcnt:1,0,32;ob_type:54,32,32;\ ob_size:1,64,32;ob_item:111=*59,96,32;; PyCFunction:t60 PyCFunctionWithKeywords:t62 PyMethodDef:T112=s16ml_name:23,0,32;ml_meth:60,32,32;\ ml_flags:1,64,32;ml_doc:23,96,32;; PyMethodDef:t112 PyMethodChain:T113=s8methods:114=*112,0,32;link:115=*113,32,32;; PyMethodChain:t113 PyFunctionObject:t116=s28ob_refcnt:1,0,32;ob_type:54,32,32;\ func_code:59,64,32;func_globals:59,96,32;func_defaults:59,128,32;\ func_doc:59,160,32;func_name:59,192,32;; PyClassObject:t117=s32ob_refcnt:1,0,32;ob_type:54,32,32;\ cl_bases:59,64,32;cl_dict:59,96,32;cl_name:59,128,32;\ cl_getattr:59,160,32;cl_setattr:59,192,32;cl_delattr:59,224,32;; PyInstanceObject:t118=s16ob_refcnt:1,0,32;ob_type:54,32,32;\ in_class:119=*117,64,32;in_dict:59,96,32;; PySliceObject:t120=s20ob_refcnt:1,0,32;ob_type:54,32,32;\ start:59,64,32;stop:59,96,32;step:59,128,32;; _is:T121=s24next:122=*121,0,32;tstate_head:123=*124=xs_ts:,32,32;\ modules:59,64,32;sysdict:59,96,32;builtins:59,128,32;\ checkinterval:1,160,32;; PyInterpreterState:t121 _ts:T124=s60next:123,0,32;interp:125=*121,32,32;\ frame:126=*127=xs_frame:,64,32;recursion_depth:1,96,32;\ ticker:1,128,32;tracing:1,160,32;sys_profilefunc:59,192,32;\ sys_tracefunc:59,224,32;curexc_type:59,256,32;curexc_value:59,288,32;\ curexc_traceback:59,320,32;exc_type:59,352,32;exc_value:59,384,32;\ exc_traceback:59,416,32;dict:59,448,32;; PyThreadState:t124 va_list:t26 _inittab:T128=s8name:23,0,32;initfunc:129=*130=f19,32,32;; _frozen:T131=s12name:23,0,32;code:132=*11,32,32;\ size:1,64,32;; stat:T133=s88st_dev:7,0,64;__pad1:9,64,16;\ st_ino:5,96,32;st_mode:4,128,32;st_nlink:4,160,32;\ st_uid:4,192,32;st_gid:4,224,32;st_rdev:7,256,64;\ __pad2:9,320,16;st_size:3,352,32;st_blksize:5,384,32;\ st_blocks:5,416,32;st_atime:3,448,32;__unused1:5,480,32;\ st_mtime:3,512,32;__unused2:5,544,32;st_ctime:3,576,32;\ __unused3:5,608,32;__unused4:5,640,32;__unused5:5,672,32;; flock:T134=s16l_type:8,0,16;l_whence:8,16,16;\ l_start:3,32,32;l_len:3,64,32;l_pid:1,96,32;; datum:t135=s8dptr:23,0,32;dsize:1,32,32;; GDBM_FILE:t136=*137=s40dummy:138=ar1;0;9;1,0,320;;  :T139=eGDBM_NO_ERROR:0,GDBM_MALLOC_ERROR:1,GDBM_BLOCK_SIZE_ERROR:2,\ GDBM_FILE_OPEN_ERROR:3,GDBM_FILE_WRITE_ERROR:4,\ GDBM_FILE_SEEK_ERROR:5,GDBM_FILE_READ_ERROR:6,GDBM_BAD_MAGIC_NUMBER:7,\ GDBM_EMPTY_DATABASE:8,GDBM_CANT_BE_READER:9,GDBM_CANT_BE_WRITER:10,\ GDBM_READER_CANT_DELETE:11,GDBM_READER_CANT_STORE:12,\ GDBM_READER_CANT_REORGANIZE:13,GDBM_UNKNOWN_UPDATE:14,\ GDBM_ITEM_NOT_FOUND:15,GDBM_REORGANIZE_FAILED:16,\ GDBM_CANNOT_REPLACE:17,GDBM_ILLEGAL_DATA:18,GDBM_OPT_ALREADY_SET:19,\ GDBM_OPT_ILLEGAL:20,; gdbm_error:t139 gdbmmodule__doc__:S140=ar1;0;467;2 dbmobject:t141=s16ob_refcnt:1,0,32;ob_type:54,32,32;\ di_size:1,64,32;di_dbm:136,96,32;; gdbm_object__doc__:S142=ar1;0;349;2 newdbmobject:f59 file:p23 flags:p1 mode:p1  dp:r143=*141 dbm_dealloc:f19 dp:p143 dp:r143 dbm_length:f1 key:135 okey:r135 size:1 dbm_subscript:f59 key:p59 v:59 drec:r135 krec:135 dbm_ass_sub:f1 v:p59 w:p59 drec:135 dbm_as_mapping:S84 dbm_close__doc__:S144=ar1;0;36;2 dbm_close:f59 args:p59 dbm_keys__doc__:S145=ar1;0;62;2 dbm_keys:f59 item:r59 nextkey:135 err:1 dbm_has_key__doc__:S146=ar1;0;82;2 dbm_has_key:f59 dbm_firstkey__doc__:S147=ar1;0;248;2 dbm_firstkey:f59 key:r135 dbm_nextkey__doc__:S148=ar1;0;291;2 dbm_nextkey:f59 nextkey:r135 dbm_reorganize__doc__:S149=ar1;0;343;2 dbm_reorganize:f59 dbm_sync__doc__:S150=ar1;0;127;2 dbm_sync:f59 dbm_methods:S151=ar1;0;-1;112 dbm_getattr:f59 name:p23 Dbmtype:S55 dbmopen__doc__:S152=ar1;0;905;2 dbmopen:f59 self:p59 name:23 flags:23 iflags:r1 mode:1 dbmmodule_methods:S153=ar1;0;-1;112 initgdbm:F19 m:r59 d:r59 DbmError:S59  GCC: (GNU) 2.7.2.3  GCC: (GNU) 2.7.2.3  GCC: (GNU) 2.7.2.3  GCC: (GNU) 2.7.2.3  GCC: (GNU) 2.7.2.3           01.01             01.01             01.01             01.01             01.01    .symtab .strtab .shstrtab .hash .dynsym .dynstr .rel.data .rel.got .rel.plt .init .plt .text .fini .rodata .data .ctors .dtors .got .dynamic .bss .stab .stabstr .comment .note .rel.stab                                                          X               !                           )             k                 1   	      H  H                ;   	      P  P  8               D   	                         M         	  	  ,                  S         	  	                  X             
                 ^                                 d         <  <                    l         8'  8  t                 r         3  #                    y         3  #                             3  #                            \4  \$                           4  $                                  $                               >  k#                               'b  d                            d   b  d                     	          g                              b                                  h       J         	              Dp                                T     x                    $                         T     `     (     4                                             T     `                    (     4  #                                                                     H            P                        	            	                   	             
     <            8'            3            3            3            \4            4                                                      d                                                                                       	                        	 &          	 <   3        I          	 T   3        b   3                                	                        	 o          	    3                  	 T   8'           3                       8'         )  ^             	    /  \        4            1    	         	         	 !  @  2   	 -  l*       <  x*  %     M  t  Y    	 W  *  ?     g       	 p  *  S       d  o    	   /+               	   (,  $      l      	   L-  X            	   .           c    	   $/           '    	 %   0      4  D     	 <  3        N             ]      K     g  \4       p      ;      |                                                                                                        \                                             !            +  	  h     1             L            Y      +      c            n      8      |                                                                   4                         1    
       >                     4         3       !  4       &             7      P     C             O             `  T  l    	 i           t                 (                                  initfini.c gcc2_compiled. crtstuff.c __do_global_ctors_aux __CTOR_END__ init_dummy force_to_data __DTOR_END__ __do_global_dtors_aux __DTOR_LIST__ fini_dummy __CTOR_LIST__ gdbmmodule.c gdbmmodule__doc__ gdbm_object__doc__ newdbmobject Dbmtype DbmError dbm_dealloc dbm_length dbm_subscript dbm_ass_sub dbm_as_mapping dbm_close__doc__ dbm_close dbm_keys__doc__ dbm_keys dbm_has_key__doc__ dbm_has_key dbm_firstkey__doc__ dbm_firstkey dbm_nextkey__doc__ dbm_nextkey dbm_reorganize__doc__ dbm_reorganize dbm_sync__doc__ dbm_sync dbm_methods dbm_getattr dbmopen__doc__ dbmopen dbmmodule_methods PyInt_FromLong gdbm_open _DYNAMIC gdbm_exists _Py_NoneStruct _etext gdbm_errno gdbm_close PyDict_SetItemString PyExc_KeyError PyErr_SetString ___brk_addr gdbm_firstkey Py_FindMethod Py_InitModule4 _PyObject_New __environ _init PyString_FromStringAndSize gdbm_nextkey gdbm_sync gdbm_fetch gdbm_strerror PyErr_BadInternalCall PyErr_SetFromErrno PyList_Append PyExc_TypeError PyList_New __bss_start PyModule_GetDict _fini atexit PyArg_Parse _edata _GLOBAL_OFFSET_TABLE_ _end __errno_location gdbm_delete PyType_Type PyArg_ParseTuple initgdbm gdbm_store gdbm_reorganize free PyErr_NewException __gmon_start__ 