Beginnings of disk image selector.

This commit is contained in:
Shamus Hammons 2013-10-13 15:22:19 -05:00
parent 433e43d75b
commit bcfe62d754
12 changed files with 1013 additions and 466 deletions

View File

@ -100,6 +100,7 @@ INCS = -I. -I./src
OBJS = \
obj/button.o \
obj/diskselector.o \
obj/diskwindow.o \
obj/draggablewindow.o \
obj/draggablewindow2.o \

View File

@ -502,7 +502,7 @@ void FloppyDrive::DenybblizeImage(uint8_t driveNum)
}
const char * FloppyDrive::GetImageName(uint8_t driveNum/*= 0*/)
const char * FloppyDrive::ImageName(uint8_t driveNum/*= 0*/)
{
// Set up a zero-length string for return value
nameBuf[0] = 0;
@ -559,7 +559,7 @@ void FloppyDrive::EjectImage(uint8_t driveNum/*= 0*/)
}
bool FloppyDrive::DriveIsEmpty(uint8_t driveNum/*= 0*/)
bool FloppyDrive::IsEmpty(uint8_t driveNum/*= 0*/)
{
if (driveNum > 1)
{
@ -572,7 +572,7 @@ bool FloppyDrive::DriveIsEmpty(uint8_t driveNum/*= 0*/)
}
bool FloppyDrive::DiskIsWriteProtected(uint8_t driveNum/*= 0*/)
bool FloppyDrive::IsWriteProtected(uint8_t driveNum/*= 0*/)
{
if (driveNum > 1)
{

View File

@ -28,10 +28,10 @@ class FloppyDrive
bool SaveImageAs(const char * filename, uint8_t driveNum = 0);
void CreateBlankImage(uint8_t driveNum = 0);
void SwapImages(void);
const char * GetImageName(uint8_t driveNum = 0);
const char * ImageName(uint8_t driveNum = 0);
void EjectImage(uint8_t driveNum = 0);
bool DriveIsEmpty(uint8_t driveNum = 0);
bool DiskIsWriteProtected(uint8_t driveNum = 0);
bool IsEmpty(uint8_t driveNum = 0);
bool IsWriteProtected(uint8_t driveNum = 0);
void SetWriteProtect(bool, uint8_t driveNum = 0);
int DriveLightStatus(uint8_t driveNum = 0);

View File

@ -54,8 +54,8 @@ DiskWindow::DiskWindow(FloppyDrive * fdp, uint32_t x/*= 0*/, uint32_t y/*= 0*/):
// closeButton = new Button(w - (cbWidth + 1), 1, cbUp, cbHover, cbDown, this);
// list.push_back(closeButton);
name1 = new Text(4, 4, floppyDrive->GetImageName(0), 0xFF00FF00, 0xFF23239F, this);
name2 = new Text(4, 24, floppyDrive->GetImageName(1), 0xFF00FF00, 0xFF23239F, this);
name1 = new Text(4, 4, floppyDrive->ImageName(0), 0xFF00FF00, 0xFF23239F, this);
name2 = new Text(4, 24, floppyDrive->ImageName(1), 0xFF00FF00, 0xFF23239F, this);
AddElement(name1);
AddElement(name2);
@ -79,8 +79,8 @@ DiskWindow::DiskWindow(FloppyDrive * fdp, uint32_t x/*= 0*/, uint32_t y/*= 0*/):
writeProtect2 = new Button(4, 196, "WriteProt2", this);
swap = new Button(4, 220, "Swap Disks", this);
writeProtect1->SetText((floppyDrive->DiskIsWriteProtected(0) ? "no write" : "write"));
writeProtect2->SetText((floppyDrive->DiskIsWriteProtected(1) ? "no write" : "write"));
writeProtect1->SetText((floppyDrive->IsWriteProtected(0) ? "no write" : "write"));
writeProtect2->SetText((floppyDrive->IsWriteProtected(1) ? "no write" : "write"));
AddElement(newDisk1);
AddElement(newDisk2);
@ -213,7 +213,7 @@ void DiskWindow::Notify(Element * e)
}
else if (e == newDisk1)
{
if (!floppyDrive->DriveIsEmpty(0))
if (!floppyDrive->IsEmpty(0))
{
// Put up a warning and give user a chance to exit this potentially
// disastrous action
@ -236,12 +236,12 @@ what you could do is like this way:
// Housekeeping
eject1->SetVisible(true);
load1->SetVisible(false);
name1->SetText(floppyDrive->GetImageName(0));
name1->SetText(floppyDrive->ImageName(0));
Draw();
}
else if (e == newDisk2)
{
if (!floppyDrive->DriveIsEmpty(1))
if (!floppyDrive->IsEmpty(1))
{
// Put up a warning and give user a chance to exit this potentially
// disastrous action
@ -253,26 +253,26 @@ what you could do is like this way:
// Housekeeping
eject2->SetVisible(true);
load2->SetVisible(false);
name2->SetText(floppyDrive->GetImageName(1));
name2->SetText(floppyDrive->ImageName(1));
Draw();
}
else if (e == writeProtect1)
{
floppyDrive->SetWriteProtect((floppyDrive->DiskIsWriteProtected(0) ? false : true), 0);
floppyDrive->SetWriteProtect((floppyDrive->IsWriteProtected(0) ? false : true), 0);
// floppyDrive->SetWriteProtect(false, 0);
// else
// floppyDrive->SetWriteProtect(true, 0);
// Housekeeping
writeProtect1->SetText((floppyDrive->DiskIsWriteProtected(0) ? "no write" : "write"));
writeProtect1->SetText((floppyDrive->IsWriteProtected(0) ? "no write" : "write"));
Draw();
}
else if (e == writeProtect2)
{
floppyDrive->SetWriteProtect((floppyDrive->DiskIsWriteProtected(1) ? false : true), 1);
floppyDrive->SetWriteProtect((floppyDrive->IsWriteProtected(1) ? false : true), 1);
// Housekeeping
writeProtect2->SetText((floppyDrive->DiskIsWriteProtected(1) ? "no write" : "write"));
writeProtect2->SetText((floppyDrive->IsWriteProtected(1) ? "no write" : "write"));
Draw();
}
else if (e == swap)
@ -280,8 +280,8 @@ what you could do is like this way:
floppyDrive->SwapImages();
// Housekeeping
name1->SetText(floppyDrive->GetImageName(0));
name2->SetText(floppyDrive->GetImageName(1));
name1->SetText(floppyDrive->ImageName(0));
name2->SetText(floppyDrive->ImageName(1));
Draw();
}
}

200
src/gui/gfx/config-icon.c Normal file
View File

@ -0,0 +1,200 @@
/* GIMP RGBA C-Source image dump (config-icon.c) */
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[40 * 40 * 4 + 1];
} config = {
40, 40, 4,
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"w\0\0.w\0\0\177w\0\0\274w\0\0\345w\0\0\372w\0\0\372w\0\0\345w\0\0\274w\0"
"\0\177w\0\0.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0w\0\0;w\0\0\264w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\264w\0\0;\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\204w\0\0\377w\0"
"\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0"
"\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\204\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0w\0\0\247w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\247\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\243w\0"
"\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0"
"\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0"
"\0\377w\0\0\377w\0\0\243\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0yw\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0"
"\0)w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0)\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\240w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\240\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0w\0\0\30w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0w\0\0jw\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\252w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\252"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\330w\0\0\377w\0\0\377w\0\0"
"\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0"
"\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0"
"\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\330\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\364w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\364\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0w\0\0\375w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\375\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\364"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\364\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\330w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\330\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\252w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\252\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0w\0\0jw\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0j\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\30"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\240w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\240\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0)w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w"
"\0\0\377w\0\0\377w\0\0\377w\0\0)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0w\0\0yw\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0y\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0w\0\0\243w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0"
"\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0"
"\377w\0\0\377w\0\0\377w\0\0\377w\0\0\243\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\247"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\247\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0\204w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377"
"w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\204\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0w\0\0;w\0\0\264w\0\0\377w\0\0\377w\0\0\377w\0"
"\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\377w\0\0\264w\0"
"\0;\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0w\0\0.w\0\0\177w\0\0\274w\0\0\345w\0\0\372w\0\0\372w\0\0\345w\0"
"\0\274w\0\0\177w\0\0.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377"
"\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0"
"\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0"
"\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0"
"\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0"
"\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0"
"\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377"
"\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377"
"\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0"
"\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0"
"\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377\0\0"
"\0\377\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377"
"\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
"\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0"
"\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0"
"\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377"
"\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\377\0\0\0\377"
"\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0",
};

View File

@ -1,211 +0,0 @@
/* GIMP RGBA C-Source image dump (disk-1-icon.c) */
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[40 * 40 * 4 + 1];
} disk_1 = {
40, 40, 4,
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367"
"\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377\367\377\372\377\367\377"
"\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367\377\372"
"\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::"
"\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::"
"\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\367\377\372\377\367\377\372\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\0\0\0\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\0\0\0\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\367\377"
"\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377\367\377\372\377\367\377\372\377:::\377:::\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::"
"\377:::\377:::\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377"
":::\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377\0\0\0\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377:::\377"
":::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377\0\0\0\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223"
"\223\223\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367\377\372"
"\377\367\377\372\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\367\377\372\377\367\377\372\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::"
"\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
"\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367"
"\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
"\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245\377\377c\245\377\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377\232\377c\377"
"\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0c\245\377\377c\245\377\377c\245\377\377c\245\377\377\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377\232\377c\377\232\377"
"c\377\232\377c\377\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245\377\377\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377\232\377c\377\232\377c\377\232"
"\377c\377\232\377c\377\232\377c\377\232\377c\377\232\377c\377\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245\377\377\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0c\245\377\377c\245\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\232\377c\377\232\377c\377\232\377c\377\232\377c\377\232\377c\377"
"\232\377c\377\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0c\245\377\377c\245\377\377c\245\377\377c\245\377\377c\245\377\377c"
"\245\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377\232\377c\377\232\377c\377"
"\232\377c\377\232\377c\377\232\377c\377\232\377c\377\232\377c\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0",
};

