#----------------------------------------------------------------------
# This file was generated by /usr/local/bin/img2py
#
from wx import ImageFromStream,BitmapFromImage
import cStringIO, zlib
def getData():
return zlib.decompress(
'x\xda\x01L\x01\xb3\xfe\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x0f\
\x00\x00\x00\x11\x08\x06\x00\x00\x00\x02\n\xf6\xa1\x00\x00\x00\x04sBIT\x08\
\x08\x08\x08|\x08d\x88\x00\x00\x01\x03IDATx\x9c\xa5\x931N\xc3@\x10E\x9f\x91\
\x8b\x8d\x94\xe2\xa7\xa3\xa0\xe1B\x14A\xdc\x84\x1bPP\xd1AK\xc5Uhh(Cg$P\xb0R8\
SX\xf6\x14\x91Lab\x9bl\x08Q\xf2\xa5\xd5jf\xe7\xcf\xdf\x99\x9dM$q(N\x0ef\x1eK\
N\x87\x86\x995C[R\xb2\x97\xb2\x995U5\xa7X\x14\x14\x8b\x82\xe7\x97\xa7(\xd9&\
\x12I\x98Ys\xffpC\xf6\x99E\x01w\xb7\x8f\x91o}\xa3\x8e\\Us\xbc\x0cQ\xa0\xaffx\
\x19\xf8\xb2\x19R\xc0\xcc\xb9\xbc\xb8\xc6\xdd\x93\xaef/C\x1b\xb8rH\xeb\xdf\
\x19\xc2\x08\xa9O\x9c\xe79\x92\xfa\x86\x85\xb1\xe3\x06\xb5/\x99\x8c\'\xbd25\
\xa45\xa3qK^\xef0\xe8v\xab\xec\xdd\xa1\xb3\xa1\xfe\x83\xba\xf4\x98\x0c\x10\
\xd2\xb8\xe6]\xd82$\xe1O\xd5\x7f\xc9\xcer\'!{\xdbR\xb3Y\xc6\xe9\xd99fl}o\x80\
e.\xde?^{\x87$$1\xbd\x9a6\xc0\xdeKR;$\x87\xe2\xa8_\xf5\r\xe3\x08v\x0f\x07\
\xa9\xe3\x10\x00\x00\x00\x00IEND\xaeB`\x82|\xa0\x8a\xf7' )
def getBitmap():
return BitmapFromImage(getImage())
def getImage():
stream = cStringIO.StringIO(getData())
return ImageFromStream(stream)
|