[ADD] GRRLIB_DrawTileQuad()

[ADD] GRRLIB_addon_Init()
[ADD] GRRLIB_addon_Exit()
[ADD] GRRLIB_addon_Button
[ADD] nonameno03 sample code howto use button
[ADD] Font and button gfx for addon use
This commit is contained in:
N0NameN0 2009-03-22 23:51:26 +00:00
parent 609bc1b0e1
commit 948bf1de99
15 changed files with 873 additions and 1 deletions

View file

@ -39,6 +39,7 @@ inline void GRRLIB_Circle(f32 x, f32 y, f32 radius, u32 color, u8 filled);
inline void GRRLIB_DrawImg(f32 xpos, f32 ypos, struct GRRLIB_texImg *tex, float degrees, float scaleX, f32 scaleY, u32 color );
inline void GRRLIB_DrawImgQuad(Vector pos[4], struct GRRLIB_texImg *tex, u32 color);
inline void GRRLIB_DrawTile(f32 xpos, f32 ypos, struct GRRLIB_texImg *tex, float degrees, float scaleX, f32 scaleY, u32 color, int frame);
inline void GRRLIB_DrawTileQuad(Vector pos[4], struct GRRLIB_texImg *tex, u32 color,int frame);
/**
@ -722,6 +723,69 @@ inline void GRRLIB_DrawTile(f32 xpos, f32 ypos, struct GRRLIB_texImg *tex, float
GX_SetVtxDesc(GX_VA_TEX0, GX_NONE);
}
/**
* Draw a tile in a quad.
* @param pos Vector array of the 4 points.
* @param tex The texture to draw.
* @param color Color in RGBA format.
* @param frame Specifies the frame to draw.
*/
inline void GRRLIB_DrawTileQuad(Vector pos[4], struct GRRLIB_texImg *tex, u32 color, int frame) {
if (tex == NULL || tex->data == NULL) { return; }
GXTexObj texObj;
Mtx m, m1, m2, mv;
// Frame Correction by spiffen
f32 FRAME_CORR = 0.001f;
f32 s1 = (((frame%tex->nbtilew))/(f32)tex->nbtilew)+(FRAME_CORR/tex->w);
f32 s2 = (((frame%tex->nbtilew)+1)/(f32)tex->nbtilew)-(FRAME_CORR/tex->w);
f32 t1 = (((int)(frame/tex->nbtilew))/(f32)tex->nbtileh)+(FRAME_CORR/tex->h);
f32 t2 = (((int)(frame/tex->nbtilew)+1)/(f32)tex->nbtileh)-(FRAME_CORR/tex->h);
GX_InitTexObj(&texObj, tex->data, tex->tilew*tex->nbtilew, tex->tileh*tex->nbtileh, GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
if (GRRLIB_Settings.antialias == false) {
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR, 0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
}
GX_LoadTexObj(&texObj, GX_TEXMAP0);
GX_SetTevOp(GX_TEVSTAGE0, GX_MODULATE);
GX_SetVtxDesc(GX_VA_TEX0, GX_DIRECT);
guMtxIdentity(m1);
guMtxScaleApply(m1, m1, 1, 1, 1.0f);
Vector axis = (Vector) {0, 0, 1 };
guMtxRotAxisDeg(m2, &axis, 0);
guMtxConcat(m2, m1, m);
guMtxConcat(GXmodelView2D, m, mv);
GX_LoadPosMtxImm(mv, GX_PNMTX0);
GX_Begin(GX_QUADS, GX_VTXFMT0, 4);
GX_Position3f32(pos[0].x, pos[0].y, 0);
GX_Color1u32(color);
GX_TexCoord2f32(s1, t1);
GX_Position3f32(pos[1].x, pos[1].y, 0);
GX_Color1u32(color);
GX_TexCoord2f32(s2, t1);
GX_Position3f32(pos[2].x, pos[2].y, 0);
GX_Color1u32(color);
GX_TexCoord2f32(s2, t2);
GX_Position3f32(pos[3].x, pos[3].y, 0);
GX_Color1u32(color);
GX_TexCoord2f32(s1, t2);
GX_End();
GX_LoadPosMtxImm(GXmodelView2D, GX_PNMTX0);
GX_SetTevOp(GX_TEVSTAGE0, GX_PASSCLR);
GX_SetVtxDesc(GX_VA_TEX0, GX_NONE);
}
/**
* Print formatted output.
* @param xpos Specifies the x-coordinate of the upper-left corner of the text.

View file

@ -121,6 +121,7 @@ void GRRLIB_InitTileSet(struct GRRLIB_texImg *tex, unsigned int tilew, unsigned
extern void GRRLIB_DrawImg(f32 xpos, f32 ypos, struct GRRLIB_texImg *tex, float degrees, float scaleX, f32 scaleY, u32 color );
extern void GRRLIB_DrawImgQuad(Vector pos[4], struct GRRLIB_texImg *tex, u32 color);
extern void GRRLIB_DrawTile(f32 xpos, f32 ypos, struct GRRLIB_texImg *tex, float degrees, float scaleX, f32 scaleY, u32 color, int frame);
extern void GRRLIB_DrawTileQuad(Vector pos[4], struct GRRLIB_texImg *tex, u32 color,int frame);
void GRRLIB_Printf(f32 xpos, f32 ypos, struct GRRLIB_texImg *tex, u32 color, f32 zoom, const char *text, ...);
void GRRLIB_PrintBMF(f32 xpos, f32 ypos, struct GRRLIB_bytemapFont *bmf, f32 zoom, const char *text, ...);

View file

@ -14,10 +14,34 @@
#include "GRRLIB.h"
#include <fat.h>
#include "GRRLIB_addon/GRRLIBfont.h"
#include "GRRLIB_addon/GRRLIBbutton.h"
extern u32 fb;
extern void *xfb[2];
extern GXRModeObj *rmode;
GRRLIB_texImg *tex_GRRLIBfont;
GRRLIB_texImg *tex_GRRLIBbutton;
/**
* Initalize all addon requirement
*/
void GRRLIB_addon_Init(){
tex_GRRLIBfont = GRRLIB_LoadTexture(GRRLIBfont);
GRRLIB_InitTileSet(tex_GRRLIBfont, 16, 19, 32);
tex_GRRLIBbutton = GRRLIB_LoadTexture(GRRLIBbutton);
GRRLIB_InitTileSet(tex_GRRLIBbutton, 4, 24, 0);
}
/**
* Free all addon requirement
*/
void GRRLIB_addon_Exit(){
GRRLIB_FreeTexture(tex_GRRLIBfont);
GRRLIB_FreeTexture(tex_GRRLIBbutton);
}
/**
* Load a texture from a file.
@ -58,3 +82,52 @@ bool GRRLIB_ScrShot(const char* File) {
return !ErrorCode;
}
/**
* Easy Button Maker.
* @param indice Index number of your button.
* @param x top-left corner X position of the button.
* @param y top-left corner Y position of the button.
* @param col color of your button.
* @param wpadx your X wpad posistion.
* @param wpady your Y wpad posistion.
* @param WPADDown your wpad button Down Status.
* @param WPADHeld your wpad button Held Status.
* @param but The wpad button you want to check.
* @param resdown You will find here the downed button index number.
* @param resheld You will find here the helded button index number.
* @param toto Text on the button.
*/
void GRRLIB_addon_Button(int indice, int x,int y,u32 col, int wpadx, int wpady, u32 WPADDown, u32 WPADHeld, int but, int *resdown, int *resheld, char toto[]){
int butwidth=strlen(toto)*16+8;
Vector bg[]={{x+4,y,0},{x+4+strlen(toto)*16,y,0},{x+4+strlen(toto)*16,y+24,0},{x+4,y+24,0}};
if((toto[0]=='^') && ((toto[1]=='U') || (toto[1]=='D') || (toto[1]=='L') || (toto[1]=='R'))){
butwidth=1*16+8;
bg[1].x=x+4+1*16;
bg[2].x=x+4+1*16;
}
GRRLIB_DrawTile(x,y, tex_GRRLIBbutton , 0, 1, 1, col,0 );
GRRLIB_DrawTileQuad(bg, tex_GRRLIBbutton, col,1 );
GRRLIB_DrawTile(bg[1].x,y, tex_GRRLIBbutton , 0, 1, 1, col,2);
if(GRRLIB_PtInRect(x, y, butwidth, 24, wpadx, wpady)) {
if((toto[0]=='^') && (toto[1]=='U')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFFFF, 1, "%c", 0xa1);
else if((toto[0]=='^') && (toto[1]=='D')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFFFF, 1, "%c", 0xa2);
else if((toto[0]=='^') && (toto[1]=='L')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFFFF, 1, "%c", 0xa3);
else if((toto[0]=='^') && (toto[1]=='R')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFFFF, 1, "%c", 0xa4);
else GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFFFF, 1, toto);
if(WPADDown & but) {
*resdown=indice;
}
if(WPADHeld & but) {
*resheld=indice;
}
}
else{
if((toto[0]=='^') && (toto[1]=='U')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFF77, 1, "%c", 0xa1);
else if((toto[0]=='^') && (toto[1]=='D')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFF77, 1, "%c", 0xa2);
else if((toto[0]=='^') && (toto[1]=='L')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFF77, 1, "%c", 0xa3);
else if((toto[0]=='^') && (toto[1]=='R')) GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFF77, 1, "%c", 0xa4);
else GRRLIB_Printf(x+4, y+2, tex_GRRLIBfont, 0xFFFFFF77, 1, toto);
}
}

View file

