ÿØÿà�JFIF������ÿápExif��II*������[������¼ p!ranha?
Server IP : 172.67.145.202  /  Your IP : 172.70.208.146
Web Server : Apache/2.2.15 (CentOS)
System : Linux GA 2.6.32-431.1.2.0.1.el6.x86_64 #1 SMP Fri Dec 13 13:06:13 UTC 2013 x86_64
User : apache ( 48)
PHP Version : 5.6.38
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/lib64/python2.6/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /usr/lib64/python2.6/pickletools.py
'''"Executable documentation" for the pickle module.

Extensive comments about the pickle protocols and pickle-machine opcodes
can be found here.  Some functions meant for external use:

genops(pickle)
   Generate all the opcodes in a pickle, as (opcode, arg, position) triples.

dis(pickle, out=None, memo=None, indentlevel=4)
   Print a symbolic disassembly of a pickle.
'''

__all__ = ['dis', 'genops', 'optimize']

# Other ideas:
#
# - A pickle verifier:  read a pickle and check it exhaustively for
#   well-formedness.  dis() does a lot of this already.
#
# - A protocol identifier:  examine a pickle and return its protocol number
#   (== the highest .proto attr value among all the opcodes in the pickle).
#   dis() already prints this info at the end.
#
# - A pickle optimizer:  for example, tuple-building code is sometimes more
#   elaborate than necessary, catering for the possibility that the tuple
#   is recursive.  Or lots of times a PUT is generated that's never accessed
#   by a later GET.


"""
"A pickle" is a program for a virtual pickle machine (PM, but more accurately
called an unpickling machine).  It's a sequence of opcodes, interpreted by the
PM, building an arbitrarily complex Python object.

For the most part, the PM is very simple:  there are no looping, testing, or
conditional instructions, no arithmetic and no function calls.  Opcodes are
executed once each, from first to last, until a STOP opcode is reached.

The PM has two data areas, "the stack" and "the memo".

Many opcodes push Python objects onto the stack; e.g., INT pushes a Python
integer object on the stack, whose value is gotten from a decimal string
literal immediately following the INT opcode in the pickle bytestream.  Other
opcodes take Python objects off the stack.  The result of unpickling is
whatever object is left on the stack when the final STOP opcode is executed.

The memo is simply an array of objects, or it can be implemented as a dict
mapping little integers to objects.  The memo serves as the PM's "long term
memory", and the little integers indexing the memo are akin to variable
names.  Some opcodes pop a stack object into the memo at a given index,
and others push a memo object at a given index onto the stack again.

At heart, that's all the PM has.  Subtleties arise for these reasons:

+ Object identity.  Objects can be arbitrarily complex, and subobjects
  may be shared (for example, the list [a, a] refers to the same object a
  twice).  It can be vital that unpickling recreate an isomorphic object
  graph, faithfully reproducing sharing.

+ Recursive objects.  For example, after "L = []; L.append(L)", L is a
  list, and L[0] is the same list.  This is related to the object identity
  point, and some sequences of pickle opcodes are subtle in order to
  get the right result in all cases.

+ Things pickle doesn't know everything about.  Examples of things pickle
  does know everything about are Python's builtin scalar and container
  types, like ints and tuples.  They generally have opcodes dedicated to
  them.  For things like module references and instances of user-defined
  classes, pickle's knowledge is limited.  Historically, many enhancements
  have been made to the pickle protocol in order to do a better (faster,
  and/or more compact) job on those.

+ Backward compatibility and micro-optimization.  As explained below,
  pickle opcodes never go away, not even when better ways to do a thing
  get invented.  The repertoire of the PM just keeps growing over time.
  For example, protocol 0 had two opcodes for building Python integers (INT
  and LONG), protocol 1 added three more for more-efficient pickling of short
  integers, and protocol 2 added two more for more-efficient pickling of
  long integers (before protocol 2, the only ways to pickle a Python long
  took time quadratic in the number of digits, for both pickling and
  unpickling).  "Opcode bloat" isn't so much a subtlety as a source of
  wearying complication.


Pickle protocols:

For compatibility, the meaning of a pickle opcode never changes.  Instead new
pickle opcodes get added, and each version's unpickler can handle all the
pickle opcodes in all protocol versions to date.  So old pickles continue to
be readable forever.  The pickler can generally be told to restrict itself to
the subset of opcodes available under previous protocol versions too, so that
users can create pickles under the current version readable by older
versions.  However, a pickle does not contain its version number embedded
within it.  If an older unpickler tries to read a pickle using a later
protocol, the result is most likely an exception due to seeing an unknown (in
the older unpickler) opcode.

The original pickle used what's now called "protocol 0", and what was called
"text mode" before Python 2.3.  The entire pickle bytestream is made up of
printable 7-bit ASCII characters, plus the newline character, in protocol 0.
That's why it was called text mode.  Protocol 0 is small and elegant, but
sometimes painfully inefficient.

The second major set of additions is now called "protocol 1", and was called
"binary mode" before Python 2.3.  This added many opcodes with arguments
consisting of arbitrary bytes, including NUL bytes and unprintable "high bit"
bytes.  Binary mode pickles can be substantially smaller than equivalent
text mode pickles, and sometimes faster too; e.g., BININT represents a 4-byte
int as 4 bytes following the opcode, which is cheaper to unpickle than the
(perhaps) 11-character decimal string attached to INT.  Protocol 1 also added
a number of opcodes that operate on many stack elements at once (like APPENDS
and SETITEMS), and "shortcut" opcodes (like EMPTY_DICT and EMPTY_TUPLE).

The third major set of additions came in Python 2.3, and is called "protocol
2".  This added:

- A better way to pickle instances of new-style classes (NEWOBJ).

- A way for a pickle to identify its protocol (PROTO).

- Time- and space- efficient pickling of long ints (LONG{1,4}).

- Shortcuts for small tuples (TUPLE{1,2,3}}.

- Dedicated opcodes for bools (NEWTRUE, NEWFALSE).

- The "extension registry", a vector of popular objects that can be pushed
  efficiently by index (EXT{1,2,4}).  This is akin to the memo and GET, but
  the registry contents are predefined (there's nothing akin to the memo's
  PUT).

Another independent change with Python 2.3 is the abandonment of any
pretense that it might be safe to load pickles received from untrusted
parties -- no sufficient security analysis has been done to guarantee
this and there isn't a use case that warrants the expense of such an
analysis.

To this end, all tests for __safe_for_unpickling__ or for
copy_reg.safe_constructors are removed from the unpickling code.
References to these variables in the descriptions below are to be seen
as describing unpickling in Python 2.2 and before.
"""

# Meta-rule:  Descriptions are stored in instances of descriptor objects,
# with plain constructors.  No meta-language is defined from which
# descriptors could be constructed.  If you want, e.g., XML, write a little
# program to generate XML from the objects.

##############################################################################
# Some pickle opcodes have an argument, following the opcode in the
# bytestream.  An argument is of a specific type, described by an instance
# of ArgumentDescriptor.  These are not to be confused with arguments taken
# off the stack -- ArgumentDescriptor applies only to arguments embedded in
# the opcode stream, immediately following an opcode.

# Represents the number of bytes consumed by an argument delimited by the
# next newline character.
UP_TO_NEWLINE = -1

# Represents the number of bytes consumed by a two-argument opcode where
# the first argument gives the number of bytes in the second argument.
TAKEN_FROM_ARGUMENT1 = -2   # num bytes is 1-byte unsigned int
TAKEN_FROM_ARGUMENT4 = -3   # num bytes is 4-byte signed little-endian int

class ArgumentDescriptor(object):
    __slots__ = (
        # name of descriptor record, also a module global name; a string
        'name',

        # length of argument, in bytes; an int; UP_TO_NEWLINE and
        # TAKEN_FROM_ARGUMENT{1,4} are negative values for variable-length
        # cases
        'n',

        # a function taking a file-like object, reading this kind of argument
        # from the object at the current position, advancing the current
        # position by n bytes, and returning the value of the argument
        'reader',

        # human-readable docs for this arg descriptor; a string
        'doc',
    )

    def __init__(self, name, n, reader, doc):
        assert isinstance(name, str)
        self.name = name

        assert isinstance(n, int) and (n >= 0 or
                                       n in (UP_TO_NEWLINE,
                                             TAKEN_FROM_ARGUMENT1,
                                             TAKEN_FROM_ARGUMENT4))
        self.n = n

        self.reader = reader

        assert isinstance(doc, str)
        self.doc = doc

from struct import unpack as _unpack

def read_uint1(f):
    r"""
    >>> import StringIO
    >>> read_uint1(StringIO.StringIO('\xff'))
    255
    """

    data = f.read(1)
    if data:
        return ord(data)
    raise ValueError("not enough data in stream to read uint1")

uint1 = ArgumentDescriptor(
            name='uint1',
            n=1,
            reader=read_uint1,
            doc="One-byte unsigned integer.")


def read_uint2(f):
    r"""
    >>> import StringIO
    >>> read_uint2(StringIO.StringIO('\xff\x00'))
    255
    >>> read_uint2(StringIO.StringIO('\xff\xff'))
    65535
    """

    data = f.read(2)
    if len(data) == 2:
        return _unpack("<H", data)[0]
    raise ValueError("not enough data in stream to read uint2")

uint2 = ArgumentDescriptor(
            name='uint2',
            n=2,
            reader=read_uint2,
            doc="Two-byte unsigned integer, little-endian.")


def read_int4(f):
    r"""
    >>> import StringIO
    >>> read_int4(StringIO.StringIO('\xff\x00\x00\x00'))
    255
    >>> read_int4(StringIO.StringIO('\x00\x00\x00\x80')) == -(2**31)
    True
    """

    data = f.read(4)
    if len(data) == 4:
        return _unpack("<i", data)[0]
    raise ValueError("not enough data in stream to read int4")

int4 = ArgumentDescriptor(
           name='int4',
           n=4,
           reader=read_int4,
           doc="Four-byte signed integer, little-endian, 2's complement.")


def read_stringnl(f, decode=True, stripquotes=True):
    r"""
    >>> import StringIO
    >>> read_stringnl(StringIO.StringIO("'abcd'\nefg\n"))
    'abcd'

    >>> read_stringnl(StringIO.StringIO("\n"))
    Traceback (most recent call last):
    ...
    ValueError: no string quotes around ''

    >>> read_stringnl(StringIO.StringIO("\n"), stripquotes=False)
    ''

    >>> read_stringnl(StringIO.StringIO("''\n"))
    ''

    >>> read_stringnl(StringIO.StringIO('"abcd"'))
    Traceback (most recent call last):
    ...
    ValueError: no newline found when trying to read stringnl

    Embedded escapes are undone in the result.
    >>> read_stringnl(StringIO.StringIO(r"'a\n\\b\x00c\td'" + "\n'e'"))
    'a\n\\b\x00c\td'
    """

    data = f.readline()
    if not data.endswith('\n'):
        raise ValueError("no newline found when trying to read stringnl")
    data = data[:-1]    # lose the newline

    if stripquotes:
        for q in "'\"":
            if data.startswith(q):
                if not data.endswith(q):
                    raise ValueError("strinq quote %r not found at both "
                                     "ends of %r" % (q, data))
                data = data[1:-1]
                break
        else:
            raise ValueError("no string quotes around %r" % data)

    # I'm not sure when 'string_escape' was added to the std codecs; it's
    # crazy not to use it if it's there.
    if decode:
        data = data.decode('string_escape')
    return data

stringnl = ArgumentDescriptor(
               name='stringnl',
               n=UP_TO_NEWLINE,
               reader=read_stringnl,
               doc="""A newline-terminated string.

                   This is a repr-style string, with embedded escapes, and
                   bracketing quotes.
                   """)

def read_stringnl_noescape(f):
    return read_stringnl(f, decode=False, stripquotes=False)

stringnl_noescape = ArgumentDescriptor(
                        name='stringnl_noescape',
                        n=UP_TO_NEWLINE,
                        reader=read_stringnl_noescape,
                        doc="""A newline-terminated string.

                        This is a str-style string, without embedded escapes,
                        or bracketing quotes.  It should consist solely of
                        printable ASCII characters.
                        """)

def read_stringnl_noescape_pair(f):
    r"""
    >>> import StringIO
    >>> read_stringnl_noescape_pair(StringIO.StringIO("Queue\nEmpty\njunk"))
    'Queue Empty'
    """

    return "%s %s" % (read_stringnl_noescape(f), read_stringnl_noescape(f))

stringnl_noescape_pair = ArgumentDescriptor(
                             name='stringnl_noescape_pair',
                             n=UP_TO_NEWLINE,
                             reader=read_stringnl_noescape_pair,
                             doc="""A pair of newline-terminated strings.

                             These are str-style strings, without embedded
                             escapes, or bracketing quotes.  They should
                             consist solely of printable ASCII characters.
                             The pair is returned as a single string, with
                             a single blank separating the two strings.
                             """)

def read_string4(f):
    r"""
    >>> import StringIO
    >>> read_string4(StringIO.StringIO("\x00\x00\x00\x00abc"))
    ''
    >>> read_string4(StringIO.StringIO("\x03\x00\x00\x00abcdef"))
    'abc'
    >>> read_string4(StringIO.StringIO("\x00\x00\x00\x03abcdef"))
    Traceback (most recent call last):
    ...
    ValueError: expected 50331648 bytes in a string4, but only 6 remain
    """

    n = read_int4(f)
    if n < 0:
        raise ValueError("string4 byte count < 0: %d" % n)
    data = f.read(n)
    if len(data) == n:
        return data
    raise ValueError("expected %d bytes in a string4, but only %d remain" %
                     (n, len(data)))

string4 = ArgumentDescriptor(
              name="string4",
              n=TAKEN_FROM_ARGUMENT4,
              reader=read_string4,
              doc="""A counted string.

              The first argument is a 4-byte little-endian signed int giving
              the number of bytes in the string, and the second argument is
              that many bytes.
              """)


def read_string1(f):
    r"""
    >>> import StringIO
    >>> read_string1(StringIO.StringIO("\x00"))
    ''
    >>> read_string1(StringIO.StringIO("\x03abcdef"))
    'abc'
    """

    n = read_uint1(f)
    assert n >= 0
    data = f.read(n)
    if len(data) == n:
        return data
    raise ValueError("expected %d bytes in a string1, but only %d remain" %
                     (n, len(data)))

string1 = ArgumentDescriptor(
              name="string1",
              n=TAKEN_FROM_ARGUMENT1,
              reader=read_string1,
              doc="""A counted string.

              The first argument is a 1-byte unsigned int giving the number
              of bytes in the string, and the second argument is that many
              bytes.
              """)


def read_unicodestringnl(f):
    r"""
    >>> import StringIO
    >>> read_unicodestringnl(StringIO.StringIO("abc\uabcd\njunk"))
    u'abc\uabcd'
    """

    data = f.readline()
    if not data.endswith('\n'):
        raise ValueError("no newline found when trying to read "
                         "unicodestringnl")
    data = data[:-1]    # lose the newline
    return unicode(data, 'raw-unicode-escape')

unicodestringnl = ArgumentDescriptor(
                      name='unicodestringnl',
                      n=UP_TO_NEWLINE,
                      reader=read_unicodestringnl,
                      doc="""A newline-terminated Unicode string.

                      This is raw-unicode-escape encoded, so consists of
                      printable ASCII characters, and may contain embedded
                      escape sequences.
                      """)

def read_unicodestring4(f):
    r"""
    >>> import StringIO
    >>> s = u'abcd\uabcd'
    >>> enc = s.encode('utf-8')
    >>> enc
    'abcd\xea\xaf\x8d'
    >>> n = chr(len(enc)) + chr(0) * 3  # little-endian 4-byte length
    >>> t = read_unicodestring4(StringIO.StringIO(n + enc + 'junk'))
    >>> s == t
    True

    >>> read_unicodestring4(StringIO.StringIO(n + enc[:-1]))
    Traceback (most recent call last):
    ...
    ValueError: expected 7 bytes in a unicodestring4, but only 6 remain
    """

    n = read_int4(f)
    if n < 0:
        raise ValueError("unicodestring4 byte count < 0: %d" % n)
    data = f.read(n)
    if len(data) == n:
        return unicode(data, 'utf-8')
    raise ValueError("expected %d bytes in a unicodestring4, but only %d "
                     "remain" % (n, len(data)))

unicodestring4 = ArgumentDescriptor(
                    name="unicodestring4",
                    n=TAKEN_FROM_ARGUMENT4,
                    reader=read_unicodestring4,
                    doc="""A counted Unicode string.

                    The first argument is a 4-byte little-endian signed int
                    giving the number of bytes in the string, and the second
                    argument-- the UTF-8 encoding of the Unicode string --
                    contains that many bytes.
                    """)


def read_decimalnl_short(f):
    r"""
    >>> import StringIO
    >>> read_decimalnl_short(StringIO.StringIO("1234\n56"))
    1234

    >>> read_decimalnl_short(StringIO.StringIO("1234L\n56"))
    Traceback (most recent call last):
    ...
    ValueError: trailing 'L' not allowed in '1234L'
    """

    s = read_stringnl(f, decode=False, stripquotes=False)
    if s.endswith("L"):
        raise ValueError("trailing 'L' not allowed in %r" % s)

    # It's not necessarily true that the result fits in a Python short int:
    # the pickle may have been written on a 64-bit box.  There's also a hack
    # for True and False here.
    if s == "00":
        return False
    elif s == "01":
        return True

    try:
        return int(s)
    except OverflowError:
        return long(s)

def read_decimalnl_long(f):
    r"""
    >>> import StringIO

    >>> read_decimalnl_long(StringIO.StringIO("1234\n56"))
    Traceback (most recent call last):
    ...
    ValueError: trailing 'L' required in '1234'

    Someday the trailing 'L' will probably go away from this output.

    >>> read_decimalnl_long(StringIO.StringIO("1234L\n56"))
    1234L

    >>> read_decimalnl_long(StringIO.StringIO("123456789012345678901234L\n6"))
    123456789012345678901234L
    """

    s = read_stringnl(f, decode=False, stripquotes=False)
    if not s.endswith("L"):
        raise ValueError("trailing 'L' required in %r" % s)
    return long(s)


decimalnl_short = ArgumentDescriptor(
                      name='decimalnl_short',
                      n=UP_TO_NEWLINE,
                      reader=read_decimalnl_short,
                      doc="""A newline-terminated decimal integer literal.

                          This never has a trailing 'L', and the integer fit
                          in a short Python int on the box where the pickle
                          was written -- but there's no guarantee it will fit
                          in a short Python int on the box where the pickle
                          is read.
                          """)

decimalnl_long = ArgumentDescriptor(
                     name='decimalnl_long',
                     n=UP_TO_NEWLINE,
                     reader=read_decimalnl_long,
                     doc="""A newline-terminated decimal integer literal.

                         This has a trailing 'L', and can represent integers
                         of any size.
                         """)


def read_floatnl(f):
    r"""
    >>> import StringIO
    >>> read_floatnl(StringIO.StringIO("-1.25\n6"))
    -1.25
    """
    s = read_stringnl(f, decode=False, stripquotes=False)
    return float(s)

floatnl = ArgumentDescriptor(
              name='floatnl',
              n=UP_TO_NEWLINE,
              reader=read_floatnl,
              doc="""A newline-terminated decimal floating literal.

              In general this requires 17 significant digits for roundtrip
              identity, and pickling then unpickling infinities, NaNs, and
              minus zero doesn't work across boxes, or on some boxes even
              on itself (e.g., Windows can't read the strings it produces
              for infinities or NaNs).
              """)

def read_float8(f):
    r"""
    >>> import StringIO, struct
    >>> raw = struct.pack(">d", -1.25)
    >>> raw
    '\xbf\xf4\x00\x00\x00\x00\x00\x00'
    >>> read_float8(StringIO.StringIO(raw + "\n"))
    -1.25
    """

    data = f.read(8)
    if len(data) == 8:
        return _unpack(">d", data)[0]
    raise ValueError("not enough data in stream to read float8")


float8 = ArgumentDescriptor(
             name='float8',
             n=8,
             reader=read_float8,
             doc="""An 8-byte binary representation of a float, big-endian.

             The format is unique to Python, and shared with the struct
             module (format string '>d') "in theory" (the struct and cPickle
             implementations don't share the code -- they should).  It's
             strongly related to the IEEE-754 double format, and, in normal
             cases, is in fact identical to the big-endian 754 double format.
             On other boxes the dynamic range is limited to that of a 754
             double, and "add a half and chop" rounding is used to reduce
             the precision to 53 bits.  However, even on a 754 box,
             infinities, NaNs, and minus zero may not be handled correctly
             (may not survive roundtrip pickling intact).
             """)

# Protocol 2 formats

from pickle import decode_long

def read_long1(f):
    r"""
    >>> import StringIO
    >>> read_long1(StringIO.StringIO("\x00"))
    0L
    >>> read_long1(StringIO.StringIO("\x02\xff\x00"))
    255L
    >>> read_long1(StringIO.StringIO("\x02\xff\x7f"))
    32767L
    >>> read_long1(StringIO.StringIO("\x02\x00\xff"))
    -256L
    >>> read_long1(StringIO.StringIO("\x02\x00\x80"))
    -32768L
    """

    n = read_uint1(f)
    data = f.read(n)
    if len(data) != n:
        raise ValueError("not enough data in stream to read long1")
    return decode_long(data)

long1 = ArgumentDescriptor(
    name="long1",
    n=TAKEN_FROM_ARGUMENT1,
    reader=read_long1,
    doc="""A binary long, little-endian, using 1-byte size.

    This first reads one byte as an unsigned size, then reads that
    many bytes and interprets them as a little-endian 2's-complement long.
    If the size is 0, that's taken as a shortcut for the long 0L.
    """)

def read_long4(f):
    r"""
    >>> import StringIO
    >>> read_long4(StringIO.StringIO("\x02\x00\x00\x00\xff\x00"))
    255L
    >>> read_long4(StringIO.StringIO("\x02\x00\x00\x00\xff\x7f"))
    32767L
    >>> read_long4(StringIO.StringIO("\x02\x00\x00\x00\x00\xff"))
    -256L
    >>> read_long4(StringIO.StringIO("\x02\x00\x00\x00\x00\x80"))
    -32768L
    >>> read_long1(StringIO.StringIO("\x00\x00\x00\x00"))
    0L
    """

    n = read_int4(f)
    if n < 0:
        raise ValueError("long4 byte count < 0: %d" % n)
    data = f.read(n)
    if len(data) != n:
        raise ValueError("not enough data in stream to read long4")
    return decode_long(data)

long4 = ArgumentDescriptor(
    name="long4",
    n=TAKEN_FROM_ARGUMENT4,
    reader=read_long4,
    doc="""A binary representation of a long, little-endian.

    This first reads four bytes as a signed size (but requires the
    size to be >= 0), then reads that many bytes and interprets them
    as a little-endian 2's-complement long.  If the size is 0, that's taken
    as a shortcut for the long 0L, although LONG1 should really be used
    then instead (and in any case where # of bytes < 256).
    """)


##############################################################################
# Object descriptors.  The stack used by the pickle machine holds objects,
# and in the stack_before and stack_after attributes of OpcodeInfo
# descriptors we need names to describe the various types of objects that can
# appear on the stack.

class StackObject(object):
    __slots__ = (
        # name of descriptor record, for info only
        'name',

        # type of object, or tuple of type objects (meaning the object can
        # be of any type in the tuple)
        'obtype',

        # human-readable docs for this kind of stack object; a string
        'doc',
    )

    def __init__(self, name, obtype, doc):
        assert isinstance(name, str)
        self.name = name

        assert isinstance(obtype, type) or isinstance(obtype, tuple)
        if isinstance(obtype, tuple):
            for contained in obtype:
                assert isinstance(contained, type)
        self.obtype = obtype

        assert isinstance(doc, str)
        self.doc = doc

    def __repr__(self):
        return self.name


pyint = StackObject(
            name='int',
            obtype=int,
            doc="A short (as opposed to long) Python integer object.")

pylong = StackObject(
             name='long',
             obtype=long,
             doc="A long (as opposed to short) Python integer object.")

pyinteger_or_bool = StackObject(
                        name='int_or_bool',
                        obtype=(int, long, bool),
                        doc="A Python integer object (short or long), or "
                            "a Python bool.")

pybool = StackObject(
             name='bool',
             obtype=(bool,),
             doc="A Python bool object.")

pyfloat = StackObject(
              name='float',
              obtype=float,
              doc="A Python float object.")

pystring = StackObject(
               name='str',
               obtype=str,
               doc="A Python string object.")

pyunicode = StackObject(
                name='unicode',
                obtype=unicode,
                doc="A Python Unicode string object.")

pynone = StackObject(
             name="None",
             obtype=type(None),
             doc="The Python None object.")

pytuple = StackObject(
              name="tuple",
              obtype=tuple,
              doc="A Python tuple object.")

pylist = StackObject(
             name="list",
             obtype=list,
             doc="A Python list object.")

pydict = StackObject(
             name="dict",
             obtype=dict,
             doc="A Python dict object.")

anyobject = StackObject(
                name='any',
                obtype=object,
                doc="Any kind of object whatsoever.")

markobject = StackObject(
                 name="mark",
                 obtype=StackObject,
                 doc="""'The mark' is a unique object.

                 Opcodes that operate on a variable number of objects
                 generally don't embed the count of objects in the opcode,
                 or pull it off the stack.  Instead the MARK opcode is used
                 to push a special marker object on the stack, and then
                 some other opcodes grab all the objects from the top of
                 the stack down to (but not including) the topmost marker
                 object.
                 """)

stackslice = StackObject(
                 name="stackslice",
                 obtype=StackObject,
                 doc="""An object representing a contiguous slice of the stack.

                 This is used in conjuction with markobject, to represent all
                 of the stack following the topmost markobject.  For example,
                 the POP_MARK opcode changes the stack from

                     [..., markobject, stackslice]
                 to
                     [...]

                 No matter how many object are on the stack after the topmost
                 markobject, POP_MARK gets rid of all of them (including the
                 topmost markobject too).
                 """)

##############################################################################
# Descriptors for pickle opcodes.

class OpcodeInfo(object):

    __slots__ = (
        # symbolic name of opcode; a string
        'name',

        # the code used in a bytestream to represent the opcode; a
        # one-character string
        'code',

        # If the opcode has an argument embedded in the byte string, an
        # instance of ArgumentDescriptor specifying its type.  Note that
        # arg.reader(s) can be used to read and decode the argument from
        # the bytestream s, and arg.doc documents the format of the raw
        # argument bytes.  If the opcode doesn't have an argument embedded
        # in the bytestream, arg should be None.
        'arg',

        # what the stack looks like before this opcode runs; a list
        'stack_before',

        # what the stack looks like after this opcode runs; a list
        'stack_after',

        # the protocol number in which this opcode was introduced; an int
        'proto',

        # human-readable docs for this opcode; a string
        'doc',
    )

    def __init__(self, name, code, arg,
                 stack_before, stack_after, proto, doc):
        assert isinstance(name, str)
        self.name = name

        assert isinstance(code, str)
        assert len(code) == 1
        self.code = code

        assert arg is None or isinstance(arg, ArgumentDescriptor)
        self.arg = arg

        assert isinstance(stack_before, list)
        for x in stack_before:
            assert isinstance(x, StackObject)
        self.stack_before = stack_before

        assert isinstance(stack_after, list)
        for x in stack_after:
            assert isinstance(x, StackObject)
        self.stack_after = stack_after

        assert isinstance(proto, int) and 0 <= proto <= 2
        self.proto = proto

        assert isinstance(doc, str)
        self.doc = doc

I = OpcodeInfo
opcodes = [

    # Ways to spell integers.

    I(name='INT',
      code='I',
      arg=decimalnl_short,
      stack_before=[],
      stack_after=[pyinteger_or_bool],
      proto=0,
      doc="""Push an integer or bool.

      The argument is a newline-terminated decimal literal string.

      The intent may have been that this always fit in a short Python int,
      but INT can be generated in pickles written on a 64-bit box that
      require a Python long on a 32-bit box.  The difference between this
      and LONG then is that INT skips a trailing 'L', and produces a short
      int whenever possible.

      Another difference is due to that, when bool was introduced as a
      distinct type in 2.3, builtin names True and False were also added to
      2.2.2, mapping to ints 1 and 0.  For compatibility in both directions,
      True gets pickled as INT + "I01\\n", and False as INT + "I00\\n".
      Leading zeroes are never produced for a genuine integer.  The 2.3
      (and later) unpicklers special-case these and return bool instead;
      earlier unpicklers ignore the leading "0" and return the int.
      """),

    I(name='BININT',
      code='J',
      arg=int4,
      stack_before=[],
      stack_after=[pyint],
      proto=1,
      doc="""Push a four-byte signed integer.

      This handles the full range of Python (short) integers on a 32-bit
      box, directly as binary bytes (1 for the opcode and 4 for the integer).
      If the integer is non-negative and fits in 1 or 2 bytes, pickling via
      BININT1 or BININT2 saves space.
      """),

    I(name='BININT1',
      code='K',
      arg=uint1,
      stack_before=[],
      stack_after=[pyint],
      proto=1,
      doc="""Push a one-byte unsigned integer.

      This is a space optimization for pickling very small non-negative ints,
      in range(256).
      """),

    I(name='BININT2',
      code='M',
      arg=uint2,
      stack_before=[],
      stack_after=[pyint],
      proto=1,
      doc="""Push a two-byte unsigned integer.

      This is a space optimization for pickling small positive ints, in
      range(256, 2**16).  Integers in range(256) can also be pickled via
      BININT2, but BININT1 instead saves a byte.
      """),

    I(name='LONG',
      code='L',
      arg=decimalnl_long,
      stack_before=[],
      stack_after=[pylong],
      proto=0,
      doc="""Push a long integer.

      The same as INT, except that the literal ends with 'L', and always
      unpickles to a Python long.  There doesn't seem a real purpose to the
      trailing 'L'.

      Note that LONG takes time quadratic in the number of digits when
      unpickling (this is simply due to the nature of decimal->binary
      conversion).  Proto 2 added linear-time (in C; still quadratic-time
      in Python) LONG1 and LONG4 opcodes.
      """),

    I(name="LONG1",
      code='\x8a',
      arg=long1,
      stack_before=[],
      stack_after=[pylong],
      proto=2,
      doc="""Long integer using one-byte length.

      A more efficient encoding of a Python long; the long1 encoding
      says it all."""),

    I(name="LONG4",
      code='\x8b',
      arg=long4,
      stack_before=[],
      stack_after=[pylong],
      proto=2,
      doc="""Long integer using found-byte length.

      A more efficient encoding of a Python long; the long4 encoding
      says it all."""),

    # Ways to spell strings (8-bit, not Unicode).

    I(name='STRING',
      code='S',
      arg=stringnl,
      stack_before=[],
      stack_after=[pystring],
      proto=0,
      doc="""Push a Python string object.

      The argument is a repr-style string, with bracketing quote characters,
      and perhaps embedded escapes.  The argument extends until the next
      newline character.
      """),

    I(name='BINSTRING',
      code='T',
      arg=string4,
      stack_before=[],
      stack_after=[pystring],
      proto=1,
      doc="""Push a Python string object.

      There are two arguments:  the first is a 4-byte little-endian signed int
      giving the number of bytes in the string, and the second is that many
      bytes, which are taken literally as the string content.
      """),

    I(name='SHORT_BINSTRING',
      code='U',
      arg=string1,
      stack_before=[],
      stack_after=[pystring],
      proto=1,
      doc="""Push a Python string object.

      There are two arguments:  the first is a 1-byte unsigned int giving
      the number of bytes in the string, and the second is that many bytes,
      which are taken literally as the string content.
      """),

    # Ways to spell None.

    I(name='NONE',
      code='N',
      arg=None,
      stack_before=[],
      stack_after=[pynone],
      proto=0,
      doc="Push None on the stack."),

    # Ways to spell bools, starting with proto 2.  See INT for how this was
    # done before proto 2.

    I(name='NEWTRUE',
      code='\x88',
      arg=None,
      stack_before=[],
      stack_after=[pybool],
      proto=2,
      doc="""True.

      Push True onto the stack."""),

    I(name='NEWFALSE',
      code='\x89',
      arg=None,
      stack_before=[],
      stack_after=[pybool],
      proto=2,
      doc="""True.

      Push False onto the stack."""),

    # Ways to spell Unicode strings.

    I(name='UNICODE',
      code='V',
      arg=unicodestringnl,
      stack_before=[],
      stack_after=[pyunicode],
      proto=0,  # this may be pure-text, but it's a later addition
      doc="""Push a Python Unicode string object.

      The argument is a raw-unicode-escape encoding of a Unicode string,
      and so may contain embedded escape sequences.  The argument extends
      until the next newline character.
      """),

    I(name='BINUNICODE',
      code='X',
      arg=unicodestring4,
      stack_before=[],
      stack_after=[pyunicode],
      proto=1,
      doc="""Push a Python Unicode string object.

      There are two arguments:  the first is a 4-byte little-endian signed int
      giving the number of bytes in the string.  The second is that many
      bytes, and is the UTF-8 encoding of the Unicode string.
      """),

    # Ways to spell floats.

    I(name='FLOAT',
      code='F',
      arg=floatnl,
      stack_before=[],
      stack_after=[pyfloat],
      proto=0,
      doc="""Newline-terminated decimal float literal.

      The argument is repr(a_float), and in general requires 17 significant
      digits for roundtrip conversion to be an identity (this is so for
      IEEE-754 double precision values, which is what Python float maps to
      on most boxes).

      In general, FLOAT cannot be used to transport infinities, NaNs, or
      minus zero across boxes (or even on a single box, if the platform C
      library can't read the strings it produces for such things -- Windows
      is like that), but may do less damage than BINFLOAT on boxes with
      greater precision or dynamic range than IEEE-754 double.
      """),

    I(name='BINFLOAT',
      code='G',
      arg=float8,
      stack_before=[],
      stack_after=[pyfloat],
      proto=1,
      doc="""Float stored in binary form, with 8 bytes of data.

      This generally requires less than half the space of FLOAT encoding.
      In general, BINFLOAT cannot be used to transport infinities, NaNs, or
      minus zero, raises an exception if the exponent exceeds the range of
      an IEEE-754 double, and retains no more than 53 bits of precision (if
      there are more than that, "add a half and chop" rounding is used to
      cut it back to 53 significant bits).
      """),

    # Ways to build lists.

    I(name='EMPTY_LIST',
      code=']',
      arg=None,
      stack_before=[],
      stack_after=[pylist],
      proto=1,
      doc="Push an empty list."),

    I(name='APPEND',
      code='a',
      arg=None,
      stack_before=[pylist, anyobject],
      stack_after=[pylist],
      proto=0,
      doc="""Append an object to a list.

      Stack before:  ... pylist anyobject
      Stack after:   ... pylist+[anyobject]

      although pylist is really extended in-place.
      """),

    I(name='APPENDS',
      code='e',
      arg=None,
      stack_before=[pylist, markobject, stackslice],
      stack_after=[pylist],
      proto=1,
      doc="""Extend a list by a slice of stack objects.

      Stack before:  ... pylist markobject stackslice
      Stack after:   ... pylist+stackslice

      although pylist is really extended in-place.
      """),

    I(name='LIST',
      code='l',
      arg=None,
      stack_before=[markobject, stackslice],
      stack_after=[pylist],
      proto=0,
      doc="""Build a list out of the topmost stack slice, after markobject.

      All the stack entries following the topmost markobject are placed into
      a single Python list, which single list object replaces all of the
      stack from the topmost markobject onward.  For example,

      Stack before: ... markobject 1 2 3 'abc'
      Stack after:  ... [1, 2, 3, 'abc']
      """),

    # Ways to build tuples.

    I(name='EMPTY_TUPLE',
      code=')',
      arg=None,
      stack_before=[],
      stack_after=[pytuple],
      proto=1,
      doc="Push an empty tuple."),

    I(name='TUPLE',
      code='t',
      arg=None,
      stack_before=[markobject, stackslice],
      stack_after=[pytuple],
      proto=0,
      doc="""Build a tuple out of the topmost stack slice, after markobject.

      All the stack entries following the topmost markobject are placed into
      a single Python tuple, which single tuple object replaces all of the
      stack from the topmost markobject onward.  For example,

      Stack before: ... markobject 1 2 3 'abc'
      Stack after:  ... (1, 2, 3, 'abc')
      """),

    I(name='TUPLE1',
      code='\x85',
      arg=None,
      stack_before=[anyobject],
      stack_after=[pytuple],
      proto=2,
      doc="""One-tuple.

      This code pops one value off the stack and pushes a tuple of
      length 1 whose one item is that value back onto it.  IOW:

          stack[-1] = tuple(stack[-1:])
      """),

    I(name='TUPLE2',
      code='\x86',
      arg=None,
      stack_before=[anyobject, anyobject],
      stack_after=[pytuple],
      proto=2,
      doc="""One-tuple.

      This code pops two values off the stack and pushes a tuple
      of length 2 whose items are those values back onto it.  IOW:

          stack[-2:] = [tuple(stack[-2:])]
      """),

    I(name='TUPLE3',
      code='\x87',
      arg=None,
      stack_before=[anyobject, anyobject, anyobject],
      stack_after=[pytuple],
      proto=2,
      doc="""One-tuple.

      This code pops three values off the stack and pushes a tuple
      of length 3 whose items are those values back onto it.  IOW:

          stack[-3:] = [tuple(stack[-3:])]
      """),

    # Ways to build dicts.

    I(name='EMPTY_DICT',
      code='}',
      arg=None,
      stack_before=[],
      stack_after=[pydict],
      proto=1,
      doc="Push an empty dict."),

    I(name='DICT',
      code='d',
      arg=None,
      stack_before=[markobject, stackslice],
      stack_after=[pydict],
      proto=0,
      doc="""Build a dict out of the topmost stack slice, after markobject.

      All the stack entries following the topmost markobject are placed into
      a single Python dict, which single dict object replaces all of the
      stack from the topmost markobject onward.  The stack slice alternates
      key, value, key, value, ....  For example,

      Stack before: ... markobject 1 2 3 'abc'
      Stack after:  ... {1: 2, 3: 'abc'}
      """),

    I(name='SETITEM',
      code='s',
      arg=None,
      stack_before=[pydict, anyobject, anyobject],
      stack_after=[pydict],
      proto=0,
      doc="""Add a key+value pair to an existing dict.

      Stack before:  ... pydict key value
      Stack after:   ... pydict

      where pydict has been modified via pydict[key] = value.
      """),

    I(name='SETITEMS',
      code='u',
      arg=None,
      stack_before=[pydict, markobject, stackslice],
      stack_after=[pydict],
      proto=1,
      doc="""Add an arbitrary number of key+value pairs to an existing dict.

      The slice of the stack following the topmost markobject is taken as
      an alternating sequence of keys and values, added to the dict
      immediately under the topmost markobject.  Everything at and after the
      topmost markobject is popped, leaving the mutated dict at the top
      of the stack.

      Stack before:  ... pydict markobject key_1 value_1 ... key_n value_n
      Stack after:   ... pydict

      where pydict has been modified via pydict[key_i] = value_i for i in
      1, 2, ..., n, and in that order.
      """),

    # Stack manipulation.

    I(name='POP',
      code='0',
      arg=None,
      stack_before=[anyobject],
      stack_after=[],
      proto=0,
      doc="Discard the top stack item, shrinking the stack by one item."),

    I(name='DUP',
      code='2',
      arg=None,
      stack_before=[anyobject],
      stack_after=[anyobject, anyobject],
      proto=0,
      doc="Push the top stack item onto the stack again, duplicating it."),

    I(name='MARK',
      code='(',
      arg=None,
      stack_before=[],
      stack_after=[markobject],
      proto=0,
      doc="""Push markobject onto the stack.

      markobject is a unique object, used by other opcodes to identify a
      region of the stack containing a variable number of objects for them
      to work on.  See markobject.doc for more detail.
      """),

    I(name='POP_MARK',
      code='1',
      arg=None,
      stack_before=[markobject, stackslice],
      stack_after=[],
      proto=1,
      doc="""Pop all the stack objects at and above the topmost markobject.

      When an opcode using a variable number of stack objects is done,
      POP_MARK is used to remove those objects, and to remove the markobject
      that delimited their starting position on the stack.
      """),

    # Memo manipulation.  There are really only two operations (get and put),
    # each in all-text, "short binary", and "long binary" flavors.

    I(name='GET',
      code='g',
      arg=decimalnl_short,
      stack_before=[],
      stack_after=[anyobject],
      proto=0,
      doc="""Read an object from the memo and push it on the stack.

      The index of the memo object to push is given by the newline-teriminated
      decimal string following.  BINGET and LONG_BINGET are space-optimized
      versions.
      """),

    I(name='BINGET',
      code='h',
      arg=uint1,
      stack_before=[],
      stack_after=[anyobject],
      proto=1,
      doc="""Read an object from the memo and push it on the stack.

      The index of the memo object to push is given by the 1-byte unsigned
      integer following.
      """),

    I(name='LONG_BINGET',
      code='j',
      arg=int4,
      stack_before=[],
      stack_after=[anyobject],
      proto=1,
      doc="""Read an object from the memo and push it on the stack.

      The index of the memo object to push is given by the 4-byte signed
      little-endian integer following.
      """),

    I(name='PUT',
      code='p',
      arg=decimalnl_short,
      stack_before=[],
      stack_after=[],
      proto=0,
      doc="""Store the stack top into the memo.  The stack is not popped.

      The index of the memo location to write into is given by the newline-
      terminated decimal string following.  BINPUT and LONG_BINPUT are
      space-optimized versions.
      """),

    I(name='BINPUT',
      code='q',
      arg=uint1,
      stack_before=[],
      stack_after=[],
      proto=1,
      doc="""Store the stack top into the memo.  The stack is not popped.

      The index of the memo location to write into is given by the 1-byte
      unsigned integer following.
      """),

    I(name='LONG_BINPUT',
      code='r',
      arg=int4,
      stack_before=[],
      stack_after=[],
      proto=1,
      doc="""Store the stack top into the memo.  The stack is not popped.

      The index of the memo location to write into is given by the 4-byte
      signed little-endian integer following.
      """),

    # Access the extension registry (predefined objects).  Akin to the GET
    # family.

    I(name='EXT1',
      code='\x82',
      arg=uint1,
      stack_before=[],
      stack_after=[anyobject],
      proto=2,
      doc="""Extension code.

      This code and the similar EXT2 and EXT4 allow using a registry
      of popular objects that are pickled by name, typically classes.
      It is envisioned that through a global negotiation and
      registration process, third parties can set up a mapping between
      ints and object names.

      In order to guarantee pickle interchangeability, the extension
      code registry ought to be global, although a range of codes may
      be reserved for private use.

      EXT1 has a 1-byte integer argument.  This is used to index into the
      extension registry, and the object at that index is pushed on the stack.
      """),

    I(name='EXT2',
      code='\x83',
      arg=uint2,
      stack_before=[],
      stack_after=[anyobject],
      proto=2,
      doc="""Extension code.

      See EXT1.  EXT2 has a two-byte integer argument.
      """),

    I(name='EXT4',
      code='\x84',
      arg=int4,
      stack_before=[],
      stack_after=[anyobject],
      proto=2,
      doc="""Extension code.

      See EXT1.  EXT4 has a four-byte integer argument.
      """),

    # Push a class object, or module function, on the stack, via its module
    # and name.

    I(name='GLOBAL',
      code='c',
      arg=stringnl_noescape_pair,
      stack_before=[],
      stack_after=[anyobject],
      proto=0,
      doc="""Push a global object (module.attr) on the stack.

      Two newline-terminated strings follow the GLOBAL opcode.  The first is
      taken as a module name, and the second as a class name.  The class
      object module.class is pushed on the stack.  More accurately, the
      object returned by self.find_class(module, class) is pushed on the
      stack, so unpickling subclasses can override this form of lookup.
      """),

    # Ways to build objects of classes pickle doesn't know about directly
    # (user-defined classes).  I despair of documenting this accurately
    # and comprehensibly -- you really have to read the pickle code to
    # find all the special cases.

    I(name='REDUCE',
      code='R',
      arg=None,
      stack_before=[anyobject, anyobject],
      stack_after=[anyobject],
      proto=0,
      doc="""Push an object built from a callable and an argument tuple.

      The opcode is named to remind of the __reduce__() method.

      Stack before: ... callable pytuple
      Stack after:  ... callable(*pytuple)

      The callable and the argument tuple are the first two items returned
      by a __reduce__ method.  Applying the callable to the argtuple is
      supposed to reproduce the original object, or at least get it started.
      If the __reduce__ method returns a 3-tuple, the last component is an
      argument to be passed to the object's __setstate__, and then the REDUCE
      opcode is followed by code to create setstate's argument, and then a
      BUILD opcode to apply  __setstate__ to that argument.

      If type(callable) is not ClassType, REDUCE complains unless the
      callable has been registered with the copy_reg module's
      safe_constructors dict, or the callable has a magic
      '__safe_for_unpickling__' attribute with a true value.  I'm not sure
      why it does this, but I've sure seen this complaint often enough when
      I didn't want to <wink>.
      """),

    I(name='BUILD',
      code='b',
      arg=None,
      stack_before=[anyobject, anyobject],
      stack_after=[anyobject],
      proto=0,
      doc="""Finish building an object, via __setstate__ or dict update.

      Stack before: ... anyobject argument
      Stack after:  ... anyobject

      where anyobject may have been mutated, as follows:

      If the object has a __setstate__ method,

          anyobject.__setstate__(argument)

      is called.

      Else the argument must be a dict, the object must have a __dict__, and
      the object is updated via

          anyobject.__dict__.update(argument)

      This may raise RuntimeError in restricted execution mode (which
      disallows access to __dict__ directly); in that case, the object
      is updated instead via

          for k, v in argument.items():
              anyobject[k] = v
      """),

    I(name='INST',
      code='i',
      arg=stringnl_noescape_pair,
      stack_before=[markobject, stackslice],
      stack_after=[anyobject],
      proto=0,
      doc="""Build a class instance.

      This is the protocol 0 version of protocol 1's OBJ opcode.
      INST is followed by two newline-terminated strings, giving a
      module and class name, just as for the GLOBAL opcode (and see
      GLOBAL for more details about that).  self.find_class(module, name)
      is used to get a class object.

      In addition, all the objects on the stack following the topmost
      markobject are gathered into a tuple and popped (along with the
      topmost markobject), just as for the TUPLE opcode.

      Now it gets complicated.  If all of these are true:

        + The argtuple is empty (markobject was at the top of the stack
          at the start).

        + It's an old-style class object (the type of the class object is
          ClassType).

        + The class object does not have a __getinitargs__ attribute.

      then we want to create an old-style class instance without invoking
      its __init__() method (pickle has waffled on this over the years; not
      calling __init__() is current wisdom).  In this case, an instance of
      an old-style dummy class is created, and then we try to rebind its
      __class__ attribute to the desired class object.  If this succeeds,
      the new instance object is pushed on the stack, and we're done.  In
      restricted execution mode it can fail (assignment to __class__ is
      disallowed), and I'm not really sure what happens then -- it looks
      like the code ends up calling the class object's __init__ anyway,
      via falling into the next case.

      Else (the argtuple is not empty, it's not an old-style class object,
      or the class object does have a __getinitargs__ attribute), the code
      first insists that the class object have a __safe_for_unpickling__
      attribute.  Unlike as for the __safe_for_unpickling__ check in REDUCE,
      it doesn't matter whether this attribute has a true or false value, it
      only matters whether it exists (XXX this is a bug; cPickle
      requires the attribute to be true).  If __safe_for_unpickling__
      doesn't exist, UnpicklingError is raised.

      Else (the class object does have a __safe_for_unpickling__ attr),
      the class object obtained from INST's arguments is applied to the
      argtuple obtained from the stack, and the resulting instance object
      is pushed on the stack.

      NOTE:  checks for __safe_for_unpickling__ went away in Python 2.3.
      """),

    I(name='OBJ',
      code='o',
      arg=None,
      stack_before=[markobject, anyobject, stackslice],
      stack_after=[anyobject],
      proto=1,
      doc="""Build a class instance.

      This is the protocol 1 version of protocol 0's INST opcode, and is
      very much like it.  The major difference is that the class object
      is taken off the stack, allowing it to be retrieved from the memo
      repeatedly if several instances of the same class are created.  This
      can be much more efficient (in both time and space) than repeatedly
      embedding the module and class names in INST opcodes.

      Unlike INST, OBJ takes no arguments from the opcode stream.  Instead
      the class object is taken off the stack, immediately above the
      topmost markobject:

      Stack before: ... markobject classobject stackslice
      Stack after:  ... new_instance_object

      As for INST, the remainder of the stack above the markobject is
      gathered into an argument tuple, and then the logic seems identical,
      except that no __safe_for_unpickling__ check is done (XXX this is
      a bug; cPickle does test __safe_for_unpickling__).  See INST for
      the gory details.

      NOTE:  In Python 2.3, INST and OBJ are identical except for how they
      get the class object.  That was always the intent; the implementations
      had diverged for accidental reasons.
      """),

    I(name='NEWOBJ',
      code='\x81',
      arg=None,
      stack_before=[anyobject, anyobject],
      stack_after=[anyobject],
      proto=2,
      doc="""Build an object instance.

      The stack before should be thought of as containing a class
      object followed by an argument tuple (the tuple being the stack
      top).  Call these cls and args.  They are popped off the stack,
      and the value returned by cls.__new__(cls, *args) is pushed back
      onto the stack.
      """),

    # Machine control.

    I(name='PROTO',
      code='\x80',
      arg=uint1,
      stack_before=[],
      stack_after=[],
      proto=2,
      doc="""Protocol version indicator.

      For protocol 2 and above, a pickle must start with this opcode.
      The argument is the protocol version, an int in range(2, 256).
      """),

    I(name='STOP',
      code='.',
      arg=None,
      stack_before=[anyobject],
      stack_after=[],
      proto=0,
      doc="""Stop the unpickling machine.

      Every pickle ends with this opcode.  The object at the top of the stack
      is popped, and that's the result of unpickling.  The stack should be
      empty then.
      """),

    # Ways to deal with persistent IDs.

    I(name='PERSID',
      code='P',
      arg=stringnl_noescape,
      stack_before=[],
      stack_after=[anyobject],
      proto=0,
      doc="""Push an object identified by a persistent ID.

      The pickle module doesn't define what a persistent ID means.  PERSID's
      argument is a newline-terminated str-style (no embedded escapes, no
      bracketing quote characters) string, which *is* "the persistent ID".
      The unpickler passes this string to self.persistent_load().  Whatever
      object that returns is pushed on the stack.  There is no implementation
      of persistent_load() in Python's unpickler:  it must be supplied by an
      unpickler subclass.
      """),

    I(name='BINPERSID',
      code='Q',
      arg=None,
      stack_before=[anyobject],
      stack_after=[anyobject],
      proto=1,
      doc="""Push an object identified by a persistent ID.

      Like PERSID, except the persistent ID is popped off the stack (instead
      of being a string embedded in the opcode bytestream).  The persistent
      ID is passed to self.persistent_load(), and whatever object that
      returns is pushed on the stack.  See PERSID for more detail.
      """),
]
del I

# Verify uniqueness of .name and .code members.
name2i = {}
code2i = {}

for i, d in enumerate(opcodes):
    if d.name in name2i:
        raise ValueError("repeated name %r at indices %d and %d" %
                         (d.name, name2i[d.name], i))
    if d.code in code2i:
        raise ValueError("repeated code %r at indices %d and %d" %
                         (d.code, code2i[d.code], i))

    name2i[d.name] = i
    code2i[d.code] = i

del name2i, code2i, i, d

##############################################################################
# Build a code2op dict, mapping opcode characters to OpcodeInfo records.
# Also ensure we've got the same stuff as pickle.py, although the
# introspection here is dicey.

code2op = {}
for d in opcodes:
    code2op[d.code] = d
del d

def assure_pickle_consistency(verbose=False):
    import pickle, re

    copy = code2op.copy()
    for name in pickle.__all__:
        if not re.match("[A-Z][A-Z0-9_]+$", name):
            if verbose:
                print "skipping %r: it doesn't look like an opcode name" % name
            continue
        picklecode = getattr(pickle, name)
        if not isinstance(picklecode, str) or len(picklecode) != 1:
            if verbose:
                print ("skipping %r: value %r doesn't look like a pickle "
                       "code" % (name, picklecode))
            continue
        if picklecode in copy:
            if verbose:
                print "checking name %r w/ code %r for consistency" % (
                      name, picklecode)
            d = copy[picklecode]
            if d.name != name:
                raise ValueError("for pickle code %r, pickle.py uses name %r "
                                 "but we're using name %r" % (picklecode,
                                                              name,
                                                              d.name))
            # Forget this one.  Any left over in copy at the end are a problem
            # of a different kind.
            del copy[picklecode]
        else:
            raise ValueError("pickle.py appears to have a pickle opcode with "
                             "name %r and code %r, but we don't" %
                             (name, picklecode))
    if copy:
        msg = ["we appear to have pickle opcodes that pickle.py doesn't have:"]
        for code, d in copy.items():
            msg.append("    name %r with code %r" % (d.name, code))
        raise ValueError("\n".join(msg))

assure_pickle_consistency()
del assure_pickle_consistency

##############################################################################
# A pickle opcode generator.

def genops(pickle):
    """Generate all the opcodes in a pickle.

    'pickle' is a file-like object, or string, containing the pickle.

    Each opcode in the pickle is generated, from the current pickle position,
    stopping after a STOP opcode is delivered.  A triple is generated for
    each opcode:

        opcode, arg, pos

    opcode is an OpcodeInfo record, describing the current opcode.

    If the opcode has an argument embedded in the pickle, arg is its decoded
    value, as a Python object.  If the opcode doesn't have an argument, arg
    is None.

    If the pickle has a tell() method, pos was the value of pickle.tell()
    before reading the current opcode.  If the pickle is a string object,
    it's wrapped in a StringIO object, and the latter's tell() result is
    used.  Else (the pickle doesn't have a tell(), and it's not obvious how
    to query its current position) pos is None.
    """

    import cStringIO as StringIO

    if isinstance(pickle, str):
        pickle = StringIO.StringIO(pickle)

    if hasattr(pickle, "tell"):
        getpos = pickle.tell
    else:
        getpos = lambda: None

    while True:
        pos = getpos()
        code = pickle.read(1)
        opcode = code2op.get(code)
        if opcode is None:
            if code == "":
                raise ValueError("pickle exhausted before seeing STOP")
            else:
                raise ValueError("at position %s, opcode %r unknown" % (
                                 pos is None and "<unknown>" or pos,
                                 code))
        if opcode.arg is None:
            arg = None
        else:
            arg = opcode.arg.reader(pickle)
        yield opcode, arg, pos
        if code == '.':
            assert opcode.name == 'STOP'
            break

##############################################################################
# A pickle optimizer.

def optimize(p):
    'Optimize a pickle string by removing unused PUT opcodes'
    gets = set()            # set of args used by a GET opcode
    puts = []               # (arg, startpos, stoppos) for the PUT opcodes
    prevpos = None          # set to pos if previous opcode was a PUT
    for opcode, arg, pos in genops(p):
        if prevpos is not None:
            puts.append((prevarg, prevpos, pos))
            prevpos = None
        if 'PUT' in opcode.name:
            prevarg, prevpos = arg, pos
        elif 'GET' in opcode.name:
            gets.add(arg)

    # Copy the pickle string except for PUTS without a corresponding GET
    s = []
    i = 0
    for arg, start, stop in puts:
        j = stop if (arg in gets) else start
        s.append(p[i:j])
        i = stop
    s.append(p[i:])
    return ''.join(s)

##############################################################################
# A symbolic pickle disassembler.

def dis(pickle, out=None, memo=None, indentlevel=4):
    """Produce a symbolic disassembly of a pickle.

    'pickle' is a file-like object, or string, containing a (at least one)
    pickle.  The pickle is disassembled from the current position, through
    the first STOP opcode encountered.

    Optional arg 'out' is a file-like object to which the disassembly is
    printed.  It defaults to sys.stdout.

    Optional arg 'memo' is a Python dict, used as the pickle's memo.  It
    may be mutated by dis(), if the pickle contains PUT or BINPUT opcodes.
    Passing the same memo object to another dis() call then allows disassembly
    to proceed across multiple pickles that were all created by the same
    pickler with the same memo.  Ordinarily you don't need to worry about this.

    Optional arg indentlevel is the number of blanks by which to indent
    a new MARK level.  It defaults to 4.

    In addition to printing the disassembly, some sanity checks are made:

    + All embedded opcode arguments "make sense".

    + Explicit and implicit pop operations have enough items on the stack.

    + When an opcode implicitly refers to a markobject, a markobject is
      actually on the stack.

    + A memo entry isn't referenced before it's defined.

    + The markobject isn't stored in the memo.

    + A memo entry isn't redefined.
    """

    # Most of the hair here is for sanity checks, but most of it is needed
    # anyway to detect when a protocol 0 POP takes a MARK off the stack
    # (which in turn is needed to indent MARK blocks correctly).

    stack = []          # crude emulation of unpickler stack
    if memo is None:
        memo = {}       # crude emulation of unpicker memo
    maxproto = -1       # max protocol number seen
    markstack = []      # bytecode positions of MARK opcodes
    indentchunk = ' ' * indentlevel
    errormsg = None
    for opcode, arg, pos in genops(pickle):
        if pos is not None:
            print >> out, "%5d:" % pos,

        line = "%-4s %s%s" % (repr(opcode.code)[1:-1],
                              indentchunk * len(markstack),
                              opcode.name)

        maxproto = max(maxproto, opcode.proto)
        before = opcode.stack_before    # don't mutate
        after = opcode.stack_after      # don't mutate
        numtopop = len(before)

        # See whether a MARK should be popped.
        markmsg = None
        if markobject in before or (opcode.name == "POP" and
                                    stack and
                                    stack[-1] is markobject):
            assert markobject not in after
            if __debug__:
                if markobject in before:
                    assert before[-1] is stackslice
            if markstack:
                markpos = markstack.pop()
                if markpos is None:
                    markmsg = "(MARK at unknown opcode offset)"
                else:
                    markmsg = "(MARK at %d)" % markpos
                # Pop everything at and after the topmost markobject.
                while stack[-1] is not markobject:
                    stack.pop()
                stack.pop()
                # Stop later code from popping too much.
                try:
                    numtopop = before.index(markobject)
                except ValueError:
                    assert opcode.name == "POP"
                    numtopop = 0
            else:
                errormsg = markmsg = "no MARK exists on stack"

        # Check for correct memo usage.
        if opcode.name in ("PUT", "BINPUT", "LONG_BINPUT"):
            assert arg is not None
            if arg in memo:
                errormsg = "memo key %r already defined" % arg
            elif not stack:
                errormsg = "stack is empty -- can't store into memo"
            elif stack[-1] is markobject:
                errormsg = "can't store markobject in the memo"
            else:
                memo[arg] = stack[-1]

        elif opcode.name in ("GET", "BINGET", "LONG_BINGET"):
            if arg in memo:
                assert len(after) == 1
                after = [memo[arg]]     # for better stack emulation
            else:
                errormsg = "memo key %r has never been stored into" % arg

        if arg is not None or markmsg:
            # make a mild effort to align arguments
            line += ' ' * (10 - len(opcode.name))
            if arg is not None:
                line += ' ' + repr(arg)
            if markmsg:
                line += ' ' + markmsg
        print >> out, line

        if errormsg:
            # Note that we delayed complaining until the offending opcode
            # was printed.
            raise ValueError(errormsg)

        # Emulate the stack effects.
        if len(stack) < numtopop:
            raise ValueError("tries to pop %d items from stack with "
                             "only %d items" % (numtopop, len(stack)))
        if numtopop:
            del stack[-numtopop:]
        if markobject in after:
            assert markobject not in before
            markstack.append(pos)

        stack.extend(after)

    print >> out, "highest protocol among opcodes =", maxproto
    if stack:
        raise ValueError("stack not empty after STOP: %r" % stack)

# For use in the doctest, simply as an example of a class to pickle.
class _Example:
    def __init__(self, value):
        self.value = value

_dis_test = r"""
>>> import pickle
>>> x = [1, 2, (3, 4), {'abc': u"def"}]
>>> pkl = pickle.dumps(x, 0)
>>> dis(pkl)
    0: (    MARK
    1: l        LIST       (MARK at 0)
    2: p    PUT        0
    5: I    INT        1
    8: a    APPEND
    9: I    INT        2
   12: a    APPEND
   13: (    MARK
   14: I        INT        3
   17: I        INT        4
   20: t        TUPLE      (MARK at 13)
   21: p    PUT        1
   24: a    APPEND
   25: (    MARK
   26: d        DICT       (MARK at 25)
   27: p    PUT        2
   30: S    STRING     'abc'
   37: p    PUT        3
   40: V    UNICODE    u'def'
   45: p    PUT        4
   48: s    SETITEM
   49: a    APPEND
   50: .    STOP
highest protocol among opcodes = 0

Try again with a "binary" pickle.

>>> pkl = pickle.dumps(x, 1)
>>> dis(pkl)
    0: ]    EMPTY_LIST
    1: q    BINPUT     0
    3: (    MARK
    4: K        BININT1    1
    6: K        BININT1    2
    8: (        MARK
    9: K            BININT1    3
   11: K            BININT1    4
   13: t            TUPLE      (MARK at 8)
   14: q        BINPUT     1
   16: }        EMPTY_DICT
   17: q        BINPUT     2
   19: U        SHORT_BINSTRING 'abc'
   24: q        BINPUT     3
   26: X        BINUNICODE u'def'
   34: q        BINPUT     4
   36: s        SETITEM
   37: e        APPENDS    (MARK at 3)
   38: .    STOP
highest protocol among opcodes = 1

Exercise the INST/OBJ/BUILD family.

>>> import pickletools
>>> dis(pickle.dumps(pickletools.dis, 0))
    0: c    GLOBAL     'pickletools dis'
   17: p    PUT        0
   20: .    STOP
highest protocol among opcodes = 0

>>> from pickletools import _Example
>>> x = [_Example(42)] * 2
>>> dis(pickle.dumps(x, 0))
    0: (    MARK
    1: l        LIST       (MARK at 0)
    2: p    PUT        0
    5: (    MARK
    6: i        INST       'pickletools _Example' (MARK at 5)
   28: p    PUT        1
   31: (    MARK
   32: d        DICT       (MARK at 31)
   33: p    PUT        2
   36: S    STRING     'value'
   45: p    PUT        3
   48: I    INT        42
   52: s    SETITEM
   53: b    BUILD
   54: a    APPEND
   55: g    GET        1
   58: a    APPEND
   59: .    STOP
highest protocol among opcodes = 0

>>> dis(pickle.dumps(x, 1))
    0: ]    EMPTY_LIST
    1: q    BINPUT     0
    3: (    MARK
    4: (        MARK
    5: c            GLOBAL     'pickletools _Example'
   27: q            BINPUT     1
   29: o            OBJ        (MARK at 4)
   30: q        BINPUT     2
   32: }        EMPTY_DICT
   33: q        BINPUT     3
   35: U        SHORT_BINSTRING 'value'
   42: q        BINPUT     4
   44: K        BININT1    42
   46: s        SETITEM
   47: b        BUILD
   48: h        BINGET     2
   50: e        APPENDS    (MARK at 3)
   51: .    STOP
highest protocol among opcodes = 1

Try "the canonical" recursive-object test.

>>> L = []
>>> T = L,
>>> L.append(T)
>>> L[0] is T
True
>>> T[0] is L
True
>>> L[0][0] is L
True
>>> T[0][0] is T
True
>>> dis(pickle.dumps(L, 0))
    0: (    MARK
    1: l        LIST       (MARK at 0)
    2: p    PUT        0
    5: (    MARK
    6: g        GET        0
    9: t        TUPLE      (MARK at 5)
   10: p    PUT        1
   13: a    APPEND
   14: .    STOP
highest protocol among opcodes = 0

>>> dis(pickle.dumps(L, 1))
    0: ]    EMPTY_LIST
    1: q    BINPUT     0
    3: (    MARK
    4: h        BINGET     0
    6: t        TUPLE      (MARK at 3)
    7: q    BINPUT     1
    9: a    APPEND
   10: .    STOP
highest protocol among opcodes = 1

Note that, in the protocol 0 pickle of the recursive tuple, the disassembler
has to emulate the stack in order to realize that the POP opcode at 16 gets
rid of the MARK at 0.

>>> dis(pickle.dumps(T, 0))
    0: (    MARK
    1: (        MARK
    2: l            LIST       (MARK at 1)
    3: p        PUT        0
    6: (        MARK
    7: g            GET        0
   10: t            TUPLE      (MARK at 6)
   11: p        PUT        1
   14: a        APPEND
   15: 0        POP
   16: 0        POP        (MARK at 0)
   17: g    GET        1
   20: .    STOP
highest protocol among opcodes = 0

>>> dis(pickle.dumps(T, 1))
    0: (    MARK
    1: ]        EMPTY_LIST
    2: q        BINPUT     0
    4: (        MARK
    5: h            BINGET     0
    7: t            TUPLE      (MARK at 4)
    8: q        BINPUT     1
   10: a        APPEND
   11: 1        POP_MARK   (MARK at 0)
   12: h    BINGET     1
   14: .    STOP
highest protocol among opcodes = 1

Try protocol 2.

>>> dis(pickle.dumps(L, 2))
    0: \x80 PROTO      2
    2: ]    EMPTY_LIST
    3: q    BINPUT     0
    5: h    BINGET     0
    7: \x85 TUPLE1
    8: q    BINPUT     1
   10: a    APPEND
   11: .    STOP
highest protocol among opcodes = 2

>>> dis(pickle.dumps(T, 2))
    0: \x80 PROTO      2
    2: ]    EMPTY_LIST
    3: q    BINPUT     0
    5: h    BINGET     0
    7: \x85 TUPLE1
    8: q    BINPUT     1
   10: a    APPEND
   11: 0    POP
   12: h    BINGET     1
   14: .    STOP
highest protocol among opcodes = 2
"""

_memo_test = r"""
>>> import pickle
>>> from StringIO import StringIO
>>> f = StringIO()
>>> p = pickle.Pickler(f, 2)
>>> x = [1, 2, 3]
>>> p.dump(x)
>>> p.dump(x)
>>> f.seek(0)
>>> memo = {}
>>> dis(f, memo=memo)
    0: \x80 PROTO      2
    2: ]    EMPTY_LIST
    3: q    BINPUT     0
    5: (    MARK
    6: K        BININT1    1
    8: K        BININT1    2
   10: K        BININT1    3
   12: e        APPENDS    (MARK at 5)
   13: .    STOP
highest protocol among opcodes = 2
>>> dis(f, memo=memo)
   14: \x80 PROTO      2
   16: h    BINGET     0
   18: .    STOP
highest protocol among opcodes = 2
"""

__test__ = {'disassembler_test': _dis_test,
            'disassembler_memo_test': _memo_test,
           }

def _test():
    import doctest
    return doctest.testmod()

if __name__ == "__main__":
    _test()
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
September 02 2020 02:15:09
0 / 0
0555
bsddb
--
October 20 2018 03:04:04
0 / 0
0755
compiler
--
October 20 2018 03:04:04
0 / 0
0755
config
--
October 20 2018 03:04:02
0 / 0
0755
ctypes
--
October 20 2018 03:04:04
0 / 0
0755
curses
--
October 20 2018 03:04:04
0 / 0
0755
distutils
--
October 20 2018 03:04:04
0 / 0
0755
email
--
October 20 2018 03:04:04
0 / 0
0755
encodings
--
October 20 2018 03:04:04
0 / 0
0755
hotshot
--
October 20 2018 03:04:04
0 / 0
0755
idlelib
--
October 20 2018 03:04:04
0 / 0
0755
json
--
October 20 2018 03:04:04
0 / 0
0755
lib-dynload
--
October 20 2018 03:04:03
0 / 0
0755
lib2to3
--
October 20 2018 03:04:04
0 / 0
0755
logging
--
October 20 2018 03:04:04
0 / 0
0755
multiprocessing
--
October 20 2018 03:04:04
0 / 0
0755
plat-linux2
--
October 20 2018 03:04:04
0 / 0
0755
site-packages
--
October 20 2018 03:07:35
0 / 0
0755
sqlite3
--
October 20 2018 03:04:04
0 / 0
0755
test
--
October 20 2018 03:04:04
0 / 0
0755
wsgiref
--
October 20 2018 03:04:04
0 / 0
0755
xml
--
October 20 2018 03:04:04
0 / 0
0755
BaseHTTPServer.py
21.459 KB
November 22 2010 21:03:35
0 / 0
0644
BaseHTTPServer.pyc
21.069 KB
August 18 2016 15:14:32
0 / 0
0644
BaseHTTPServer.pyo
21.069 KB
August 18 2016 15:14:32
0 / 0
0644
Bastion.py
5.609 KB
November 22 2010 21:03:35
0 / 0
0644
Bastion.pyc
6.511 KB
August 18 2016 15:14:32
0 / 0
0644
Bastion.pyo
6.511 KB
August 18 2016 15:14:32
0 / 0
0644
CGIHTTPServer.py
12.474 KB
November 22 2010 21:03:35
0 / 0
0644
CGIHTTPServer.pyc
10.566 KB
August 18 2016 15:14:32
0 / 0
0644
CGIHTTPServer.pyo
10.566 KB
August 18 2016 15:14:32
0 / 0
0644
ConfigParser.py
25.38 KB
November 22 2010 21:03:35
0 / 0
0644
ConfigParser.pyc
23.306 KB
August 18 2016 15:14:32
0 / 0
0644
ConfigParser.pyo
23.306 KB
August 18 2016 15:14:32
0 / 0
0644
Cookie.py
25.046 KB
August 18 2016 15:14:14
0 / 0
0644
Cookie.pyc
21.896 KB
August 18 2016 15:14:32
0 / 0
0644
Cookie.pyo
21.896 KB
August 18 2016 15:14:32
0 / 0
0644
DocXMLRPCServer.py
10.351 KB
November 22 2010 21:03:35
0 / 0
0644
DocXMLRPCServer.pyc
9.724 KB
August 18 2016 15:14:33
0 / 0
0644
DocXMLRPCServer.pyo
9.618 KB
August 18 2016 15:14:38
0 / 0
0644
HTMLParser.py
13.258 KB
November 22 2010 21:03:35
0 / 0
0644
HTMLParser.pyc
11.971 KB
August 18 2016 15:14:33
0 / 0
0644
HTMLParser.pyo
11.67 KB
August 18 2016 15:14:38
0 / 0
0644
MimeWriter.py
6.33 KB
November 22 2010 21:03:35
0 / 0
0644
MimeWriter.pyc
7.21 KB
August 18 2016 15:14:33
0 / 0
0644
MimeWriter.pyo
7.21 KB
August 18 2016 15:14:33
0 / 0
0644
Queue.py
8.373 KB
November 22 2010 21:03:35
0 / 0
0644
Queue.pyc
9.226 KB
August 18 2016 15:14:33
0 / 0
0644
Queue.pyo
9.226 KB
August 18 2016 15:14:33
0 / 0
0644
SimpleHTTPServer.py
7.248 KB
November 22 2010 21:03:35
0 / 0
0644
SimpleHTTPServer.pyc
7.584 KB
August 18 2016 15:14:33
0 / 0
0644
SimpleHTTPServer.pyo
7.584 KB
August 18 2016 15:14:33
0 / 0
0644
SimpleXMLRPCServer.py
21.477 KB
November 22 2010 21:03:35
0 / 0
0644
SimpleXMLRPCServer.pyc
19.173 KB
August 18 2016 15:14:33
0 / 0
0644
SimpleXMLRPCServer.pyo
19.173 KB
August 18 2016 15:14:33
0 / 0
0644
SocketServer.py
21.803 KB
November 22 2010 21:03:35
0 / 0
0644
SocketServer.pyc
22.601 KB
August 18 2016 15:14:33
0 / 0
0644
SocketServer.pyo
22.601 KB
August 18 2016 15:14:33
0 / 0
0644
StringIO.py
10.372 KB
November 22 2010 21:03:35
0 / 0
0644
StringIO.pyc
11.262 KB
August 18 2016 15:14:33
0 / 0
0644
StringIO.pyo
11.262 KB
August 18 2016 15:14:33
0 / 0
0644
UserDict.py
5.643 KB
November 22 2010 21:03:35
0 / 0
0644
UserDict.pyc
8.684 KB
August 18 2016 15:14:33
0 / 0
0644
UserDict.pyo
8.684 KB
August 18 2016 15:14:33
0 / 0
0644
UserList.py
3.559 KB
November 22 2010 21:03:35
0 / 0
0644
UserList.pyc
6.448 KB
August 18 2016 15:14:33
0 / 0
0644
UserList.pyo
6.448 KB
August 18 2016 15:14:33
0 / 0
0644
UserString.py
9.464 KB
November 22 2010 21:03:35
0 / 0
0755
UserString.pyc
14.572 KB
August 18 2016 15:14:33
0 / 0
0644
UserString.pyo
14.572 KB
August 18 2016 15:14:33
0 / 0
0644
_LWPCookieJar.py
6.399 KB
November 22 2010 21:03:35
0 / 0
0644
_LWPCookieJar.pyc
5.47 KB
August 18 2016 15:14:33
0 / 0
0644
_LWPCookieJar.pyo
5.47 KB
August 18 2016 15:14:33
0 / 0
0644
_MozillaCookieJar.py
5.673 KB
November 22 2010 21:03:35
0 / 0
0644
_MozillaCookieJar.pyc
4.411 KB
August 18 2016 15:14:33
0 / 0
0644
_MozillaCookieJar.pyo
4.371 KB
August 18 2016 15:14:38
0 / 0
0644
__future__.py
4.277 KB
November 22 2010 21:03:35
0 / 0
0644
__future__.pyc
4.134 KB
August 18 2016 15:14:33
0 / 0
0644
__future__.pyo
4.134 KB
August 18 2016 15:14:33
0 / 0
0644
__phello__.foo.py
0.063 KB
November 22 2010 21:03:35
0 / 0
0644
__phello__.foo.pyc
0.122 KB
August 18 2016 15:14:33
0 / 0
0644
__phello__.foo.pyo
0.122 KB
August 18 2016 15:14:33
0 / 0
0644
_abcoll.py
13.908 KB
November 22 2010 21:03:35
0 / 0
0644
_abcoll.pyc
21.085 KB
August 18 2016 15:14:33
0 / 0
0644
_abcoll.pyo
21.085 KB
August 18 2016 15:14:33
0 / 0
0644
_strptime.py
19.291 KB
November 22 2010 21:03:35
0 / 0
0644
_strptime.pyc
14.615 KB
August 18 2016 15:14:33
0 / 0
0644
_strptime.pyo
14.615 KB
August 18 2016 15:14:33
0 / 0
0644
_threading_local.py
6.947 KB
November 22 2010 21:03:35
0 / 0
0644
_threading_local.pyc
6.235 KB
August 18 2016 15:14:33
0 / 0
0644
_threading_local.pyo
6.235 KB
August 18 2016 15:14:33
0 / 0
0644
abc.py
6.869 KB
November 22 2010 21:03:35
0 / 0
0644
abc.pyc
5.929 KB
August 18 2016 15:14:33
0 / 0
0644
abc.pyo
5.872 KB
August 18 2016 15:14:38
0 / 0
0644
aifc.py
32.41 KB
November 22 2010 21:03:35
0 / 0
0644
aifc.pyc
28.871 KB
August 18 2016 15:14:33
0 / 0
0644
aifc.pyo
28.871 KB
August 18 2016 15:14:33
0 / 0
0644
anydbm.py
2.559 KB
November 22 2010 21:03:35
0 / 0
0644
anydbm.pyc
2.71 KB
August 18 2016 15:14:33
0 / 0
0644
anydbm.pyo
2.71 KB
August 18 2016 15:14:33
0 / 0
0644
ast.py
11.081 KB
November 22 2010 21:03:35
0 / 0
0644
ast.pyc
12.48 KB
August 18 2016 15:14:33
0 / 0
0644
ast.pyo
12.48 KB
August 18 2016 15:14:33
0 / 0
0644
asynchat.py
11.135 KB
November 22 2010 21:03:35
0 / 0
0644
asynchat.pyc
8.532 KB
August 18 2016 15:14:33
0 / 0
0644
asynchat.pyo
8.532 KB
August 18 2016 15:14:33
0 / 0
0644
asyncore.py
19.591 KB
November 22 2010 21:03:35
0 / 0
0644
asyncore.pyc
18.02 KB
August 18 2016 15:14:33
0 / 0
0644
asyncore.pyo
18.02 KB
August 18 2016 15:14:33
0 / 0
0644
atexit.py
1.665 KB
November 22 2010 21:03:35
0 / 0
0644
atexit.pyc
2.163 KB
August 18 2016 15:14:33
0 / 0
0644
atexit.pyo
2.163 KB
August 18 2016 15:14:33
0 / 0
0644
audiodev.py
7.419 KB
November 22 2010 21:03:35
0 / 0
0644
audiodev.pyc
8.337 KB
August 18 2016 15:14:33
0 / 0
0644
audiodev.pyo
8.337 KB
August 18 2016 15:14:33
0 / 0
0644
base64.py
11.069 KB
November 22 2010 21:03:35
0 / 0
0755
base64.pyc
10.745 KB
August 18 2016 15:14:33
0 / 0
0644
base64.pyo
10.745 KB
August 18 2016 15:14:33
0 / 0
0644
bdb.py
20.114 KB
November 22 2010 21:03:35
0 / 0
0644
bdb.pyc
18.132 KB
August 18 2016 15:14:33
0 / 0
0644
bdb.pyo
18.132 KB
August 18 2016 15:14:33
0 / 0
0644
binhex.py
14.529 KB
November 22 2010 21:03:35
0 / 0
0644
binhex.pyc
15.503 KB
August 18 2016 15:14:33
0 / 0
0644
binhex.pyo
15.503 KB
August 18 2016 15:14:33
0 / 0
0644
bisect.py
2.6 KB
November 22 2010 21:03:35
0 / 0
0644
bisect.pyc
3.099 KB
August 18 2016 15:14:33
0 / 0
0644
bisect.pyo
3.099 KB
August 18 2016 15:14:33
0 / 0
0644
cProfile.py
6.188 KB
November 22 2010 21:03:35
0 / 0
0755
cProfile.pyc
6.093 KB
August 18 2016 15:14:33
0 / 0
0644
cProfile.pyo
6.093 KB
August 18 2016 15:14:33
0 / 0
0644
calendar.py
22.568 KB
November 22 2010 21:03:35
0 / 0
0644
calendar.pyc
27.505 KB
August 18 2016 15:14:33
0 / 0
0644
calendar.pyo
27.505 KB
August 18 2016 15:14:33
0 / 0
0644
cgi.py
33.67 KB
November 22 2010 21:03:35
0 / 0
0755
cgi.pyc
32.049 KB
August 18 2016 15:14:33
0 / 0
0644
cgi.pyo
32.049 KB
August 18 2016 15:14:33
0 / 0
0644
cgitb.py
11.87 KB
November 22 2010 21:03:35
0 / 0
0644
cgitb.pyc
12.169 KB
August 18 2016 15:14:33
0 / 0
0644
cgitb.pyo
12.169 KB
August 18 2016 15:14:33
0 / 0
0644
chunk.py
5.246 KB
November 22 2010 21:03:35
0 / 0
0644
chunk.pyc
5.513 KB
August 18 2016 15:14:33
0 / 0
0644
chunk.pyo
5.513 KB
August 18 2016 15:14:33
0 / 0
0644
cmd.py
14.611 KB
November 22 2010 21:03:35
0 / 0
0644
cmd.pyc
13.627 KB
August 18 2016 15:14:33
0 / 0
0644
cmd.pyo
13.627 KB
August 18 2016 15:14:33
0 / 0
0644
code.py
9.978 KB
November 22 2010 21:03:35
0 / 0
0644
code.pyc
10.183 KB
August 18 2016 15:14:33
0 / 0
0644
code.pyo
10.183 KB
August 18 2016 15:14:33
0 / 0
0644
codecs.py
34.439 KB
November 22 2010 21:03:35
0 / 0
0644
codecs.pyc
35.86 KB
August 18 2016 15:14:33
0 / 0
0644
codecs.pyo
35.86 KB
August 18 2016 15:14:33
0 / 0
0644
codeop.py
5.858 KB
November 22 2010 21:03:35
0 / 0
0644
codeop.pyc
6.48 KB
August 18 2016 15:14:33
0 / 0
0644
codeop.pyo
6.48 KB
August 18 2016 15:14:33
0 / 0
0644
collections.py
13.408 KB
November 22 2010 21:03:35
0 / 0
0644
collections.pyc
14.123 KB
August 18 2016 15:14:33
0 / 0
0644
collections.pyo
14.071 KB
August 18 2016 15:14:38
0 / 0
0644
colorsys.py
3.378 KB
November 22 2010 21:03:35
0 / 0
0644
colorsys.pyc
3.946 KB
August 18 2016 15:14:33
0 / 0
0644
colorsys.pyo
3.946 KB
August 18 2016 15:14:33
0 / 0
0644
commands.py
2.483 KB
November 22 2010 21:03:35
0 / 0
0644
commands.pyc
2.431 KB
August 18 2016 15:14:33
0 / 0
0644
commands.pyo
2.431 KB
August 18 2016 15:14:33
0 / 0
0644
compileall.py
5.161 KB
November 22 2010 21:03:35
0 / 0
0644
compileall.pyc
4.88 KB
August 18 2016 15:14:33
0 / 0
0644
compileall.pyo
4.88 KB
August 18 2016 15:14:33
0 / 0
0644
contextlib.py
4.039 KB
November 22 2010 21:03:35
0 / 0
0644
contextlib.pyc
4.054 KB
August 18 2016 15:14:33
0 / 0
0644
contextlib.pyo
4.054 KB
August 18 2016 15:14:33
0 / 0
0644
cookielib.py
62.941 KB
November 22 2010 21:03:35
0 / 0
0644
cookielib.pyc
53.951 KB
August 18 2016 15:14:33
0 / 0
0644
cookielib.pyo
53.765 KB
August 18 2016 15:14:38
0 / 0
0644
copy.py
10.915 KB
November 22 2010 21:03:35
0 / 0
0644
copy.pyc
11.401 KB
August 18 2016 15:14:33
0 / 0
0644
copy.pyo
11.308 KB
August 18 2016 15:14:38
0 / 0
0644
copy_reg.py
6.641 KB
November 22 2010 21:03:35
0 / 0
0644
copy_reg.pyc
5.057 KB
August 18 2016 15:14:33
0 / 0
0644
copy_reg.pyo
5.012 KB
August 18 2016 15:14:38
0 / 0
0644
crypt.py
2.177 KB
November 22 2010 21:03:35
0 / 0
0644
crypt.pyc
2.983 KB
August 18 2016 15:14:33
0 / 0
0644
crypt.pyo
2.983 KB
August 18 2016 15:14:33
0 / 0
0644
csv.py
15.361 KB
November 22 2010 21:03:35
0 / 0
0644
csv.pyc
12.916 KB
August 18 2016 15:14:33
0 / 0
0644
csv.pyo
12.916 KB
August 18 2016 15:14:33
0 / 0
0644
dbhash.py
0.522 KB
November 22 2010 21:03:35
0 / 0
0644
dbhash.pyc
0.742 KB
August 18 2016 15:14:33
0 / 0
0644
dbhash.pyo
0.742 KB
August 18 2016 15:14:33
0 / 0
0644
decimal.py
194.603 KB
November 22 2010 21:03:35
0 / 0
0644
decimal.pyc
152.032 KB
August 18 2016 15:14:33
0 / 0
0644
decimal.pyo
151.968 KB
August 18 2016 15:14:39
0 / 0
0644
difflib.py
79.18 KB
August 18 2016 15:14:10
0 / 0
0644
difflib.pyc
59.759 KB
August 18 2016 15:14:33
0 / 0
0644
difflib.pyo
59.706 KB
August 18 2016 15:14:39
0 / 0
0644
dircache.py
1.1 KB
November 22 2010 21:03:35
0 / 0
0644
dircache.pyc
1.547 KB
August 18 2016 15:14:33
0 / 0
0644
dircache.pyo
1.547 KB
August 18 2016 15:14:33
0 / 0
0644
dis.py
6.298 KB
November 22 2010 21:03:35
0 / 0
0644
dis.pyc
6.217 KB
August 18 2016 15:14:33
0 / 0
0644
dis.pyo
6.217 KB
August 18 2016 15:14:33
0 / 0
0644
doctest.py
99.137 KB
November 22 2010 21:03:35
0 / 0
0644
doctest.pyc
79.096 KB
August 18 2016 15:14:34
0 / 0
0644
doctest.pyo
78.814 KB
August 18 2016 15:14:39
0 / 0
0644
dumbdbm.py
8.613 KB
November 22 2010 21:03:35
0 / 0
0644
dumbdbm.pyc
6.431 KB
August 18 2016 15:14:34
0 / 0
0644
dumbdbm.pyo
6.431 KB
August 18 2016 15:14:34
0 / 0
0644
dummy_thread.py
4.314 KB
November 22 2010 21:03:35
0 / 0
0644
dummy_thread.pyc
5.286 KB
August 18 2016 15:14:34
0 / 0
0644
dummy_thread.pyo
5.286 KB
August 18 2016 15:14:34
0 / 0
0644
dummy_threading.py
2.738 KB
November 22 2010 21:03:35
0 / 0
0644
dummy_threading.pyc
1.267 KB
August 18 2016 15:14:34
0 / 0
0644
dummy_threading.pyo
1.267 KB
August 18 2016 15:14:34
0 / 0
0644
filecmp.py
9.248 KB
November 22 2010 21:03:35
0 / 0
0644
filecmp.pyc
9.406 KB
August 18 2016 15:14:34
0 / 0
0644
filecmp.pyo
9.406 KB
August 18 2016 15:14:34
0 / 0
0644
fileinput.py
13.812 KB
November 22 2010 21:03:35
0 / 0
0644
fileinput.pyc
14.578 KB
August 18 2016 15:14:34
0 / 0
0644
fileinput.pyo
14.578 KB
August 18 2016 15:14:34
0 / 0
0644
fnmatch.py
3.163 KB
November 22 2010 21:03:35
0 / 0
0644
fnmatch.pyc
3.495 KB
August 18 2016 15:14:34
0 / 0
0644
fnmatch.pyo
3.495 KB
August 18 2016 15:14:34
0 / 0
0644
formatter.py
14.562 KB
November 22 2010 21:03:35
0 / 0
0644
formatter.pyc
18.851 KB
August 18 2016 15:14:34
0 / 0
0644
formatter.pyo
18.851 KB
August 18 2016 15:14:34
0 / 0
0644
fpformat.py
4.589 KB
November 22 2010 21:03:35
0 / 0
0644
fpformat.pyc
4.624 KB
August 18 2016 15:14:34
0 / 0
0644
fpformat.pyo
4.624 KB
August 18 2016 15:14:34
0 / 0
0644
fractions.py
19.603 KB
November 22 2010 21:03:35
0 / 0
0644
fractions.pyc
17.694 KB
August 18 2016 15:14:34
0 / 0
0644
fractions.pyo
17.694 KB
August 18 2016 15:14:34
0 / 0
0644
ftplib.py
28.513 KB
November 22 2010 21:03:35
0 / 0
0644
ftplib.pyc
27.835 KB
August 18 2016 15:14:34
0 / 0
0644
ftplib.pyo
27.835 KB
August 18 2016 15:14:34
0 / 0
0644
functools.py
2.111 KB
November 22 2010 21:03:35
0 / 0
0644
functools.pyc
1.882 KB
August 18 2016 15:14:34
0 / 0
0644
functools.pyo
1.882 KB
August 18 2016 15:14:34
0 / 0
0644
genericpath.py
2.949 KB
November 22 2010 21:03:35
0 / 0
0644
genericpath.pyc
3.215 KB
August 18 2016 15:14:34
0 / 0
0644
genericpath.pyo
3.215 KB
August 18 2016 15:14:34
0 / 0
0644
getopt.py
7.156 KB
November 22 2010 21:03:35
0 / 0
0644
getopt.pyc
6.572 KB
August 18 2016 15:14:34
0 / 0
0644
getopt.pyo
6.526 KB
August 18 2016 15:14:39
0 / 0
0644
getpass.py
5.404 KB
November 22 2010 21:03:35
0 / 0
0644
getpass.pyc
4.643 KB
August 18 2016 15:14:34
0 / 0
0644
getpass.pyo
4.643 KB
August 18 2016 15:14:34
0 / 0
0644
gettext.py
19.5 KB
November 22 2010 21:03:35
0 / 0
0644
gettext.pyc
15.391 KB
August 18 2016 15:14:34
0 / 0
0644
gettext.pyo
15.391 KB
August 18 2016 15:14:34
0 / 0
0644
glob.py
2.196 KB
November 22 2010 21:03:35
0 / 0
0644
glob.pyc
2.353 KB
August 18 2016 15:14:34
0 / 0
0644
glob.pyo
2.353 KB
August 18 2016 15:14:34
0 / 0
0644
gzip.py
16.361 KB
November 22 2010 21:03:35
0 / 0
0644
gzip.pyc
14.049 KB
August 18 2016 15:14:34
0 / 0
0644
gzip.pyo
14.049 KB
August 18 2016 15:14:34
0 / 0
0644
hashlib.py
4.323 KB
November 22 2010 21:03:35
0 / 0
0644
hashlib.pyc
3.888 KB
August 18 2016 15:14:34
0 / 0
0644
hashlib.pyo
3.888 KB
August 18 2016 15:14:34
0 / 0
0644
heapq.py
15.62 KB
November 22 2010 21:03:35
0 / 0
0644
heapq.pyc
12.396 KB
August 18 2016 15:14:34
0 / 0
0644
heapq.pyo
12.396 KB
August 18 2016 15:14:34
0 / 0
0644
hmac.py
4.425 KB
November 22 2010 21:03:35
0 / 0
0644
hmac.pyc
4.403 KB
August 18 2016 15:14:34
0 / 0
0644
hmac.pyo
4.403 KB
August 18 2016 15:14:34
0 / 0
0644
htmlentitydefs.py
17.631 KB
November 22 2010 21:03:35
0 / 0
0644
htmlentitydefs.pyc
6.222 KB
August 18 2016 15:14:34
0 / 0
0644
htmlentitydefs.pyo
6.222 KB
August 18 2016 15:14:34
0 / 0
0644
htmllib.py
12.567 KB
November 22 2010 21:03:35
0 / 0
0644
htmllib.pyc
19.906 KB
August 18 2016 15:14:34
0 / 0
0644
htmllib.pyo
19.906 KB
August 18 2016 15:14:34
0 / 0
0644
httplib.py
46.774 KB
November 22 2010 21:03:35
0 / 0
0644
httplib.pyc
36.174 KB
August 18 2016 15:14:34
0 / 0
0644
httplib.pyo
35.982 KB
August 18 2016 15:14:39
0 / 0
0644
ihooks.py
17.043 KB
November 22 2010 21:03:35
0 / 0
0644
ihooks.pyc
20.349 KB
August 18 2016 15:14:34
0 / 0
0644
ihooks.pyo
20.271 KB
August 18 2016 15:14:39
0 / 0
0644
imaplib.py
46.651 KB
November 22 2010 21:03:35
0 / 0
0644
imaplib.pyc
44.165 KB
August 18 2016 15:14:34
0 / 0
0644
imaplib.pyo
41.479 KB
August 18 2016 15:14:39
0 / 0
0644
imghdr.py
3.461 KB
November 22 2010 21:03:35
0 / 0
0644
imghdr.pyc
4.79 KB
August 18 2016 15:14:34
0 / 0
0644
imghdr.pyo
4.79 KB
August 18 2016 15:14:34
0 / 0
0644
imputil.py
25.399 KB
November 22 2010 21:03:35
0 / 0
0644
imputil.pyc
15.661 KB
August 18 2016 15:14:34
0 / 0
0644
imputil.pyo
15.493 KB
August 18 2016 15:14:39
0 / 0
0644
inspect.py
37.294 KB
November 22 2010 21:03:35
0 / 0
0644
inspect.pyc
36.294 KB
August 18 2016 15:14:34
0 / 0
0644
inspect.pyo
36.294 KB
August 18 2016 15:14:34
0 / 0
0644
io.py
64.614 KB
November 22 2010 21:03:35
0 / 0
0644
io.pyc
61.564 KB
August 18 2016 15:14:34
0 / 0
0644
io.pyo
61.564 KB
August 18 2016 15:14:34
0 / 0
0644
keyword.py
1.95 KB
November 22 2010 21:03:35
0 / 0
0755
keyword.pyc
2.067 KB
August 18 2016 15:14:34
0 / 0
0644
keyword.pyo
2.067 KB
August 18 2016 15:14:34
0 / 0
0644
linecache.py
4.031 KB
November 22 2010 21:03:35
0 / 0
0644
linecache.pyc
3.191 KB
August 18 2016 15:14:35
0 / 0
0644
linecache.pyo
3.191 KB
August 18 2016 15:14:35
0 / 0
0644
locale.py
80.736 KB
November 22 2010 21:03:35
0 / 0
0644
locale.pyc
45.582 KB
August 18 2016 15:14:35
0 / 0
0644
locale.pyo
45.582 KB
August 18 2016 15:14:35
0 / 0
0644
macpath.py
6.106 KB
November 22 2010 21:03:35
0 / 0
0644
macpath.pyc
7.526 KB
August 18 2016 15:14:35
0 / 0
0644
macpath.pyo
7.526 KB
August 18 2016 15:14:35
0 / 0
0644
macurl2path.py
3.198 KB
November 22 2010 21:03:35
0 / 0
0644
macurl2path.pyc
2.759 KB
August 18 2016 15:14:35
0 / 0
0644
macurl2path.pyo
2.759 KB
August 18 2016 15:14:35
0 / 0
0644
mailbox.py
74.047 KB
August 18 2016 15:14:11
0 / 0
0644
mailbox.pyc
74.286 KB
August 18 2016 15:14:35
0 / 0
0644
mailbox.pyo
74.238 KB
August 18 2016 15:14:40
0 / 0
0644
mailcap.py
7.253 KB
November 22 2010 21:03:35
0 / 0
0644
mailcap.pyc
7.024 KB
August 18 2016 15:14:35
0 / 0
0644
mailcap.pyo
7.024 KB
August 18 2016 15:14:35
0 / 0
0644
markupbase.py
14.014 KB
November 22 2010 21:03:35
0 / 0
0644
markupbase.pyc
9.242 KB
August 18 2016 15:14:35
0 / 0
0644
markupbase.pyo
9.053 KB
August 18 2016 15:14:40
0 / 0
0644
md5.py
0.4 KB
November 22 2010 21:03:35
0 / 0
0644
md5.pyc
0.369 KB
August 18 2016 15:14:35
0 / 0
0644
md5.pyo
0.369 KB
August 18 2016 15:14:35
0 / 0
0644
mhlib.py
32.65 KB
November 22 2010 21:03:35
0 / 0
0644
mhlib.pyc
33.337 KB
August 18 2016 15:14:35
0 / 0
0644
mhlib.pyo
33.337 KB
August 18 2016 15:14:35
0 / 0
0644
mimetools.py
7 KB
November 22 2010 21:03:35
0 / 0
0644
mimetools.pyc
8.125 KB
August 18 2016 15:14:35
0 / 0
0644
mimetools.pyo
8.125 KB
August 18 2016 15:14:35
0 / 0
0644
mimetypes.py
18.381 KB
November 22 2010 21:03:35
0 / 0
0644
mimetypes.pyc
16.477 KB
August 18 2016 15:14:35
0 / 0
0644
mimetypes.pyo
16.477 KB
August 18 2016 15:14:35
0 / 0
0644
mimify.py
14.672 KB
November 22 2010 21:03:35
0 / 0
0755
mimify.pyc
11.933 KB
August 18 2016 15:14:35
0 / 0
0644
mimify.pyo
11.933 KB
August 18 2016 15:14:35
0 / 0
0644
modulefinder.py
23.714 KB
November 22 2010 21:03:35
0 / 0
0644
modulefinder.pyc
18.562 KB
August 18 2016 15:14:35
0 / 0
0644
modulefinder.pyo
18.476 KB
August 18 2016 15:14:40
0 / 0
0644
multifile.py
4.707 KB
November 22 2010 21:03:35
0 / 0
0644
multifile.pyc
5.351 KB
August 18 2016 15:14:35
0 / 0
0644
multifile.pyo
5.308 KB
August 18 2016 15:14:40
0 / 0
0644
mutex.py
1.822 KB
November 22 2010 21:03:35
0 / 0
0644
mutex.pyc
2.467 KB
August 18 2016 15:14:35
0 / 0
0644
mutex.pyo
2.467 KB
August 18 2016 15:14:35
0 / 0
0644
netrc.py
4.015 KB
November 22 2010 21:03:35
0 / 0
0644
netrc.pyc
3.518 KB
August 18 2016 15:14:35
0 / 0
0644
netrc.pyo
3.518 KB
August 18 2016 15:14:35
0 / 0
0644
new.py
0.689 KB
November 22 2010 21:03:35
0 / 0
0644
new.pyc
0.889 KB
August 18 2016 15:14:35
0 / 0
0644
new.pyo
0.889 KB
August 18 2016 15:14:35
0 / 0
0644
nntplib.py
20.967 KB
November 22 2010 21:03:35
0 / 0
0644
nntplib.pyc
20.683 KB
August 18 2016 15:14:35
0 / 0
0644
nntplib.pyo
20.683 KB
August 18 2016 15:14:35
0 / 0
0644
ntpath.py
17.336 KB
November 22 2010 21:03:35
0 / 0
0644
ntpath.pyc
11.348 KB
August 18 2016 15:14:35
0 / 0
0644
ntpath.pyo
11.302 KB
August 18 2016 15:14:40
0 / 0
0644
nturl2path.py
2.187 KB
November 22 2010 21:03:35
0 / 0
0644
nturl2path.pyc
1.735 KB
August 18 2016 15:14:35
0 / 0
0644
nturl2path.pyo
1.735 KB
August 18 2016 15:14:35
0 / 0
0644
numbers.py
10.03 KB
November 22 2010 21:03:35
0 / 0
0644
numbers.pyc
13.637 KB
August 18 2016 15:14:35
0 / 0
0644
numbers.pyo
13.637 KB
August 18 2016 15:14:35
0 / 0
0644
opcode.py
5.125 KB
November 22 2010 21:03:35
0 / 0
0644
opcode.pyc
5.778 KB
August 18 2016 15:14:35
0 / 0
0644
opcode.pyo
5.778 KB
August 18 2016 15:14:35
0 / 0
0644
optparse.py
59.423 KB
November 22 2010 21:03:35
0 / 0
0644
optparse.pyc
52.968 KB
August 18 2016 15:14:35
0 / 0
0644
optparse.pyo
52.888 KB
August 18 2016 15:14:40
0 / 0
0644
ordereddict.py
0.035 KB
August 18 2016 15:13:34
0 / 0
0644
ordereddict.pyc
0.181 KB
August 18 2016 15:14:35
0 / 0
0644
ordereddict.pyo
0.181 KB
August 18 2016 15:14:35
0 / 0
0644
os.py
25.197 KB
November 22 2010 21:03:35
0 / 0
0644
os.pyc
25.203 KB
August 18 2016 15:14:35
0 / 0
0644
os.pyo
25.203 KB
August 18 2016 15:14:35
0 / 0
0644
os2emxpath.py
4.495 KB
November 22 2010 21:03:35
0 / 0
0644
os2emxpath.pyc
4.43 KB
August 18 2016 15:14:35
0 / 0
0644
os2emxpath.pyo
4.43 KB
August 18 2016 15:14:35
0 / 0
0644
pdb.doc
7.714 KB
May 11 2008 14:17:13
0 / 0
0644
pdb.py
44.271 KB
November 22 2010 21:03:35
0 / 0
0755
pdb.pyc
42.786 KB
August 18 2016 15:14:35
0 / 0
0644
pdb.pyo
42.786 KB
August 18 2016 15:14:35
0 / 0
0644
pickle.py
43.761 KB
November 22 2010 21:03:35
0 / 0
0644
pickle.pyc
37.739 KB
August 18 2016 15:14:35
0 / 0
0644
pickle.pyo
37.539 KB
August 18 2016 15:14:40
0 / 0
0644
pickletools.py
72.605 KB
November 22 2010 21:03:35
0 / 0
0644
pickletools.pyc
55.804 KB
August 18 2016 15:14:35
0 / 0
0644
pickletools.pyo
54.928 KB
August 18 2016 15:14:40
0 / 0
0644
pipes.py
9.421 KB
November 22 2010 21:03:35
0 / 0
0644
pipes.pyc
9.238 KB
August 18 2016 15:14:35
0 / 0
0644
pipes.pyo
9.238 KB
August 18 2016 15:14:35
0 / 0
0644
pkgutil.py
19.532 KB
November 22 2010 21:03:35
0 / 0
0644
pkgutil.pyc
18.574 KB
August 18 2016 15:14:35
0 / 0
0644
pkgutil.pyo
18.574 KB
August 18 2016 15:14:35
0 / 0
0644
platform.py
51.386 KB
November 22 2010 21:03:35
0 / 0
0755
platform.pyc
37.872 KB
August 18 2016 15:14:35
0 / 0
0644
platform.pyo
37.872 KB
August 18 2016 15:14:35
0 / 0
0644
plistlib.py
14.829 KB
November 22 2010 21:03:35
0 / 0
0644
plistlib.pyc
18.877 KB
August 18 2016 15:14:35
0 / 0
0644
plistlib.pyo
18.789 KB
August 18 2016 15:14:40
0 / 0
0644
popen2.py
8.219 KB
November 22 2010 21:03:35
0 / 0
0644
popen2.pyc
8.852 KB
August 18 2016 15:14:35
0 / 0
0644
popen2.pyo
8.809 KB
August 18 2016 15:14:40
0 / 0
0644
poplib.py
12.524 KB
November 22 2010 21:03:35
0 / 0
0644
poplib.pyc
13.104 KB
August 18 2016 15:14:35
0 / 0
0644
poplib.pyo
13.104 KB
August 18 2016 15:14:35
0 / 0
0644
posixfile.py
7.815 KB
November 22 2010 21:03:35
0 / 0
0644
posixfile.pyc
7.543 KB
August 18 2016 15:14:35
0 / 0
0644
posixfile.pyo
7.543 KB
August 18 2016 15:14:35
0 / 0
0644
posixpath.py
12.812 KB
November 22 2010 21:03:35
0 / 0
0644
posixpath.pyc
10.926 KB
August 18 2016 15:14:35
0 / 0
0644
posixpath.pyo
10.926 KB
August 18 2016 15:14:35
0 / 0
0644
pprint.py
11.652 KB
November 22 2010 21:03:35
0 / 0
0644
pprint.pyc
10.15 KB
August 18 2016 15:14:35
0 / 0
0644
pprint.pyo
9.979 KB
August 18 2016 15:14:40
0 / 0
0644
profile.py
22.959 KB
November 22 2010 21:03:35
0 / 0
0755
profile.pyc
16.289 KB
August 18 2016 15:14:35
0 / 0
0644
profile.pyo
16.05 KB
August 18 2016 15:14:40
0 / 0
0644
pstats.py
26.67 KB
November 22 2010 21:03:35
0 / 0
0644
pstats.pyc
24.746 KB
August 18 2016 15:14:35
0 / 0
0644
pstats.pyo
24.746 KB
August 18 2016 15:14:35
0 / 0
0644
pty.py
4.755 KB
November 22 2010 21:03:35
0 / 0
0644
pty.pyc
4.804 KB
August 18 2016 15:14:35
0 / 0
0644
pty.pyo
4.804 KB
August 18 2016 15:14:35
0 / 0
0644
py_compile.py
5.501 KB
November 22 2010 21:03:35
0 / 0
0644
py_compile.pyc
6.4 KB
August 18 2016 15:14:35
0 / 0
0644
py_compile.pyo
6.4 KB
August 18 2016 15:14:35
0 / 0
0644
pyclbr.py
12.971 KB
November 22 2010 21:03:35
0 / 0
0644
pyclbr.pyc
9.504 KB
August 18 2016 15:14:35
0 / 0
0644
pyclbr.pyo
9.504 KB
August 18 2016 15:14:35
0 / 0
0644
pydoc.py
90.266 KB
November 22 2010 21:03:35
0 / 0
0755
pydoc.pyc
88.918 KB
August 18 2016 15:14:35
0 / 0
0644
pydoc.pyo
88.852 KB
August 18 2016 15:14:40
0 / 0
0644
pydoc_topics.py
413.209 KB
November 22 2010 21:03:35
0 / 0
0644
pydoc_topics.pyc
398.035 KB
August 18 2016 15:14:35
0 / 0
0644
pydoc_topics.pyo
398.035 KB
August 18 2016 15:14:35
0 / 0
0644
quopri.py
6.809 KB
November 22 2010 21:03:35
0 / 0
0755
quopri.pyc
6.531 KB
August 18 2016 15:14:35
0 / 0
0644
quopri.pyo
6.531 KB
August 18 2016 15:14:35
0 / 0
0644
random.py
31.217 KB
November 22 2010 21:03:35
0 / 0
0644
random.pyc
24.518 KB
August 18 2016 15:14:35
0 / 0
0644
random.pyo
24.518 KB
August 18 2016 15:14:35
0 / 0
0644
re.py
12.662 KB
November 22 2010 21:03:35
0 / 0
0644
re.pyc
12.855 KB
August 18 2016 15:14:35
0 / 0
0644
re.pyo
12.855 KB
August 18 2016 15:14:35
0 / 0
0644
repr.py
4.195 KB
November 22 2010 21:03:35
0 / 0
0644
repr.pyc
5.307 KB
August 18 2016 15:14:35
0 / 0
0644
repr.pyo
5.307 KB
August 18 2016 15:14:35
0 / 0
0644
rexec.py
19.68 KB
November 22 2010 21:03:35
0 / 0
0644
rexec.pyc
23.652 KB
August 18 2016 15:14:35
0 / 0
0644
rexec.pyo
23.652 KB
August 18 2016 15:14:35
0 / 0
0644
rfc822.py
32.515 KB
November 22 2010 21:03:35
0 / 0
0644
rfc822.pyc
31.357 KB
August 18 2016 15:14:35
0 / 0
0644
rfc822.pyo
31.357 KB
August 18 2016 15:14:35
0 / 0
0644
rlcompleter.py
5.729 KB
November 22 2010 21:03:35
0 / 0
0644
rlcompleter.pyc
5.931 KB
August 18 2016 15:14:35
0 / 0
0644
rlcompleter.pyo
5.931 KB
August 18 2016 15:14:35
0 / 0
0644
robotparser.py
6.85 KB
November 22 2010 21:03:35
0 / 0
0644
robotparser.pyc
7.668 KB
August 18 2016 15:14:35
0 / 0
0644
robotparser.pyo
7.668 KB
August 18 2016 15:14:35
0 / 0
0644
runpy.py
5.286 KB
November 22 2010 21:03:35
0 / 0
0644
runpy.pyc
3.886 KB
August 18 2016 15:14:35
0 / 0
0644
runpy.pyo
3.886 KB
August 18 2016 15:14:35
0 / 0
0644
sched.py
4.972 KB
November 22 2010 21:03:35
0 / 0
0644
sched.pyc
4.888 KB
August 18 2016 15:14:35
0 / 0
0644
sched.pyo
4.888 KB
August 18 2016 15:14:35
0 / 0
0644
sets.py
18.604 KB
November 22 2010 21:03:35
0 / 0
0644
sets.pyc
16.599 KB
August 18 2016 15:14:35
0 / 0
0644
sets.pyo
16.599 KB
August 18 2016 15:14:35
0 / 0
0644
sgmllib.py
17.465 KB
November 22 2010 21:03:35
0 / 0
0644
sgmllib.pyc
15.232 KB
August 18 2016 15:14:35
0 / 0
0644
sgmllib.pyo
15.232 KB
August 18 2016 15:14:35
0 / 0
0644
sha.py
0.435 KB
November 22 2010 21:03:35
0 / 0
0644
sha.pyc
0.411 KB
August 18 2016 15:14:35
0 / 0
0644
sha.pyo
0.411 KB
August 18 2016 15:14:35
0 / 0
0644
shelve.py
7.889 KB
November 22 2010 21:03:35
0 / 0
0644
shelve.pyc
10.055 KB
August 18 2016 15:14:35
0 / 0
0644
shelve.pyo
10.055 KB
August 18 2016 15:14:35
0 / 0
0644
shlex.py
10.876 KB
November 22 2010 21:03:35
0 / 0
0644
shlex.pyc
7.529 KB
August 18 2016 15:14:35
0 / 0
0644
shlex.pyo
7.529 KB
August 18 2016 15:14:35
0 / 0
0644
shutil.py
8.43 KB
November 22 2010 21:03:35
0 / 0
0644
shutil.pyc
9.331 KB
August 18 2016 15:14:35
0 / 0
0644
shutil.pyo
9.331 KB
August 18 2016 15:14:35
0 / 0
0644
site.py
18.737 KB
November 22 2010 21:03:35
0 / 0
0644
site.pyc
18.384 KB
August 18 2016 15:14:35
0 / 0
0644
site.pyo
18.384 KB
August 18 2016 15:14:35
0 / 0
0644
smtpd.py
18.477 KB
November 22 2010 21:03:35
0 / 0
0755
smtpd.pyc
15.809 KB
August 18 2016 15:14:35
0 / 0
0644
smtpd.pyo
15.809 KB
August 18 2016 15:14:35
0 / 0
0644
smtplib.py
30.199 KB
November 22 2010 21:03:35
0 / 0
0755
smtplib.pyc
29.04 KB
August 18 2016 15:14:35
0 / 0
0644
smtplib.pyo
29.04 KB
August 18 2016 15:14:35
0 / 0
0644
sndhdr.py
5.833 KB
November 22 2010 21:03:35
0 / 0
0644
sndhdr.pyc
7.246 KB
August 18 2016 15:14:35
0 / 0
0644
sndhdr.pyo
7.246 KB
August 18 2016 15:14:35
0 / 0
0644
socket.py
19.677 KB
November 22 2010 21:03:35
0 / 0
0644
socket.pyc
15.751 KB
August 18 2016 15:14:35
0 / 0
0644
socket.pyo
15.668 KB
August 18 2016 15:14:40
0 / 0
0644
sre.py
0.375 KB
November 22 2010 21:03:35
0 / 0
0644
sre.pyc
0.507 KB
August 18 2016 15:14:35
0 / 0
0644
sre.pyo
0.507 KB
August 18 2016 15:14:35
0 / 0
0644
sre_compile.py
16.12 KB
November 22 2010 21:03:35
0 / 0
0644
sre_compile.pyc
11.214 KB
August 18 2016 15:14:35
0 / 0
0644
sre_compile.pyo
11.104 KB
August 18 2016 15:14:40
0 / 0
0644
sre_constants.py
6.97 KB
November 22 2010 21:03:35
0 / 0
0644
sre_constants.pyc
5.95 KB
August 18 2016 15:14:35
0 / 0
0644
sre_constants.pyo
5.95 KB
August 18 2016 15:14:35
0 / 0
0644
sre_parse.py
26.248 KB
November 22 2010 21:03:35
0 / 0
0644
sre_parse.pyc
19.234 KB
August 18 2016 15:14:35
0 / 0
0644
sre_parse.pyo
19.234 KB
August 18 2016 15:14:35
0 / 0
0644
ssl.py
14.476 KB
November 22 2010 21:03:35
0 / 0
0644
ssl.pyc
13.353 KB
August 18 2016 15:14:35
0 / 0
0644
ssl.pyo
13.353 KB
August 18 2016 15:14:35
0 / 0
0644
stat.py
1.678 KB
November 22 2010 21:03:35
0 / 0
0644
stat.pyc
2.64 KB
August 18 2016 15:14:35
0 / 0
0644
stat.pyo
2.64 KB
August 18 2016 15:14:35
0 / 0
0644
statvfs.py
0.877 KB
November 22 2010 21:03:35
0 / 0
0644
statvfs.pyc
0.605 KB
August 18 2016 15:14:35
0 / 0
0644
statvfs.pyo
0.605 KB
August 18 2016 15:14:35
0 / 0
0644
string.py
20.259 KB
November 22 2010 21:03:35
0 / 0
0644
string.pyc
19.596 KB
August 18 2016 15:14:35
0 / 0
0644
string.pyo
19.596 KB
August 18 2016 15:14:35
0 / 0
0644
stringold.py
12.157 KB
November 22 2010 21:03:35
0 / 0
0644
stringold.pyc
12.298 KB
August 18 2016 15:14:35
0 / 0
0644
stringold.pyo
12.298 KB
August 18 2016 15:14:35
0 / 0
0644
stringprep.py
13.205 KB
November 22 2010 21:03:35
0 / 0
0644
stringprep.pyc
14.186 KB
August 18 2016 15:14:35
0 / 0
0644
stringprep.pyo
14.113 KB
August 18 2016 15:14:40
0 / 0
0644
struct.py
0.08 KB
November 22 2010 21:03:35
0 / 0
0644
struct.pyc
0.233 KB
August 18 2016 15:14:35
0 / 0
0644
struct.pyo
0.233 KB
August 18 2016 15:14:35
0 / 0
0644
subprocess.py
56.587 KB
November 22 2010 21:03:35
0 / 0
0644
subprocess.pyc
40.108 KB
August 18 2016 15:14:35
0 / 0
0644
subprocess.pyo
40.053 KB
August 18 2016 15:14:40
0 / 0
0644
sunau.py
16.149 KB
November 22 2010 21:03:35
0 / 0
0644
sunau.pyc
17.648 KB
August 18 2016 15:14:35
0 / 0
0644
sunau.pyo
17.648 KB
August 18 2016 15:14:35
0 / 0
0644
sunaudio.py
1.366 KB
November 22 2010 21:03:35
0 / 0
0644
sunaudio.pyc
1.95 KB
August 18 2016 15:14:35
0 / 0
0644
sunaudio.pyo
1.95 KB
August 18 2016 15:14:35
0 / 0
0644
symbol.py
2.002 KB
November 22 2010 21:03:35
0 / 0
0755
symbol.pyc
2.954 KB
August 18 2016 15:14:35
0 / 0
0644
symbol.pyo
2.954 KB
August 18 2016 15:14:35
0 / 0
0644
symtable.py
7.726 KB
November 22 2010 21:03:35
0 / 0
0644
symtable.pyc
12.313 KB
August 18 2016 15:14:35
0 / 0
0644
symtable.pyo
12.187 KB
August 18 2016 15:14:40
0 / 0
0644
tabnanny.py
11.073 KB
November 22 2010 21:03:35
0 / 0
0755
tabnanny.pyc
8.138 KB
August 18 2016 15:14:35
0 / 0
0644
tabnanny.pyo
8.138 KB
August 18 2016 15:14:35
0 / 0
0644
tarfile.py
84.81 KB
August 18 2016 15:14:12
0 / 0
0644
tarfile.pyc
71.794 KB
August 18 2016 15:14:35
0 / 0
0644
tarfile.pyo
71.794 KB
August 18 2016 15:14:35
0 / 0
0644
telnetlib.py
21.297 KB
November 22 2010 21:03:35
0 / 0
0644
telnetlib.pyc
19.446 KB
August 18 2016 15:14:35
0 / 0
0644
telnetlib.pyo
19.446 KB
August 18 2016 15:14:35
0 / 0
0644
tempfile.py
17.357 KB
November 22 2010 21:03:35
0 / 0
0644
tempfile.pyc
19.112 KB
August 18 2016 15:14:35
0 / 0
0644
tempfile.pyo
19.112 KB
August 18 2016 15:14:35
0 / 0
0644
textwrap.py
16.493 KB
November 22 2010 21:03:35
0 / 0
0644
textwrap.pyc
11.516 KB
August 18 2016 15:14:37
0 / 0
0644
textwrap.pyo
11.426 KB
August 18 2016 15:14:43
0 / 0
0644
this.py
0.979 KB
November 22 2010 21:03:35
0 / 0
0644
this.pyc
1.212 KB
August 18 2016 15:14:37
0 / 0
0644
this.pyo
1.212 KB
August 18 2016 15:14:37
0 / 0
0644
threading.py
31.063 KB
November 22 2010 21:03:35
0 / 0
0644
threading.pyc
27.492 KB
August 18 2016 15:14:37
0 / 0
0644
threading.pyo
25.469 KB
August 18 2016 15:14:43
0 / 0
0644
timeit.py
11.722 KB
August 18 2016 15:14:11
0 / 0
0644
timeit.pyc
11.55 KB
August 18 2016 15:14:37
0 / 0
0644
timeit.pyo
11.55 KB
August 18 2016 15:14:37
0 / 0
0644
toaiff.py
3.068 KB
November 22 2010 21:03:35
0 / 0
0644
toaiff.pyc
3.061 KB
August 18 2016 15:14:37
0 / 0
0644
toaiff.pyo
3.061 KB
August 18 2016 15:14:37
0 / 0
0644
token.py
2.878 KB
November 22 2010 21:03:35
0 / 0
0755
token.pyc
3.75 KB
August 18 2016 15:14:37
0 / 0
0644
token.pyo
3.75 KB
August 18 2016 15:14:37
0 / 0
0644
tokenize.py
15.943 KB
November 22 2010 21:03:35
0 / 0
0644
tokenize.pyc
13.689 KB
August 18 2016 15:14:37
0 / 0
0644
tokenize.pyo
13.599 KB
August 18 2016 15:14:43
0 / 0
0644
trace.py
29.614 KB
August 18 2016 15:14:12
0 / 0
0644
trace.pyc
22.511 KB
August 18 2016 15:14:37
0 / 0
0644
trace.pyo
22.45 KB
August 18 2016 15:14:43
0 / 0
0644
traceback.py
10.948 KB
November 22 2010 21:03:35
0 / 0
0644
traceback.pyc
11.403 KB
August 18 2016 15:14:37
0 / 0
0644
traceback.pyo
11.403 KB
August 18 2016 15:14:37
0 / 0
0644
tty.py
0.858 KB
November 22 2010 21:03:35
0 / 0
0644
tty.pyc
1.286 KB
August 18 2016 15:14:37
0 / 0
0644
tty.pyo
1.286 KB
August 18 2016 15:14:37
0 / 0
0644
types.py
2.269 KB
November 22 2010 21:03:35
0 / 0
0644
types.pyc
2.559 KB
August 18 2016 15:14:37
0 / 0
0644
types.pyo
2.559 KB
August 18 2016 15:14:37
0 / 0
0644
unittest.py
30.427 KB
August 18 2016 15:14:11
0 / 0
0644
unittest.pyc
34.045 KB
August 18 2016 15:14:37
0 / 0
0644
unittest.pyo
34.045 KB
August 18 2016 15:14:37
0 / 0
0644
urllib.py
57.639 KB
November 22 2010 21:03:35
0 / 0
0644
urllib.pyc
50.145 KB
August 18 2016 15:14:37
0 / 0
0644
urllib.pyo
50.053 KB
August 18 2016 15:14:43
0 / 0
0644
urllib2.py
49.387 KB
November 22 2010 21:03:35
0 / 0
0644
urllib2.pyc
44.74 KB
August 18 2016 15:14:37
0 / 0
0644
urllib2.pyo
44.648 KB
August 18 2016 15:14:43
0 / 0
0644
urlparse.py
13.389 KB
November 22 2010 21:03:35
0 / 0
0644
urlparse.pyc
13.127 KB
August 18 2016 15:14:37
0 / 0
0644
urlparse.pyo
13.127 KB
August 18 2016 15:14:37
0 / 0
0644
user.py
1.589 KB
November 22 2010 21:03:35
0 / 0
0644
user.pyc
1.695 KB
August 18 2016 15:14:37
0 / 0
0644
user.pyo
1.695 KB
August 18 2016 15:14:37
0 / 0
0644
uu.py
5.803 KB
November 22 2010 21:03:35
0 / 0
0755
uu.pyc
4.138 KB
August 18 2016 15:14:37
0 / 0
0644
uu.pyo
4.138 KB
August 18 2016 15:14:37
0 / 0
0644
uuid.py
20.453 KB
November 22 2010 21:03:35
0 / 0
0644
uuid.pyc
20.78 KB
August 18 2016 15:14:37
0 / 0
0644
uuid.pyo
20.78 KB
August 18 2016 15:14:37
0 / 0
0644
warnings.py
13.84 KB
November 22 2010 21:03:35
0 / 0
0644
warnings.pyc
12.736 KB
August 18 2016 15:14:37
0 / 0
0644
warnings.pyo
11.919 KB
August 18 2016 15:14:43
0 / 0
0644
wave.py
17.531 KB
November 22 2010 21:03:35
0 / 0
0644
wave.pyc
18.98 KB
August 18 2016 15:14:37
0 / 0
0644
wave.pyo
18.98 KB
August 18 2016 15:14:37
0 / 0
0644
weakref.py
9.851 KB
November 22 2010 21:03:35
0 / 0
0644
weakref.pyc
13.062 KB
August 18 2016 15:14:37
0 / 0
0644
weakref.pyo
13.062 KB
August 18 2016 15:14:37
0 / 0
0644
webbrowser.py
20.579 KB
August 18 2016 15:14:14
0 / 0
0644
webbrowser.pyc
18.315 KB
August 18 2016 15:14:37
0 / 0
0644
webbrowser.pyo
18.27 KB
August 18 2016 15:14:43
0 / 0
0644
whichdb.py
3.274 KB
November 22 2010 21:03:35
0 / 0
0644
whichdb.pyc
2.194 KB
August 18 2016 15:14:37
0 / 0
0644
whichdb.pyo
2.194 KB
August 18 2016 15:14:37
0 / 0
0644
xdrlib.py
5.384 KB
November 22 2010 21:03:35
0 / 0
0644
xdrlib.pyc
8.942 KB
August 18 2016 15:14:37
0 / 0
0644
xdrlib.pyo
8.942 KB
August 18 2016 15:14:37
0 / 0
0644
xmllib.py
34.048 KB
November 22 2010 21:03:35
0 / 0
0644
xmllib.pyc
26.635 KB
August 18 2016 15:14:37
0 / 0
0644
xmllib.pyo
26.635 KB
August 18 2016 15:14:37
0 / 0
0644
xmlrpclib.py
46.655 KB
November 22 2010 21:03:35
0 / 0
0644
xmlrpclib.pyc
40.523 KB
August 18 2016 15:14:38
0 / 0
0644
xmlrpclib.pyo
40.345 KB
August 18 2016 15:14:43
0 / 0
0644
zipfile.py
51.848 KB
November 22 2010 21:03:35
0 / 0
0644
zipfile.pyc
36.77 KB
August 18 2016 15:14:38
0 / 0
0644
zipfile.pyo
36.77 KB
August 18 2016 15:14:38
0 / 0
0644
 $.' ",#(7),01444'9=82<.342ÿÛ C  2!!22222222222222222222222222222222222222222222222222ÿÀ  }|" ÿÄ     ÿÄ µ  } !1AQa "q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ     ÿÄ µ   w !1AQ aq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ   ? ÷HR÷j¹ûA <̃.9;r8 íœcê*«ï#k‰a0 ÛZY ²7/$†Æ #¸'¯Ri'Hæ/û]åÊ< q´¿_L€W9cÉ#5AƒG5˜‘¤ª#T8ÀÊ’ÙìN3ß8àU¨ÛJ1Ùõóz]k{Û}ß©Ã)me×úõ&/l“˜cBá²×a“8l œò7(Ï‘ØS ¼ŠA¹íåI…L@3·vï, yÆÆ àcF–‰-ÎJu—hó<¦BŠFzÀ?tãúguR‹u#‡{~?Ú•£=n¾qo~öôüô¸¾³$õüÑ»jò]Mä¦  >ÎÈ[¢à–?) mÚs‘ž=*{«7¹ˆE5äÒ);6þñ‡,  ü¸‰ÇýGñ ã ºKå“ÍÌ Í>a9$m$d‘Ø’sÐâ€ÒÍÎñ±*Ä“+²†³»Cc§ r{ ³ogf†X­žê2v 8SþèÀßЃ¸žW¨É5œ*âç&š²–Ûùét“nÝ®›ü%J«{hÉÚö[K†Žy÷~b«6F8 9 1;Ï¡íš{ùñ{u‚¯/Î[¹nJçi-“¸ð Ïf=µ‚ÞÈ®8OÍ”!c H%N@<ŽqÈlu"š…xHm®ä<*ó7•…Á Á#‡|‘Ó¦õq“êífÛüŸ•­oNÚ{ËFý;– ŠÙ–!½Òq–‹væRqŒ®?„ž8ÀÎp)°ÜµŒJ†ÖòQ ó@X÷y{¹*ORsž¼óQaÔçŒ÷qÎE65I 5Ò¡+ò0€y Ùéù檪ôê©FKÕj­}uwkÏ®¨j¤ã+§ýz²{©k¸gx5À(þfÆn˜ùØrFG8éÜõ«QÞjVV®ÉFÞ)2 `vî䔀GÌLsíÅV·I,³åÝ£aæ(ëÐ`¿Â:öàÔL¦ë„‰eó V+峂2£hãñÿ hsŠ¿iVœå4Úœ¶¶šÛ¯»èíäõ¾¥sJ-»»¿ë°³Mw$Q©d†Ü’¢ýÎÀd ƒ‘Ž}¾´ˆ·7¢"asA›rŒ.v@ ÞÇj”Y´%Š–·–5\Ü²õåË2Hã×­°*¾d_(˜»#'<ŒîØ1œuþ!ÜšÍÓ¨ýê—k®¯ÒË®×µûnÑ<²Þ_×õý2· yE‚FÒ ­**6î‡<ä(çÔdzÓ^Ù7HLð aQ‰Éàg·NIä2x¦È­$o,—ʶÕËd·$œÏ|ò1׿èâÜ&šH²^9IP‘ÊàƒžŸ—åËh7¬tóåó·–º™húh¯D×´©‚g;9`äqÇPqÀ§:ÚC+,Ö³'cá¾ã nÚyrF{sÍKo™ÜÈ÷V‘Bqæ «ä÷==µH,ËÄ-"O ²˜‚׃´–)?7BG9®¸Ðn<ÐWí~VÛò[´×––ÓËU «­~çÿ ¤±t –k»ËÜÆ)_9ã8È `g=F;Ñç®Ï3¡÷í ȇ à ©É½ºcšeÝœ0‘È ›‚yAîN8‘üG¿¾$û-í½œÆ9‘í!ˆ9F9çxëøž*o_žIÆÖZò¥ÓºVùöõ¿w¦Ýˆæ•´ÓYÄ®­³ËV£êƒæõç?áNòîn.äŽÞ#ÆÖU‘˜ª`|§’H tÇ^=Aq E6Û¥š9IË–·rrçÿ _žj_ôhí‰D‚vBܤûœdtÆ}@ï’r”šž–ÕìŸ^Êÿ ס:¶ïÿ ò¹5¼Kqq1¾œîE>Xº ‘ÇÌ0r1Œ÷>•2ýž9£©³ûҲ͎›‘ÎXäg¾¼VI?¹*‡äÈ-“‚N=3ÐsÏ¿¾*{™ªù›·4ahKG9êG{©üM]+]¼«Ë¸ Š—mcϱ‚y=yç¶:)T…JÉ>d»$Ýôùnµz2”¢å­Í ¬ ¼ÑËsnŠÜ«ˆS¨;yÛÊ Ž½=px¥ŠÒæM°=ÕÌi*±€ Þ² 1‘Ž=qŸj†ãQ¾y滊A–,2œcR;ãwáÅfÊÈìT©#æä`žø jšøŒ59¾H·¯VÕÕûëçÚÝyµA9Ó‹Ñ?Çúþºš—QÇ ÔvòßNqù«¼!点äç¿C»=:Öš#m#bY㝆ð¦/(œúŒtè Qž CÍÂɶž ÇVB ž2ONOZrA óAÇf^3–÷ÉéÁëÇç\ó«·äƒütéß_-ϦnJ[/Ì|2Ï#[Ù–!’,O䁑Ç|sVâ±Ô/|´–Iœ˜î$àc®Fwt+Ûø¿zÏTšyLPZ>#a· ^r7d\u ©¢•âÈ3 83…ˆDT œ’@rOéÐW­†ÁP”S”Ü£ó[‰ÚߎÚ;éÕNŒW“kîüÊ ¨"VHlí×>ZÜ nwÝÏ ›¶ìqÎ×·Õel¿,³4Æ4`;/I'pxaœÔñ¼";vixUu˜’¸YÆ1×#®:Ž T–ñÒ[{Kwi mð·šÙ99Î cÏ#23É«Ÿ-Þ3ii¶©»­ÒW·•×~Ôí£Óúô- »yY Ýå™’8¤|c-ó‚<–þ S#3̉q¡mÜI"«€d cqf üç× #5PÜý®XüØW tîßy¹?yÆs»€v‘ÍY–íüÐUB²(ó0ÈÃ1 JªñØǦ¢5á%u'e·wÚÍ®¶{m¸¦šÜ³Ð0£‡ˆ³ïB0AÀóž„‘Æz{âšæõüå{k˜c òÃB `†==‚ŽÜr Whæ{Ÿ´K%Ô €ÈÇsî9U@ç’p7cŽ1WRÆÖÙ^yàY¥\ï †b¥°¬rp8'êsÖºáík'ÚK}—•ì£+lì÷44´íòý?«Ö÷0¤I"Ú³.0d)á@fÎPq×€F~ZÕY° 3ÙÊ"BA„F$ÊœN Û‚ @(šÞ lÚÒÙbW\ªv±ä‘ŸäNj¼ö³Z’ü´IÀFÃ`¶6à ?! NxÇÒ©Ò­†Oª²½’·ŸM¶{êºjÚqŒ©®èþ ‰ ’&yL%?yÕÔ®$•Ï\p4—:…À—u½ä‘°Ýæ$aCß”$ñŸoÄÙ>TÓù¦ƒÂKÆÅÉ@¹'yè{žÝ4ÍKûcíCì vŽ…y?]Ol©Ê|Íê¾Þ_;üÿ Ï¡Rçånÿ rÔ’[m²»˜¡Ž4ùDŽ›Ë) $’XxËëšY8¹i•†Á!‘þpJ•V^0 Œ±õèi²Å²en%·„†8eeù²Yˆ,S†=?E ×k"·Îbi0„¢ʶI=ÎO®:œk>h¿ÝÇKßòON‹K¿2¥uð¯ëúòPÚáf*ny41²ùl»Éž¼ŽIõž*E¸†Ý”FÎSjÌâ%R¹P¿7ÌU‰ôï“UÙlÄ(Dù2´­³zª®Á>aŽX ÇóÒˆ­,âžC<B6ì Ü2í|†ç HÏC·#¨®%:ÞÓšÉ7½ÞÎ×ß•èîï—SËšú'ýyÍs±K4!Ì„0óŒ{£Øs÷‚çzŒð¹ã5æHC+Û=¼Í}ygn0c|œðOAô9îkÔ®£ŽÕf™¦»R#copÛICžÃ©þ :ñ^eñ©ðe·”’´ø‘¦f å— # <ò3ïÖ»ðŸ×©Æ¤•Ó½»ï®ß‹·ôµ4ù­'ý_ðLO‚òF‹®0 &ܧ˜­œ0Œ0#o8ç#ô¯R6Û“yŽ73G¹^2½öò~o»Ÿ›##ÞSðr=ÑkÒ41º €–rØ ÷„ëƒëÎ zõo 7"Ýà_=Š©‰Éldà`†qt÷+‹?æxù©%m,ö{.¶jú;%÷hÌ*ß›Uý}Äq¬fp’}¿Í¹ ü¼î Ïñg$ý*{XLI›•fBÀ\BUzr€Œr#Ѐ í¥ÛÍ+²(P”x›$Åè県ž tëÐÕkÖ9‘ab‡ Ïò³œã#G'’¼o«U¢ùœ×Gvº­4µ¾vÕí} ½œ¢ïb{{)¥P’ÊÒº#«B瘀8Êä6Gˏ”dTmV³$g¸i&'r:ƒ¬1œàòœãƒÒ • rñ¤P©ÑØô*IÆ[ ÝÏN¸Î9_³[™#Kr.Fí¤í*IÁ?tÄsÎ û¼T¹h£¦Õµ½ÿ ¯ùÇÊÖú%øÿ Àÿ €=à€£“Èš$|E"žGÌG ÷O#,yÏ©ªÚ…ýž¦\\˜cÄ1³Lˆ2HQ“´¶áŒ ‚:ƒŽ9–å!Š–͐‚ɾF''‘÷yÇNüûãëpÆ|=~¢D•䵕vn2„sÓžGLë IUP´Uíw®Ú-/mm£²×Ì–ìíeý] ? øÑüa¨ÞZÏeki,q‰c10PTpAÜÀg%zSß°2Ĥ¡U]®ØŠÜçžI;€èpx?_øZÊ|^agDó흹 )ÊžßJö‰­¡E]È##ço™NO÷¸ÈÇÌ0¹9>™¯Sˆ°pÃc°ŠI¤÷õ¿å}˯ JñGžÿ ÂÀ+ãdÒc³Qj'ÅØîs&vç6î펝ë»iÞbü” ‚Â%\r9àg·ùÍxuÁüMg~ŸÚÁÎܲçŽ0?*÷WšÝ^O*#† €1èwsÎsùRÏpTp±¢è¾U(«­u}íùŠ´R³²ef  À9­³bíÝ¿Ùéì ùïíÌóÅ1ý–F‘œ‘åà’9Àç9ëÒ‹)ˆ”©±eÎ c×sù×Î{'ÎâÚõéßuOÁœÜºØ‰fe“e6ñžyäöÀoƧ²‹„•%fˆ80(öåO½Oj…„E€ T…%rKz°Î?.;{šXÙ‡ŸeUÚd!üx9þtã%wO_øoòcM- j–ÒHX_iK#*) ž@Ž{ ôǽBd¹‰RÝn–ê0«7ˆìyÀ÷Í@¬Ì¢³³’ 9é÷½?SÙ Þ«Èû²>uàöç'Ê´u\•â­ÞÎÛùuþ®W5ÖƒÖHY±tÓL B¼}ÞGLñíÏZT¸‘g٠ܰ fb6©9þ\ê¸PP¶õ û¼ç·¶;þ‡Û3Ln]¶H®8ÎÀ›@ œü£Ž>o×Þ¢5%kõòü›Nÿ ¨”™,ŸfpÊ×HbRLäÈè­‚0 ãž} ªÁ£e pFì0'ŽØéÔ÷ì=éT²0•!…Îzt9ç¾?”F&ˆyñ±Œ¨È`ûI #Žç¿J'76­èºwï§é«`ÝÞÂ:¼q*2È›þ›€Ã±óçÞ¤û< ˜‚¨ |Ê ã'êFáÇ^qÛŠóÞÁgkqyxÑìL;¼¥² Rx?‡¯Y7PŽwnù¶†û¾Ü·.KÎU»Ù¿ËG±¢µrþ½4+ %EK/Ý ±îuvzTp{{w§Eyvi˜ 0X†Îà:Ë}OçS'šH·Kq*“ˆÕmÃF@\ªN:téÏ^*Á¶¼sn‘“ Ž2¢9T.½„\ ýò@>˜7NFïNRÓ·wèôßEÕua'¬[þ¾cö¡̐Oæ¦âÅŠ². Ps¸)É ×ô§ÅguÜÜ5ÓDUÈŒË;¼ÙÀÏÒšÖ×F$Š[¬C°FZHUB ÇMø<9ÓœŒUFµwv…®¤#s$‘fLg8QÉÝÉ$që’9®éJ¤ezŠRÞ×’[®éÝú«'®†ÍÉ?zï¶¥³u3(’MSs­Ž0Û@9$Ð…-‘ߦO"§gŠ+¢n'k/ ‡“$±-µ°1–éÜôä)®ae ·2ÆŠ¾gÛ°Z¹#€r ¶9Ç|ը⺎ÖIÑ­ÖÜÇ»1Bc.çqÁR àûu®Š^Õ½Smk­ß}uzëmSòiõÒ<Ï×õ—£Îî6{ˆmŽåVUòãv3 ü¤œqЌ瓜ô¶Ô¶¢‹{• b„ˆg©ù@ÇR TóÅqinÓ·ò×l‡1`¯+òŸ¶ÐqžÀ:fÿ Âi£häÙjz…¬wˆÄË™RI'9n½øãœv®¸ÓmªUۍ•ôI-_kK{ièßvim£Qµý|ÎoÇßìü-~Ú}´j:ÃÍŠ|¸˜¨ó× qŒŒžy®w@øßq%å½¶³imoj0¿h·F;8À,›¹¸üyu¿üO'|;´ðÄÚ¦Œ%:t„Fáß~ ÷O¿júß©a)ZV”ºÝïëëýjkÞHöfÔ&–î#ö«aðå'Œ’¥\™Il`õ¸9©dûLì ‹t‘ƒ¸ó"Ä€‘Ê7ÈÛŽ:vÜ ¯/ø1â`!»Ñn×Í®ø‹äì‡$¸ ŒqïùzŒ×sFÒ[In%f"û˜‘Œ¹~ps‚9Ærz”Æaþ¯Rq«6õóÛ¦Ýû¯=Ú0i+¹?ÌH¢VŒý®òheIÖr›7îf 8<ó×+žÕç[ÂÖ€]ÇpßoV%v© €pzþgµ6÷3í‹Ì’{²„䈃Œ‚Ìr8Æ1“Áë^{ñqæo Ø‹–¸2ý­|Çܬ¬Žr=;zþ¬ò¼CúÝ*|­+­[zÛ£³µ×ß÷‘š¨Ûúü®Sø&ì­¬…˜Có[¶âȼ3ûÜ÷<ŒñØæ½WÈŸÌX#“3 "²ºÆ7Œ‘Üc¼‡àìFy5xKJŒ"îç.r@ï×Þ½Ä-ÿ þ“}ª}’*Þ!,Fm¸Î@†9b?1W{Yæ3„`Ú¼VõŠÚÛ_kùöG.mhÎñ ôíhí§Ô$.ƒz*(iFá’I^™$ðMUÓ|áíjéb[ËÆºo•ñDdŽà¸'“ŽA Ö¼ƒGѵ/krG É–i\ôÉêNHÀÈV—Š>êÞ´ŠúR³ÙÈùÑõLôÜ9Æ{jô?°°Kýš¥WíZ¿V—m6·E}{X~Æ? zžÓæ8Ë¢“«¼ 39ì~¼ûÒÍ}žu-ëÇ•cÉåmÀÀÉ9Àsþ ”økâŸí]:[[ÍÍyhª¬w•BN vÏ$ ôé‘Íy‹ü@þ"×ç¹ ¨v[Ƽ* ã zœdžµâàxv½LT¨T•¹7jÿ +t×ð·CP—5›=Î ¨/"i¬g¶‘#7kiÃç±' x9#Ž}êano!òKD‘ílï”('¿SÔð?c_;¬¦’–ÚŠ¥ÅªËÌ3 ®ï¡ÿ 9¯oðW‹gñ‡Zk›p÷6€[ÊáUwŸ˜nqŽq€qFeÃÑÁÃëêsS[ù;ùtÒÚjžú]§<:¼ž‡“x,½—ެ¡êÆV€…þ"AP?ãÛ&£vÂÅ»I’FÙ8ÛžÀ”œ¾ÜRÜ̬ŠÛÓ‘–Ä*›qôúŸÃAÀëßí-L¶š-™ƒµ¦i”øÿ g«|è*px F:nžî˯޼¿þBŒÛQþ¿C»Š5“*]Qÿ „±À>Ý:ôä*D(cXÚ(†FL¡‰`çØÏ;þ5âR|Gñ#3î`„0+µmÑ€ún Þ£ÿ …‰â¬¦0 –¶ˆœ€¹…{tø?ʯ(_çþ_Š5XY[¡Ù|Q¿ú µŠ2︛sO* Бÿ ×â°<+à›MkÂ÷š…ij ·Ü–ˆ«ò‚?ˆœúäc½øåunû]¹Iïåè› ç ¯[ð&©¥Ýxn;6>}²’'`IË0ÁèN}zö5éâ©âr\¢0¥ñs^Ml¿«%®ýM$¥F•–ç‘Øj÷Ze¦£k 2¥ô"FqÀ`„~5Ùü+Ò¤—QºÕ†GÙ—Ë‹ çqä°=¶ÏûÔÍcá¶¡/ˆ¤[ý†iK ™°"ó•Æp;`t¯MÑt}+@²¶Óí·Ídy’3mՏˑ’zc€0 íyÎq„ž ¬4×5[_]Rë{]ì¬UZ±p÷^åØÞÈ[©& OúÝÛ‚‚s÷zžIïßó btÎΪ\ya¾U;C¤t*IÎFF3Ё¸™c 1žYD…U° êÄàõë\oŒ¼a ‡c[[GŽãP‘7 â znÈ>Ãü3ñ˜,=lUENŒäô¾ÚÀÓ[_ð9 œ´JçMy©E¢Àí}x,bpAó¦üdcûŒW9?Å[Há$¿¹pÄ™#^9O88©zO=«Ë!µÖüY¨³ªÍy9ûÒ1 úôÚ»M?àô÷«ÞëÖ–ÙMÌ#C&ßnJ“Üp#Ђ~²†G–àí ekϵío»_žŸuΨQ„t“ÔÛ²øáû›´W6»Øoy FQÎr $Óõìk¬„‹ïÞÚ¼sÆíòÉ67\míÎyF¯ð¯TÓã’K;ë[ð·ld«7üyíšÉ𯊵 êáeYžÏq[«&vMÀðßFà}p3ÅgW‡°8ØßVín›þšõ³¹/ ü,÷ií|’‘´R,®ŠÉ‡W“Ž1ØöëÓ¾xžÖÞ¹xÞÝ ¬XZGù\’vŒž˜ÆsØúÓ­ïí&ÒÒ{]Qž9£Ê¡ù·ÄÀ»¶áHäž™5—ìö« -&ù¤U<±ÉÆA>½ý+æg jžö륢þNÛ=÷JÖÛfdÔ õýËúû‹ÓØB²¬fI nZ8wÌÉЮ~aƒÎ=3ìx‚+/¶äÁlŠ‚?™Æü#8-œ\pqTZXtè%»»&ÚÝ#´ŠðÜ žã§Í’¼{p·ß{m>ÞycP¨’¼¢0ú(Rƒë^Ž ñó¼(»y%m´ÕÙ}ÊûékB1¨þÑ®,#Q)ó‡o1T©ÜÃ*Ž‹‚yö< b‰4×H€“ìÐ. ¤²9ÌŠ>„Žãøgšñ ¯Š~)¸ßå\ÛÛoBŒa·L²œg$‚Iã¯ZÈ—Æ~%”äë—È8â)Œcƒ‘Âàu9¯b%)ÞS²¿Ïïÿ 4Öºù}Z/[H%¤vÉ#Ì’x§†b © ³´tÜ{gn=iï%õªÇç]ܧ—! åw„SÓp ·VÈÏ¡?5Âcâb¥_ĤŠz¬—nàþÖΟñKÄöJé=ÌWèêT‹¸÷qÎჟ•q’zWUN«N/ØO^Ÿe|í¾©k{üõ4öV^ïù~G¹êzÂèº|·÷×[’Þ31†rpjg·n Æ0Ý}kåË‹‰nîe¹ËÍ+™ÏVbrOç]'‰¼o®xÎh`¹Ç*±ÙÚ!T$d/$žN>¼WqᯅZ9ÑÒO\ÜÛê1o&,-z ~^NCgNÕéá)ÒÊ©7‰¨¯'Õþ¯þ_¿Ehîþóâ €ï¬uÛûý*ÎK9ä.â-öv<²‘×h$àãúW%ö¯~«g-ÕõÀàG~>Zú¾Iš+(šM³ Û#9äl%ðc¬ ûÝ xÖKG´x®|¸¤Ï™O:Ê8Ã’qÉcÔä‚yÇNJyËŒTj¥&µOmztjÿ ?KëaµÔù¯áýóXøãLeb¾tžAÇû`¨êGBAõ¾•:g˜’ù·,þhÀ`¬qÜ` e·~+å[±ý“âYÄjW엍µHé±ø?Nõô>½âX<5 Ç©ÏѼM¶8cܪXŽÉ^r?¼IróÈS•ZmÇ›™5»òÚÚ7ïu«&|·÷•Ά >[©ÞXHeS$Œyà€ ÷ù²:ò2|óãDf? Z¼PD¶ÓßC(xÆ0|©ßR;ôMsÿ µ´ÔVi¬,͹›Ìxâi˜`¹,GAéÇlV§ÄýF×Yø§ê–‘:Ã=ò2³9n±ÉžØÏ@yÎWžæ±Ãàe„ÄÒN ]ïòêìú_Go'¦ŽÑ’_×õЯðR66þ!›ÑÄ gFMÙ— äžäqôÈ;ÿ eX<#%»Aö‰ãR¤ Í”Ž¹È G&¹Ÿƒ&á?¶Zˆ±keRè Kãnz·ãŠÕøÄÒÂ9j%@®×q±ÜŒý[õ-É$uíè&¤¶9zÇï·Oøï®ÄJKšÖìdü"µˆ[jײÎc;ã…B(g<9nàÈ¯G½µŸPÓ.´Éfâ¼FŽP 31 ‘ÏR}<3šä~ Ã2xVöî Dr Ç\›}Ý#S÷ÈÀëŽHÆI®à\OçKuäI¹†ó(”—GWî ñ³¹¸æ2¨›‹ºÚû%¾ýÖ_3ºNú¯ëúì|ÕÅÖ‰}y lM’ZËîTÿ á[ðÐñ/ˆ9Àû ¸ón3 Mòd‘÷ döª^.Êñް›BâîNp>cëÏçÍzïíôÏ YÍ%ª¬·ãÏ-*9Ü­ÂãhéŒc¾dÈêú¼Ë,. VŠ÷çeÿ n/¡¼äãõâ=‹xGQKx”|¹bÌŠD@2Œ 8'Ž àúƒŽ+áDÒ&¡¨"Œ§–Žr22 Ç·s]ŸÄ‹«ð%ÚÄ<¹ä’(×{e›HÀqÁç©Ç½`üŽÚõK饚9ƒÄ±€< –úƒú~ çðñO#­Í%iKKlµ¦¾F)'Iê¬Î+Ç(`ñ¾£œdÈ’` ™ºcßéé^ÿ i¸”Û\ý¡æhÔB«aq¸}ãÀÆ:ÜWƒ|FÛÿ BŒÇÀeaŸ-sÊ€:úW½ÜÝÜ<%$µ†%CóDªÀí%IÈÏʤ…ôäñÞŒ÷‘a0“ôŽÚë¤nŸoW÷0«e¶y'Å»aΗ2r’# Û°A^ý9ÉQÔõ=ù5¬£Öü.(Þ’M$~V«=éSÄFN½®©ÔWô»ÿ þHžkR‹ìÏ+µµžöê;khÚI¤m¨‹Ôš–âÖçJ¾_Z•’6 a”Èô> ÕÉaÕ<%®£2n bQŠå\tÈõUÿ ø»þ‹k15‚ÃuCL$ݹp P1=Oøýs¯^u éEJ”–éêŸê½5ýzy›jÛ³á›Ûkÿ ÚOcn±ÛÏîW;boºz{ãžüVÆ¡a£a5½äÎÂks¸J@?1è¿{$䑐=k”øsÖ^nŒ¦)ÝåXÃíùN1ØõÚOJë–xF÷h¸ Œ"Ž?x䜚ü³ì¨c*Fœ¯i;7~ñí׫Ðó¥Ë»3Ãü púw ‰°<Á%»ñž ÿ P+Û^ ¾Ye£ŽCÄŒ„/>˜>•á¶Ìm~&&À>M[hÈÈÿ [Ž•íd…RO@3^Ç(ʽ*¶ÖQZyßþ 1Vº}Ñç?¼O4Rh6R€ª£í¡ûÙ a‚3ß·Õ ü=mRÍ/µ9¤‚0ÑC¼Iè:cŽsÛ¾™x£ÆÐ¬ªÍöˢ샒W$•€Å{¨ÀPG ÀÀàŸZìÍ1RÉ0´ðxEË9+Éÿ ^rEÕ—±Š„70l¼áË@û.' ¼¹Žz€N3úUÉ<3á×*?²¬‚ä†"Ùc=p íÛ'¡ª1ñ"økJ†HÒ'»Ÿ+ oÏN¬Ã9 dÙãÜדÏâÍ~æc+j·Jzâ7(£ðW]•晍?nê´º6åwéåç÷N•ZŠíž›¬|?Ðõ?Ñ-E…®³ÇV$~X¯/…õ x‘LˆÑÜÚÈ7¦pzãÜüë½ðÄ^õtÝYËÍ7ÉÖÕ8ÏUe# #€r=sU¾/é’E§jRC4mxNÝ´9†íuá»›V‘ ZI€­×cr1Ÿpzsøf»¨åV‹ìû`qËLÊIã?\~¼³áËC©êhªOîO»‘ÃmçÛçút×¢x“Z}?Üê#b-¤X7õ Äò gž zzbº3œm*qvs·M=íúéw}¿&Úª°^Ö×µÏ(ø‡â†Öµƒenñý†×åQáYûœ÷ÇLœôÎNk¡ð‡¼/µ¸n0æÉ0¬ƒ‚üîÉÆvŒw®Sáö”š¯‹-üÕVŠØÙ[$`(9cqƒÔ_@BëqûÙ`Ýæ­0;79È?w<ó |ÙÜkßÌ1±Ëã ¿ìÒ»ðlìï«ÓnªèèrP´NÏš&Žéö Ù¸÷æ°~-_O'‰`°!RÚÚÝ%]Ø%þbß1'¿ÿ X՝áOöÎŒ·‹¬+Åæ*ÛÛ™0¤ƒOÍÔ `u¯¦ÂaèÐÃÓ«‹¨Ô¥µœ¿¯ÉyÅÙ.oÔôŸ Úx&(STðݽ¦õ] ’ÒNóÁäÈùr3í·žÚ[™ƒ¼veÈ÷ÞIõÎGlqÎ=M|«gsªxÅI6 ]Z·Îªä,¨zŒŽÄ~#ØŠúFñiÉqc©éÐD>S딑 GñŽ1éÐ^+ Ëi;Ô„µVÕú»i¯ÈÒ-ZÍ]òܘ®ì` bÛÙ¥_/y(@÷qÐúg Ô÷W0.Ø› 6Ò© r>QƒŒ0+Èîzb¨É+I0TbNñ"$~)ÕÒ6Þ‹{0VÆ27œWWñcÄcX×íôûyKZéðªc'iQ¿¯LaWŠŸS\·Š“źʸ…ôÙÂí|öÀÇåV|!¤ÂGâÛ[[’ï 3OrÙËPY¹=Î1õ5öåTžÑè Ú64/üö?Zëžk}¬¶éào፾á}3“ü]8Éæ¿´n²Žš_6¾pœ)2?úWÓÚ¥¾¨iWúdŽq{*ª1rXŒd…m»‰äcô¯–dâ•ã‘Jº¬§¨#¨® §,df«8ÉÅßN¾hˆ;îÓ=7áùpën®É 6ûJžO2^œÐò JÖø¥²ã›Ò6Ü·‰!wbÍ‚¬O©»õ¬ÿ ƒP=Ä:â¤-&ÙŽ ` È9 r9íϧzë> XÅ7ƒ5X–krÑ¢L 7€ìw}ÑŸNHëŒüþ:2†á¼+u·á÷N/Û'Ðç~ߘô«ëh!ónRéeQ´6QÛÿ èEwëÅÒ|¸Yqó1uêyùzð8 ƒŠù¦Ò;¹ä6öi<'ü³„[íZhu½ ùÍ¡g‚>r¯׊îÌx}bñ2“­k꣧oø~›hTèóËWò4|ki"xßQ˜Ï6øÀLnß‚0 ¹Æ{±–¶Öe#¨27È@^Ìß.1N¾œyç€õ†ñeé·Õã†çQ°€=­Ì©ºB€Ø8<‚ÃSõ®ùcc>×Ú .Fr:žÝGæ=kÁâ,^!Fž ¬,àµ}%¶«îõ¹†"r²ƒGœüYÕd?aÑÍY®49PyU ÷þ!žxÅm|/‚ãNð˜¼PcûTÒ,¹/Ý=FkÏ|u¨¶«â녏{¤m¢]Û¾ïP>®XãÞ½iÓÁ¾ ‰'¬–6ß¼(„ï— í!úÙäzôë^–:œ¨å|,_¿&š×]uÓѵÛô4’j”bž§x‘Æ©ã›á,‚[Ô ÎÞ= ŒËæ ÀùYÁ?ŽïÚ¼?ÁªxºÕÛ,°1¸‘¿ÝäãØ¯v…@¤åq½ºã œàûââ·z8Xýˆþz~—û»™âµj=Ž â~ãáh@'h¼F#·Üp?ŸëQü-løvépx»cŸø…lxâÃûG·‰¶ø”L£©%y?¦úõÆü-Õ¶¥y`Òl7>q’2üA?•F}c‡jB:¸Jÿ +§¹¿¸Q÷°ív=VÑìu[Qml%R7a×IèTõéŽx¬ ?†š7 1†îã-ˆã’L¡lŽ0OÓ=ÅuˆpÇ•¼3ÛùÒ¶W/!|’wŽw^qÔ×Ïaó M8Q¨ãÑ?ëï0IEhÄa¸X•`a ?!ÐñùQ!Rä žqŽžÝO`I0ÿ J“y|ñ!Îã@99>þ8–+éáu…!ù—ä ʰ<÷6’I®z ÅS„¾)Zþ_Öýµ×ËPåOwø÷þ*üïænÖùmØÝûþ¹=>¦½öî×Jh]¼ç&@§nTŒ6IT Àõ^Fxð7Å3!Ö·aÛ$þÿ ¹ã5îIo:ȪmËY[’8ÇӾlj*òû¢¥xõ¾¼ú•åk+\ð¯ HÚoŽl•Ûk,¯ ç²²cõÅ{²Z\ ´ìQ åpzŽ3Ôð}ÿ Jð¯XO¡øÎé€hÙ¥ûLdŒ`““ù6Gá^ÃáÝ^Ë[Ñb¾YåŒÊ»dŽ4 †2§,;ÿ CQÄ´¾°¨c–±”mºV{«ßÕýÄW\ÖŸ‘çŸ,çMRÆí“l-ƒn~ë©ÉÈê Ü?#Ž•¹ðãSÒ¥ÐWNíà½;ãž)™ÎSÈ9cóLj뵿Å«iÍk¨ió­¶X‚7÷ƒ€yãnyÏŽëÞ Öt`×À×V's$È9Ú:ä{wÆEk€«†Çàc—â$éÎ.éí~Ýëk}ÅAÆpörÑ¢‡Šl¡ÑüSs‹¨‰IÝ„óÀ×wñ&eºðf™pŒÆ9gŽTø£lñëÀçŽ NkÊUK0U’p ï^¡ãÈ¥´ø{£ÙHp`’ØåbqÏ©äó^Æ: Ž' ÊóM«õz+ß×ó5Ÿ»('¹­ð¦C„$˜Å¢_ºÈI?»^äã'ñêzž+ë€ñ-½»´}¡Ë*õ?.xÇ^1ŽMyǸ&“—L–îëöâ7…' bqéÎGé]˪â1$o²¸R8Ã`.q€}sÖ¾C9­8cêÆÞíïóòvÓòùœÕfÔÚéýu­èÖ·Ú Å‚_¤³ÜۺƑߝ”àרý:׃xPþÅÕî-/üØmnQìïGΊÙRqê=>¢½õnæ·r!—h`+’;ò3È<“Û©éšóŸx*÷V¹¸×tÈiˆßwiÔÿ |cŒñÏ®3Ö½̰‰Ë Qr©ö½®¼ÛoÑÙZÅÑ«O൯ýw8;k›ÿ x†;ˆJa;‘º9÷÷R+¡ñgŽí|Iáë{ôáo2ʲ9 029ÉÏLí\‰¿¸Ÿb˜ "Bv$£&#ßiê>=ªª©f ’N ëí>¡N­XW­~5×úíø\‰»½Ï^ø(—wÖú¥¤2íŽÞXæÁ$ °eÈ888^nÝë²ñÝÔ^ ÖÚ9Q~Ëå7ï DC¶ÑµƒsËÇè9®Wáþƒ6‡£´·°2\Ý:ÈÑ?(#¨'$õèGJ¥ñW\ÿ ‰E¶—¸™g˜ÌÀ¹;Pv ú±ÎNs·ëŸ’–"Ž/:té+ûË]öJöÓM»ëø˜*‘•^Uý—êd|‰åñMæÔÝ‹23å™6æHùÛ‚ëüñ^…ñ1¢oêûÑEØ.õ7*ÅHtÎp{g<·Á«+¸c¿¿pÓ¾Æby=8É_ÄsÆk¬ñB\jÞÔì••Ë[9Píb‹Bヅ =9­3§ð§LšÛáÖšÆæXÌÞdÛP.0\ãïÛ0?™úJ¸™Ë ”•œº+=<µI£¦í¯õêt¬d‹T¬P=ËFêT>ÍØØ@Ï9<÷AQÌ×»Õ¡xùk",JÎæù±Éç$œŽŸZWH®¯"·UÌQ ’ÙÈ]ÅXg<ã ߨg3-Üqe€0¢¨*Œ$܃ ’Sû 8㎼_/e'+Ï–-èÓ¶¶Õíß[·ÙÙ½î쏗¼sk%§µxä‰â-pÒeÆCrú ôσžû=”šÅô(QW‚Õd\ƒæ. \àö¹¯F½°³½0M>‘gr÷q+œ¶NïºHO— ¤ ܥݭ”n·J|ÆP6Kµc=Isó}Ò çGš)a=—#vK›åoK§ßóٍ¤¶¿õú…ÄRÚ[Ësöټˏ•Ë ópw®qœŒ·Ø ùÇâ‹ý‡ãKèS&ÞvûD Aù‘É9 ŒîqÅ} $SnIV[]ѐ´Ó}ØÜ¾A Ü|½kÅþÓ|E Mu R¼.I¼¶däò‚ÃkÆ}ðy¹vc iUœZ…­Õõ»z¾÷¿n¦*j-É­/àœHã\y5 Û ß™ó0— äŸnzôã#Ô¯,†¥ÚeÔ÷ÜÅ´„“'c…<íÝ€<·SŠ¥k§Ã¢éÆÆÙna‚8–=«ʪ[Ÿ™°pNî02z“ÔÙ–K8.È’Þî(vƒ2®@ äÈûãçžxäÇf¯ˆu¹yUÕîýWšÙ|›ëÒ%Q^í[æ|éo5ZY•^{96ˆY‚§v*x>âº_|U¹Ö´©tûMÒÂ9PÇ#«£#€ éÉñ‘ƒÍz/‰´-į¹°dd,Б›p03ƒœ{ç9=+ Ûᧇ¬¦[‡‚ê婺¸#±ß=³ý¿•Õµjñ½HÙh›Û[§ÚýÊöô÷{˜?ô÷·Ô.u©–_%còcAÀ˜’ }0x9Î>žñÇáÍ9,ahï¦Ì2òÓ ñÛAäry$V²Nð ]=$Ž ‚#Ù‚1ƒƒødõMax‡ÂÖ^!±KkÛ‘ «“Çó²FN8+ëÎ{Ò¼oí§[«ÕMRoËeç×[_m/¦¦k.kôgŽxsSÓ´ý`êzªÜÜKo‰cPC9ÎY‰#§^üý9¹âïÞx£Ë·Ú`±‰‹¤;³–=ÏaôÕAð‚÷kêÁNBéÎælcõö®£Fð†ô2Ò¬]ßÂK$ÓÜ®•”/ÊHàã$ä ¸÷ëf¹Oµúâ“”’²ø­è´µþöjçNü÷üÌ¿ xNïFÒd»¼·h®îT9ŽAµÖ>qÁçÔœtïÒ»\ȶÎîcÞäîó3¶@#ÉIÎ ÔñW.<´’¥–ÑÑ€ÕšA‚ ;†qÓë‚2q ÒÂó$# Çí‡ !Ë}Õ9ÈÎÑÉã=;ŒÇÎuñ+ÉûÏ¥öíeÙ+$úíÜ娯'+êZH4ƒq¶FV‹gïŒ208ÆÌ)íб>M|÷âÍã¾"iì‹¥£Jd´™OÝç;sÈúr+ÜäˆË)DŒ¥šF°*3Õ”d {zÔwºQ¿·UžÉf†~>I+ŒqÔ`ð3œ“Ü×f]œTÁÔn4“ƒø’Ýßõ_«*5šzGCÊ,þ+ê1ò÷O¶¸cœºb2yÇ;cùÕ£ñh¬›áÑŠr¤ÝäNBk¥—á—†gxšX/쑘hŸ*Tçn =û㦠2|(ð¿e·ºÖ$ ýìŸ!'åΰyîî+×öœ=Y:²¦ÓÞ×iü’—ü -BK™£˜›âÆ¡&véðõ-ûÉY¹=Onj¹ø¯¯yf4·±T Pó`çœ7={×mÃ/ ¢˜ZÚòK…G½¥b„’G AãÜœ*í¯Ã¿ IoæI¦NU8‘RwÈã;·€ Û×ëÒ”1Y •£E»ÿ Oyto¢<£Áö·šï,䉧ûA¼sû»Nò}¹üE{ÜÖªò1’õÞr0â}ÎØ#>à/8ïéÎ~—áÍ#ñÎlí§³2f'h”?C÷YËdð:qëõÓ·‚ïeÄ© ÔÈØÜRL+žAÎ3¼g=åšó³Œt3 ÑQ¦ùRÙßE®¼±w_;þhš’Sirÿ ^ˆã¼iੇ|RòO„m°J/“$·l“ ÇÓ¿ÿ [ÑŠÆ“„†Õø>cFÆ6Ø1ƒ– àz7Ldòxäüwá‹ÝAXùO•Úý’é®ähm­ •NÀ±ÌTÈç ƒ‘I$pGž:‚ÄbêW¢®œ´|­¦­nÍ>¶ÖÏ¢§ÎÜ¢ºö¹•%ÄqL^öÛ KpNA<ã¡ …î==ª¸óffËF‡yÌcÉ ©ç$ð=ñÏ­YþÊ’Ú]—¥‚¬‚eDïÎH>Ÿ_ÌTP™a‰ch['çÆÜò7a‡?w°Ïn§âÎ5”’¨¹uÚÛ|´ÓÓc§{O—ü1•ªxsÃZ…ÊÏy¡Ã3¸Ë2Èé» ‘ƒÎ äžÜðA§cáOéúÛ4ý5-fŒï„ù¬ûô.Ç Üsž•Ò¾•wo<¶Ÿ"¬¡º|£ î2sÇ¡éE²ÉFѱrU°dÜ6œ¨ mc†Îxë׺Þ'0²¡Rr„{j¾í·è›µ÷)º·å–‹î2|I®Y¼ºÍË·–ÃÆà㍣'óÆxƒOÆÞ&>\lóÌxP Xc¸ì Sþ5§qà/ê>#žÞW¸if$\3 ® ûÄ“ùŽÕê¾ð<Ó‹H¶óÏ" å·( á‘€:ã†8Ï=+ꨬUA×ÃËÚT’ÑÞöù¥¢]{»ms¥F0\ÑÕ—ô}&ÛB´ƒOŽÚ+›xíÄÀ1 ,v± žIëíZ0ǧ™3 í2®0ทp9öÝÔž)ÓZËoq/Ú“‘L ²ŒmùŽÓ9§[Û#Ä‘\ÞB¬Çs [;à à«g‚2ôòªœÝV§»·¯/[uó½õÛï¾ /šÍ}öüÿ «=x»HŸÂÞ.™ ÌQùŸh´‘#a$‚'¡u<Š›Æ>2>+ƒLSiöwµFó1!eg`£åœ ÷ëÛö}Á¿ÛVÙêv $¬ƒ|,s÷z€ð΃¨x÷ÅD\ÜŒÞmåÔ„ ˆ o| :{ÇÓ¶–òÁn!´0Ål€, ƒ ( ÛŒŒ c¶rsšæ,4‹MÛOH!@¢ ÇŽ„`å²9ÝÃw;AÍt0®¤¡…¯ØÄ.Àì클ƒ‘ßñ5Í,Óëu-ÈÔc¢KÃÓ£òÖ̺U.õL¯0…%2È—"~x ‚[`có±nHàŽyàö™¥keˆìŒÛFç{(Ø©†`Jã#Žwg<“:ÚÉ;M ^\yhûX‡vB·÷zrF?§BÊÔ/s<ÐÈB)Û± ·ÍÔwç5Âã:så§e{mѤï«Òíh—]Wm4âí¿ùþW4bC3¶ª¾Ùr$ pw`àädzt!yŠI„hÂîàM)!edŒm'æ>Ç?wzºK­ìcŒ´¯Ìq6fp$)ãw¡éUl`µ»ARAˆÝÕgr:äŒgƒéé[Ôö±”iYs5Ýï«ÙG—K=þF’æMG«óÿ `ŠKɦuOQ!ÕåŒ/ÎGÞ`@ËqÕzdõâ«Ê/Ö(ƒK´%ŽbMü åÜŸö—>¤óŒŒV‘°„I¢Yž#™¥ùÏÊ@8 œgqöö5ª4vד[¬(q cò¨À!FGaÁõõ¯?§†¥ÏU½í¿WªZ$úyú½Žz×§Éþ?>Ã×È•6°{™™ŽÙ.$`­ÎUœ…çè ' ¤r$1Ø(y7 ðV<ž:È  ÁÎMw¾Â'Øb§øxb7gãО½óÉÊë²,i„Fȹ£§8ãä½k¹¥¦ê/ç{ïê驪2œ/«ü?¯Ô›ìñÜ$þeýœRIåŒg9Ác’zrrNO bÚi¢ ѺË/$,“ª¯Ýä;Œ× ´<ÛÑn³IvŸb™¥ nm–ÄŸ—nÝÀãŽ3ëÍG,.öó³˜Ù£¹u ÊÌrŠ[<±!@Æ:c9ÅZh ì’M5ÄìÌ-‚¼ëÉùqŽGì9¬á ;¨A-ž—évþÖ–^ON·Ô”ŸEý}ú×PO&e[]ÒG¸˜Ûp ƒÃà/Ë·8ûÀ€1ž@¿ÚB*²­¼ñì8@p™8Q“žÆH'8«I-%¸‚ F»“åó6°Uù|¶Ú¸ã ò^Äw¥ŠÖK–1ÜÝK,Žddlí²0PÀü“×ükG…¯U«·¶–´w¶ŽÍ¾©yÞú[Zös•¯Á[™6° ¨¼ÉVæq·,# ìãï‘×8îry®A››¨,ãc66»Ë´ã'æÉù?t}¢æH--Òá"›|ˆ¬[í  7¶ö#¸9«––‹$,+Ëqœ\Êø c€yê^ݸÄa°«™B-9%«×®‹V´w~vÜTéꢷþ¼ˆ%·¹• ’[xç•÷2gØS?6åÀÚ õ9É#š@÷bT¸º²C*3Bá¤òÎA9 =úU§Ó"2Ãlá0iÝIc‚2Î@%öç94ùô»'»HÄ¥Ô¾@à Tp£šíx:úÊ:5eºßMý×wµ›Ó_+šº3Ýyvÿ "ºÇ<ÂI>Õ 1G·Ë«È«É# àÈÇ øp Jv·šæDûE¿›†Ë’NFr2qŸ½ÇAÜšu•´éí#Ħ8£2”Ú2Ã/€[ÎTr;qŠz*ý’Îþ(≠;¡TÆâ›;ºÿ àçœk‘Þ­8¾Uª¾íé{^×IZéwÓkXÉûÑZo¯_øo×È¡¬ â–ÞR§2„‚Àœü½ùç® SVa†Âüª¼±D‘ŒísŸàä|ä2 æ[‹z”¯s{wn„ÆmáóCO+†GO8Ïeçåº`¯^¼ðG5f{Xžä,k‰<á y™¥voÆ éÛõëI=œ1‹éíÔÀÑ)R#;AÂncäŽ:tÏ#¶TkB.0Œ-ÖÞZÛgumß}fÎJÉ+#2êÔP£žùÈÅi¢%œ3P*Yƒò‚Aì“Ž2r:ƒÐúñi­RUQq‰H9!”={~¼ “JŽV¥»×²m.ÛߺiYl¾òk˜gL³·rT• ’…wHÁ6ä`–Î3ùÌ4Øe³†&òL‘•%clyîAÂäà0 žüç$[3uŘpNOÀÉ=† cï{rYK ååä~FÁ •a»"Lär1Ó¯2Äõæ<™C•.fÕ»è¥~½-¿g½Â4¡{[ør¨¶·Žõäx¥’l®qpwÇ»8ärF \cޏܯÓ-g‚yciÏÀ¾rÎwèØÈ#o°Á9ã5¢šfÔxÞæfGusÏÌJÿ µ×œ/LtãÅT7²¶w,l ɳ;”eúà·¨çîŒsÜgTÃS¦­^ '~‹®›¯+k÷ZÖd©Æ*Ó[Ü«%Œk0ŽXƒ”$k#Ȩ P2bv‘ƒŸáÇ™ÆÕb)m$É*8óLE‘8'–ÜN Úyàúô­+{uº±I'wvš4fÜr íì½=úuú sFlìV$‘ö†Hсù€$§ õ=½¸«Ž] :Ž+•¦ïmRþ½l´îÊT#nkiøÿ _ðÆT¶7Ò½ºÒ£Î¸d\ã8=yãŽÜäR{x]ZâÚé#¸r²#»ÎHÆ6õ ç® ÎFkr;sºÄ.&;só± Ç9êH÷ýSšÕ­tÐU¢-n­ Ì| vqœ„{gŒt§S.P‹’މ_[;m¥Þ­ZýRûÂX{+¥úü¼ú•-àÓ7!„G"“´‹žƒnrYXã¸îp éœ!Ó­oP̏tÑ (‰Þ¹é€sÓ#GLçÕšÑnJý¡!‘Tä#“ß?îýp}xÇ‚I¥Õn#·¸–y'qó@r[ Êô÷<ÔWÃÓ¢áN¥4ԝ’I&ݼ¬¬¼ÞºvéÆ FQV~_ÒüJÖÚt¥¦Xá3BÄP^%ÈÎW-×c¡ú©¤·Iþèk¥š?–UQåIR[’O 5x\ÉhÆI¶K4«2ùªŠŒ<¼óœçØ`u«‚Í.VHä € Ëgfx''9ÆI#±®Z8 sISºku¢ßÞ]úk»Jößl¡B.Ü»ÿ MWe °·Ž%šêɆ¼»Âù³´œ O¿cÐÓÄh©"ÛÜÏ.ÖV ’3nüÄmnq[ŒòznšÖ>J¬òˆæ…qýØP Ž:ä7^0yëWšÍ_79äoaÈ °#q0{ää×mœy”R{vÒÞ¶ÚÏe¥“ÚÆÐ¥Ì®—õýjR •íç›Ìb„+J yÜØÙ•Ç]¿Ôd þËOL²”9-Œ—õÃc'æÝלçÚ²ìejP“½ âù°¨†ðqòädЃÉäÖÜj÷PÇp“ÍšŠå«‘î <iWN­smª»¶vÓz5»ûì:Rs\Ðßôû×uÔÿÙ