View File

@ -1,211 +0,0 @@
/* GIMP RGBA C-Source image dump (disk-2-icon.c) */
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[40 * 40 * 4 + 1];
} disk_2 = {
40, 40, 4,
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367"
"\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377\367\377\372\377\367\377"
"\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367\377\372"
"\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::"
"\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::"
"\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\367\377\372\377\367\377\372\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\0\0\0\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\0\0\0\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\367\377"
"\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377\367\377\372\377\367\377\372\377:::\377:::\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::"
"\377:::\377:::\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377"
":::\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377\0\0\0\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377:::\377"
":::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377\0\0\0\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223"
"\223\223\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367\377\372"
"\377\367\377\372\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\367\377\372\377\367\377\372\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::"
"\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
"\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\0\0\0\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\367"
"\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
"\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\367\377\372\377\367\377\372\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377:::\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377"
"\372\377\367\377\372\377\367\377\372\377\367\377\372\377\367\377\372\377"
"\367\377\372\377\367\377\372\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245\377\377"
"c\245\377\377c\245\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245\377\377\0\0\0\0\0\0\0\0c\245"
"\377\377c\245\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377"
"\232\377c\377\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377bc\245\377\377c\245"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377\232\377c\377\232\377"
"c\377\232\377c\377\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245\377\377c\245\377\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377\232\377c\377\232\377c\377\232"
"\377c\377\232\377c\377\232\377c\377\232\377c\377\232\377c\377\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\245\377\377c\245\377\377c\245\377\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"c\245\377\377c\245\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\232\377c\377\232\377c\377\232\377c\377\232\377c\377\232\377c\377"
"\232\377c\377\232\377c\377\232\377c\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0c\245\377\377c\245\377\377c\245\377\377c\245\377\377c\245\377\377c"
"\245\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232\377c\377\232\377c\377\232\377c\377"
"\232\377c\377\232\377c\377\232\377c\377\232\377c\377\232\377c\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0",
};