@ -18,9 +18,11 @@
extern "C" {
#endif /* __cplusplus */
void GRRLIB_addon_Init();
void GRRLIB_addon_Exit();
GRRLIB_texImg *GRRLIB_LoadTextureFromFile(const char *filename);
bool GRRLIB_ScrShot(const char*);
void GRRLIB_addon_Button(int indice, int x,int y,u32 col, int wpadx, int wpady, u32 WPADDown, u32 WPADHeld, int but, int *resdown, int *resheld, char toto[]);
#ifdef __cplusplus

View file

@ -0,0 +1,32 @@
/*
This file was autogenerated by raw2c.
Visit http://www.devkitpro.org
*/
const unsigned char GRRLIBbutton[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xce, 0x32, 0x1c,
0x6a, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00,
0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93,
0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00, 0x00, 0x0b, 0x13,
0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd9, 0x03,
0x13, 0x02, 0x17, 0x23, 0x58, 0x89, 0x44, 0x6c, 0x00, 0x00, 0x00, 0xf9, 0x49, 0x44, 0x41, 0x54,
0x38, 0xcb, 0xed, 0x93, 0xcd, 0x8d, 0xc5, 0x20, 0x0c, 0x84, 0x07, 0x30, 0x01, 0x29, 0x8d, 0xa4,
0xac, 0x94, 0x96, 0x0a, 0x52, 0x4f, 0x0a, 0x48, 0x0b, 0xf9, 0x01, 0x0c, 0xde, 0x43, 0x44, 0xf4,
0x0e, 0x79, 0x64, 0xf7, 0xbe, 0x96, 0x10, 0x17, 0x7f, 0xf2, 0x8c, 0x19, 0x14, 0x00, 0x2c, 0xcb,
0x22, 0x22, 0x02, 0x11, 0xc1, 0x53, 0x29, 0xa5, 0xa0, 0x94, 0xc2, 0x30, 0x0c, 0x4a, 0xcd, 0xf3,
0x2c, 0x31, 0x46, 0xe4, 0x9c, 0x91, 0x73, 0x7e, 0x04, 0x8c, 0x31, 0x30, 0xc6, 0xa0, 0xeb, 0x3a,
0xd0, 0xbe, 0xef, 0x08, 0x21, 0x80, 0x99, 0x9b, 0x00, 0x11, 0x81, 0x99, 0x41, 0xc7, 0x71, 0xe0,
0x3c, 0x4f, 0xa4, 0x94, 0x9a, 0x80, 0xb5, 0x16, 0xa5, 0x14, 0x50, 0x8c, 0x11, 0x21, 0x84, 0x57,
0xa0, 0x94, 0x02, 0xad, 0xf5, 0x05, 0xc4, 0x18, 0x5f, 0x01, 0x11, 0xb9, 0xa4, 0xa5, 0x94, 0x50,
0x0f, 0x33, 0x3f, 0x02, 0x44, 0x74, 0xdf, 0x14, 0x42, 0x40, 0x9d, 0xf2, 0x0d, 0xc8, 0x39, 0x43,
0x44, 0x2e, 0x49, 0xcc, 0x8c, 0xea, 0xa3, 0x94, 0xf2, 0x15, 0xb8, 0x27, 0x7c, 0xca, 0x69, 0x79,
0xd0, 0x5a, 0x23, 0xa5, 0x74, 0x01, 0xcc, 0xfc, 0xea, 0xe1, 0x06, 0x6a, 0x73, 0x6b, 0x4b, 0x55,
0xbf, 0xb5, 0x16, 0xb4, 0xae, 0x2b, 0xb6, 0x6d, 0xc3, 0x79, 0x9e, 0xcd, 0x09, 0xde, 0x7b, 0xf4,
0x7d, 0x0f, 0x8d, 0x3f, 0xd6, 0x3f, 0xf0, 0x2b, 0xa0, 0xfe, 0xd7, 0xb7, 0xaa, 0x7d, 0x54, 0x73,
0x52, 0x23, 0xdc, 0x8a, 0x86, 0x31, 0x06, 0xe4, 0x9c, 0xbb, 0x5f, 0xd8, 0x5a, 0xfb, 0x2c, 0x43,
0x6b, 0x78, 0xef, 0xe1, 0x9c, 0x83, 0x02, 0x80, 0x71, 0x1c, 0x25, 0x84, 0xd0, 0x4c, 0xab, 0x73,
0x0e, 0xd3, 0x34, 0xa9, 0x1f, 0x23, 0x30, 0xc3, 0x86, 0xb8, 0x36, 0x6a, 0xe5, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82
};
const int GRRLIBbutton_size = sizeof(GRRLIBbutton);

View file

@ -0,0 +1,14 @@
/*
This file was autogenerated by raw2c.
Visit http://www.devkitpro.org
*/
//---------------------------------------------------------------------------------
#ifndef _GRRLIBbutton_h_
#define _GRRLIBbutton_h_
//---------------------------------------------------------------------------------
extern const unsigned char GRRLIBbutton[];
extern const int GRRLIBbutton_size;
//---------------------------------------------------------------------------------
#endif //_GRRLIBbutton_h_
//---------------------------------------------------------------------------------

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 B

View file

@ -0,0 +1,231 @@
/*
This file was autogenerated by raw2c.
Visit http://www.devkitpro.org
*/
const unsigned char GRRLIBfont[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x08, 0x06, 0x00, 0x00, 0x00, 0xf8, 0xea, 0xc8,
0x46, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00,
0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93,
0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00, 0x00, 0x0b, 0x13,
0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd9, 0x03,
0x13, 0x04, 0x1a, 0x0a, 0xab, 0x18, 0xde, 0xff, 0x00, 0x00, 0x0d, 0x67, 0x49, 0x44, 0x41, 0x54,
0x78, 0xda, 0xed, 0x9d, 0xdb, 0x8e, 0xe4, 0xaa, 0x0e, 0x40, 0xbb, 0xba, 0xf3, 0xff, 0x5f, 0x9c,
0x52, 0xce, 0x53, 0xb6, 0x18, 0x0e, 0x10, 0x03, 0x36, 0x18, 0xb2, 0x96, 0x34, 0xd2, 0xa8, 0x3a,
0xdc, 0x6d, 0xc0, 0xe6, 0xf6, 0xf9, 0x31, 0xe0, 0x3c, 0xcf, 0x2b, 0xfe, 0xed, 0x38, 0x8e, 0x4f,
0x4b, 0x98, 0x96, 0xb8, 0xb4, 0xf2, 0x1f, 0xa6, 0x5f, 0x4a, 0xf3, 0xba, 0xae, 0xff, 0xf2, 0xf8,
0xf9, 0x7c, 0x8a, 0x79, 0xbb, 0xae, 0xeb, 0xfa, 0x7e, 0xbf, 0xff, 0x94, 0xe3, 0x0e, 0x7f, 0xff,
0x1e, 0xf3, 0xf7, 0xf7, 0x27, 0x8a, 0xbb, 0xa7, 0xfe, 0x53, 0xe5, 0x49, 0xe5, 0xa7, 0xa5, 0x1d,
0x6b, 0xf3, 0x0f, 0x76, 0xb4, 0xc8, 0x5f, 0x4b, 0x5b, 0xa6, 0xe2, 0xcc, 0xc9, 0x4e, 0x6f, 0xfa,
0x3d, 0xe1, 0x9f, 0x74, 0xa5, 0xe5, 0xef, 0x52, 0xb4, 0xea, 0x7f, 0xf5, 0xf0, 0xf0, 0xaf, 0x5e,
0xd6, 0xd6, 0xd3, 0xca, 0xed, 0x5f, 0xab, 0x3f, 0xde, 0xd2, 0xef, 0xd5, 0xff, 0xd9, 0xfd, 0x87,
0x74, 0xae, 0x50, 0x33, 0xa7, 0xb0, 0x98, 0xb3, 0xf5, 0xce, 0x0f, 0xad, 0xe6, 0x97, 0x16, 0xe9,
0xff, 0xfd, 0xfd, 0xfd, 0x9f, 0xde, 0x97, 0xd2, 0x79, 0xb3, 0xfe, 0x8d, 0x4e, 0x5f, 0x5b, 0xfe,
0xe2, 0x7e, 0x3f, 0xd5, 0xfe, 0xa5, 0x6f, 0xb4, 0xd3, 0x97, 0xd6, 0xef, 0x9d, 0x7e, 0x6f, 0x78,
0x8d, 0xfe, 0xaf, 0x66, 0x2e, 0x96, 0x0b, 0x93, 0xd2, 0x39, 0x8d, 0x3e, 0xaa, 0xd7, 0x0e, 0xb3,
0x9e, 0x27, 0x1d, 0x5e, 0x27, 0x44, 0xb7, 0x20, 0x49, 0x7f, 0x8f, 0x1b, 0x20, 0x37, 0x49, 0x4f,
0x35, 0x40, 0xae, 0x03, 0x09, 0xc3, 0x85, 0x82, 0x12, 0x0a, 0x78, 0xac, 0x00, 0xa5, 0x46, 0x4b,
0x29, 0x72, 0xea, 0xb7, 0x3b, 0x8f, 0x77, 0x9a, 0xf7, 0xdf, 0x5b, 0x05, 0xa2, 0x54, 0x67, 0x92,
0x3c, 0xf6, 0xd2, 0x9b, 0x7f, 0xb0, 0x31, 0x32, 0x5a, 0xda, 0x5b, 0xd2, 0x96, 0x35, 0x71, 0xf6,
0xa6, 0x6f, 0x91, 0xff, 0xd9, 0x6d, 0x32, 0xb2, 0xfc, 0x6f, 0xaf, 0x7f, 0x2f, 0xc4, 0x75, 0xf9,
0xfd, 0x7e, 0x7f, 0xfe, 0xfe, 0xfe, 0x1e, 0xeb, 0xe9, 0x6d, 0xed, 0xef, 0x2d, 0xfd, 0xd5, 0xfb,
0x8f, 0xb7, 0xea, 0x5b, 0xcd, 0x9c, 0xa8, 0xa5, 0x4d, 0x9e, 0x0c, 0xb8, 0x55, 0xdb, 0xff, 0xed,
0xfa, 0xbf, 0xab, 0x2e, 0xc4, 0xe3, 0x4e, 0xae, 0xde, 0x52, 0xba, 0xd3, 0x1b, 0xde, 0x03, 0xdf,
0xef, 0xd7, 0x95, 0x4c, 0xdc, 0x72, 0x6d, 0x9d, 0xa7, 0xc3, 0xab, 0x40, 0x8e, 0xea, 0xb4, 0x47,
0x75, 0x20, 0x39, 0x4f, 0x59, 0x4b, 0xda, 0xa3, 0x07, 0xba, 0x1a, 0xaf, 0x95, 0xd6, 0xea, 0x28,
0xd8, 0xca, 0x79, 0x49, 0x2e, 0xa4, 0x1e, 0x64, 0x4d, 0x39, 0xd5, 0x4c, 0xbf, 0x37, 0xfc, 0x48,
0x7d, 0xf1, 0x58, 0xfe, 0xd5, 0xeb, 0x7f, 0x84, 0xde, 0x58, 0x0c, 0xca, 0xad, 0x4e, 0x00, 0xe4,
0xc7, 0x7f, 0xf8, 0x95, 0xfa, 0x8f, 0xdd, 0xc7, 0x3e, 0xef, 0xf4, 0x4e, 0xfc, 0xd1, 0x3f, 0x79,
0xf8, 0xde, 0xdd, 0x2e, 0xda, 0x06, 0x78, 0xec, 0x44, 0x0a, 0x77, 0x17, 0xd7, 0xce, 0xe9, 0x25,
0x32, 0x94, 0x4b, 0xa3, 0x94, 0x7e, 0x38, 0xfe, 0xf5, 0x86, 0x97, 0xd4, 0x6b, 0x6e, 0x07, 0x81,
0x46, 0x5f, 0x1a, 0x3b, 0x2f, 0x34, 0xf5, 0xae, 0xb5, 0xcf, 0x8d, 0xe7, 0x00, 0x96, 0x4e, 0x80,
0x5f, 0xaf, 0xc6, 0x7f, 0x5c, 0xe0, 0xa7, 0x89, 0x57, 0x5c, 0xd9, 0xe7, 0x79, 0x5e, 0xf7, 0xbf,
0xda, 0x46, 0x39, 0x8e, 0xe3, 0x13, 0xff, 0xb3, 0x32, 0xbe, 0x6a, 0x0c, 0xf4, 0x5a, 0x63, 0xbe,
0x65, 0xb2, 0x6a, 0x39, 0x50, 0x4a, 0xe3, 0x3e, 0xcf, 0xf3, 0x0a, 0x3b, 0x8e, 0xeb, 0xba, 0x2e,
0x9c, 0x09, 0x36, 0xf2, 0x97, 0x6b, 0x93, 0x9c, 0xfe, 0x48, 0xda, 0xb2, 0x46, 0x5f, 0x5a, 0xe5,
0x2d, 0xec, 0x20, 0x2d, 0x65, 0x71, 0xc4, 0x64, 0x6f, 0x66, 0xf9, 0x3d, 0xd7, 0x7f, 0x49, 0xfe,
0xa4, 0xfd, 0x48, 0x4f, 0xf8, 0x91, 0xc6, 0x7f, 0x38, 0x31, 0x4a, 0xe9, 0x67, 0x6e, 0x22, 0xb5,
0x73, 0xfb, 0xaf, 0x90, 0xfe, 0xea, 0xfd, 0xc7, 0x1b, 0xd1, 0xd8, 0xee, 0x2b, 0x31, 0xe0, 0x47,
0x38, 0x1f, 0xde, 0xae, 0x7f, 0xab, 0xcb, 0x7f, 0x4a, 0x0e, 0xe3, 0xbc, 0xa5, 0xf2, 0xaa, 0x2d,
0xbf, 0xa5, 0x39, 0xa1, 0xc4, 0xf0, 0xee, 0x0d, 0x6f, 0x61, 0xfc, 0xb7, 0x96, 0x3d, 0x37, 0xd6,
0xce, 0x98, 0xab, 0x5b, 0xe7, 0xc9, 0xcd, 0x0e, 0x80, 0x9c, 0xd1, 0x60, 0x7d, 0xde, 0xbf, 0xb7,
0x03, 0x89, 0xbd, 0x5c, 0xb1, 0x62, 0xce, 0x98, 0x44, 0x5a, 0xd7, 0xd9, 0x88, 0x01, 0x3a, 0x14,
0xfa, 0xdc, 0xb6, 0x22, 0xf0, 0x69, 0xc4, 0x8c, 0x94, 0xd5, 0xd5, 0x65, 0x7d, 0x76, 0xff, 0x98,
0x5a, 0x7d, 0xa8, 0x1d, 0x34, 0xd1, 0x1b, 0xfd, 0x49, 0xa1, 0xc6, 0x4e, 0x80, 0x9e, 0xf6, 0xab,
0x39, 0x57, 0x3b, 0x6b, 0x8c, 0xa0, 0x9f, 0xa0, 0xfc, 0xbb, 0xf6, 0x5b, 0xde, 0xb6, 0x24, 0x23,
0xff, 0x63, 0xe6, 0xbc, 0xa9, 0x3e, 0xb8, 0x45, 0x7e, 0x43, 0x07, 0x54, 0xcf, 0x2e, 0x00, 0x89,
0xd3, 0xa2, 0x37, 0x7c, 0x8b, 0xf1, 0xaf, 0xa5, 0x17, 0x77, 0xde, 0x35, 0x77, 0x02, 0x68, 0xce,
0x39, 0xac, 0xf3, 0x74, 0xec, 0xa4, 0xe0, 0x2d, 0x77, 0x00, 0x48, 0x27, 0xc0, 0xa5, 0x0e, 0x44,
0x7a, 0x16, 0x3a, 0x25, 0xbc, 0xa9, 0x73, 0x4c, 0xf1, 0xaa, 0xd5, 0xdb, 0x2e, 0xce, 0x8a, 0xeb,
0xc4, 0xda, 0x63, 0x8f, 0x11, 0xc3, 0x44, 0x0e, 0xf6, 0x9b, 0xb4, 0xb5, 0x86, 0x6f, 0xd5, 0x1b,
0xcd, 0x4b, 0x80, 0xa4, 0x4e, 0x00, 0x8d, 0x8b, 0x35, 0x4b, 0x46, 0x08, 0xc0, 0xca, 0xe3, 0x5f,
0x28, 0xc7, 0x23, 0xc7, 0xbf, 0x7b, 0xc2, 0xde, 0xea, 0x5c, 0xf5, 0xae, 0x7b, 0xb3, 0xc7, 0xdf,
0x3b, 0xfd, 0x15, 0xea, 0x4a, 0xda, 0xd7, 0xc7, 0xf2, 0x93, 0x2b, 0x9b, 0x54, 0x7e, 0x6b, 0x17,
0xce, 0x52, 0x67, 0xf9, 0x6b, 0x56, 0xde, 0x7b, 0xc3, 0x8f, 0x36, 0xfe, 0xbd, 0x39, 0x01, 0x52,
0x65, 0x8d, 0xf3, 0xa4, 0x3e, 0xc7, 0x62, 0x98, 0xa8, 0x9b, 0xc8, 0xd5, 0xdc, 0x82, 0x2e, 0x11,
0xde, 0xd2, 0x20, 0xf1, 0x46, 0xc3, 0x37, 0xbe, 0xf8, 0xf0, 0xfe, 0xbf, 0xe4, 0x35, 0x06, 0xcf,
0x72, 0xa3, 0x65, 0xd4, 0xec, 0x68, 0xfc, 0x5b, 0xac, 0x36, 0xce, 0x3c, 0x32, 0xd2, 0xdb, 0x7f,
0x68, 0xf4, 0x3f, 0xb5, 0x83, 0x5f, 0xc9, 0x01, 0x59, 0xea, 0x97, 0x76, 0x98, 0x80, 0x69, 0xe9,
0x8d, 0xb6, 0x6e, 0x5b, 0x5c, 0x0c, 0x28, 0x2d, 0x4f, 0xfc, 0x52, 0x48, 0x8d, 0x3e, 0xf5, 0xea,
0x5e, 0x8d, 0xfc, 0xed, 0x38, 0x0e, 0x68, 0x8c, 0x23, 0x3d, 0x71, 0xac, 0x7e, 0xdc, 0x2e, 0x35,
0x87, 0x18, 0x29, 0x33, 0x29, 0xc3, 0xa7, 0xa5, 0x8f, 0x9c, 0xb5, 0x12, 0x39, 0xbb, 0xfd, 0x2d,
0xfb, 0x0f, 0xcf, 0xf3, 0xa0, 0x27, 0x39, 0xa9, 0x5d, 0xfd, 0x97, 0x8c, 0x07, 0x25, 0x27, 0x44,
0xee, 0x3b, 0x8b, 0xf0, 0xb3, 0x8c, 0x7f, 0x6f, 0x4e, 0x80, 0xb8, 0xac, 0x71, 0x9e, 0x70, 0x00,
0x18, 0x35, 0xbc, 0xd4, 0x00, 0x69, 0xb9, 0x05, 0xbd, 0x56, 0x78, 0xef, 0x06, 0x0f, 0x05, 0xb0,
0xf4, 0x5a, 0x00, 0xc0, 0xca, 0xc6, 0x7f, 0x4d, 0xe7, 0xb6, 0xfa, 0x2e, 0x06, 0x6f, 0xb7, 0x90,
0xb7, 0xac, 0x52, 0x3d, 0x0d, 0x8c, 0x5c, 0xf8, 0x67, 0xef, 0x04, 0xa8, 0x1e, 0xe8, 0x37, 0x1a,
0x2b, 0xd8, 0x1e, 0x0d, 0x2b, 0xc8, 0x4c, 0xcf, 0xa4, 0xdd, 0xab, 0x63, 0xd5, 0x43, 0x9f, 0x18,
0x3a, 0x73, 0x2c, 0xe6, 0xef, 0xb3, 0xed, 0x90, 0x92, 0xfc, 0xd4, 0xac, 0xfe, 0xb7, 0x8c, 0x17,
0xb9, 0x15, 0x67, 0x69, 0x1c, 0xbd, 0xe1, 0x67, 0x18, 0xff, 0x9e, 0x9c, 0x00, 0x71, 0x59, 0xad,
0x9d, 0x00, 0xdb, 0x38, 0x00, 0xa4, 0x97, 0xfd, 0x9d, 0xe7, 0x79, 0xc5, 0x93, 0x21, 0x49, 0xe3,
0xc6, 0xf1, 0xe5, 0x1a, 0xa3, 0x76, 0x12, 0x59, 0x5a, 0xa9, 0x09, 0x9d, 0x00, 0x6f, 0x19, 0xa8,
0xc3, 0xb7, 0x6d, 0x57, 0x3b, 0x02, 0xe0, 0x61, 0x92, 0xbd, 0xc3, 0xb6, 0x7f, 0x8d, 0x7a, 0xd4,
0xba, 0x91, 0x55, 0x2b, 0xaf, 0xab, 0xbf, 0x62, 0x90, 0x4b, 0xbf, 0x76, 0x02, 0xb6, 0xb3, 0xf1,
0x6f, 0xb1, 0x03, 0xa8, 0xe6, 0xf5, 0x0e, 0x0d, 0xc3, 0x63, 0xb4, 0xfc, 0x78, 0x94, 0xff, 0xd9,
0xfd, 0xd7, 0xec, 0xfe, 0x6f, 0x97, 0xfa, 0x8f, 0xfb, 0xa5, 0x91, 0x93, 0xf9, 0x7b, 0xfe, 0xd6,
0xe2, 0xac, 0x8b, 0xfb, 0xd4, 0xd1, 0xaf, 0x18, 0xcc, 0x9e, 0xc7, 0xc4, 0xe9, 0xc7, 0x73, 0xc1,
0x16, 0xa3, 0x78, 0x15, 0xf9, 0xcd, 0x19, 0x7a, 0x2d, 0x72, 0xd4, 0x62, 0x34, 0x96, 0xce, 0xa0,
0x3f, 0xe5, 0xe1, 0x69, 0x17, 0x80, 0x64, 0xd7, 0xf4, 0x2c, 0xe3, 0xdf, 0x83, 0x13, 0x20, 0x57,
0xd6, 0x30, 0x4f, 0x38, 0x00, 0x36, 0x9f, 0x44, 0xa6, 0x84, 0xf0, 0x6d, 0x97, 0xe0, 0xdd, 0xf5,
0x18, 0x3e, 0x95, 0xc8, 0x8a, 0xcf, 0x9e, 0xc6, 0xff, 0x5b, 0xcf, 0x19, 0x7b, 0xb9, 0x85, 0x5c,
0xe3, 0x16, 0xe5, 0x1d, 0x26, 0x60, 0x1a, 0x37, 0x2d, 0x6b, 0x4f, 0x9c, 0x5b, 0xf5, 0x59, 0x23,
0x1f, 0xf7, 0xd8, 0xe3, 0xb5, 0xdd, 0xb8, 0x9f, 0x00, 0x24, 0xf3, 0xa8, 0x58, 0x8f, 0x46, 0xcc,
0x25, 0x52, 0x17, 0x43, 0xb7, 0xe8, 0xd1, 0x6e, 0xc7, 0xab, 0x7a, 0xea, 0x33, 0x3c, 0xd6, 0xa1,
0x71, 0x21, 0xaa, 0xc7, 0x7a, 0xed, 0x35, 0xa0, 0x73, 0x65, 0x93, 0x94, 0x55, 0xba, 0xc8, 0x68,
0xa5, 0x3b, 0x1e, 0x8c, 0x7f, 0x0f, 0x4e, 0x80, 0xde, 0x23, 0x16, 0xb5, 0xfc, 0xee, 0xd2, 0x49,
0xc4, 0x93, 0x9e, 0xdc, 0x13, 0x7e, 0x29, 0xcf, 0x78, 0xfc, 0xcf, 0x6a, 0xb2, 0x76, 0x05, 0x48,
0x05, 0x21, 0x34, 0x82, 0xdf, 0x64, 0x1c, 0xdd, 0xab, 0xfe, 0xf7, 0xb3, 0x58, 0xa3, 0xcb, 0x5f,
0xd3, 0x56, 0x1e, 0xd2, 0xdf, 0xf9, 0xc2, 0x3f, 0x4b, 0xb8, 0x4c, 0x10, 0x72, 0x72, 0xe0, 0xe9,
0x39, 0xa0, 0x5a, 0x7d, 0xd6, 0xe8, 0xbf, 0xd0, 0x0d, 0xd8, 0x95, 0x11, 0xba, 0xdd, 0xa3, 0x3f,
0xa1, 0x9e, 0xe3, 0x04, 0xf0, 0x6f, 0xbc, 0x5b, 0xca, 0x4d, 0xeb, 0xea, 0x7f, 0x6d, 0xd8, 0xdc,
0x25, 0x74, 0x35, 0xf5, 0x5e, 0x32, 0x60, 0x57, 0x30, 0xfe, 0x73, 0xf6, 0x57, 0xe8, 0x04, 0x18,
0x6d, 0xfc, 0x4b, 0xff, 0xde, 0x64, 0x37, 0x33, 0xf1, 0xeb, 0x7f, 0x06, 0x4b, 0x6a, 0xfc, 0x87,
0xdf, 0xd4, 0x3c, 0xcf, 0xf1, 0x36, 0x4f, 0x70, 0xcb, 0x11, 0x0d, 0xcb, 0xc9, 0xf7, 0xe8, 0xdd,
0x07, 0xb5, 0xe9, 0xbf, 0xd9, 0xf8, 0x4f, 0x39, 0xec, 0x7a, 0x57, 0x40, 0x9f, 0x9c, 0x80, 0x2b,
0x5c, 0x48, 0xb9, 0x72, 0xfd, 0x6b, 0xd5, 0x73, 0x4d, 0xf8, 0x11, 0x4f, 0xef, 0x8d, 0x34, 0xfe,
0x7b, 0xfb, 0xaf, 0xdd, 0xfa, 0x0e, 0x4b, 0x39, 0x05, 0xdf, 0xed, 0x12, 0xaf, 0xc0, 0x8f, 0xd8,
0x51, 0x79, 0xf7, 0x27, 0xbd, 0x7a, 0xb4, 0xfa, 0xdc, 0x2f, 0x37, 0x96, 0x6a, 0xd5, 0xff, 0x6e,
0x7a, 0x9d, 0x5b, 0xe9, 0x6d, 0x91, 0x23, 0xe9, 0xaa, 0x71, 0xe9, 0xb9, 0xbe, 0xdc, 0xf3, 0x7e,
0x5a, 0xe3, 0x83, 0x47, 0xe3, 0xbf, 0x64, 0x7f, 0xed, 0xb6, 0x1b, 0xd9, 0xc4, 0x01, 0x30, 0x4b,
0x01, 0xb5, 0xde, 0xca, 0xae, 0xd9, 0x05, 0xa0, 0x75, 0xe1, 0x5f, 0xad, 0x12, 0x5b, 0x0d, 0x60,
0x96, 0x03, 0x0e, 0x2b, 0x4a, 0xfe, 0x8c, 0x85, 0x5c, 0x7b, 0x3f, 0xe9, 0x8c, 0x97, 0xb6, 0xec,
0x75, 0xe0, 0xf5, 0x9e, 0x61, 0x6f, 0xbd, 0x9c, 0xb3, 0xf7, 0x19, 0xa3, 0xde, 0xfa, 0xd7, 0x4a,
0x7f, 0x56, 0xfe, 0xa5, 0xed, 0x52, 0x93, 0x8e, 0x07, 0x27, 0xc0, 0x68, 0x67, 0x9e, 0xb4, 0xfd,
0x52, 0x4f, 0xd3, 0xce, 0xbe, 0x08, 0xcc, 0x83, 0xfe, 0xac, 0xde, 0xff, 0xbd, 0x3d, 0xff, 0x9e,
0x0d, 0x6c, 0x89, 0x01, 0xe7, 0xbd, 0xfe, 0x5a, 0x5e, 0x11, 0x91, 0x10, 0xde, 0x09, 0xb0, 0xa2,
0xfc, 0x48, 0x9f, 0xd4, 0xeb, 0x59, 0xfd, 0xaf, 0xc9, 0x63, 0xe9, 0x9e, 0x99, 0xda, 0xbb, 0x00,
0x5a, 0xdb, 0xd2, 0x93, 0xf1, 0xff, 0x16, 0x27, 0x80, 0x89, 0x03, 0x60, 0x25, 0xaf, 0x5c, 0xad,
0x01, 0x10, 0x0b, 0xa8, 0x85, 0xf0, 0x4a, 0x2f, 0x1c, 0x1c, 0x45, 0x98, 0x1f, 0x8d, 0xe7, 0x87,
0xbc, 0xb3, 0x92, 0xc7, 0x7d, 0x84, 0xfc, 0xcd, 0x94, 0xb7, 0x62, 0xe7, 0xa5, 0xf4, 0x8c, 0x55,
0xed, 0x93, 0x7c, 0xd6, 0x3a, 0xb0, 0xf3, 0x33, 0x4c, 0x55, 0x83, 0xd3, 0x84, 0x31, 0x63, 0xa6,
0x13, 0xc0, 0xcb, 0x4e, 0x9e, 0xb7, 0xcb, 0xdf, 0xa8, 0xf0, 0x56, 0xf2, 0xbd, 0xcb, 0x33, 0x7e,
0xb3, 0xc6, 0x78, 0xad, 0xf6, 0xd3, 0xd2, 0xdb, 0x5a, 0x23, 0x73, 0x05, 0xfd, 0xb5, 0xec, 0xd3,
0x56, 0xef, 0xbf, 0x52, 0x77, 0x48, 0xb4, 0xc4, 0x91, 0x8a, 0x2b, 0x35, 0xe6, 0xb4, 0x84, 0xd7,
0x1a, 0x0f, 0x73, 0xf7, 0x15, 0x68, 0x5d, 0xa8, 0x1b, 0xc7, 0xd3, 0xd2, 0xe7, 0xe6, 0x9c, 0x00,
0x3b, 0xf4, 0xbb, 0x5c, 0x02, 0x98, 0x50, 0xb0, 0x70, 0xeb, 0xa8, 0x74, 0x1b, 0xe9, 0xd3, 0x64,
0x2d, 0xa7, 0xd4, 0xbd, 0x0e, 0x88, 0xd9, 0x0e, 0x11, 0xe9, 0x00, 0x36, 0x63, 0x22, 0xbb, 0x6a,
0xbe, 0x5b, 0x06, 0x80, 0xde, 0x0b, 0x27, 0xbd, 0xc8, 0x9f, 0xb5, 0xbc, 0x6a, 0xe7, 0xbf, 0x37,
0xfd, 0xd1, 0xf9, 0xd7, 0x4e, 0xdf, 0xab, 0xfc, 0x84, 0xf7, 0x88, 0xac, 0xe0, 0x04, 0xd0, 0x34,
0xfe, 0x6b, 0xfa, 0x8f, 0xd5, 0xf4, 0xdf, 0x9b, 0xfe, 0xbc, 0xbd, 0xff, 0x7b, 0x5b, 0xff, 0x3d,
0xb3, 0x7e, 0x76, 0xaa, 0xbf, 0xd4, 0x6b, 0x5c, 0x6f, 0x1c, 0xff, 0x25, 0xdf, 0x8e, 0x74, 0x86,
0xe5, 0xd2, 0xb4, 0xde, 0x05, 0xb0, 0x82, 0x8d, 0xb8, 0xe3, 0x71, 0x6c, 0xce, 0xc0, 0x01, 0x00,
0x00, 0x18, 0x1a, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x70, 0x02, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xc1, 0x2a, 0x06, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x22, 0xb4, 0x5e, 0x3e, 0x78, 0x1c, 0xc7, 0x47, 0x7c, 0x8b,
0xf6, 0xc8, 0x1b, 0x6b, 0x3d, 0xbe, 0x18, 0x30, 0x32, 0x9f, 0xa5, 0x4b, 0x45, 0xb4, 0xd3, 0x1c,
0xf5, 0x8e, 0x7a, 0x4b, 0x9c, 0x92, 0x78, 0x3c, 0xe7, 0x1f, 0xf6, 0xe9, 0x50, 0x69, 0xff, 0xb5,
0xc8, 0xf5, 0xa1, 0x2d, 0x37, 0x07, 0xd7, 0xb4, 0x7f, 0xea, 0xb9, 0xbc, 0x9f, 0x1f, 0xd9, 0x91,
0x81, 0x30, 0xcf, 0x71, 0xb8, 0xdc, 0x4b, 0x2c, 0x57, 0x39, 0xc2, 0x9f, 0x9f, 0x42, 0xb2, 0x9f,
0x52, 0xf8, 0xf0, 0xde, 0xb1, 0x4c, 0x1c, 0x9f, 0xa7, 0xf4, 0x1f, 0xd0, 0x08, 0x0f, 0x00, 0x00,
0x00, 0x0d, 0x4e, 0x80, 0xd4, 0x8f, 0xbb, 0xdd, 0x74, 0xb8, 0xda, 0xc4, 0x95, 0xba, 0x07, 0x00,
0x58, 0xbf, 0x0f, 0xbd, 0xf3, 0xf1, 0xf4, 0x82, 0x40, 0x9c, 0xe7, 0x5c, 0x38, 0xf1, 0xed, 0xcb,
0xb7, 0x01, 0xff, 0xe0, 0x04, 0x30, 0x6c, 0x04, 0x9d, 0x74, 0x67, 0xe5, 0x1f, 0x00, 0x00, 0xe0,
0x6d, 0x0e, 0x00, 0x9c, 0x00, 0xce, 0x1a, 0x69, 0xb1, 0xd5, 0x47, 0xad, 0xfc, 0xb2, 0xea, 0x0a,
0x00, 0x2b, 0xf5, 0x25, 0x77, 0x3a, 0x3d, 0x6f, 0x02, 0x1f, 0xc7, 0xf1, 0xdf, 0x33, 0x84, 0xdf,
0xef, 0xb7, 0x3e, 0xae, 0xf8, 0xd5, 0xb0, 0xd1, 0x46, 0xf4, 0x75, 0xe9, 0xc7, 0x87, 0x13, 0x00,
0x00, 0x00, 0xc0, 0xd6, 0x01, 0xd0, 0xf2, 0xe6, 0xa1, 0x74, 0x92, 0x22, 0xd9, 0x12, 0x59, 0x8a,
0x2b, 0x15, 0xbe, 0xf5, 0x1d, 0xd7, 0x7b, 0xb2, 0xd6, 0xfb, 0x0e, 0xac, 0xd6, 0x3b, 0xa0, 0xe7,
0x79, 0x26, 0x57, 0xae, 0xee, 0xfa, 0xc8, 0x4d, 0x62, 0x7b, 0xcb, 0xdf, 0x5b, 0xff, 0x92, 0xf0,
0x56, 0x47, 0x00, 0x66, 0xc4, 0xd5, 0x22, 0xf7, 0xb9, 0xfa, 0xeb, 0x0d, 0xdf, 0x2b, 0x7f, 0xa3,
0xd3, 0x2f, 0xd5, 0xbf, 0x34, 0x9e, 0xd6, 0x70, 0x12, 0xfd, 0x93, 0xb4, 0x73, 0x98, 0xbe, 0x54,
0xae, 0x4a, 0xdf, 0x95, 0x6e, 0x9a, 0x4f, 0x95, 0x2d, 0x7c, 0xdf, 0xbe, 0x37, 0xfd, 0x54, 0xda,
0xa9, 0xba, 0xc9, 0x7d, 0xa7, 0x51, 0xfe, 0x16, 0x63, 0x39, 0x97, 0xcf, 0x9e, 0x7e, 0xdc, 0x92,
0xa7, 0x3c, 0xc5, 0x7f, 0x8f, 0xdb, 0x5e, 0x7c, 0x94, 0x20, 0x67, 0x7c, 0x8f, 0x32, 0xa2, 0xb5,
0x8d, 0x7f, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x63, 0x1c, 0x00, 0xa2, 0x89, 0x46, 0xe7, 0x44, 0xe8,
0x69, 0x4b, 0xa4, 0x34, 0x7c, 0xef, 0x76, 0xcf, 0xd1, 0xe1, 0x7b, 0xcb, 0xaf, 0x9d, 0xff, 0xd1,
0xed, 0xe7, 0x05, 0xf1, 0x56, 0xda, 0xcd, 0xe4, 0xdf, 0x9b, 0xfe, 0xf5, 0xca, 0xf1, 0x6c, 0xfd,
0xd3, 0x94, 0xc7, 0x3b, 0x6f, 0xa1, 0xc1, 0x97, 0x32, 0xfe, 0xad, 0xd3, 0x8e, 0xeb, 0x26, 0xe7,
0xa0, 0x78, 0x9b, 0xee, 0x9a, 0x0e, 0xc4, 0x09, 0xa7, 0x49, 0xb5, 0x7c, 0x3e, 0x19, 0xdf, 0xd6,
0x46, 0xb4, 0x95, 0xf1, 0x8f, 0x13, 0x00, 0x00, 0x00, 0x60, 0x8c, 0x03, 0x40, 0x63, 0x02, 0x13,
0x52, 0xb3, 0xca, 0x23, 0x5d, 0x41, 0x6a, 0xcd, 0xcb, 0x8c, 0xf4, 0x25, 0xe1, 0x8f, 0xe3, 0xf8,
0x68, 0xac, 0x54, 0xcf, 0xca, 0x3f, 0xfc, 0x5b, 0x7f, 0xe7, 0x79, 0x5e, 0x2d, 0xab, 0x9c, 0xb3,
0xdb, 0xcf, 0x8b, 0xfc, 0xb4, 0xea, 0x71, 0x8f, 0xfe, 0xe5, 0xbe, 0xb5, 0xdc, 0x42, 0x1e, 0xae,
0xf6, 0xc6, 0xce, 0x8d, 0xdc, 0xf7, 0x96, 0x4e, 0x80, 0xd1, 0xc6, 0x77, 0xa9, 0x6e, 0xe3, 0x1d,
0x10, 0x2d, 0xe9, 0xcf, 0x70, 0x18, 0x0c, 0x3f, 0x42, 0x27, 0x35, 0xbe, 0xad, 0x8c, 0xe8, 0xeb,
0x1a, 0x57, 0x4e, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x1c, 0x00, 0xb5, 0xf4, 0x4e, 0x8e, 0xc2,
0x15, 0x2b, 0x0f, 0xf9, 0x18, 0x9d, 0xae, 0x76, 0x3c, 0xab, 0xa4, 0x2b, 0xa1, 0xf7, 0x08, 0xc3,
0x1b, 0xe4, 0xdf, 0x8b, 0xfe, 0x8d, 0x92, 0xa7, 0x15, 0xee, 0x93, 0x48, 0xed, 0x02, 0xb0, 0x5e,
0x79, 0x0f, 0x9d, 0x0f, 0x77, 0x7a, 0xf7, 0x2e, 0x80, 0xb8, 0x6d, 0xc2, 0xf4, 0x47, 0xe8, 0x4f,
0xc9, 0xf8, 0xcf, 0xa5, 0x9f, 0xd2, 0xfd, 0xda, 0xbc, 0x6a, 0xd4, 0x73, 0xea, 0x78, 0x44, 0xe8,
0x10, 0x9c, 0x6a, 0x7c, 0x6b, 0x1b, 0xd1, 0xa5, 0x63, 0x07, 0xe5, 0x4a, 0x6a, 0x73, 0x1c, 0xe0,
0x04, 0x00, 0x00, 0x00, 0x98, 0xef, 0x00, 0xe8, 0x3d, 0x43, 0x0f, 0x30, 0xda, 0xf0, 0x5e, 0xfd,
0x08, 0x03, 0xe4, 0x59, 0xc1, 0x01, 0x54, 0x32, 0xc4, 0x9f, 0xbe, 0xab, 0xa9, 0x07, 0x89, 0xc1,
0x99, 0x73, 0x02, 0x84, 0x0e, 0x88, 0x15, 0x8c, 0xff, 0x52, 0x5c, 0x35, 0x61, 0x66, 0x1e, 0x69,
0x69, 0x14, 0x9e, 0xb2, 0xf1, 0xbd, 0xf2, 0xb6, 0x7f, 0x9c, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x1c,
0x00, 0x3c, 0x5b, 0x57, 0x67, 0x80, 0xc0, 0x00, 0xa1, 0xe6, 0x08, 0xc3, 0x6b, 0xc8, 0x5d, 0x94,
0xf7, 0x64, 0xdc, 0x79, 0x75, 0x00, 0xc5, 0xbb, 0x00, 0x62, 0xc7, 0xc5, 0x48, 0x07, 0x44, 0xaa,
0x3e, 0xbd, 0x1b, 0xff, 0xb9, 0x63, 0x54, 0x5e, 0xfb, 0x25, 0x17, 0x48, 0xee, 0x0e, 0xc8, 0x39,
0x1d, 0x5a, 0x57, 0xf1, 0xfb, 0x05, 0x96, 0xce, 0x0f, 0x00, 0x00, 0x60, 0x96, 0x03, 0x00, 0x03,
0x0c, 0x56, 0x04, 0xa7, 0xd5, 0x5e, 0x4e, 0x80, 0xa7, 0x6f, 0x56, 0xe8, 0x7f, 0x9e, 0x76, 0x01,
0x58, 0x1a, 0xdf, 0xb9, 0xd7, 0x06, 0xe2, 0x23, 0x09, 0xd6, 0x8e, 0x13, 0xcd, 0x95, 0xff, 0x99,
0xba, 0xbe, 0x54, 0xff, 0x52, 0x6b, 0xc4, 0xc7, 0xcd, 0x90, 0x0b, 0x2f, 0x69, 0xae, 0xa7, 0x6f,
0x5a, 0xe3, 0x05, 0x00, 0x00, 0x00, 0x3b, 0x07, 0x00, 0x86, 0x54, 0xa2, 0x52, 0x79, 0xbf, 0x1e,
0xc0, 0x35, 0x9e, 0xfb, 0xad, 0x11, 0x67, 0xff, 0x25, 0xc6, 0xff, 0x68, 0x27, 0x80, 0x85, 0xf1,
0x0f, 0xca, 0x4e, 0x80, 0x5c, 0x33, 0x8c, 0xda, 0x09, 0x80, 0x18, 0x00, 0x00, 0x00, 0xcc, 0x77,
0x00, 0x00, 0x40, 0x46, 0xb9, 0x70, 0x04, 0x99, 0x33, 0xfa, 0xc6, 0x7e, 0x7b, 0xfb, 0x26, 0xbd,
0x0b, 0xc0, 0xca, 0x00, 0xce, 0x19, 0xff, 0xb9, 0x67, 0x00, 0xad, 0x9c, 0x00, 0x18, 0xff, 0x0b,
0x38, 0x01, 0x9e, 0x9a, 0xc1, 0xda, 0x09, 0x80, 0x18, 0x00, 0x00, 0x00, 0xa8, 0xf0, 0xdb, 0x1b,
0x41, 0xeb, 0xea, 0x54, 0xef, 0xaa, 0x56, 0xb8, 0x42, 0x35, 0x23, 0xff, 0x5a, 0xe1, 0x67, 0xd5,
0x3f, 0xec, 0x51, 0xa7, 0xab, 0xeb, 0x9f, 0xc7, 0xf2, 0xd7, 0xc4, 0x69, 0x55, 0x7e, 0x69, 0xfd,
0x6a, 0x94, 0xbf, 0x64, 0xfc, 0xdf, 0x06, 0x78, 0xe9, 0x7b, 0x6f, 0xc6, 0xbf, 0x47, 0xfd, 0x5d,
0xa6, 0x4f, 0x29, 0xad, 0xf0, 0xcf, 0x34, 0xd2, 0x31, 0xfe, 0x01, 0x00, 0x00, 0xd4, 0x30, 0xd9,
0x01, 0xd0, 0x7b, 0xde, 0x76, 0x54, 0xf8, 0xdc, 0x4a, 0xe1, 0xec, 0xf4, 0x67, 0xd7, 0x3f, 0xac,
0xcd, 0x2a, 0xfa, 0xe7, 0xb5, 0xfc, 0x4f, 0x71, 0x3e, 0xe9, 0x6d, 0x6f, 0xfa, 0xf1, 0x2e, 0x80,
0x5a, 0x23, 0x38, 0x4c, 0xff, 0x29, 0x2f, 0x35, 0xc6, 0x7c, 0xee, 0x82, 0x42, 0x8d, 0xf2, 0x87,
0xf1, 0x85, 0xff, 0x2f, 0xc5, 0x55, 0xd3, 0x7f, 0xde, 0xf1, 0x58, 0xef, 0x0e, 0xd9, 0xa2, 0xef,
0x8d, 0x57, 0xf2, 0x6b, 0x8d, 0x6f, 0xed, 0x9d, 0x00, 0x18, 0xff, 0x00, 0x00, 0x00, 0xbe, 0x1c,
0x00, 0xb5, 0xb7, 0x70, 0xf7, 0x3e, 0xc3, 0x15, 0x87, 0xaf, 0x4d, 0xbf, 0x37, 0xff, 0xda, 0xe1,
0x47, 0xd7, 0x3f, 0xec, 0x55, 0xa7, 0xab, 0xeb, 0x9f, 0xc7, 0xf2, 0xd7, 0xc4, 0xb9, 0x5b, 0xf9,
0x4b, 0xbf, 0xe7, 0x8e, 0x26, 0xf4, 0x96, 0x5f, 0xbb, 0xde, 0x3c, 0xe9, 0xaf, 0xd7, 0x67, 0x27,
0xc5, 0x46, 0x7c, 0x6b, 0xb6, 0xb5, 0x8a, 0x8b, 0xf1, 0x0f, 0x00, 0x00, 0xa0, 0x3f, 0xcc, 0x53,
0x05, 0xef, 0x20, 0x5e, 0x99, 0x4a, 0x6d, 0xf5, 0x25, 0xcf, 0xc8, 0xc5, 0xcf, 0x8f, 0xcd, 0x2a,
0xe9, 0x6e, 0x67, 0xf5, 0x01, 0x5d, 0x06, 0x00, 0x00, 0x00, 0x58, 0x11, 0x2e, 0x01, 0xdc, 0xd8,
0x90, 0xa3, 0x1c, 0x00, 0x80, 0xde, 0x02, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x80, 0x97, 0xb2, 0xe2,
0x96, 0xd4, 0x65, 0xb7, 0xd1, 0x02, 0x00, 0xba, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0e, 0xa9, 0x5b,
0xa3, 0x6b, 0xc2, 0xde, 0x50, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xfc, 0x5a,
0x1b, 0xff, 0xb3, 0x0c, 0x78, 0xad, 0x74, 0x71, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x0e, 0x00, 0xa1, 0xd1, 0x3c, 0xda, 0x88, 0xd6, 0x4e, 0x0f, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0xe0, 0x00, 0x10, 0x1a, 0xcb, 0xa3, 0x8c, 0x68, 0xab, 0x74, 0x70, 0x02, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0xa1, 0x91, 0x6c, 0x6d, 0x44, 0xaf, 0x1e, 0x3f, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7b, 0x07, 0x80, 0xd4, 0x38, 0x5e, 0x7d, 0x85, 0x1e, 0x27,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xc8, 0x67, 0x96, 0x51, 0xfc, 0xf9, 0x7c, 0x3e,
0xd2, 0x38, 0x6b, 0xbe, 0xad, 0xcd, 0x43, 0x4f, 0x58, 0xc4, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x56, 0xe1, 0xd0, 0x88, 0x24, 0x65, 0x0c, 0xd7, 0x18, 0xf0, 0x3d, 0xcc, 0x7c, 0x65, 0x00,
0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbc, 0xca, 0x01, 0x60, 0x6d, 0xc4, 0xa7, 0xfe,
0x7e, 0x1b, 0xdf, 0x3d, 0xab, 0xf8, 0x3d, 0x60, 0xfc, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0,
0x4a, 0x0c, 0x59, 0x99, 0x97, 0x18, 0xcb, 0x35, 0x46, 0xfc, 0xd3, 0x8e, 0x03, 0x4d, 0x23, 0xdd,
0x2a, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x91, 0xfc, 0x7a, 0xc9, 0x88, 0xd4, 0xa8,
0xce, 0x7d, 0x37, 0xca, 0x28, 0xc7, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00,
0xc6, 0xc6, 0x75, 0xef, 0xdf, 0x31, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
0x73, 0x27, 0x40, 0xef, 0x0e, 0x01, 0x8c, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x01,
0xe0, 0xdc, 0x09, 0x50, 0x6b, 0x7c, 0x6b, 0x1b, 0xeb, 0x18, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x19, 0xae, 0x80, 0x9e, 0x38, 0xa8, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0,
0xc3, 0xff, 0x00, 0xe2, 0xe6, 0xa1, 0xf3, 0xf8, 0x5f, 0xec, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x49,
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82
};
const int GRRLIBfont_size = sizeof(GRRLIBfont);

View file

@ -0,0 +1,14 @@
/*
This file was autogenerated by raw2c.
Visit http://www.devkitpro.org
*/
//---------------------------------------------------------------------------------
#ifndef _GRRLIBfont_h_
#define _GRRLIBfont_h_
//---------------------------------------------------------------------------------
extern const unsigned char GRRLIBfont[];
extern const int GRRLIBfont_size;
//---------------------------------------------------------------------------------
#endif //_GRRLIBfont_h_
//---------------------------------------------------------------------------------

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,140 @@
#---------------------------------------------------------------------------------
# Clear the implicit built in rules
#---------------------------------------------------------------------------------
.SUFFIXES:
#---------------------------------------------------------------------------------
ifeq ($(strip $(DEVKITPPC)),)
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC)
endif
include $(DEVKITPPC)/wii_rules
#---------------------------------------------------------------------------------
# TARGET is the name of the output
# BUILD is the directory where object files & intermediate files will be placed
# SOURCES is a list of directories containing source code
# INCLUDES is a list of directories containing extra header files
#---------------------------------------------------------------------------------
GRRLIB := ../../GRRLIB
TARGET := $(notdir $(CURDIR))
BUILD := build
SOURCES := source source/gfx $(GRRLIB)/GRRLIB $(GRRLIB)/GRRLIB/GRRLIB_addon $(GRRLIB)/lib/libpng/pngu
DATA := data
INCLUDES :=
#---------------------------------------------------------------------------------
# options for code generation
#---------------------------------------------------------------------------------
CFLAGS = -g -O2 -mrvl -Wall $(MACHDEP) $(INCLUDE)
CXXFLAGS = $(CFLAGS)
LDFLAGS = -g $(MACHDEP) -mrvl -Wl,-Map,$(notdir $@).map
#---------------------------------------------------------------------------------
# any extra libraries we wish to link with the project
#---------------------------------------------------------------------------------
LIBS := -lpng -ljpeg -lz -lfat -lwiiuse -lbte -logc -lm
#---------------------------------------------------------------------------------
# list of directories containing libraries, this must be the top level containing
# include and lib
#---------------------------------------------------------------------------------
LIBDIRS := $(CURDIR)/$(GRRLIB)
#---------------------------------------------------------------------------------
# no real need to edit anything past this point unless you need to add additional
# rules for different file extensions
#---------------------------------------------------------------------------------
ifneq ($(BUILD),$(notdir $(CURDIR)))
#---------------------------------------------------------------------------------
export OUTPUT := $(CURDIR)/$(TARGET)
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
export DEPSDIR := $(CURDIR)/$(BUILD)
#---------------------------------------------------------------------------------
# automatically build a list of object files for our project
#---------------------------------------------------------------------------------
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
#---------------------------------------------------------------------------------
# use CXX for linking C++ projects, CC for standard C
#---------------------------------------------------------------------------------
ifeq ($(strip $(CPPFILES)),)
export LD := $(CC)
else
export LD := $(CXX)
endif
export OFILES := $(addsuffix .o,$(BINFILES)) \
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
$(sFILES:.s=.o) $(SFILES:.S=.o)
#---------------------------------------------------------------------------------
# build a list of include paths
#---------------------------------------------------------------------------------
export INCLUDE := $(foreach dir,$(INCLUDES), -iquote $(CURDIR)/$(dir)) \
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
-I$(CURDIR)/$(BUILD) \
-I$(LIBOGC_INC)
#---------------------------------------------------------------------------------
# build a list of library paths
#---------------------------------------------------------------------------------
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
-L$(LIBOGC_LIB)
export OUTPUT := $(CURDIR)/$(TARGET)
.PHONY: $(BUILD) clean
#---------------------------------------------------------------------------------
$(BUILD):
@[ -d $@ ] || mkdir -p $@
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
#---------------------------------------------------------------------------------
clean:
@echo clean ...
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
#---------------------------------------------------------------------------------
run:
psoload $(TARGET).dol
#---------------------------------------------------------------------------------
reload:
psoload -r $(TARGET).dol
#---------------------------------------------------------------------------------
else
DEPENDS := $(OFILES:.o=.d)
#---------------------------------------------------------------------------------
# main targets
#---------------------------------------------------------------------------------
$(OUTPUT).dol: $(OUTPUT).elf
$(OUTPUT).elf: $(OFILES)
#---------------------------------------------------------------------------------
# This rule links in binary data with the .jpg extension
#---------------------------------------------------------------------------------
%.jpg.o : %.jpg
#---------------------------------------------------------------------------------
@echo $(notdir $<)
$(bin2o)
-include $(DEPENDS)
#---------------------------------------------------------------------------------
endif
#---------------------------------------------------------------------------------