View File

@ -0,0 +1,233 @@
/* GIMP RGBA C-Source image dump (disk-swap.c) */
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[40 * 40 * 4 + 1];
} disk_swap = {
40, 40, 4,
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\350\357\352\377\304\312\306\377"
"\304\312\306\377\304\312\306\377\304\312\306\377\304\312\306\377\304\312"
"\306\377\304\312\306\377\303\311\306\377\311\316\313\377\310\316\312\377"
"\310\316\312\377\310\316\312\377\310\316\312\377\311\316\313\377\303\311"
"\306\377\304\312\306\377\304\312\306\377\304\312\306\377\304\312\306\377"
"\304\312\306\377\304\312\306\377\304\312\306\377\350\357\352\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\276\304\300\377:::\377:"
"::\377:::\377:::\377:::\377:::\377:::\377AAA\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377AAA\377:::\377:::\377:::\377:::\377:"
"::\377:::\377:::\377\276\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\276\304\300\377:::\377:::\377:::\377:::\377:::\377:"
"::\377:::\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377@@@\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\276\304"
"\300\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\274\301"
"\276\377222\377222\377222\377222\377222\377222\377222\377999\377\16\16\16"
"\377@@@\377@@@\377@@@\377@@@\377\16\16\16\377999\377222\377222\377222\377"
"222\377222\377222\377222\377\274\301\276\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\331\336\333\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\246\246\246\377\1\1\1\377:::\377:::\377:::\377:::\377\1"
"\1\1\377\246\246\246\377\223\223\223\377\223\223\223\377\223\223\223\377"
"\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\331\336"
"\333\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\273\301\275\377222\377\7\7\7\377\15\15\15\377\16\16\16\377\16\16\16"
"\377\16\16\16\377\16\16\16\377\17\17\17\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\17\17\17\377\16\16\16\377\16\16\16\377\16"
"\16\16\377\16\16\16\377\15\15\15\377\7\7\7\377222\377\273\301\275\377\0\0"
"\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\276\304\300\377:::\377111\377---\377---\377---\377---\377---\377222\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377222\377---\377"
"---\377---\377---\377---\377111\377:::\377\276\304\300\377\0\0\0\0\0\0\0"
"\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\277\305\301\377:::\377\232\232\232\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\244"
"\244\244\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\244\244\244\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\232\232\232\377:::\377\277\305\301\377\0\0\0\0\34"
"\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\260\265\262\377\13\13\13\377\5\5"
"\5\377\4\4\4\377\4\4\4\377\5\2\2\377\6\2\2\377\4\4\4\377\4\4\4\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\4\4\4\377\4\4\4\377"
"\4\4\4\377\4\4\4\377\4\4\4\377\4\4\4\377\3\3\3\377\13\13\13\377\260\265\262"
"\377\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\301\307\303"
"\377BBB\377KLL\377HII\377BBB\377M88\377V00\377>GG\377KII\377\0\0\0\377\1"
"\1\1\377\1\1\1\377\1\1\1\377\1\1\1\377\0\0\0\377JJJ\377BBB\377BBB\377BBB"
"\377BBB\377BBB\377BBB\377BBB\377\301\306\303\377\0\0\0\0\0\0\0\0\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\300\306\303\377:::\377\377\377\377\377%##\377"
":::\377|\0\0\377v\1\1\377w\0\0\377<EE\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377AAA\377:::\377:::\377\223\223\223\377\246\246"
"\246\377:::\377:::\377:::\377\276\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\34"
"\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0"
"\0\0\300\306\303\377:::\377\377\377\377\377]]\\\377:::\377}\0\0\377t\3\3"
"\377}\0\0\3774??\377???\377???\377???\377???\377???\377???\377999\377:::"
"\377:::\377\223\223\223\377\246\246\246\377:::\377:::\377:::\377\276\304"
"\300\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\0"
"\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\300\306\303\377<=<\377\\^]\377HII\377<="
"<\377W##\377j\22\21\3775CC\377>;;\377<=<\377<=<\377<=<\377<=<\377<=<\377"
"<=<\377<=<\377<=<\377<=<\377\223\223\223\377\246\246\246\377<=<\377<=<\377"
"<=<\377\277\304\301\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\276\304\300\377:::\377:::\377:::"
"\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377\276\304\300"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377"
"\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377"
"M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377"
"\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377"
"\377\377M\377\377\377M\377\377\377M\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\367\377\372\10\367\377\372\10"
"\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372"
"\10\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372"
"\10\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372"
"\10\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372\10\367\377\372"
"\10\367\377\372\10\367\377\372\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34"
"\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34"
"\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\350"
"\357\352\377\304\312\306\377\304\312\306\377\304\312\306\377\304\312\306"
"\377\304\312\306\377\304\312\306\377\304\312\306\377\303\311\306\377\311"
"\316\313\377\310\316\312\377\310\316\312\377\310\316\312\377\310\316\312"
"\377\311\316\313\377\303\311\306\377\304\312\306\377\304\312\306\377\304"
"\312\306\377\304\312\306\377\304\312\306\377\304\312\306\377\304\312\306"
"\377\350\357\352\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\276\304\300\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377AAA\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377AAA\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
"\276\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34"
"\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\276\304\300\377:::\377:::\377:::\377:"
"::\377:::\377:::\377:::\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\0\0\0\377\0\0\0\377@@@\377:::\377:::\377:::\377:::\377:::\377:::\377:::"
"\377\276\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34"
"\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\274\301\276\377222\377222\377"
"222\377222\377222\377222\377222\377999\377\16\16\16\377@@@\377@@@\377@@@"
"\377@@@\377\16\16\16\377999\377222\377222\377222\377222\377222\377222\377"
"222\377\274\301\276\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\331\336\333\377\223"
"\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\246\246\246\377\1\1\1\377:::\377:::"
"\377:::\377:::\377\1\1\1\377\246\246\246\377\223\223\223\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\223"
"\223\223\377\331\336\333\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0"
"\0\0\0\0\0\0\273\301\275\377222\377\7\7\7\377\15\15\15\377\16\16\16\377\16"
"\16\16\377\16\16\16\377\16\16\16\377\17\17\17\377\0\0\0\377\0\0\0\377\0\0"
"\0\377\0\0\0\377\0\0\0\377\0\0\0\377\17\17\17\377\16\16\16\377\16\16\16\377"
"\16\16\16\377\16\16\16\377\15\15\15\377\7\7\7\377222\377\273\301\275\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\276\304\300\377"
":::\377111\377---\377---\377---\377---\377---\377222\377\0\0\0\377\0\0\0"
"\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377222\377---\377---\377---\377"
"---\377---\377111\377:::\377\276\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\0\0\0\0\277\305\301\377:::\377\232\232\232\377\223\223\223"
"\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223\223\377\244"
"\244\244\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
"\244\244\244\377\223\223\223\377\223\223\223\377\223\223\223\377\223\223"
"\223\377\223\223\223\377\232\232\232\377:::\377\277\305\301\377\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\0\0\0\0\0\0\0\0\260\265\262\377\13\13\13\377\5\5\5\377\4\4\4\377"
"\4\4\4\377\5\2\2\377\6\2\2\377\4\4\4\377\4\4\4\377\0\0\0\377\0\0\0\377\0"
"\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\4\4\4\377\4\4\4\377\4\4\4\377\4\4"
"\4\377\4\4\4\377\4\4\4\377\3\3\3\377\13\13\13\377\260\265\262\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\301"
"\307\303\377BBB\377KLL\377HII\377BBB\377M88\377V00\377>GG\377KII\377\0\0"
"\0\377\1\1\1\377\1\1\1\377\1\1\1\377\1\1\1\377\0\0\0\377JJJ\377BBB\377BB"
"B\377BBB\377BBB\377BBB\377BBB\377BBB\377\301\306\303\377\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377"
"\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\300\306\303\377:::\377"
"\377\377\377\377%##\377:::\377|\0\0\377v\1\1\377w\0\0\377<EE\377\0\0\0\377"
"\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377AAA\377\246\246\246\377"
"\246\246\246\377:::\377:::\377\246\246\246\377\246\246\246\377:::\377\276"
"\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\300\306\303\377:::\377\377\377\377\377]]\\\377:::\377}\0\0\377t\3\3\377"
"}\0\0\3774??\377???\377???\377???\377???\377???\377???\377999\377\246\246"
"\246\377\246\246\246\377:::\377:::\377\246\246\246\377\246\246\246\377::"
":\377\276\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\300\306\303\377<=<\377\\^]\377HII\377<=<\377W##\377j\22\21\3775CC\377"
">;;\377<=<\377<=<\377<=<\377<=<\377<=<\377<=<\377<=<\377\246\246\246\377"
"\246\246\246\377<=<\377<=<\377\246\246\246\377\246\246\246\377<=<\377\277"
"\304\301\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\276"
"\304\300\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377"
":::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377:::\377::"
":\377:::\377:::\377\276\304\300\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377"
"\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377"
"M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377"
"\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377\377\377M\377"
"\377\377M\377\377\377M\377\377\377M\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0",
};