View file

@ -0,0 +1,221 @@
/*
This file was autogenerated by raw2c.
Visit http://www.devkitpro.org
*/
const unsigned char pointer[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x40, 0x08, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x69, 0x71,
0xde, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00,
0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93,
0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00, 0x00, 0x0b, 0x13,
0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd9, 0x03,
0x11, 0x00, 0x10, 0x32, 0xd4, 0xf5, 0xee, 0xbc, 0x00, 0x00, 0x0c, 0xc1, 0x49, 0x44, 0x41, 0x54,
0x78, 0xda, 0xed, 0x9b, 0x7b, 0x70, 0x54, 0x75, 0x96, 0xc7, 0x3f, 0xbf, 0x9b, 0xee, 0x74, 0xd2,
0x09, 0x49, 0xe8, 0x00, 0x09, 0x20, 0x22, 0x84, 0xd7, 0x0e, 0x0f, 0x1f, 0xbc, 0xcb, 0xc7, 0x8c,
0x05, 0x05, 0xb3, 0xac, 0x82, 0xa5, 0x35, 0x85, 0x50, 0x1b, 0xad, 0xb5, 0x94, 0x92, 0x5a, 0xc5,
0x5d, 0x28, 0x05, 0xd1, 0xa5, 0x28, 0xac, 0x5a, 0x5d, 0xdc, 0x5a, 0x9c, 0x2a, 0xc1, 0x2d, 0x44,
0x6a, 0x70, 0x78, 0x09, 0x99, 0x71, 0x23, 0xc3, 0x64, 0x86, 0x09, 0x4b, 0x60, 0x46, 0xcd, 0x2a,
0xba, 0xc8, 0x23, 0x71, 0x49, 0x60, 0x00, 0x49, 0x24, 0x9d, 0xee, 0xdb, 0x9d, 0x74, 0x3a, 0xb7,
0x3b, 0x4d, 0xff, 0xce, 0xfe, 0xc1, 0x2f, 0x4c, 0xd6, 0x25, 0x90, 0x04, 0x48, 0xb0, 0xcc, 0xa9,
0xfa, 0x55, 0xa7, 0x6e, 0xe7, 0xde, 0xfb, 0xfb, 0x9d, 0xf7, 0xf9, 0x9e, 0xd3, 0xd0, 0x4b, 0xbd,
0xd4, 0x4b, 0xbd, 0xd4, 0x4b, 0x3f, 0x5c, 0x52, 0x3d, 0xfc, 0x6e, 0xcb, 0xfc, 0xad, 0x01, 0xe9,
0x89, 0x4d, 0xa4, 0xf4, 0xd0, 0xe1, 0x2d, 0x20, 0x07, 0xb8, 0x03, 0x18, 0x04, 0xc4, 0x81, 0x96,
0x9e, 0x62, 0x42, 0x4f, 0x90, 0x17, 0xf8, 0xe9, 0x13, 0x4f, 0x3c, 0x91, 0x78, 0xe1, 0x85, 0x17,
0x12, 0xc0, 0x5f, 0x9b, 0x6b, 0x3f, 0x18, 0xb3, 0xeb, 0x0f, 0xec, 0x16, 0x11, 0x2d, 0x22, 0xda,
0xb2, 0xac, 0x3d, 0xe6, 0x5a, 0xb7, 0x9b, 0xa4, 0xab, 0x9b, 0x0e, 0xec, 0x02, 0xd2, 0x8c, 0x94,
0xdd, 0x40, 0x3e, 0x90, 0xd1, 0x7a, 0x60, 0x11, 0x49, 0x07, 0x86, 0x9a, 0xff, 0x89, 0x03, 0xcd,
0xe6, 0x33, 0xf1, 0x7d, 0x66, 0x40, 0x0a, 0x90, 0x0e, 0x64, 0x03, 0xfd, 0x80, 0x07, 0x81, 0xe9,
0x77, 0xdd, 0x75, 0xd7, 0xd8, 0x51, 0xa3, 0x46, 0x0d, 0xcd, 0xca, 0xca, 0x4a, 0x4f, 0x26, 0x93,
0x00, 0x3c, 0xfd, 0xf4, 0xd3, 0x3f, 0x09, 0x85, 0x42, 0xfb, 0x2b, 0x2a, 0x2a, 0xfe, 0x5c, 0x51,
0x51, 0x71, 0x02, 0xf8, 0x13, 0x70, 0x08, 0x08, 0x01, 0x0d, 0x80, 0x63, 0x1c, 0xe5, 0xf7, 0x82,
0x2c, 0x20, 0x13, 0xb8, 0x1d, 0x58, 0x90, 0x95, 0x95, 0x75, 0x60, 0xc9, 0x92, 0x25, 0x52, 0x5a,
0x5a, 0x2a, 0x2d, 0x2d, 0x2d, 0x12, 0x8f, 0xc7, 0x25, 0x12, 0x89, 0x48, 0x38, 0x1c, 0x96, 0x60,
0x30, 0x28, 0xc1, 0x60, 0x50, 0xc2, 0xe1, 0xb0, 0x34, 0x36, 0x36, 0x4a, 0x2c, 0x16, 0x13, 0xc7,
0x71, 0x64, 0xcf, 0x9e, 0x3d, 0xb2, 0x68, 0xd1, 0x22, 0xed, 0x72, 0xb9, 0x7e, 0x07, 0xcc, 0x05,
0x86, 0xb4, 0xd5, 0x98, 0x5b, 0xd9, 0xb6, 0xd3, 0x81, 0xc1, 0xc0, 0x9c, 0xdc, 0xdc, 0xdc, 0xf2,
0x8d, 0x1b, 0x37, 0x8a, 0xd6, 0x5a, 0x87, 0xc3, 0x61, 0x09, 0x87, 0xc3, 0xe2, 0x38, 0x8e, 0x3e,
0x7a, 0xf4, 0xa8, 0x6c, 0xdf, 0xbe, 0x5d, 0xde, 0x78, 0xe3, 0x0d, 0xa9, 0xaf, 0xaf, 0x17, 0xbf,
0xdf, 0x2f, 0x6b, 0xd7, 0xae, 0x95, 0x5d, 0xbb, 0x76, 0x49, 0x65, 0x65, 0xa5, 0x44, 0xa3, 0x51,
0x6d, 0xdb, 0xb6, 0x84, 0x42, 0x21, 0xb9, 0x78, 0xf1, 0xa2, 0x5e, 0xbb, 0x76, 0xad, 0xa4, 0xa5,
0xa5, 0xfd, 0x1e, 0x98, 0x09, 0x0c, 0x04, 0x3c, 0xb7, 0xaa, 0xd4, 0xfb, 0x02, 0x93, 0x53, 0x52,
0x52, 0x7e, 0xf5, 0xfa, 0xeb, 0xaf, 0x4b, 0x3c, 0x1e, 0xd7, 0xc1, 0x60, 0x50, 0x9a, 0x9a, 0x9a,
0xf4, 0x07, 0x1f, 0x7c, 0x20, 0x8f, 0x3d, 0xf6, 0x58, 0xb4, 0x4f, 0x9f, 0x3e, 0xff, 0x09, 0xac,
0x05, 0x96, 0x02, 0x07, 0x5a, 0x19, 0x00, 0xfc, 0x11, 0x58, 0x0e, 0xac, 0xf3, 0xf9, 0x7c, 0x87,
0x1e, 0x7f, 0xfc, 0xf1, 0x64, 0x71, 0x71, 0xb1, 0x34, 0x35, 0x35, 0xe9, 0x40, 0x20, 0x20, 0x91,
0x48, 0x44, 0x56, 0xae, 0x5c, 0x29, 0xc0, 0x36, 0xcb, 0xb2, 0xc6, 0x02, 0x59, 0xb7, 0x92, 0x36,
0xa4, 0x18, 0x1b, 0x7f, 0x78, 0xca, 0x94, 0x29, 0xd1, 0x60, 0x30, 0x28, 0xb6, 0x6d, 0x4b, 0x73,
0x73, 0xb3, 0x7e, 0xef, 0xbd, 0xf7, 0x24, 0x3f, 0x3f, 0xff, 0x4b, 0x60, 0xb1, 0x52, 0x6a, 0xb4,
0xd1, 0x0e, 0x1f, 0x30, 0x1c, 0xf8, 0xf0, 0xec, 0xd9, 0xb3, 0x72, 0xe6, 0xcc, 0x19, 0x51, 0x4a,
0xfd, 0x16, 0x18, 0x01, 0xe4, 0x02, 0xb7, 0x01, 0x7f, 0x05, 0xfc, 0x43, 0x41, 0x41, 0xc1, 0xd7,
0xbb, 0x77, 0xef, 0x96, 0x86, 0x86, 0x06, 0x1d, 0x0c, 0x06, 0xe5, 0xdc, 0xb9, 0x73, 0x32, 0x7a,
0xf4, 0xe8, 0xb0, 0x09, 0x9b, 0xb9, 0x6d, 0x12, 0xa9, 0x1e, 0x3f, 0xfc, 0x82, 0xc5, 0x8b, 0x17,
0x27, 0x12, 0x89, 0x84, 0xb6, 0x6d, 0x5b, 0xca, 0xca, 0xca, 0x64, 0xfc, 0xf8, 0xf1, 0xe7, 0x80,
0xa7, 0x80, 0x61, 0xc6, 0x11, 0xb6, 0x75, 0xb8, 0x79, 0x40, 0x51, 0x65, 0x65, 0xa5, 0x54, 0x54,
0x54, 0x88, 0x52, 0xea, 0x37, 0x26, 0x32, 0xb4, 0x92, 0x1b, 0xe8, 0xab, 0x94, 0x1a, 0x0e, 0xfc,
0xe3, 0xb4, 0x69, 0xd3, 0xea, 0x3f, 0xff, 0xfc, 0x73, 0xa9, 0xaf, 0xaf, 0x17, 0xc7, 0x71, 0xf4,
0x23, 0x8f, 0x3c, 0x12, 0x07, 0xe6, 0xf5, 0x34, 0x13, 0xac, 0xd6, 0xc3, 0xaf, 0x5e, 0xbd, 0xba,
0x25, 0x16, 0x8b, 0xe9, 0xa6, 0xa6, 0x26, 0xbd, 0x66, 0xcd, 0x9a, 0x24, 0xb0, 0x59, 0x29, 0x35,
0xd2, 0x64, 0x7b, 0x57, 0xca, 0x36, 0xf3, 0x80, 0xa2, 0x2f, 0xbe, 0xf8, 0x42, 0x0e, 0x1f, 0x3e,
0x7c, 0x25, 0x06, 0xb4, 0x8d, 0x52, 0x3e, 0xcb, 0xb2, 0x46, 0x03, 0x3b, 0xd7, 0xad, 0x5b, 0x27,
0xa1, 0x50, 0x48, 0x3b, 0x8e, 0xa3, 0x9f, 0x7a, 0xea, 0xa9, 0x84, 0x61, 0x82, 0xaf, 0xa7, 0xcc,
0xa1, 0x2f, 0xf0, 0xf0, 0xe2, 0xc5, 0x8b, 0x13, 0xb1, 0x58, 0x4c, 0x47, 0x22, 0x11, 0xbd, 0x70,
0xe1, 0xc2, 0x16, 0x60, 0x81, 0x49, 0x6f, 0x53, 0xaf, 0x72, 0x6f, 0x1e, 0x50, 0x74, 0xe8, 0xd0,
0x21, 0x39, 0x78, 0xf0, 0xa0, 0x00, 0xed, 0x31, 0xa0, 0x95, 0x3c, 0xc6, 0x34, 0x96, 0x2c, 0x5d,
0xba, 0xb4, 0x25, 0x1c, 0x0e, 0x6b, 0xc7, 0x71, 0xf4, 0xdc, 0xb9, 0x73, 0xe3, 0xc0, 0xac, 0x9e,
0xf0, 0x09, 0xe9, 0xc0, 0xa4, 0x29, 0x53, 0xa6, 0x44, 0x13, 0x89, 0x84, 0x6e, 0x6a, 0x6a, 0xd2,
0x0b, 0x17, 0x2e, 0x6c, 0x95, 0x48, 0xbf, 0x0e, 0xd4, 0x18, 0x79, 0x40, 0x51, 0x49, 0x49, 0x89,
0x94, 0x94, 0x94, 0x74, 0x84, 0x01, 0xad, 0xda, 0x30, 0x00, 0x58, 0xf0, 0xe2, 0x8b, 0x2f, 0xb6,
0xd8, 0xb6, 0xad, 0x9b, 0x9b, 0x9b, 0x75, 0x41, 0x41, 0xc1, 0x9f, 0x8d, 0x86, 0x78, 0xba, 0xd3,
0xee, 0x6f, 0xb3, 0x2c, 0xab, 0x38, 0x10, 0x08, 0x88, 0x6d, 0xdb, 0x62, 0xd4, 0x7e, 0x81, 0x39,
0x7c, 0x47, 0x6c, 0x72, 0x00, 0x50, 0x54, 0x54, 0x54, 0x24, 0xbb, 0x77, 0xef, 0x6e, 0x35, 0x81,
0xbc, 0x0e, 0x9a, 0xdd, 0x00, 0x60, 0xd9, 0xfa, 0xf5, 0xeb, 0xc5, 0xef, 0xf7, 0x4b, 0x55, 0x55,
0x95, 0x00, 0xbf, 0x34, 0x21, 0xb2, 0x5b, 0xb4, 0x20, 0x0b, 0x58, 0xb0, 0x61, 0xc3, 0x06, 0xb1,
0x6d, 0x5b, 0x0e, 0x1c, 0x38, 0x20, 0xc0, 0x66, 0xa3, 0xf6, 0x1d, 0xad, 0x2e, 0xfb, 0x01, 0xef,
0x6f, 0xde, 0xbc, 0x59, 0xb6, 0x6c, 0xd9, 0xa2, 0x81, 0x22, 0x53, 0x0b, 0x74, 0x34, 0x7b, 0x1d,
0x02, 0x14, 0x1d, 0x39, 0x72, 0x44, 0x82, 0xc1, 0xa0, 0xac, 0x5a, 0xb5, 0x4a, 0x80, 0x39, 0x26,
0x59, 0xba, 0xe9, 0xd2, 0xbf, 0x63, 0xd4, 0xa8, 0x51, 0xc7, 0x93, 0xc9, 0xa4, 0x8e, 0x46, 0xa3,
0x7a, 0xf8, 0xf0, 0xe1, 0x27, 0x95, 0x52, 0x23, 0xae, 0x61, 0xf3, 0xdf, 0xa5, 0x6c, 0x60, 0xd5,
0x8a, 0x15, 0x2b, 0x64, 0xf5, 0xea, 0xd5, 0x02, 0xfc, 0x8b, 0xf1, 0x29, 0x1d, 0xa5, 0x34, 0xa5,
0xd4, 0x98, 0x49, 0x93, 0x26, 0x35, 0x35, 0x34, 0x34, 0xe8, 0x58, 0x2c, 0xa6, 0xb3, 0xb2, 0xb2,
0xfe, 0x68, 0xb2, 0x4f, 0xab, 0xb3, 0x9e, 0xbc, 0xb3, 0x65, 0xec, 0xbd, 0xaf, 0xbc, 0xf2, 0xca,
0xd8, 0x70, 0x38, 0xac, 0xd6, 0xaf, 0x5f, 0xaf, 0x4e, 0x9f, 0x3e, 0xbd, 0x52, 0x44, 0xea, 0x4d,
0x3d, 0xdf, 0x51, 0x6a, 0x01, 0x2a, 0x4e, 0x9d, 0x3a, 0x45, 0x75, 0x75, 0x35, 0xc0, 0xff, 0x74,
0xf2, 0xfe, 0x98, 0x88, 0xf8, 0x0f, 0x1f, 0x3e, 0xfc, 0x52, 0x71, 0x71, 0xb1, 0x6a, 0x6c, 0x6c,
0x54, 0xcb, 0x97, 0x2f, 0xbf, 0xcf, 0xe4, 0x0f, 0x69, 0x37, 0x33, 0xd5, 0x1d, 0x9c, 0x93, 0x93,
0x53, 0x96, 0x4c, 0x26, 0x75, 0x73, 0x73, 0xb3, 0x1e, 0x30, 0x60, 0xc0, 0x7f, 0x19, 0x50, 0xa3,
0xb3, 0xc0, 0x8a, 0x1b, 0x18, 0x37, 0x6d, 0xda, 0x34, 0x79, 0xe0, 0x81, 0x07, 0x04, 0x98, 0xd2,
0x49, 0x0d, 0x02, 0x70, 0x29, 0xa5, 0x0a, 0xc6, 0x8f, 0x1f, 0x5f, 0x15, 0x0e, 0x87, 0x75, 0x63,
0x63, 0xa3, 0x00, 0xbb, 0x3a, 0xe0, 0x4c, 0xbb, 0xac, 0x01, 0x2e, 0x20, 0xb7, 0xb0, 0xb0, 0xf0,
0xc7, 0x91, 0x48, 0x44, 0xed, 0xdd, 0xbb, 0x57, 0xf9, 0xfd, 0xfe, 0xf7, 0x4d, 0xc5, 0x96, 0xec,
0xe4, 0xe6, 0x93, 0x80, 0x13, 0x08, 0x04, 0xea, 0x82, 0xc1, 0x60, 0x53, 0x17, 0x9f, 0x71, 0x51,
0x44, 0x42, 0xc7, 0x8e, 0x1d, 0xdb, 0x7e, 0xec, 0xd8, 0x31, 0x95, 0x4c, 0x26, 0x99, 0x3f, 0x7f,
0xfe, 0x1c, 0xa5, 0x54, 0x66, 0x67, 0x04, 0xd2, 0x19, 0x06, 0xa4, 0x01, 0x33, 0xe6, 0xcd, 0x9b,
0x07, 0xc0, 0xce, 0x9d, 0x3b, 0x13, 0xc0, 0x7e, 0x53, 0xbb, 0x77, 0x96, 0x34, 0xd0, 0x1c, 0x08,
0x04, 0x2a, 0x6d, 0xdb, 0xae, 0x32, 0xcf, 0xe8, 0x4a, 0xb9, 0xdb, 0x04, 0x14, 0x6f, 0xdd, 0xba,
0x95, 0x44, 0x22, 0xc1, 0xec, 0xd9, 0xb3, 0x33, 0x44, 0x64, 0xd2, 0xcd, 0x32, 0x83, 0x3c, 0x60,
0x57, 0x22, 0x91, 0x10, 0xc7, 0x71, 0x74, 0x4e, 0x4e, 0x4e, 0x99, 0x49, 0x4e, 0xae, 0x27, 0x9a,
0x14, 0xba, 0xdd, 0xee, 0xbf, 0x37, 0x4e, 0xb1, 0xab, 0x66, 0x39, 0x74, 0xdc, 0xb8, 0x71, 0x27,
0x6c, 0xdb, 0x96, 0xda, 0xda, 0x5a, 0x01, 0xde, 0x31, 0x29, 0xf2, 0x0d, 0xa7, 0xdb, 0x26, 0x4e,
0x9c, 0x58, 0x11, 0x8b, 0xc5, 0xe4, 0xc4, 0x89, 0x13, 0x02, 0xfc, 0xab, 0x49, 0x43, 0xaf, 0x27,
0x95, 0x4e, 0x37, 0xeb, 0x7a, 0xc0, 0xd9, 0x01, 0xc0, 0x16, 0xbf, 0xdf, 0x2f, 0xb1, 0x58, 0x4c,
0xfa, 0xf7, 0xef, 0x5f, 0x66, 0x42, 0xf2, 0x0d, 0x41, 0x84, 0x2c, 0x93, 0x61, 0x65, 0x00, 0xf9,
0xc3, 0x87, 0x0f, 0xbf, 0x2d, 0x91, 0x48, 0x70, 0xf4, 0xe8, 0x51, 0x80, 0x6f, 0x4d, 0xae, 0xef,
0x6a, 0x47, 0xc5, 0x13, 0x6d, 0x56, 0xf2, 0x0a, 0x2a, 0xae, 0x0d, 0xd2, 0x73, 0x35, 0xe9, 0xa6,
0x98, 0xe7, 0xa7, 0x1a, 0xc7, 0x69, 0x5d, 0x21, 0xd9, 0xc9, 0x06, 0xfc, 0x95, 0x95, 0x95, 0xdc,
0x7d, 0xf7, 0xdd, 0x8c, 0x19, 0x33, 0x66, 0x58, 0x7d, 0x7d, 0x7d, 0x9e, 0x89, 0x2a, 0x0e, 0x10,
0xbb, 0x9a, 0x7f, 0x71, 0x5d, 0x63, 0x03, 0xd9, 0xc0, 0x54, 0xe0, 0x6f, 0x81, 0x8c, 0xb4, 0xb4,
0xb4, 0xcc, 0x64, 0x32, 0xc9, 0xf9, 0xf3, 0xe7, 0x01, 0x1e, 0x06, 0x26, 0x5f, 0xe1, 0xe1, 0x02,
0x5c, 0x04, 0xce, 0x00, 0x95, 0x40, 0x85, 0xb1, 0x71, 0xc7, 0xd8, 0x6c, 0xf4, 0x2a, 0x1b, 0x52,
0xc6, 0x7e, 0xfb, 0x18, 0xa6, 0x7b, 0x80, 0x91, 0x26, 0xbc, 0x8d, 0x6c, 0x07, 0x39, 0x76, 0x03,
0xb7, 0x9f, 0x3d, 0x7b, 0x96, 0x09, 0x13, 0x26, 0xe0, 0xf1, 0x78, 0xf2, 0x80, 0x7f, 0x32, 0xef,
0xdc, 0x0f, 0x7c, 0x64, 0x9c, 0xac, 0x6e, 0xef, 0x85, 0x57, 0x4b, 0x7a, 0x7e, 0xf4, 0xcc, 0x33,
0xcf, 0x7c, 0xb9, 0x71, 0xe3, 0xc6, 0x14, 0x40, 0x69, 0xad, 0x09, 0x87, 0xc3, 0x68, 0xad, 0x51,
0x4a, 0xd1, 0xdc, 0xdc, 0x7c, 0x79, 0x45, 0xa3, 0xd1, 0xcb, 0xab, 0xa1, 0xa1, 0x81, 0xaa, 0xaa,
0x2a, 0x4e, 0x9d, 0x3a, 0xc5, 0x37, 0xdf, 0x7c, 0x83, 0x6d, 0xdb, 0xc1, 0x40, 0x20, 0xf0, 0x75,
0x28, 0x14, 0xda, 0xac, 0xb5, 0xde, 0x71, 0x15, 0xc9, 0xbb, 0x81, 0x7e, 0x99, 0x99, 0x99, 0xbf,
0xf4, 0xf9, 0x7c, 0x23, 0xfa, 0xf5, 0xeb, 0x37, 0x74, 0xf0, 0xe0, 0xc1, 0x0c, 0x1b, 0x36, 0x8c,
0xd1, 0xa3, 0x47, 0xe3, 0xf3, 0xf9, 0xc8, 0xcc, 0xcc, 0xc4, 0xeb, 0xf5, 0x92, 0x91, 0x91, 0x41,
0x46, 0x46, 0x06, 0x5e, 0xaf, 0x17, 0xaf, 0xd7, 0x8b, 0xd6, 0x1a, 0x97, 0xcb, 0x85, 0xcf, 0xe7,
0xc3, 0xe5, 0x72, 0x01, 0xc8, 0xdb, 0x6f, 0xbf, 0xad, 0x9f, 0x7f, 0xfe, 0xf9, 0x47, 0x80, 0x52,
0xa3, 0x09, 0x9d, 0x8a, 0x02, 0x0a, 0xb0, 0xd2, 0xd2, 0xd2, 0x2e, 0x33, 0x49, 0xeb, 0x4b, 0x4c,
0x14, 0x11, 0x92, 0xc9, 0xe4, 0xff, 0x5b, 0x5a, 0xeb, 0xd6, 0x8d, 0x88, 0xdb, 0xed, 0xc6, 0xed,
0x76, 0xe3, 0x72, 0xb9, 0xb0, 0x2c, 0x2b, 0xc5, 0xb2, 0xac, 0x14, 0xa5, 0xd4, 0xb5, 0xa2, 0x8e,
0xb2, 0x2c, 0xeb, 0xe1, 0xf4, 0xf4, 0x74, 0x8f, 0xd7, 0xeb, 0xcd, 0xf6, 0x78, 0x3c, 0x78, 0x3c,
0x1e, 0xbc, 0x5e, 0x2f, 0x6e, 0xb7, 0xfb, 0xf2, 0xf3, 0xb5, 0xd6, 0xff, 0xe7, 0x9d, 0xad, 0xe0,
0x6a, 0xdb, 0x3d, 0x02, 0xca, 0xeb, 0xf5, 0xa6, 0x5c, 0xcb, 0xc1, 0xaa, 0x6b, 0x7c, 0x97, 0x03,
0x4c, 0xcb, 0xc9, 0xc9, 0x59, 0x06, 0xa4, 0x17, 0x16, 0x16, 0x4e, 0x5b, 0xb3, 0x66, 0x8d, 0xb5,
0x63, 0xc7, 0x0e, 0x96, 0x2d, 0x5b, 0xf6, 0xb9, 0xdb, 0xed, 0x6e, 0x36, 0xd8, 0xfe, 0x65, 0xc6,
0x00, 0x12, 0x8d, 0x46, 0x1b, 0x81, 0xaf, 0xcd, 0x3a, 0xde, 0x06, 0xd9, 0x8d, 0x5c, 0xc3, 0x04,
0x52, 0x8c, 0x9a, 0x67, 0x9a, 0xcf, 0x3e, 0x46, 0xfd, 0xc7, 0x01, 0x05, 0x19, 0x19, 0x19, 0x97,
0x7b, 0x07, 0x4a, 0x29, 0x94, 0x52, 0x02, 0xb8, 0xe2, 0xf1, 0xb8, 0x6f, 0xeb, 0xd6, 0xad, 0xe3,
0x66, 0xce, 0x9c, 0xc9, 0xa2, 0x45, 0x8b, 0x9c, 0xd2, 0xd2, 0xd2, 0x2f, 0x2d, 0xcb, 0x8a, 0xdb,
0xb6, 0x7d, 0x00, 0x78, 0x17, 0x08, 0xb4, 0xf7, 0xce, 0xab, 0xf9, 0x00, 0x31, 0x1b, 0x3f, 0x14,
0x0e, 0x87, 0xbf, 0x00, 0xee, 0x38, 0x7f, 0xfe, 0xfc, 0xef, 0x5d, 0x2e, 0x57, 0x4e, 0xff, 0xfe,
0xfd, 0x71, 0x1c, 0xe7, 0xd7, 0x8e, 0xe3, 0xfc, 0xca, 0xd8, 0xf5, 0x95, 0x12, 0x9d, 0x84, 0x71,
0x44, 0x6d, 0x9d, 0xe0, 0xb5, 0x5a, 0x5f, 0x49, 0xc3, 0xa4, 0xa6, 0x36, 0x4e, 0xf0, 0x24, 0xf0,
0x3b, 0xc0, 0x15, 0x8d, 0x46, 0x53, 0xda, 0x71, 0x82, 0xcf, 0x0e, 0x1e, 0x3c, 0x78, 0x9c, 0xcb,
0xe5, 0xe2, 0xdc, 0xb9, 0x73, 0xdf, 0x86, 0xc3, 0xe1, 0x25, 0x40, 0xad, 0x61, 0x7a, 0xb4, 0x0b,
0x49, 0xd6, 0x15, 0xb5, 0x61, 0xc8, 0xb8, 0x71, 0xe3, 0xbe, 0x8a, 0xc5, 0x62, 0xad, 0x25, 0xe8,
0xcf, 0x4d, 0x55, 0x77, 0x23, 0xc2, 0xe0, 0xf5, 0xc0, 0x5a, 0xf9, 0xc0, 0xb6, 0x40, 0x20, 0x20,
0xf1, 0x78, 0x5c, 0xa7, 0xa6, 0xa6, 0x96, 0x98, 0xd2, 0xf8, 0x86, 0x66, 0x82, 0x02, 0xc4, 0x8e,
0x1f, 0x3f, 0x7e, 0x54, 0x44, 0x18, 0x38, 0x70, 0xa0, 0x0c, 0x1a, 0x34, 0x68, 0xaa, 0xd9, 0x7c,
0x57, 0x6b, 0xf0, 0x4c, 0xa5, 0xd4, 0x7c, 0xa5, 0xd4, 0x7c, 0xa3, 0xf2, 0x5d, 0x15, 0x4c, 0xda,
0xc4, 0x89, 0x13, 0xa7, 0x28, 0xa5, 0xa8, 0xa9, 0xa9, 0x51, 0x2d, 0x2d, 0x2d, 0x95, 0x5c, 0xea,
0x2a, 0xdd, 0xf0, 0x54, 0xd8, 0x01, 0xfe, 0xb4, 0x6f, 0xdf, 0x3e, 0x5a, 0x5a, 0x5a, 0xd4, 0x83,
0x0f, 0x3e, 0x38, 0xd9, 0x64, 0x73, 0xee, 0xae, 0x32, 0xc0, 0xe7, 0xf3, 0x3d, 0xed, 0xf3, 0xf9,
0x9e, 0xb9, 0x0e, 0x06, 0xa4, 0x02, 0x03, 0xef, 0xbb, 0xef, 0xbe, 0x11, 0x89, 0x44, 0x82, 0x92,
0x92, 0x12, 0x80, 0x83, 0xed, 0x79, 0xfc, 0xeb, 0x65, 0x40, 0x0c, 0x38, 0xf8, 0xe1, 0x87, 0x1f,
0x26, 0x2d, 0xcb, 0xa2, 0xb0, 0xb0, 0xd0, 0x02, 0xfe, 0xa6, 0x8b, 0x20, 0x84, 0x05, 0xa4, 0xf5,
0xed, 0xdb, 0x77, 0x54, 0x6e, 0x6e, 0xee, 0x98, 0xeb, 0x30, 0x83, 0x2c, 0x60, 0xfe, 0x93, 0x4f,
0x3e, 0x89, 0xc7, 0xe3, 0xa1, 0xa4, 0xa4, 0x24, 0x00, 0x1c, 0xeb, 0x8c, 0x06, 0x74, 0x96, 0x06,
0x29, 0xa5, 0x7e, 0x1b, 0x8f, 0xc7, 0x75, 0x24, 0x12, 0xd1, 0x05, 0x05, 0x05, 0x27, 0x0c, 0xec,
0xdd, 0x95, 0x72, 0x78, 0xfc, 0xd4, 0xa9, 0x53, 0x65, 0xfa, 0xf4, 0xe9, 0x02, 0xdc, 0xdd, 0x85,
0x72, 0xd8, 0xad, 0x94, 0x1a, 0x71, 0xef, 0xbd, 0xf7, 0x7e, 0x1b, 0x08, 0x04, 0xa4, 0xae, 0xae,
0x4e, 0x80, 0xf7, 0x3a, 0x81, 0x2c, 0x75, 0x09, 0x10, 0x69, 0x10, 0x91, 0x7f, 0xdf, 0xb0, 0x61,
0x83, 0x8a, 0xc7, 0xe3, 0xea, 0xa5, 0x97, 0x5e, 0xfa, 0x11, 0xf0, 0x13, 0x23, 0x89, 0x4e, 0xd5,
0xf2, 0xc0, 0x98, 0x41, 0x83, 0x06, 0x31, 0x64, 0xc8, 0x10, 0x4c, 0x98, 0xeb, 0x6c, 0xa3, 0x36,
0x5b, 0x44, 0x7e, 0xb6, 0x7c, 0xf9, 0xf2, 0xfc, 0x64, 0x32, 0xc9, 0x5b, 0x6f, 0xbd, 0x05, 0xf0,
0x8b, 0x76, 0xa2, 0xd2, 0x0d, 0xed, 0x05, 0x0c, 0xcd, 0xcf, 0xcf, 0x2f, 0x4f, 0x24, 0x12, 0x3a,
0x12, 0x89, 0xe8, 0x09, 0x13, 0x26, 0x34, 0x9a, 0xae, 0x4f, 0x67, 0x4a, 0xd0, 0x6c, 0x60, 0xd5,
0xb2, 0x65, 0xcb, 0xe4, 0xe5, 0x97, 0x5f, 0x16, 0xe0, 0x9f, 0x3b, 0x09, 0x89, 0xa5, 0x03, 0x93,
0x67, 0xcd, 0x9a, 0x15, 0x0b, 0x04, 0x02, 0xba, 0xb1, 0xb1, 0x51, 0xcc, 0x8c, 0xc1, 0xe0, 0xee,
0x00, 0x46, 0x33, 0x81, 0x87, 0xd6, 0xac, 0x59, 0x23, 0xc1, 0x60, 0x50, 0x8e, 0x1c, 0x39, 0x22,
0xc0, 0x6e, 0x83, 0xc7, 0x75, 0x54, 0x8a, 0xfd, 0x80, 0x2d, 0xef, 0xbc, 0xf3, 0x8e, 0xbc, 0xfb,
0xee, 0xbb, 0x9d, 0x05, 0x45, 0x53, 0x81, 0x61, 0x6e, 0xb7, 0xfb, 0x37, 0x27, 0x4f, 0x9e, 0x94,
0x40, 0x20, 0x20, 0xcf, 0x3e, 0xfb, 0x6c, 0x1c, 0x98, 0x41, 0x37, 0x4d, 0x99, 0x58, 0xa6, 0xdc,
0xdc, 0x56, 0x55, 0x55, 0x25, 0xf5, 0xf5, 0xf5, 0xb2, 0x61, 0xc3, 0x06, 0x01, 0x5e, 0x37, 0x31,
0xb9, 0x23, 0xfe, 0x60, 0x00, 0x50, 0xb4, 0x63, 0xc7, 0x0e, 0xd9, 0xbe, 0x7d, 0x7b, 0x6b, 0x5f,
0x20, 0xaf, 0x83, 0xbe, 0xe3, 0x76, 0x60, 0xd3, 0xae, 0x5d, 0xbb, 0xa4, 0xb6, 0xb6, 0x56, 0xca,
0xcb, 0xcb, 0x05, 0xd8, 0x60, 0xee, 0xef, 0xb6, 0xe6, 0x88, 0xc7, 0xb2, 0xac, 0xd1, 0x23, 0x47,
0x8e, 0x3c, 0xe7, 0x38, 0x8e, 0xb6, 0x6d, 0x5b, 0x56, 0xae, 0x5c, 0x19, 0x03, 0xfe, 0xce, 0x30,
0xe1, 0x5a, 0x9a, 0x90, 0x07, 0x14, 0x7d, 0xf4, 0xd1, 0x47, 0x52, 0x5c, 0x5c, 0x7c, 0xb5, 0xd6,
0xd8, 0x77, 0x25, 0x7f, 0x3b, 0xf0, 0x6f, 0x6b, 0xd7, 0xae, 0x95, 0xba, 0xba, 0x3a, 0x09, 0x85,
0x42, 0x3a, 0x37, 0x37, 0xf7, 0x88, 0xe9, 0x21, 0xba, 0xe9, 0x66, 0xca, 0x02, 0x66, 0xcd, 0x99,
0x33, 0x27, 0xee, 0x38, 0x8e, 0x0e, 0x87, 0xc3, 0xfa, 0xd5, 0x57, 0x5f, 0x8d, 0x01, 0x6f, 0xf2,
0x97, 0x71, 0x97, 0xab, 0x32, 0x60, 0xff, 0xfe, 0xfd, 0x52, 0x5a, 0x5a, 0xda, 0x91, 0xce, 0x50,
0xba, 0x89, 0x36, 0x9b, 0xde, 0x7c, 0xf3, 0x4d, 0xf1, 0xfb, 0xfd, 0x12, 0x89, 0x44, 0xf4, 0xa4,
0x49, 0x93, 0xa2, 0xc0, 0x03, 0xdd, 0xd1, 0x0f, 0x68, 0x2f, 0x0b, 0xf3, 0x01, 0x73, 0x17, 0x2e,
0x5c, 0x98, 0x70, 0x1c, 0x47, 0x07, 0x83, 0x41, 0xd9, 0xb4, 0x69, 0x93, 0x00, 0xbf, 0x56, 0x4a,
0x8d, 0x37, 0xdf, 0xbb, 0xda, 0x63, 0x40, 0x79, 0x79, 0xb9, 0x7c, 0xf2, 0xc9, 0x27, 0xd7, 0x6a,
0x8e, 0xf6, 0x03, 0xa6, 0xb8, 0x5c, 0xae, 0xbd, 0x45, 0x45, 0x45, 0x72, 0xe1, 0xc2, 0x05, 0x89,
0x44, 0x22, 0x7a, 0xc6, 0x8c, 0x19, 0x71, 0x2e, 0xb5, 0xc9, 0xfb, 0xd2, 0x83, 0xb3, 0x02, 0x96,
0xc1, 0xdf, 0xe6, 0xce, 0x9e, 0x3d, 0x3b, 0x16, 0x8d, 0x46, 0x75, 0x5d, 0x5d, 0x9d, 0x1c, 0x3f,
0x7e, 0x5c, 0xa6, 0x4f, 0x9f, 0x1e, 0x05, 0x96, 0x18, 0xf5, 0xcc, 0x35, 0xe0, 0x86, 0x6a, 0xeb,
0x03, 0x8e, 0x1e, 0x3d, 0x2a, 0x5f, 0x7d, 0xf5, 0xd5, 0x77, 0x19, 0xd0, 0x8a, 0x42, 0xf5, 0x37,
0x0d, 0x97, 0x95, 0xb3, 0x67, 0xcf, 0x8e, 0x55, 0x55, 0x55, 0x49, 0x6d, 0x6d, 0xad, 0xd8, 0xb6,
0xad, 0xef, 0xb9, 0xe7, 0x9e, 0x28, 0x7f, 0x99, 0x11, 0xe8, 0xf1, 0x41, 0x09, 0xcb, 0x48, 0x7a,
0xe6, 0xd0, 0xa1, 0x43, 0xab, 0x2b, 0x2a, 0x2a, 0x5a, 0xe7, 0x7e, 0xf4, 0xce, 0x9d, 0x3b, 0x65,
0xe2, 0xc4, 0x89, 0x67, 0x4c, 0x98, 0x9b, 0x68, 0x7a, 0x08, 0xf9, 0xc0, 0x28, 0xe0, 0x3f, 0xaa,
0xab, 0xab, 0xa5, 0xba, 0xba, 0x5a, 0x94, 0x52, 0x25, 0xc0, 0x18, 0xf3, 0xdd, 0x30, 0x60, 0x3a,
0xf0, 0xd6, 0xfd, 0xf7, 0xdf, 0x7f, 0x61, 0xcf, 0x9e, 0x3d, 0x52, 0x5f, 0x5f, 0xaf, 0x03, 0x81,
0x80, 0x94, 0x97, 0x97, 0x8b, 0xcf, 0xe7, 0xfb, 0x6f, 0xe0, 0xfe, 0x9e, 0x96, 0xfc, 0x95, 0xcc,
0xa1, 0x8f, 0x65, 0x59, 0x05, 0xc0, 0x2f, 0x56, 0xac, 0x58, 0x91, 0x74, 0x1c, 0x47, 0xfb, 0xfd,
0x7e, 0x09, 0x85, 0x42, 0xfa, 0xb3, 0xcf, 0x3e, 0x93, 0xe7, 0x9e, 0x7b, 0x4e, 0xee, 0xbc, 0xf3,
0xce, 0x4a, 0x60, 0x1b, 0xb0, 0x0e, 0xf8, 0xac, 0xb6, 0xb6, 0x56, 0x6a, 0x6a, 0x6a, 0x04, 0xf8,
0xd2, 0x54, 0x97, 0xbb, 0x26, 0x4f, 0x9e, 0x5c, 0xbd, 0x74, 0xe9, 0x52, 0x39, 0x72, 0xe4, 0x88,
0xb4, 0x66, 0x78, 0xe1, 0x70, 0xb8, 0x35, 0xd4, 0xad, 0x37, 0x1a, 0x75, 0xcb, 0x0e, 0x4c, 0xa5,
0x9a, 0x52, 0xf4, 0xa7, 0x5e, 0xaf, 0xb7, 0xec, 0xb5, 0xd7, 0x5e, 0x93, 0xd6, 0x81, 0xa7, 0xba,
0xba, 0x3a, 0xb1, 0x6d, 0x5b, 0x6c, 0xdb, 0x96, 0x4f, 0x3f, 0xfd, 0x54, 0xb6, 0x6c, 0xd9, 0x22,
0x35, 0x35, 0x35, 0x52, 0x53, 0x53, 0x23, 0xdb, 0xb6, 0x6d, 0x93, 0xf2, 0xf2, 0x72, 0x09, 0x85,
0x42, 0x12, 0x08, 0x04, 0xe4, 0xc2, 0x85, 0x0b, 0x12, 0x0a, 0x85, 0xe4, 0xc2, 0x85, 0x0b, 0xb2,
0x7c, 0xf9, 0x72, 0x51, 0x4a, 0x15, 0x73, 0x69, 0xcc, 0x2e, 0xef, 0x46, 0x7b, 0x7b, 0x75, 0x93,
0xb4, 0xc1, 0x6b, 0xcc, 0x62, 0x24, 0xf0, 0xe4, 0xa3, 0x8f, 0x3e, 0x3a, 0x6f, 0xe6, 0xcc, 0x99,
0xd9, 0x73, 0xe6, 0xcc, 0x61, 0xe0, 0xc0, 0x81, 0x12, 0x8f, 0xc7, 0x95, 0xd6, 0x9a, 0x78, 0xfc,
0x52, 0xcd, 0x92, 0x9a, 0x9a, 0x8a, 0xcb, 0xe5, 0xc2, 0xe3, 0xf1, 0xc8, 0xe9, 0xd3, 0xa7, 0x55,
0x49, 0x49, 0x09, 0xfb, 0xf6, 0xed, 0xf3, 0x97, 0x94, 0x94, 0x14, 0x03, 0xef, 0x03, 0xa7, 0x0d,
0xb0, 0x19, 0xe3, 0x06, 0xcf, 0x13, 0xab, 0x9b, 0x6c, 0x16, 0xad, 0x08, 0x6f, 0x1f, 0x60, 0x3c,
0xf0, 0xe3, 0xec, 0xec, 0xec, 0x09, 0x63, 0xc7, 0x8e, 0x1d, 0xee, 0x76, 0xbb, 0x07, 0x94, 0x96,
0x96, 0x7a, 0x45, 0x84, 0x87, 0x1e, 0x7a, 0xa8, 0xd9, 0xb6, 0xed, 0xda, 0xc3, 0x87, 0x0f, 0x7f,
0x6d, 0x90, 0xe4, 0x32, 0x03, 0xa7, 0x35, 0x01, 0x8d, 0xa6, 0xba, 0xfb, 0x5e, 0x0f, 0x52, 0xa7,
0xb4, 0xd1, 0x8a, 0x81, 0xc0, 0x5d, 0xc0, 0x5e, 0x31, 0xa4, 0x94, 0xfa, 0x83, 0xb9, 0x96, 0x6f,
0x9c, 0x5b, 0x1a, 0xdd, 0x34, 0xc9, 0xee, 0xea, 0x26, 0x06, 0x24, 0x0d, 0x4e, 0xdf, 0xda, 0x47,
0x4c, 0x18, 0x80, 0x45, 0x0c, 0xc0, 0x19, 0x13, 0x91, 0xf3, 0x06, 0xbc, 0xec, 0x76, 0xc9, 0xf4,
0x14, 0x85, 0x9a, 0x9a, 0x9a, 0x1e, 0xff, 0xf8, 0xe3, 0x8f, 0x75, 0x59, 0x59, 0xd9, 0x4a, 0x2e,
0xcd, 0x08, 0x24, 0xba, 0x7b, 0x13, 0x3d, 0x15, 0x4a, 0x2c, 0x53, 0x12, 0x0f, 0x37, 0x42, 0xa8,
0x06, 0xc2, 0xf4, 0xc0, 0x40, 0x74, 0x4f, 0xff, 0x64, 0x26, 0xa5, 0x8d, 0x89, 0xfc, 0x60, 0x7e,
0x2d, 0xd2, 0x4b, 0xbd, 0xd4, 0x4b, 0xbd, 0xd4, 0x4b, 0xb7, 0x0a, 0xfd, 0x2f, 0xff, 0x73, 0xf6,
0x21, 0x31, 0xa8, 0x90, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82
};
const int pointer_size = sizeof(pointer);