View File

@ -0,0 +1,251 @@
/* GIMP RGBA C-Source image dump (load-state-icon.c) */
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[40 * 40 * 4 + 1];
} load_state = {
40, 40, 4,
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\213\0\22\0\377\0\21\0\377\0\0\0\3\0\31\0"
"\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\206\0\240"
"\0\377\0\377\0\374\0\377\0\371\0\0\0\377\0\0\0\0\0\0\0\7\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\20\0\3\0\315\0\2\0\24\0\214\0\237\0\377\0\377\0\364\0\355\0\377"
"\0\377\0\373\0\0\0\341\0\0\0\0\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\0"
"\0\0\0\0\0\0\377\0\377\0\361\0\363\0\377\0\362\0\377\0\377\0\371\0\0\0\377"
"\0\0\0\0\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\0\0\0\0\324\0\367\0\374\0"
"\373\0\376\0\372\0\377\0\377\0\371\0*\0\377\0""6\0\14\0""1\0\4\0\0\0\1\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\3\0\5\0\0\0\0\0\0\0\352\0\377\0\373\0\367\0\377\0\375\0"
"\376\0\377\0\374\0\24\0\377\0\0\0\0\0\15\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0"
"""9\0\0\0\32\0\0\0\0\0\0\0\375\0\377\0\371\0\377\0\377\0\377\0\377\0\"\0"
"\337\0\0\0$\0\0\0:\0\0\0:\0\0\0\24\0\0\0\0\0(\0\1\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\5\0\0\0\0\0\0\0M\0\0\0g\0e\0\377\0e\0\377\0""7\0\305"
"\0\0\0d\0\0\0o\0\231\0\377\0\246\0\371\0*\0\377\0\0\0f\0_\0\377\0a\0\377"
"\0f\0\377\0""8\0\302\0\0\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\2\0\0\0\0\0\0\0""5\0q\0\377\0\230\0\377\0\377\0\372\0\377\0\372\0\325"
"\0\377\0\234\0\377\0\0\0\226\0\0\0\377\0\0\0\374\0@\0\373\0\240\0\377\0\377"
"\0\376\0\377\0\374\0\377\0\371\0\322\0\377\0\225\0\377\0\21\0\251\0\0\0\0"
"\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\0"
"\0%\7W\0\377\6\377\0\377\7\377\0\376\6\375\0\377\6\376\0\377\6\377\0\377"
"\7\377\0\374\6\327\0\377\6\337\0\376\6\332\0\377\6\363\0\377\6\377\0\376"
"\6\377\0\377\7\377\0\377\5\371\0\377\0\377\0\374\0\377\0\363\0\22\0\377\0"
"\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\22\0<\0\377\4\377\0\370\3\374\0\377\3\377\0\377\3\377\0\377"
"\3\377\0\377\3\377\0\377\3\377\0\377\3\376\0\377\3\376\0\377\3\376\0\377"
"\3\377\0\377\3\377\0\377\3\377\0\377\3\377\0\377\2\377\0\377\0\200\0\367"
"\0\0\0\377\0\1\0\17\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0:h_\0\377\377\377\0\373\377\375"
"\0\377\377\376\0\377\377\376\0\377\377\376\0\377\377\376\0\377\377\376\0"
"\377\377\376\0\377\377\376\0\377\377\376\0\377\377\376\0\377\377\376\0\377"
"\377\377\0\377\377\377\0\376\305\255\0\377\0\0\0|\0\0\0\0\0\27\0\5\0\0\0"
"\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34"
"\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\23\24\0\377\377\377\0\374\354\376\0\377\370\377\0\377\367"
"\377\0\377\367\377\0\377\367\377\0\377\367\377\0\377\367\377\0\377\367\377"
"\0\377\367\377\0\377\367\377\0\377\367\377\0\377\367\377\0\377\366\377\0"
"\377\362\377\0\377iq\0\360\0\0\0G\0\0\0\0\0\3\0\1\0\0\0\0\0\0\0\0\0\0\0\0"
"\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\34"
"\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\15\0\373\377\321\0\377\371\274"
"\0\377\377\300\0\377\377\300\0\377\377\300\0\377\377\300\0\377\377\300\0"
"\377\377\300\0\377\377\300\0\377\377\300\0\377\377\300\0\377\377\300\0\377"
"\377\300\0\377\372\274\0\377\345\254\0\377\0\0\0\263\0\0\0\0\0\0\0\5\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\0\0\0"
"\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\13\0\377"
"\377\244\0\377\371\220\0\377\377\224\0\377\377\224\0\377\377\224\0\377\377"
"\224\0\377\377\224\0\377\377\224\0\377\377\224\0\377\377\224\0\377\377\224"
"\0\377\377\224\0\377\377\224\0\377\373\221\0\377\351\207\0\377\0\0\0\277"
"\0\0\0\0\14\10\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\22\13\0\377\377\251\0\377\371\225\0\377\377\230\0\377\377\230\0\377\377"
"\230\0\377\377\230\0\377\377\230\0\377\377\230\0\377\377\230\0\377\377\230"
"\0\377\377\230\0\377\377\230\0\377\377\230\0\377\373\226\0\377\347\212\0"
"\377\0\0\0\273\0\0\0\0\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\22\11\0\376\377\223\0\377\371\201\0\377\377\204\0\377\377\204\0\377"
"\377\204\0\377\377\204\0\377\377\204\0\377\377\204\0\377\377\204\0\377\377"
"\204\0\377\377\204\0\377\377\204\0\377\377\204\0\377\377\205\0\377\377\211"
"\0\376\267b\0\377\0\0\0\207\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\23\0\0\377\377\0\1\374\363\0\2\377\375\0\2\377\375\0\2\377"
"\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377"
"\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377\377\0\2\377\312\0\2\377"
"\24\4\3\243\0\0\6W\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34"
"\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0"
"\1x\232\3\0\377\377\3\0\373\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377"
"\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377"
"\377\3\0\377\377\3\0\377\377\3\0\377\377\2\0\375\333\0\0\377\217\0\0\377"
"\23\0\0\233\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\30\0\27\377"
"\260\0p\371\231\0d\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233\0"
"e\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233"
"\0e\377\231\0e\377\235\0c\376\301\0r\373\13\0\7\377\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\37\0\37\377\223\0\227\370}\0\200\377~\0\202"
"\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0"
"\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377{\0\177\377"
"\213\0\217\377\11\0\11\374\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34"
"\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0""75\0""6\377\220\0\212\373\204\0|\377\204\0|\377\204\0|\377\204"
"\0|\377\204\0|\377\204\0|\377\204\0{\377\204\0|\377\204\0|\377\204\0|\377"
"\204\0|\377\204\0|\377\204\0{\377\204\0\200\375\200\0\200\377\11\0\11\350"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/1\0%\371^\0\244"
"\377[\0\246\376Z\0\246\377Z\0\245\377Z\0\244\377Z\0\237\377[\0\272\374[\0"
"\274\374[\0\265\375Z\0\237\377Z\0\245\377Z\0\245\377Z\0\244\377Z\0\260\373"
"a\0\221\377\15\0\5\346\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\31\0"
"\0K\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\375\0\0\377\364\0\0\205"
"\377\0\0y\377\0\0\245\377\0\0\377\364\0\0\377\376\0\0\377\377\0\0\377\376"
"\0\0\377\377\0\0-\340\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313"
"\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313"
"\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313"
"\313\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\3\0\0\0\0\26\0\0\20\1\0*\377\1\0\377\372\1\0\377\376\1"
"\0\245\377\1\0.\377\4\0\0P\5\0\0?\3\0\12z\1\0'\377\1\0\333\377\1\0\377\377"
"\1\0\377\377\1\0\21\353\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\313\313\313"
"\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313"
"\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313"
"\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313"
"\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
"\377\1\0\0\0\3\0\0\22\377\0\0\22\377\0\0\13\210\0\0\0\3\0\0\0\0\0\0\0\0\0"
"\0\0\3\0\0\0\0\0\0\17\300\0\0\21\377\0\0\21\357\0\0\0\0\0\0\377\1\0\0\0\1"
"\0\0\0\0\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\313\313\313\377\313\313\313\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\216\214\214\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\216\214\214\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313"
"\313\377\313\313\313\377\216\214\214\377\216\214\214\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\216\214\214\377\216\214\214\377\313\313"
"\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\216\214\214\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377\216\214\214\377"
"\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\216\214"
"\214\377\216\214\214\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0",
};

View File

@ -0,0 +1,251 @@
/* GIMP RGBA C-Source image dump (save-state-icon.c) */
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[40 * 40 * 4 + 1];
} save_state = {
40, 40, 4,
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\213\0\22\0\377\0\21\0\377\0\0\0\3\0\31\0"
"\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\206\0\240"
"\0\377\0\377\0\374\0\377\0\371\0\0\0\377\0\0\0\0\0\0\0\7\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\20\0\3\0\315\0\2\0\24\0\214\0\237\0\377\0\377\0\364\0\355\0\377"
"\0\377\0\373\0\0\0\341\0\0\0\0\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\0"
"\0\0\0\0\0\0\377\0\377\0\361\0\363\0\377\0\362\0\377\0\377\0\371\0\0\0\377"
"\0\0\0\0\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\0\0\0\0\324\0\367\0\374\0"
"\373\0\376\0\372\0\377\0\377\0\371\0*\0\377\0""6\0\14\0""1\0\4\0\0\0\1\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\3\0\5\0\0\0\0\0\0\0\352\0\377\0\373\0\367\0\377\0\375\0"
"\376\0\377\0\374\0\24\0\377\0\0\0\0\0\15\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0""9\0"
"\0\0\32\0\0\0\0\0\0\0\375\0\377\0\371\0\377\0\377\0\377\0\377\0\"\0\337\0"
"\0\0$\0\0\0:\0\0\0:\0\0\0\24\0\0\0\0\0(\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\5\0\0\0\0\0\0\0M\0\0\0g\0e\0\377\0e\0\377\0""7\0\305\0\0\0d\0\0\0o\0\231"
"\0\377\0\246\0\371\0*\0\377\0\0\0f\0_\0\377\0a\0\377\0f\0\377\0""8\0\302"
"\0\0\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0""5\0q\0\377\0\230\0"
"\377\0\377\0\372\0\377\0\372\0\325\0\377\0\234\0\377\0\0\0\226\0\0\0\377"
"\0\0\0\374\0@\0\373\0\240\0\377\0\377\0\376\0\377\0\374\0\377\0\371\0\322"
"\0\377\0\225\0\377\0\21\0\251\0\0\0\0\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\0\0%\7W\0\377\6\377\0\377\7\377"
"\0\376\6\375\0\377\6\376\0\377\6\377\0\377\7\377\0\374\6\327\0\377\6\337"
"\0\376\6\332\0\377\6\363\0\377\6\377\0\376\6\377\0\377\7\377\0\377\5\371"
"\0\377\0\377\0\374\0\377\0\363\0\22\0\377\0\0\0\0\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0<\0\377\4\377"
"\0\370\3\374\0\377\3\377\0\377\3\377\0\377\3\377\0\377\3\377\0\377\3\377"
"\0\377\3\376\0\377\3\376\0\377\3\376\0\377\3\377\0\377\3\377\0\377\3\377"
"\0\377\3\377\0\377\2\377\0\377\0\200\0\367\0\0\0\377\0\1\0\17\0\0\0\0\34"
"\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0:h_\0\377\377\377\0\373\377\375\0\377\377\376\0\377\377\376\0"
"\377\377\376\0\377\377\376\0\377\377\376\0\377\377\376\0\377\377\376\0\377"
"\377\376\0\377\377\376\0\377\377\376\0\377\377\377\0\377\377\377\0\376\305"
"\255\0\377\0\0\0|\0\0\0\0\0\27\0\5\0\0\0\0\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\24\0\377\377"
"\377\0\374\354\376\0\377\370\377\0\377\367\377\0\377\367\377\0\377\367\377"
"\0\377\367\377\0\377\367\377\0\377\367\377\0\377\367\377\0\377\367\377\0"
"\377\367\377\0\377\367\377\0\377\366\377\0\377\362\377\0\377iq\0\360\0\0"
"\0G\0\0\0\0\0\3\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\15\0\373"
"\377\321\0\377\371\274\0\377\377\300\0\377\377\300\0\377\377\300\0\377\377"
"\300\0\377\377\300\0\377\377\300\0\377\377\300\0\377\377\300\0\377\377\300"
"\0\377\377\300\0\377\377\300\0\377\372\274\0\377\345\254\0\377\0\0\0\263"
"\0\0\0\0\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377\377\34"
"\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\13"
"\0\377\377\244\0\377\371\220\0\377\377\224\0\377\377\224\0\377\377\224\0"
"\377\377\224\0\377\377\224\0\377\377\224\0\377\377\224\0\377\377\224\0\377"
"\377\224\0\377\377\224\0\377\377\224\0\377\373\221\0\377\351\207\0\377\0"
"\0\0\277\0\0\0\0\14\10\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\22\13\0\377\377\251\0\377\371\225\0\377\377\230\0\377\377\230\0\377\377"
"\230\0\377\377\230\0\377\377\230\0\377\377\230\0\377\377\230\0\377\377\230"
"\0\377\377\230\0\377\377\230\0\377\377\230\0\377\373\226\0\377\347\212\0"
"\377\0\0\0\273\0\0\0\0\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\22\11\0\376\377\223\0\377\371\201\0\377\377\204\0\377\377\204\0\377"
"\377\204\0\377\377\204\0\377\377\204\0\377\377\204\0\377\377\204\0\377\377"
"\204\0\377\377\204\0\377\377\204\0\377\377\204\0\377\377\205\0\377\377\211"
"\0\376\267b\0\377\0\0\0\207\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377"
"\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\23\0\0\377\377\0\1\374\363\0\2\377\375\0\2\377\375\0\2\377"
"\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377"
"\375\0\2\377\375\0\2\377\375\0\2\377\375\0\2\377\377\0\2\377\312\0\2\377"
"\24\4\3\243\0\0\6W\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377"
"\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\1x\232\3\0\377\377\3\0\373\377"
"\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377"
"\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377\3\0\377\377"
"\3\0\377\377\2\0\375\333\0\0\377\217\0\0\377\23\0\0\233\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\34\227"
"\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\30\0\27\377\260"
"\0p\371\231\0d\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377"
"\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233\0e\377\233\0"
"e\377\231\0e\377\235\0c\376\301\0r\373\13\0\7\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34"
"\227\377\377\34\227\377\377\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\37\0\37\377\223\0\227\370}\0\200"
"\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0"
"\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377~\0\202\377"
"{\0\177\377\213\0\217\377\11\0\11\374\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\34\227"
"\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0""75\0""6\377\220\0\212\373\204\0|\377\204\0|\377\204"
"\0|\377\204\0|\377\204\0|\377\204\0|\377\204\0{\377\204\0|\377\204\0|\377"
"\204\0|\377\204\0|\377\204\0|\377\204\0{\377\204\0\200\375\200\0\200\377"
"\11\0\11\350\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\34\227\377\377\34\227\377\377\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/1\0%\371^\0\244"
"\377[\0\246\376Z\0\246\377Z\0\245\377Z\0\244\377Z\0\237\377[\0\272\374[\0"
"\274\374[\0\265\375Z\0\237\377Z\0\245\377Z\0\245\377Z\0\244\377Z\0\260\373"
"a\0\221\377\15\0\5\346\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\31\0"
"\0K\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\375\0\0\377\364\0\0\205"
"\377\0\0y\377\0\0\245\377\0\0\377\364\0\0\377\376\0\0\377\377\0\0\377\376"
"\0\0\377\377\0\0-\340\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313"
"\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313"
"\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313"
"\313\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\3\0\0\0\0\26\0\0\20\1\0*\377\1\0\377\372\1\0\377\376\1"
"\0\245\377\1\0.\377\4\0\0P\5\0\0?\3\0\12z\1\0'\377\1\0\333\377\1\0\377\377"
"\1\0\377\377\1\0\21\353\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0\0\313\313\313"
"\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313"
"\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313"
"\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313"
"\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
"\377\1\0\0\0\3\0\0\22\377\0\0\22\377\0\0\13\210\0\0\0\3\0\0\0\0\0\0\0\0\0"
"\0\0\3\0\0\0\0\0\0\17\300\0\0\21\377\0\0\21\357\0\0\0\0\0\0\377\1\0\0\0\1"
"\0\0\0\0\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\313\313\313\377\313\313\313\377\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\216\214\214\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\216\214\214\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313"
"\313\377\313\313\313\377\216\214\214\377\216\214\214\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\216\214\214\377\216\214\214\377\313\313"
"\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\216\214\214\377"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377\216\214\214\377"
"\216\214\214\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\216\214"
"\214\377\216\214\214\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377"
"\216\214\214\377\216\214\214\377\216\214\214\377\216\214\214\377\216\214"
"\214\377\216\214\214\377\216\214\214\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313"
"\313\377\313\313\313\377\313\313\313\377\313\313\313\377\313\313\313\377"
"\313\313\313\377\313\313\313\377\313\313\313\377\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0",
};

View File

@ -1,5 +1,5 @@
//
// GUI.CPP
// gui.cpp
//
// Graphical User Interface support
// by James Hammons
@ -23,9 +23,11 @@
#include "window.h"
#include "button.h"
#include "text.h"
#include "diskselector.h"
#include "diskwindow.h"
#include "video.h"
#include "apple2.h"
#include "applevideo.h"
// Debug support
//#define DEBUG_MAIN_LOOP
@ -59,8 +61,8 @@ GUI::GUI(SDL_Surface * surface): menuItem(new MenuItems())
windowList.push_back(new Window(30, 30, 200, 100));
windowList.push_back(new Window(30, 140, 200, 100));
windowList.push_back(new Button(30, 250, "Click!"));
windowList.push_back(new Text(30, 20, floppyDrive.GetImageName(0)));
windowList.push_back(new Text(30, 130, floppyDrive.GetImageName(1)));
windowList.push_back(new Text(30, 20, floppyDrive.ImageName(0)));
windowList.push_back(new Text(30, 130, floppyDrive.ImageName(1)));
windowList.push_back(new DiskWindow(&floppyDrive, 240, 20));
}
@ -502,12 +504,14 @@ struct Bitmap {
// Icons, in GIMP "C" format
#include "gfx/icon-selection.c"
#include "gfx/disk-icon.c"
#include "gfx/disk-1-icon.c"
#include "gfx/disk-2-icon.c"
#include "gfx/power-off-icon.c"
#include "gfx/power-on-icon.c"
#include "gfx/disk-swap-icon.c"
#include "gfx/disk-door-open.c"
#include "gfx/disk-door-closed.c"
#include "gfx/save-state-icon.c"
#include "gfx/load-state-icon.c"
#include "gfx/config-icon.c"
const char numeralOne[(7 * 7) + 1] =
@ -553,6 +557,7 @@ SDL_Rect GUI2::olDst;
int GUI2::sidebarState = SBS_HIDDEN;
int32_t GUI2::dx = 0;
int32_t GUI2::iconSelected = -1;
bool GUI2::hasKeyboardFocus = false;
int32_t lastIconSelected = -1;
SDL_Texture * iconSelection = NULL;
SDL_Texture * diskIcon = NULL;
@ -560,9 +565,19 @@ SDL_Texture * disk1Icon = NULL;
SDL_Texture * disk2Icon = NULL;
SDL_Texture * powerOnIcon = NULL;
SDL_Texture * powerOffIcon = NULL;
SDL_Texture * diskSwapIcon = NULL;
SDL_Texture * stateSaveIcon = NULL;
SDL_Texture * stateLoadIcon = NULL;
SDL_Texture * configIcon = NULL;
SDL_Texture * doorOpen = NULL;
SDL_Texture * doorClosed = NULL;
uint32_t texturePointer[128 * 380];
const char iconHelp[7][80] = { "Turn emulated Apple off/on",
"Insert floppy image into drive #1", "Insert floppy image into drive #2",
"Swap disks", "Save emulator state", "Load emulator state",
"Configure Apple2" };
#define SIDEBAR_X_POS (VIRTUAL_SCREEN_WIDTH - 80)
GUI2::GUI2(void)
@ -599,18 +614,22 @@ void GUI2::Init(SDL_Renderer * renderer)
olDst.w = 128;
olDst.h = 380;
iconSelection = CreateTexture(renderer, &icon_selection);
diskIcon = CreateTexture(renderer, &disk_icon);
doorOpen = CreateTexture(renderer, &door_open);
doorClosed = CreateTexture(renderer, &door_closed);
disk1Icon = CreateTexture(renderer, &disk_1);
disk2Icon = CreateTexture(renderer, &disk_2);
powerOffIcon = CreateTexture(renderer, &power_off);
powerOnIcon = CreateTexture(renderer, &power_on);
iconSelection = CreateTexture(renderer, &icon_selection);
diskIcon = CreateTexture(renderer, &disk_icon);
doorOpen = CreateTexture(renderer, &door_open);
doorClosed = CreateTexture(renderer, &door_closed);
disk1Icon = CreateTexture(renderer, &disk_icon);
disk2Icon = CreateTexture(renderer, &disk_icon);
powerOffIcon = CreateTexture(renderer, &power_off);
powerOnIcon = CreateTexture(renderer, &power_on);
diskSwapIcon = CreateTexture(renderer, &disk_swap);
stateSaveIcon = CreateTexture(renderer, &save_state);
stateLoadIcon = CreateTexture(renderer, &load_state);
configIcon = CreateTexture(renderer, &config);
// Set up drive icons in their current states
AssembleDriveIcon(renderer, 0);
AssembleDriveIcon(renderer, 1);
// AssembleDriveIcon(renderer, 0);
// AssembleDriveIcon(renderer, 1);
if (SDL_SetRenderTarget(renderer, overlay) < 0)
{
@ -623,6 +642,9 @@ void GUI2::Init(SDL_Renderer * renderer)
SDL_SetRenderTarget(renderer, NULL);
}
DiskSelector::Init(renderer);
DiskSelector::showWindow = true;
WriteLog("GUI: Successfully initialized.\n");
}
@ -657,7 +679,7 @@ void GUI2::MouseMove(int32_t x, int32_t y, uint32_t buttons)
{
iconSelected = -1;
if (x > (VIRTUAL_SCREEN_WIDTH - 100))
if (x > SIDEBAR_X_POS)
{
//printf("GUI: sidebar showing (x = %i)...\n", x);
sidebarState = SBS_SHOWING;
@ -672,7 +694,7 @@ void GUI2::MouseMove(int32_t x, int32_t y, uint32_t buttons)
}
else
{
if (x < (VIRTUAL_SCREEN_WIDTH - 100))
if (x < SIDEBAR_X_POS)
{
iconSelected = lastIconSelected = -1;
HandleIconSelection(sdlRenderer);
@ -695,6 +717,14 @@ void GUI2::MouseMove(int32_t x, int32_t y, uint32_t buttons)
{
HandleIconSelection(sdlRenderer);
lastIconSelected = iconSelected;
SpawnMessage("%s", iconHelp[iconSelected]);
// Show what's in the selected drive
if (iconSelected >= 1 && iconSelected <= 2)
{
if (!floppyDrive.IsEmpty(iconSelected - 1))
SpawnMessage("\"%s\"", floppyDrive.ImageName(iconSelected - 1));
}
}
}
}
@ -748,7 +778,7 @@ void GUI2::AssembleDriveIcon(SDL_Renderer * renderer, int driveNumber)
// Drive door @ (16, 7)
SDL_Rect dst;
dst.w = 8, dst.h = 10, dst.x = 16, dst.y = 7;
SDL_RenderCopy(renderer, (floppyDrive.DriveIsEmpty(driveNumber) ?
SDL_RenderCopy(renderer, (floppyDrive.IsEmpty(driveNumber) ?
doorOpen : doorClosed), NULL, &dst);
// Numeral @ (30, 20)
@ -763,7 +793,7 @@ void GUI2::AssembleDriveIcon(SDL_Renderer * renderer, int driveNumber)
void GUI2::DrawEjectButton(SDL_Renderer * renderer, int driveNumber)
{
if (floppyDrive.DriveIsEmpty(driveNumber))
if (floppyDrive.IsEmpty(driveNumber))
return;
DrawCharArray(renderer, ejectIcon, 29, 31, 8, 7, 0x00, 0xAA, 0x00);
@ -807,10 +837,9 @@ void GUI2::HandleGUIState(void)
{
olDst.x += dx;
if (olDst.x < (VIRTUAL_SCREEN_WIDTH - 100) && sidebarState == SBS_SHOWING)
if (olDst.x < SIDEBAR_X_POS && sidebarState == SBS_SHOWING)
{
olDst.x = VIRTUAL_SCREEN_WIDTH - 100;
// sidebarOut = true;
olDst.x = SIDEBAR_X_POS;
sidebarState = SBS_SHOWN;
dx = 0;
}
@ -825,8 +854,8 @@ void GUI2::HandleGUIState(void)
void GUI2::DrawSidebarIcons(SDL_Renderer * renderer)
{
SDL_Texture * icons[7] = { powerOnIcon, disk1Icon, disk2Icon, powerOffIcon,
powerOffIcon, powerOffIcon, powerOffIcon };
SDL_Texture * icons[7] = { powerOnIcon, disk1Icon, disk2Icon, diskSwapIcon,
stateSaveIcon, stateLoadIcon, configIcon };
SDL_Rect dst;
dst.w = dst.h = 40, dst.x = 24, dst.y = 2 + 7;
@ -850,6 +879,9 @@ void GUI2::Render(SDL_Renderer * renderer)
HandleIconSelection(renderer);
SDL_RenderCopy(renderer, overlay, NULL, &olDst);
// Hmm.
DiskSelector::Render(renderer);
}

View File

@ -64,6 +64,7 @@ class GUI2
static int sidebarState;
static int32_t dx;
static int32_t iconSelected;
static bool hasKeyboardFocus;
};