View file

@ -0,0 +1,14 @@
/*
This file was autogenerated by raw2c.
Visit http://www.devkitpro.org
*/
//---------------------------------------------------------------------------------
#ifndef _pointer_h_
#define _pointer_h_
//---------------------------------------------------------------------------------
extern const unsigned char pointer[];
extern const int pointer_size;
//---------------------------------------------------------------------------------
#endif //_pointer_h_
//---------------------------------------------------------------------------------

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,66 @@
/*===========================================
NoNameNo Demo Button ;)
Perhaps needs some improvement...
============================================*/
#include "../../../GRRLIB/GRRLIB/GRRLIB.h"
#include "../../../GRRLIB/GRRLIB/GRRLIB_addon.h"
#include "gfx/pointer.h"
#include <stdlib.h>
#include <wiiuse/wpad.h>
extern GRRLIB_texImg *tex_GRRLIBfont;
int main() {
u32 WPADDown;
u32 WPADHeld;
ir_t ir1;
int wpadx=0, wpady=0;
int resdown=0,resheld=0;
GRRLIB_Init();
GRRLIB_addon_Init();
WPAD_Init();
WPAD_SetIdleTimeout(60);
WPAD_SetDataFormat(WPAD_CHAN_0, WPAD_FMT_BTNS_ACC_IR);
GRRLIB_texImg *tex_pointer = GRRLIB_LoadTexture(pointer);
while(1) {
WPAD_SetVRes(0, 640, 480);
WPAD_ScanPads();
WPADDown = WPAD_ButtonsDown(0);
WPADHeld = WPAD_ButtonsHeld(0);
WPAD_IR(WPAD_CHAN_0, &ir1);
wpadx=ir1.sx-200;
wpady=ir1.sy-250;
GRRLIB_addon_Button(1, 100,100,0xFFFF00FF, wpadx, wpady, WPADDown, WPADHeld, WPAD_BUTTON_A, &resdown, &resheld, " My First Button ");
GRRLIB_addon_Button(2, 100,140,0xFF00FFFF, wpadx, wpady, WPADDown, WPADHeld, WPAD_BUTTON_A, &resdown, &resheld, " My Second Button ");
GRRLIB_addon_Button(3, 100,180,0x00FFFFFF, wpadx, wpady, WPADDown, WPADHeld, WPAD_BUTTON_A, &resdown, &resheld, " My Third Button ");
GRRLIB_addon_Button(4, 100,260,0xCCCCCCFF, wpadx, wpady, WPADDown, WPADHeld, WPAD_BUTTON_A, &resdown, &resheld, " -- QuIt -- ");
GRRLIB_Printf(100, 310, tex_GRRLIBfont, 0xFFFFFFFF, 1, "button down : %d",resdown);
GRRLIB_Printf(100, 330, tex_GRRLIBfont, 0xFFFFFFFF, 1, "button held : %d",resheld);
if(resdown==4){
exit(0);
}
resdown=0,resheld=0;
GRRLIB_DrawImg(wpadx-32, wpady-32, tex_pointer , 0, 1, 1, 0xFFFFFFFF );
GRRLIB_Render();
}
GRRLIB_FreeTexture(tex_pointer);
GRRLIB_addon_Exit();
GRRLIB_Exit(); // Be a good boy, clear the memory allocated by GRRLIB
return 0;
}